/* <!-- Hero Section --------------------------------------------------> */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  text-align: center;
}

/* Dark overlay for readability */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 900px;
  color: #fff;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-top: 1rem;
  line-height: 1.6;
  color: #fff;
}

/* ✅ Tablet screens */
@media (max-width: 1024px) {
  .hero {
    min-height: 500px;
    background-size: cover;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

/* ✅ Mobile screens */
@media (max-width: 768px) {
  .hero {
    min-height: 450px;
    background-size: cover;
  }

  .hero-overlay {
    padding: 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-top: 0.8rem;
  }
}

/* ✅ Extra small devices */
@media (max-width: 480px) {
  .hero {
    min-height: 380px;
    background-size: cover;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }
}

/* <!-- Hero Section --------------------------------------------------> */


/* <!-- Product Gallery --------------------------------------------------> */
.theme-3-product-gallery {
  max-width: 1400px;
  margin: 120px auto 0;
  text-align: center;
}

/* Wrapper to center all images and remove inline-block gaps */
.theme-3-images-wrapper {
  display: inline-block;
  text-align: center;
  font-size: 0;
  /* removes gaps between inline-block images */
}

/* Base style for all images */
.theme-3-product-gallery img {
  height: 350px;
  object-fit: cover;
  display: inline-block;
  vertical-align: top;
  font-size: initial;
}

/* Individual widths per image (keep current design) */
.theme-3-product-gallery .img1 {
  width: 15%;
}

.theme-3-product-gallery .img2 {
  width: 30%;
}

.theme-3-product-gallery .img3 {
  width: 30%;
}

.theme-3-product-gallery .img4 {
  width: 15%;
}

.theme-3-product-gallery .img5 {
  width: 20%;
}

.theme-3-product-gallery .img6 {
  width: 23%;
}

.theme-3-product-gallery .img7 {
  width: 30%;
}

.theme-3-product-gallery .img8 {
  width: 17%;
}

.theme-3-product-gallery .img9 {
  width: 22%;
}

.theme-3-product-gallery .img10 {
  width: 48%;
  transform: scale(1.0, 1.0);
  /* 1.1 = wider, 1.2 = taller */
  transform-origin: center;
  /* stretch from center */
}

.theme-3-product-gallery .img11 {
  width: 20.2%;
}

@media (max-width: 768px) {
  .theme-3-product-gallery img {
    width: 48% !important;
    /* 2 per row */
    height: 500px;
    /* fixed height for uniform rows */
    /* margin: 1%;              */
    display: inline-block;
    vertical-align: top;
    object-fit: cover;
    /* keeps image ratio while filling */
  }
}

/* Extra small screens (mobile) */
@media (max-width: 480px) {
  .theme-3-product-gallery img {
    width: 100% !important;
    height: auto;
    /* let it flow naturally */
    /* margin-bottom: 8px; */
    display: block;
    object-fit: cover;
  }
}





/* <!-- Product Gallery --------------------------------------------------> */

/* <!-- Product Offers --------------------------------------------------> */
.product-offers {
  padding: 5rem 8rem;
  background: #f5f5f5;
}

/* Grid layout */
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

/* Card styling */
.card {
  display: flex;
  flex-direction: row;
  /* text left, image right */
  justify-content: space-between;
  align-items: center;
  /* vertically center */
  border-radius: 16px;
  padding: 25px;
  color: #fff;
  min-height: 350px;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.card.pesticides .image::after {
  bottom: 2px;
  /* move shadow closer to the image */
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 15px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}


/* Content styling */
.content {
  max-width: 50%;
  text-align: left;
  z-index: 2;
}

.content h3 {
  font-size: 32px;
  font-weight: bold;
  margin: 30px 0 20px;
}

.content p {
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  margin: 10px 0 18px;
}

/* Badge */
.badge {
  background: #ffcc33;
  color: #000;
  /* font-weight: bold; */
  padding: 12px 14px;
  /* border-radius: 8px; */
  display: inline-block;
  font-size: 18px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* Button */
.btn {
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); */
  transition: all 0.3s ease;
  /* background: linear-gradient(94.04deg, #313F31 17.27%, #1A251B 73.71%); */
  color: #fff;
  /* fallback text color */
}

/* Pesticides (green bg) */
.pesticides .btn {
  background: #fff;
  color: #054A35;
}

.pesticides .btn:hover {
  background: #054A35 !important;
  /* solid green */
  background-image: none !important;
  /* remove gradient */
  color: #fff !important;
  /* white text */
}

/* Fertilizer (green bg) */
.fertilizer .btn {
  background: #054A35;
  /* solid green */
  color: #fff;
  /* white text */
  /* border: 2px solid #054A35; */
  transition: all 0.3s ease;
}

.fertilizer .btn:hover {
  background-color: #ffffff !important;
  /* solid white */
  color: #054A35 !important;
  /* green text */
  box-shadow: none !important;
  /* remove any shadow */
  opacity: 1 !important;
  /* ensure fully opaque */
}


/* Image styling */
.image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  bottom: 0;
  right: 0;
}

/* Oval shadow under images */
.image::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 15px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.image img {
  position: relative;
  z-index: 2;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0px 5px 8px rgba(0, 0, 0, 0.25));
}

/* Background variations */
.fertilizer {
  background: #fde9c9;
  color: #333;
}

.fertilizer .content p {
  color: #444;
}

.pesticides {
  background: #8ccf5f;
}

.pesticides .content h3 {
  color: white;
}

/* ========================
   Responsive Styles
   ======================== */

/* Tablets ≤1024px */
@media (max-width: 1024px) {
  .product-offers {
    padding: 3rem 5rem;
  }

  .content {
    max-width: 60%;
  }

  .content h3 {
    font-size: 28px;
  }

  .content p {
    font-size: 16px;
  }

  .image img {
    max-width: 250px;
  }
}

/* Tablets & Mobiles ≤768px */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 20px;
  }

  .content {
    max-width: 100%;
  }

  .image {
    position: static;
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .image img {
    max-width: 220px;
  }
}

