/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px;
  /* Margin bottom by footer height */
}

.container {
  max-width: 960px;
}

.pricing-header {
  max-width: 700px;
}

.logo-color {
  max-width: 145px;
}

.logo-bw {
  max-width: 70px;
}

.bg-coral {
  background-color: #ff7f50;
}

.text-coral {
  color: #ff7f50;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  /* Set the fixed height of the footer here */
  line-height: 60px;
  /* Vertically center the text there */
  background-color: #f5f5f5;
}

.custom-bg-row {
  position: relative;
  /* Needed for absolute positioning of pseudo-element */
  overflow: hidden;
  /* Hide any overflowing content */
}

.custom-bg-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/static/images/rustic.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.7;
  /* Adjust the opacity to control the fading effect */
  z-index: -1;
  /* Place the overlay behind the content */
}

.custom-bg-row-rain {
  position: relative;
  /* Needed for absolute positioning of pseudo-element */
  overflow: hidden;
  /* Hide any overflowing content */
}

.custom-bg-row-rain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/static/images/forest.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.7;
  /* Adjust the opacity to control the fading effect */
  z-index: -1;
  /* Place the overlay behind the content */
}

.plant-card-list {
  /*max-width: 20rem;*/
}