/* Small Mobiles ≤480px */
@media (max-width: 480px) {
  .product-offers {
    padding: 2rem 1rem;
  }

  .content h3 {
    font-size: 22px;
  }

  .content p {
    font-size: 14px;
  }

  .badge {
    font-size: 14px;
    padding: 5px 12px;
  }

  .btn {
    font-size: 12px;
    padding: 8px 16px;
  }

  .image img {
    max-width: 180px;
  }
}

/* <!-- Product Offers --------------------------------------------------> */


/* <!-- Organic Pest --------------------------------------------------> */

.organic-pest {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: #8bc34a;
  gap: 20px;
  flex-wrap: wrap;
}

/* Left Side Text */
.pest-text {
  flex: 1;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px;
}

.pest-text h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.pest-text p {
  font-size: 1rem;
  margin-bottom: 25px;
  max-width: 400px;
}

.btn2 {
  background: white;
  /* color: black; */
  border: none;
  padding: 8px 12px;
  width: 200px;
  text-align: center;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.pbg {
  background: #EAF1ED;
}

.btn2:hover {
  background: #054A35;
  color: white !important;
}

.btn2 a {
  color: black;
  /* default */
  text-decoration: none;
  display: block;
  /* so it fills the button */
}

.btn2:hover a {
  color: white !important;
}

/* Right Side Products */
.pest-products {
  flex: 1.5;
  display: grid;
  grid-template-columns: 0.5fr 0.2634fr 0.205fr;
  /* ✅ keep 3 uneven cols */
  gap: 15px;
}

.product-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-col img {
  width: 100%;
  background: white;
  padding: 10px;
  object-fit: contain;
}

/* ========================
   Responsive Styles
   ======================== */

/* Small Laptops (≤1024px) */
@media (max-width: 1024px) {
  .pest-text {
    padding: 50px;
  }

  .pest-text h1 {
    font-size: 2.5rem;
  }

  .pest-text p {
    font-size: 0.95rem;
  }

  /* ✅ still 3 uneven columns */
  .pest-products {
    grid-template-columns: 0.5fr 0.2634fr 0.205fr;
  }

  .product-col img {
    padding: 8px;
  }
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .organic-pest {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pest-text {
    padding: 30px 20px;
  }

  .pest-text p {
    padding-bottom: 20px;
    margin: 0 auto;
    max-width: 100%;
  }

  .btn2 {
    margin: 0 auto;
    display: block;
  }

  .pest-products {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .product-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .product-col img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    padding: 4px;
    background: white;
  }
}



/* Mobiles (≤480px) */
@media (max-width: 480px) {
  .pest-text h1 {
    font-size: 1.8rem;
  }

  .btn2 {
    margin: 0 auto;
    /* center horizontally */
    display: block;
    /* make margin:auto effective */
  }

  .pest-text p {
    font-size: 0.9rem;
  }

  .btn2 {
    width: 100%;
    max-width: 220px;
    padding: 10px;
    font-size: 0.9rem;
  }

  .pest-products {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .product-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .product-col img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    padding: 6px;
    background: white;
  }
}


/* <!-- Organic Pest --------------------------------------------------> */


/* <!--Best seller --------------------------------------------------> */
/* .best-sellers {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.best-sellers h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #222;
}

.slider-container {
  width: 100%;
  overflow: hidden;
}

.products {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: nowrap;
  width: 100%;
}

.product {
  flex: 1 1 0;
  max-width: 100%;
}

.product img {
  width: 100%;
  height: auto;
  display: block;
}

.product-1 {
  max-width: 15%;
  margin-bottom: 6rem;
}

.product-2 {
  max-width: 15%;
  margin-bottom: 3rem;
}

.product-3 {
  max-width: 25%;
  margin-bottom: 0;
  z-index: 2;
}

.product-4 {
  max-width: 15%;
  margin-bottom: 3rem;
}

.product-5 {
  max-width: 15%;
  margin-bottom: 6rem;
}

@media (max-width: 992px) {
  .products {
    gap: 1.5rem;
  }

  .product-1,
  .product-2,
  .product-4,
  .product-5 {
    max-width: 18%;
  }

  .product-3 {
    max-width: 28%;
  }
}

@media (max-width: 768px) {
  .products {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .product {
    max-width: 80%;
    margin-bottom: 2rem !important;
  }

  .product-3 {
    max-width: 90%;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .best-sellers h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .product {
    max-width: 90%;
  }
} */


/* <!--Best seller --------------------------------------------------> */
/* <!--Best seller new --------------------------------------------------> */
section.best-sellers-section {
  text-align: center;
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

section.best-sellers-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #333;
  font-weight: 700;
}

.all_font {
  font-weight: 700;
  font-size: 32px;
}

.best-sellers-section-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.best-sellers-section-track {
  display: flex;
  transition: transform 0.5s ease;
}

.best-sellers-section-product {
  flex: 0 0 20%;
  padding: 10px;
  box-sizing: border-box;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.best-sellers-section-product img {
  width: 80%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.best-sellers-section-product::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3), transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.best-sellers-section-product.active::after {
  bottom: 0px;
  width: 90%;
  height: 12px;
}

.best-sellers-section-product.active img {
  width: 100%;
  transform: scale(1.2);
  z-index: 2;
}

.best-sellers-section-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 28px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 2px;
  padding-bottom: 2px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}


.best-sellers-section-btn.prev {
  left: 10px;
}

.best-sellers-section-btn.next {
  right: 10px;
}

/* 📱 Mobile: show 3 items */
@media (max-width: 768px) {
  .best-sellers-section-product {
    flex: 0 0 33.33%;
  }

  .best-sellers-section-btn {
    font-size: 20px;
    font-size: 28px;
    /* padding-left: 15px;
    padding-right: 15px;
    padding-top: 2px;
    padding-bottom: 2px; */
  }
}

@media (max-width: 480px) {
  .best-sellers-section-btn {
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
}


/* <!--Best seller new --------------------------------------------------> */


/* <!--Katyayni section --------------------------------------------------> */
.katyayani-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url("./img/katyaynibg.png") no-repeat center center/cover;
  color: white;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

/* Green overlay */
.katyayani-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(72, 146, 7, 0.8);
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Decorative dots grid */
.katyayani-dots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 40px;
  width: max-content;
  justify-content: start;
  /* or center if you want it aligned with title */
}


.katyayani-dots div {
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
}

.katyayani-text-content,
.katyayani-image-content {
  position: relative;
  z-index: 2;
}

.katyayani-text-content {
  max-width: 500px;
  padding-left: 10rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.katyayani-title {
  color: white;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 20px;
  margin-right: 45px;
}

.katyayani-description {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.katyayani-btn {
  text-decoration: none;
  font-size: 0.8rem;
  background: white;
  padding: 12px 25px;
  border-radius: 25px;
  transition: 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  vertical-align: middle;
  text-transform: uppercase;
}

.katyayani-btn:hover {
  background: #77b243;
  color: white;
}

/* Image container */
.katyayani-image-content {
  position: relative;
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.katyayani-image {
  width: 85%;
  height: 94%;
  object-fit: contain;
  display: block;
  margin-left: 14rem;
}

.katyayani-extra-image {
  position: absolute;
  top: 63%;
  left: 68%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  object-fit: contain;
  z-index: 3;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 1024px) {
  .katyayani-extra-image {
    position: absolute;
    top: 68%;
    left: 51%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    object-fit: contain;
    z-index: 3;
  }

}

/* Medium screens (tablets) */
@media (max-width: 1024px) {
  .katyayani-text-content {
    padding-left: 5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    max-width: 400px;
  }

  .katyayani-title {
    font-size: 2rem;
  }

  .katyayani-description {
    font-size: 1rem;
  }

  .katyayani-image {
    width: 100%;
    height: 80%;
    margin-left: 5rem;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .katyayani-image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    height: auto;
  }

  .katyayani-image {
    width: 100%;
    height: 100%;
    margin-left: 0;
  }

  .katyayani-extra-image {
    width: 140%;
    height: 140%;
    top: 55%;
    left: 65%;
  }


}

/* Small screens (mobile) */
@media (max-width: 768px) {
  .katyayani-section {
    flex-direction: column;
    text-align: center;
  }

  .katyayani-title {
    color: white;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 20px;
    margin-right: 0px;
  }

  .katyayani-text-content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    max-width: 100%;
  }

  /* .katyayani-title {
    font-size: 2rem;
  } */

  .katyayani-description {
    font-size: 0.95rem;
  }

  .katyayani-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
  }



  .katyayani-image {
    width: 85%;
    height: 94%;
    object-fit: contain;
    display: block;
    margin-left: 7rem;
  }

  .katyayani-extra-image {
    position: absolute;
    top: 66%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    object-fit: contain;
    z-index: 3;
  }

  */ .katyayani-dots {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    justify-content: center;
  }
}

/* Small screen laptops */


@media (max-width: 768px) {
  .katyayani-section {
    flex-direction: column;
    text-align: center;
    /* ✅ ensures everything inside is centered */
  }

  .katyayani-text-content {
    /* padding-left: 2rem; */
    /* padding-right: 2rem; */
    padding-top: 2rem;
    padding-bottom: 2rem;
    max-width: 100%;
    text-align: center;
    /* ✅ center text */
  }

  .katyayani-dots {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    justify-content: center;
    /* ✅ center dots */
    margin-left: auto;
    margin-right: auto;
  }

  .katyayani-title {
    font-size: 2rem;
    text-align: center;
    /* ✅ center title */
  }

  .katyayani-description {
    font-size: 0.95rem;
    text-align: center;
    /* ✅ center description */
  }
}


/* Extra small screens (very small mobiles) */
@media (max-width: 480px) {
  .katyayani-title {
    font-size: 1.5rem;
  }

  .katyayani-description {
    font-size: 0.85rem;
  }

  .katyayani-btn {
    padding: 8px 15px;
    font-size: 0.7rem;
  }

  /* .katyayani-dots {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  } */
}

/* <!--Katyayni section --------------------------------------------------> */

/* <!--Seed section ------------------------------------------------------> */

/* Section container */
.seed-section {
  display: flex;
  width: 100%;
  height: 800px;
  /* default height for large screens */
}

/* Each card */
.seed-card {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Images */
.seed-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fully fills the card */
  object-position: center;
  /* center the image */
  display: block;
}

/* Large screens: keep default height */
@media (max-width: 1200px) {
  .seed-section {
    display: flex;
    width: 100%;
    height: 800px;
  }
}

/* Medium screens (tablets) */
@media (max-width: 1024px) {
  .seed-section {
    flex-direction: row;
    height: 550px;
  }

  .seed-card {
    height: 100%;
  }
}

/* Small screens (mobiles) */
@media (max-width: 768px) {
  .seed-section {
    flex-direction: column;
    height: auto;
    padding-top: 15px;
  }

  .seed-card {
    height: 250px;
    margin-bottom: 10px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .seed-card {
    height: 180px;
  }
}

/* <!--Seed section --------------------------------------------------------> */