@charset "UTF-8";
.home-banner {
  height: calc(100vh - 100px);
  position: relative;
  overflow: hidden !important;
}
@media (max-width: 1200px) {
  .home-banner {
    height: calc(100vh - 80px);
  }
}
@media (max-width: 991px) {
  .home-banner {
    height: calc(100vh - 70px);
  }
}
@media (max-width: 767px) {
  .home-banner {
    height: calc(100vh - 83px);
  }
}
.home-banner figure {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}
.home-banner figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-animation: scaleInBanner 2s ease-in-out;
          animation: scaleInBanner 2s ease-in-out;
}
.home-banner figure::before {
  position: absolute;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.home-banner .banner-content {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 100%;
  z-index: 2;
}
.home-banner .banner-content .title {
  color: #fff;
  max-width: 70%;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 500;
  -webkit-animation: slideInLeft 1s ease-out 0.3s both;
          animation: slideInLeft 1s ease-out 0.3s both;
}
@media (max-width: 1200px) {
  .home-banner .banner-content .title {
    max-width: 75%;
    margin-bottom: 12px;
  }
}
@media (max-width: 991px) {
  .home-banner .banner-content .title {
    max-width: 80%;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .home-banner .banner-content .title {
    max-width: 100%;
    margin-bottom: 8px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .home-banner .banner-content .title {
    line-height: 40px;
    margin-bottom: 15px;
  }
}
.home-banner .banner-content p {
  font-size: 24px;
  color: #fff;
  font-weight: 300;
  max-width: 60%;
  line-height: 1.4;
  -webkit-animation: slideInLeft 1s ease-out 0.5s both;
          animation: slideInLeft 1s ease-out 0.5s both;
}
@media (max-width: 1440px) {
  .home-banner .banner-content p {
    font-size: 22px;
  }
}
@media (max-width: 1200px) {
  .home-banner .banner-content p {
    font-size: 22px;
    max-width: 65%;
  }
}
@media (max-width: 991px) {
  .home-banner .banner-content p {
    font-size: 20px;
    max-width: 70%;
  }
}
@media (max-width: 767px) {
  .home-banner .banner-content p {
    font-size: 18px;
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .home-banner .banner-content p {
    font-size: 16px;
  }
}
.home-banner .banner-content .btn-groups {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-animation: slideInUp 1s ease-out 0.7s both;
          animation: slideInUp 1s ease-out 0.7s both;
}
@media (max-width: 1200px) {
  .home-banner .banner-content .btn-groups {
    margin-top: 35px;
    gap: 12px;
  }
}
@media (max-width: 991px) {
  .home-banner .banner-content .btn-groups {
    margin-top: 30px;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .home-banner .banner-content .btn-groups {
    margin-top: 25px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .home-banner .banner-content .btn-groups {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
}
.home-banner .banner-content .btn-groups .btn {
  margin-right: 0;
  padding: 13px 60px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 25px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .home-banner .banner-content .btn-groups .btn {
    padding: 12px 50px;
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .home-banner .banner-content .btn-groups .btn {
    padding: 11px 45px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .home-banner .banner-content .btn-groups .btn {
    padding: 10px 40px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .home-banner .banner-content .btn-groups .btn {
    padding: 8px 30px;
    font-size: 16px;
    width: 100%;
  }
}
.home-banner .banner-content .btn-groups .btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.home-banner .banner-content .banner-info-section {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  -webkit-animation: slideInUp 1s ease-out 0.9s both;
          animation: slideInUp 1s ease-out 0.9s both;
}
@media (max-width: 1200px) {
  .home-banner .banner-content .banner-info-section {
    margin-top: 45px;
    gap: 25px;
  }
}
@media (max-width: 991px) {
  .home-banner .banner-content .banner-info-section {
    margin-top: 40px;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .home-banner .banner-content .banner-info-section {
    margin-top: 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .home-banner .banner-content .banner-info-section {
    margin-top: 30px;
    gap: 15px;
  }
}
.home-banner .banner-content .banner-info-section .banner-info-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .home-banner .banner-content .banner-info-section .banner-info-text {
    width: 100%;
  }
}
.home-banner .banner-content .banner-info-section .banner-info-text p {
  font-size: 26px;
  color: #fff;
  font-weight: 300;
  margin: 0;
  line-height: 1.4;
  padding-left: 20px;
  border-left: 1px solid #fff;
}
@media (max-width: 1200px) {
  .home-banner .banner-content .banner-info-section .banner-info-text p {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .home-banner .banner-content .banner-info-section .banner-info-text p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .home-banner .banner-content .banner-info-section .banner-info-text p {
    font-size: 15px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .home-banner .banner-content .banner-info-section .banner-info-text p {
    font-size: 14px;
  }
}
.home-banner .banner-content .banner-info-section .banner-info-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .home-banner .banner-content .banner-info-section .banner-info-cards {
    gap: 12px;
  }
}
@media (max-width: 991px) {
  .home-banner .banner-content .banner-info-section .banner-info-cards {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .home-banner .banner-content .banner-info-section .banner-info-cards {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .home-banner .banner-content .banner-info-section .banner-info-cards {
    gap: 8px;
  }
}
.home-banner .banner-content .banner-info-section .banner-info-cards .info-card {
  width: 194px;
  height: 123px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 46px;
  font-weight: 400;
  backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.home-banner .banner-content .banner-info-section .banner-info-cards .info-card span {
  display: block;
  font-size: 20px;
}
@media (max-width: 1200px) {
  .home-banner .banner-content .banner-info-section .banner-info-cards .info-card {
    width: 55px;
    height: 55px;
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .home-banner .banner-content .banner-info-section .banner-info-cards .info-card {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .home-banner .banner-content .banner-info-section .banner-info-cards .info-card {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .home-banner .banner-content .banner-info-section .banner-info-cards .info-card {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
.home-banner .banner-content .banner-info-section .banner-info-cards .info-card:hover {
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .home-banner .banner-content {
    text-align: center;
  }
}

.we-buy-section {
  padding: 100px 0;
  background-color: #F9FFF8;
}
@media (max-width: 1200px) {
  .we-buy-section {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .we-buy-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .we-buy-section {
    padding: 50px 0;
  }
  .we-buy-section .title {
    font-size: 28px;
  }
}
.we-buy-section .title {
  font-weight: 500;
}
.we-buy-section p {
  margin: auto;
  text-align: center;
  margin-top: 15px;
  font-size: 20px;
}
.we-buy-section .we-buy-content {
  margin-top: 35px;
  position: relative;
  text-align: center;
}
@media (max-width: 991px) {
  .we-buy-section .we-buy-content {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .we-buy-section .we-buy-content {
    margin-top: 20px;
  }
}
.we-buy-section .we-buy-content .row {
  row-gap: 20px;
}
@media (max-width: 767px) {
  .we-buy-section .we-buy-content .row {
    row-gap: 15px;
  }
}
.we-buy-section .we-buy-content .buycard {
  background-color: #fff;
  border-radius: 20px;
  padding: 35px 45px;
  text-align: center;
  border: 1px solid #53B32C;
}
@media (max-width: 1200px) {
  .we-buy-section .we-buy-content .buycard {
    padding: 30px 40px;
  }
}
@media (max-width: 991px) {
  .we-buy-section .we-buy-content .buycard {
    padding: 25px 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .we-buy-section .we-buy-content .buycard {
    padding: 20px 25px;
  }
}
.we-buy-section .we-buy-content .buycard figure {
  width: 112px;
  height: 112px;
  background-color: #32694A;
  border-radius: 100%;
  margin: auto;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1200px) {
  .we-buy-section .we-buy-content .buycard figure {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 991px) {
  .we-buy-section .we-buy-content .buycard figure {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .we-buy-section .we-buy-content .buycard figure {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .we-buy-section .we-buy-content .buycard figure {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
}
.we-buy-section .we-buy-content .buycard figure img {
  max-width: 60px;
  max-height: 60px;
}
.we-buy-section .we-buy-content .buycard figure.sm-fig {
  width: 85px;
  height: 85px;
  background-color: #FFF1CA;
}
.we-buy-section .we-buy-content .buycard .title {
  font-size: 24px;
  color: #32694A;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .we-buy-section .we-buy-content .buycard .title {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .we-buy-section .we-buy-content .buycard .title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .we-buy-section .we-buy-content .buycard .title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .we-buy-section .we-buy-content .buycard .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.we-buy-section .we-buy-content .buycard p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.75);
}
@media (max-width: 1200px) {
  .we-buy-section .we-buy-content .buycard p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .we-buy-section .we-buy-content .buycard p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .we-buy-section .we-buy-content .buycard p {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .we-buy-section .we-buy-content .buycard p {
    font-size: 13px;
    line-height: 1.4;
  }
}
.we-buy-section .detail-btn {
  text-align: center;
  margin-top: 40px;
}
.we-buy-section .btn-primary {
  margin: auto;
}
.we-buy-section .swiper-button-prev,
.we-buy-section .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #32694A;
  border: 1px solid #32694A;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.we-buy-section .swiper-button-prev::after,
.we-buy-section .swiper-button-next::after {
  font-size: 20px;
}
.we-buy-section .swiper-button-prev:hover,
.we-buy-section .swiper-button-next:hover {
  background-color: rgb(33.5483870968, 70.4516129032, 49.6516129032);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 991px) {
  .we-buy-section .swiper-button-prev,
  .we-buy-section .swiper-button-next {
    display: none;
  }
}
.we-buy-section .swiper-button-prev {
  left: -70px;
}
@media (max-width: 1536px) {
  .we-buy-section .swiper-button-prev {
    left: -60px;
  }
}
@media (max-width: 1200px) {
  .we-buy-section .swiper-button-prev {
    left: -60px;
  }
}
.we-buy-section .swiper-button-next {
  right: -70px;
}
@media (max-width: 1536px) {
  .we-buy-section .swiper-button-next {
    right: -60px;
  }
}
@media (max-width: 1200px) {
  .we-buy-section .swiper-button-next {
    right: -60px;
  }
}
.we-buy-section .swiper-button-disabled {
  opacity: 1;
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}
.we-buy-section .swiper-button-prev.swiper-button-lock,
.we-buy-section .swiper-button-next.swiper-button-lock {
  display: block !important;
  pointer-events: auto !important;
  opacity: 1 !important;
}

.featured-listings-section {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .featured-listings-section {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .featured-listings-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .featured-listings-section {
    padding: 50px 0;
  }
}
.featured-listings-section::before, .featured-listings-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 767px) {
  .featured-listings-section::before, .featured-listings-section::after {
    width: 200px;
    height: 200px;
  }
}
.featured-listings-section::before {
  left: -150px;
  top: 20%;
}
@media (max-width: 767px) {
  .featured-listings-section::before {
    left: -100px;
  }
}
.featured-listings-section::after {
  right: -150px;
  bottom: 20%;
}
@media (max-width: 767px) {
  .featured-listings-section::after {
    right: -100px;
  }
}
.featured-listings-section .container {
  position: relative;
  z-index: 1;
}
.featured-listings-section .title {
  color: #000;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .featured-listings-section .title {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .featured-listings-section .title {
    font-size: 24px;
  }
}
.featured-listings-section .section-subtitle {
  text-align: center;
  color: #000;
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  .featured-listings-section .section-subtitle {
    font-size: 17px;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .featured-listings-section .section-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .featured-listings-section .section-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .featured-listings-section .section-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
.featured-listings-section .featured-listings-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .featured-listings-section .featured-listings-grid {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .featured-listings-section .featured-listings-grid {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .featured-listings-section .featured-listings-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .featured-listings-section .featured-listings-grid {
    gap: 15px;
    margin-bottom: 30px;
  }
}
.featured-listings-section .featured-listing-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}
@media (max-width: 767px) {
  .featured-listings-section .featured-listing-card {
    border-radius: 15px;
  }
}
.featured-listings-section .featured-listing-card:hover figure img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.featured-listings-section .featured-listing-card .card-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .featured-listings-section .featured-listing-card .card-image-wrapper {
    height: 200px;
  }
}
@media (max-width: 991px) {
  .featured-listings-section .featured-listing-card .card-image-wrapper {
    height: 180px;
  }
}
@media (max-width: 767px) {
  .featured-listings-section .featured-listing-card .card-image-wrapper {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .featured-listings-section .featured-listing-card .card-image-wrapper {
    height: 180px;
  }
}
.featured-listings-section .featured-listing-card .card-image-wrapper figure {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
}
.featured-listings-section .featured-listing-card .card-image-wrapper figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.featured-listings-section .featured-listing-card .card-image-wrapper .badge {
  position: absolute;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  z-index: 2;
}
@media (max-width: 480px) {
  .featured-listings-section .featured-listing-card .card-image-wrapper .badge {
    padding: 5px 10px;
    font-size: 11px;
  }
}
.featured-listings-section .featured-listing-card .card-image-wrapper .badge i {
  font-size: 12px;
}
@media (max-width: 480px) {
  .featured-listings-section .featured-listing-card .card-image-wrapper .badge i {
    font-size: 10px;
  }
}
.featured-listings-section .featured-listing-card .card-image-wrapper .verified-badge {
  top: 12px;
  left: 12px;
  background-color: #32694A;
  color: #fff;
}
@media (max-width: 480px) {
  .featured-listings-section .featured-listing-card .card-image-wrapper .verified-badge {
    top: 10px;
    left: 10px;
  }
}
.featured-listings-section .featured-listing-card .card-image-wrapper .category-badge {
  top: 12px;
  right: 12px;
  background-color: #fff;
  color: #000;
}
@media (max-width: 480px) {
  .featured-listings-section .featured-listing-card .card-image-wrapper .category-badge {
    top: 10px;
    right: 10px;
  }
}
.featured-listings-section .featured-listing-card .card-details {
  padding: 20px;
  border-radius: 10px;
  background-color: #F5F5F5;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 12px;
}
@media (max-width: 1200px) {
  .featured-listings-section .featured-listing-card .card-details {
    padding: 18px;
  }
}
@media (max-width: 767px) {
  .featured-listings-section .featured-listing-card .card-details {
    padding: 15px;
  }
}
.featured-listings-section .featured-listing-card .card-details .product-name {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .featured-listings-section .featured-listing-card .card-details .product-name {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .featured-listings-section .featured-listing-card .card-details .product-name {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .featured-listings-section .featured-listing-card .card-details .product-name {
    font-size: 17px;
  }
}
@media (max-width: 480px) {
  .featured-listings-section .featured-listing-card .card-details .product-name {
    font-size: 15px;
    margin-bottom: 6px;
  }
}
.featured-listings-section .featured-listing-card .card-details .seller-name {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .featured-listings-section .featured-listing-card .card-details .seller-name {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .featured-listings-section .featured-listing-card .card-details .seller-name {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .featured-listings-section .featured-listing-card .card-details .seller-name {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.featured-listings-section .featured-listing-card .card-details .product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
}
@media (max-width: 480px) {
  .featured-listings-section .featured-listing-card .card-details .product-info {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
}
.featured-listings-section .featured-listing-card .card-details .product-info .price {
  font-size: 18px;
  font-weight: 400;
  color: #32694A;
}
@media (max-width: 1200px) {
  .featured-listings-section .featured-listing-card .card-details .product-info .price {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .featured-listings-section .featured-listing-card .card-details .product-info .price {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .featured-listings-section .featured-listing-card .card-details .product-info .price {
    font-size: 17px;
  }
}
@media (max-width: 480px) {
  .featured-listings-section .featured-listing-card .card-details .product-info .price {
    font-size: 15px;
  }
}
.featured-listings-section .featured-listing-card .card-details .product-info .quantity {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 1200px) {
  .featured-listings-section .featured-listing-card .card-details .product-info .quantity {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .featured-listings-section .featured-listing-card .card-details .product-info .quantity {
    font-size: 12px;
  }
}
.featured-listings-section .featured-listing-card .card-details .request-quote-btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .featured-listings-section .featured-listing-card .card-details .request-quote-btn {
    padding: 11px 18px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .featured-listings-section .featured-listing-card .card-details .request-quote-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .featured-listings-section .featured-listing-card .card-details .request-quote-btn {
    padding: 9px 14px;
    font-size: 13px;
  }
}
.featured-listings-section .featured-listing-card .card-details .request-quote-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(83, 179, 44, 0.3);
          box-shadow: 0 5px 15px rgba(83, 179, 44, 0.3);
}
.featured-listings-section .view-all-wrapper {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .featured-listings-section .view-all-wrapper {
    margin-top: 35px;
  }
}
@media (max-width: 767px) {
  .featured-listings-section .view-all-wrapper {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .featured-listings-section .view-all-wrapper {
    margin-top: 25px;
  }
}
.featured-listings-section .view-all-wrapper .view-all-btn {
  padding: 15px 50px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .featured-listings-section .view-all-wrapper .view-all-btn {
    padding: 14px 45px;
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .featured-listings-section .view-all-wrapper .view-all-btn {
    padding: 13px 40px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .featured-listings-section .view-all-wrapper .view-all-btn {
    padding: 12px 35px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .featured-listings-section .view-all-wrapper .view-all-btn {
    padding: 11px 30px;
    font-size: 14px;
  }
}
.featured-listings-section .view-all-wrapper .view-all-btn i {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.featured-listings-section .view-all-wrapper .view-all-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 20px rgba(83, 179, 44, 0.4);
          box-shadow: 0 5px 20px rgba(83, 179, 44, 0.4);
}
.featured-listings-section .view-all-wrapper .view-all-btn:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.shop-by-category {
  padding: 70px 0;
}
@media (max-width: 991px) {
  .shop-by-category {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .shop-by-category {
    padding: 40px 0;
  }
}
.shop-by-category .title {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .shop-by-category .title {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .shop-by-category .title {
    margin-bottom: 25px;
  }
}
.shop-by-category .swiper {
  position: relative;
}
.shop-by-category .swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.shop-by-category .swiper .swiper-slide .cat-item {
  max-width: 195px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 195px;
          flex: 0 0 195px;
  text-align: center;
  text-decoration: none;
  color: #000;
}
@media (max-width: 767px) {
  .shop-by-category .swiper .swiper-slide .cat-item {
    max-width: 150px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }
}
@media (max-width: 480px) {
  .shop-by-category .swiper .swiper-slide .cat-item {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.shop-by-category .swiper .swiper-slide .cat-item figure {
  padding-top: calc(195 / 195 * 100%);
  position: relative;
}
.shop-by-category .swiper .swiper-slide .cat-item figure img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
}
.shop-by-category .swiper .swiper-slide .cat-item figure {
  border-radius: 100%;
  overflow: hidden;
  border: 3px solid #32694A;
}
@media (max-width: 767px) {
  .shop-by-category .swiper .swiper-slide .cat-item figure {
    padding-top: calc(150 / 150 * 100%);
    position: relative;
  }
  .shop-by-category .swiper .swiper-slide .cat-item figure img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
  }
  .shop-by-category .swiper .swiper-slide .cat-item figure {
    border-width: 2px;
  }
}
@media (max-width: 480px) {
  .shop-by-category .swiper .swiper-slide .cat-item figure {
    padding-top: calc(120 / 120 * 100%);
    position: relative;
  }
  .shop-by-category .swiper .swiper-slide .cat-item figure img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
  }
  .shop-by-category .swiper .swiper-slide .cat-item figure {
    border-width: 2px;
  }
}
.shop-by-category .swiper .swiper-slide .cat-item figure img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.shop-by-category .swiper .swiper-slide .cat-item .text {
  font-size: 18px;
  font-weight: 400;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .shop-by-category .swiper .swiper-slide .cat-item .text {
    font-size: 16px;
    margin-top: 12px;
  }
}
@media (max-width: 480px) {
  .shop-by-category .swiper .swiper-slide .cat-item .text {
    font-size: 14px;
    margin-top: 10px;
  }
}
.shop-by-category .swiper .swiper-slide .cat-item:hover figure img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.shop-by-category .swiper-pagination {
  position: relative;
  margin-top: 30px;
  display: none;
}
@media (max-width: 991px) {
  .shop-by-category .swiper-pagination {
    display: block;
  }
}
@media (max-width: 767px) {
  .shop-by-category .swiper-pagination {
    margin-top: 25px;
  }
}
@media (max-width: 480px) {
  .shop-by-category .swiper-pagination {
    margin-top: 20px;
  }
}
.shop-by-category .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 5px;
}
.shop-by-category .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #32694A;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.shop-by-category .swiper-button-prev,
.shop-by-category .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #32694A;
  border: 1px solid #32694A;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shop-by-category .swiper-button-prev::after,
.shop-by-category .swiper-button-next::after {
  font-size: 20px;
}
.shop-by-category .swiper-button-prev:hover,
.shop-by-category .swiper-button-next:hover {
  background-color: rgb(33.5483870968, 70.4516129032, 49.6516129032);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 991px) {
  .shop-by-category .swiper-button-prev,
  .shop-by-category .swiper-button-next {
    display: none;
  }
}
.shop-by-category .swiper-button-prev {
  left: -70px;
}
@media (max-width: 1536px) {
  .shop-by-category .swiper-button-prev {
    left: -60px;
  }
}
@media (max-width: 1200px) {
  .shop-by-category .swiper-button-prev {
    left: -60px;
  }
}
.shop-by-category .swiper-button-next {
  right: -70px;
}
@media (max-width: 1536px) {
  .shop-by-category .swiper-button-next {
    right: -60px;
  }
}
@media (max-width: 1200px) {
  .shop-by-category .swiper-button-next {
    right: -60px;
  }
}
.shop-by-category .swiper-button-disabled {
  opacity: 1;
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}

.about-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .about-section {
    padding: 40px 0;
  }
}
.about-section .about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media (max-width: 991px) {
  .about-section .about-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 50px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .about-section .about-content {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .about-section .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.about-section .about-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 393px;
          flex: 0 0 393px;
  max-width: 393px;
  position: relative;
}
.about-section .about-image figure {
  padding-top: calc(495 / 393 * 100%);
  position: relative;
}
.about-section .about-image figure img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
}
.about-section .about-image figure {
  border-radius: 0 100px 0 100px;
  overflow: hidden;
  position: relative;
}
.about-section .about-image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section .about-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -30px;
  left: 50px;
  right: 0;
  bottom: 0;
  border-radius: 0 100px 0 100px;
  z-index: 1;
  border: 1px solid #000;
}
.about-section .about-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 20px;
}
@media (max-width: 991px) {
  .about-section .about-text {
    padding-left: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-bottom: 70px;
  }
}
.about-section .about-text .about-title {
  color: #1D1D1D;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
}
@media (max-width: 767px) {
  .about-section .about-text .about-title {
    margin-bottom: 15px;
  }
}
.about-section .about-text .about-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: -20px;
  width: 25%;
  height: 1px;
  background-color: #000;
}
.about-section .about-text .about-description {
  font-size: 18px;
  color: #1D1D1D;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .about-section .about-text .about-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .about-section .about-text .about-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.about-section .about-text .about-button .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  background-color: #32694A;
  border: none;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.about-section .about-text .about-button .btn:hover {
  background-color: rgb(33.5483870968, 70.4516129032, 49.6516129032);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(50, 105, 74, 0.3);
          box-shadow: 0 5px 15px rgba(50, 105, 74, 0.3);
}
.about-section .about-text .about-button .btn i {
  font-size: 18px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.about-section .about-text .about-button .btn:hover i {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
@media (max-width: 767px) {
  .about-section .about-text .about-button .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  .about-section .about-text .about-button .btn i {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .about-section .about-text .about-button .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  .about-section .about-text .about-button .btn i {
    font-size: 14px;
  }
}

.blog-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 991px) {
  .blog-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .blog-section {
    padding: 40px 0;
  }
}
.blog-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .blog-section .section-header {
    margin-bottom: 30px;
  }
}
.blog-section .section-header .title {
  color: #000;
  margin-bottom: 15px;
}
.blog-section .blog-swiper {
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .blog-section .blog-swiper {
    padding-bottom: 30px;
  }
}
.blog-section .blog-swiper .blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.blog-section .blog-swiper .blog-card:hover .card-image figure img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.blog-section .blog-swiper .card-image {
  position: relative;
  overflow: hidden;
}
.blog-section .blog-swiper .card-image figure {
  padding-top: calc(200 / 350 * 100%);
  position: relative;
}
.blog-section .blog-swiper .card-image figure img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
}
.blog-section .blog-swiper .card-image figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
}
.blog-section .blog-swiper .card-image figure img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.blog-card:hover .blog-section .blog-swiper .card-image figure img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.blog-section .blog-swiper .card-content {
  padding: 25px;
  padding-top: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .blog-section .blog-swiper .card-content {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .blog-section .blog-swiper .card-content {
    padding: 15px;
  }
}
.blog-section .blog-swiper .card-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .blog-section .blog-swiper .card-title {
    font-size: 18px;
    font-weight: 500;
  }
}
.blog-section .blog-swiper .card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}
@media (max-width: 480px) {
  .blog-section .blog-swiper .card-meta {
    gap: 10px;
    font-size: 13px;
  }
}
.blog-section .blog-swiper .card-meta .date,
.blog-section .blog-swiper .card-meta .author {
  position: relative;
  display: inline-block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.blog-section .blog-swiper .card-meta .date:not(:last-child)::after,
.blog-section .blog-swiper .card-meta .author:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -12px;
  color: #666;
}
@media (max-width: 480px) {
  .blog-section .blog-swiper .card-meta .date:not(:last-child)::after,
  .blog-section .blog-swiper .card-meta .author:not(:last-child)::after {
    display: none;
  }
}
.blog-section .blog-swiper .card-excerpt {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .blog-section .blog-swiper .card-excerpt {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 480px) {
  .blog-section .blog-swiper .card-excerpt {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
.blog-section .blog-swiper .read-more {
  color: #32694A;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blog-section .blog-swiper .read-more:hover {
  color: rgb(33.5483870968, 70.4516129032, 49.6516129032);
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
@media (max-width: 480px) {
  .blog-section .blog-swiper .read-more {
    font-size: 13px;
  }
}
.blog-section .blog-swiper .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.blog-section .blog-swiper .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
}
.blog-section .swiper-pagination {
  position: relative;
  margin-top: 30px;
  display: block;
}
@media (min-width: 992px) {
  .blog-section .swiper-pagination {
    display: none;
  }
}
@media (max-width: 767px) {
  .blog-section .swiper-pagination {
    margin-top: 25px;
  }
}
@media (max-width: 480px) {
  .blog-section .swiper-pagination {
    margin-top: 20px;
  }
}
.blog-section .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 5px;
}
.blog-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #32694A;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.blog-section .blog-nav-next,
.blog-section .blog-nav-prev {
  width: 50px;
  height: 50px;
  background-color: #32694A;
  border-radius: 50%;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blog-section .blog-nav-next::after,
.blog-section .blog-nav-prev::after {
  font-size: 18px;
  font-weight: bold;
}
.blog-section .blog-nav-next:hover,
.blog-section .blog-nav-prev:hover {
  background-color: rgb(33.5483870968, 70.4516129032, 49.6516129032);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 991px) {
  .blog-section .blog-nav-next,
  .blog-section .blog-nav-prev {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .blog-section .blog-nav-next,
  .blog-section .blog-nav-prev {
    width: 45px;
    height: 45px;
  }
  .blog-section .blog-nav-next::after,
  .blog-section .blog-nav-prev::after {
    font-size: 16px;
  }
}
.blog-section .blog-nav-next.swiper-button-disabled,
.blog-section .blog-nav-prev.swiper-button-disabled {
  opacity: 1;
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}
.blog-section .blog-nav-next {
  right: -70px;
}
@media (max-width: 1536px) {
  .blog-section .blog-nav-next {
    right: -60px;
  }
}
@media (max-width: 1200px) {
  .blog-section .blog-nav-next {
    right: -60px;
  }
}
.blog-section .blog-nav-prev {
  left: -70px;
}
@media (max-width: 1536px) {
  .blog-section .blog-nav-prev {
    left: -60px;
  }
}
@media (max-width: 1200px) {
  .blog-section .blog-nav-prev {
    left: -60px;
  }
}

.stats-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: #F9FFF8;
}
@media (max-width: 1200px) {
  .stats-section {
    padding: 70px 0;
  }
}
@media (max-width: 991px) {
  .stats-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .stats-section {
    padding: 50px 0;
  }
}
.stats-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .stats-section .section-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .stats-section .section-header {
    margin-bottom: 30px;
  }
}
.stats-section .section-header .title {
  color: #000;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .stats-section .section-header .title {
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .stats-section .section-header .title {
    margin-bottom: 10px;
  }
}
.stats-section .section-header .subtitle {
  color: #666;
  font-size: 18px;
}
@media (max-width: 767px) {
  .stats-section .section-header .subtitle {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .stats-section .section-header .subtitle {
    font-size: 14px;
  }
}
.stats-section .stats-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 90%;
  margin: auto;
}
@media (max-width: 1200px) {
  .stats-section .stats-grid {
    gap: 25px;
  }
}
@media (max-width: 991px) {
  .stats-section .stats-grid {
    -ms-grid-columns: 1fr 25px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .stats-section .stats-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .stats-section .stats-grid {
    gap: 15px;
  }
}
.stats-section .stats-card {
  background: #fff;
  border-radius: 0 50px 0 50px;
  padding: 40px 30px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.stats-section .stats-card:nth-child(even) {
  border-radius: 50px 0 50px 0;
}
.stats-section .stats-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1200px) {
  .stats-section .stats-card {
    padding: 25px;
    min-height: 180px;
  }
}
@media (max-width: 991px) {
  .stats-section .stats-card {
    padding: 25px;
    min-height: 160px;
  }
}
@media (max-width: 767px) {
  .stats-section .stats-card {
    padding: 25px;
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .stats-section .stats-card {
    padding: 20px;
  }
}
.stats-section .stats-card.stats-card-white {
  background-color: #fff;
  color: #1D1D1D;
}
.stats-section .stats-card.stats-card-white .card-title {
  color: #1D1D1D;
}
.stats-section .stats-card.stats-card-white .stat-item {
  color: #666;
}
.stats-section .stats-card.stats-card-green {
  background-color: #32694A;
  color: #fff;
}
.stats-section .stats-card.stats-card-green .card-title {
  color: #fff;
}
.stats-section .stats-card.stats-card-green .stat-item {
  color: rgba(255, 255, 255, 0.9);
}
.stats-section .stats-card.stats-card-beige {
  background-color: #FFE08B;
  color: #1D1D1D;
}
.stats-section .stats-card.stats-card-beige .card-title {
  color: #1D1D1D;
}
.stats-section .stats-card.stats-card-beige .stat-item {
  color: #666;
}
.stats-section .stats-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  right: 20px;
  top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
}
@media (max-width: 1200px) {
  .stats-section .stats-card .card-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .stats-section .stats-card .card-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .stats-section .stats-card .card-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .stats-section .stats-card .card-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.stats-section .stats-card .card-title {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.3;
  text-align: center;
  font-weight: 700;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 1200px) {
  .stats-section .stats-card .card-title {
    font-size: 17px;
    margin-bottom: 18px;
  }
}
@media (max-width: 991px) {
  .stats-section .stats-card .card-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .stats-section .stats-card .card-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.stats-section .stats-card .card-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 375px;
}
.stats-section .stats-card .card-content .stat-item {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left;
}
.stats-section .stats-card .card-content .stat-item:last-child {
  margin-bottom: 0;
}
.stats-section .stats-card .card-content .stat-item strong {
  font-weight: 700;
  color: inherit;
  display: block;
  margin-bottom: 5px;
}
@media (max-width: 1200px) {
  .stats-section .stats-card .card-content .stat-item {
    font-size: 15px;
    margin-bottom: 12px;
  }
}
@media (max-width: 991px) {
  .stats-section .stats-card .card-content .stat-item {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .stats-section .stats-card .card-content .stat-item {
    font-size: 15px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .stats-section .stats-card .card-content .stat-item {
    font-size: 13px;
    margin-bottom: 8px;
  }
}
.stats-section .stats-card {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeInUp 0.6s ease forwards;
          animation: fadeInUp 0.6s ease forwards;
}
.stats-section .stats-card:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.stats-section .stats-card:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.stats-section .stats-card:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.stats-section .stats-card:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.stats-section .stats-card:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.stats-section .stats-card:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@media (max-width: 1200px) {
  .stats-section .stats-grid {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .stats-section .stats-card {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .stats-section .stats-grid {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .stats-section .stats-grid {
    gap: 12px;
  }
}

@-webkit-keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes scaleInBanner {
  0% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleInBanner {
  0% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.buycard-link {
  text-decoration: none;
}
.featured-listing-link {
  text-decoration: none;
}
.product-cards-section {
  padding: 50px 0;
}
.product-cards-section .product-cards-swiper {
  position: relative;
  overflow: hidden;
}
.product-cards-section .product-cards-swiper .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.product-cards-section .product-cards-swiper .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-cards-section .controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}
.product-cards-section .controls .swiper-button-prev,
.product-cards-section .controls .swiper-button-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #32694A;
  border-radius: 50%;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
  top: 0;
  margin: 0;
}
.product-cards-section .controls .swiper-button-prev::after,
.product-cards-section .controls .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}
.product-cards-section .controls .swiper-button-prev:hover,
.product-cards-section .controls .swiper-button-next:hover {
  background-color: rgb(33.5483870968, 70.4516129032, 49.6516129032);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 991px) {
  .product-cards-section .controls .swiper-button-prev,
  .product-cards-section .controls .swiper-button-next {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .product-cards-section .controls .swiper-button-prev,
  .product-cards-section .controls .swiper-button-next {
    width: 45px;
    height: 45px;
  }
  .product-cards-section .controls .swiper-button-prev::after,
  .product-cards-section .controls .swiper-button-next::after {
    font-size: 16px;
  }
}
.product-cards-section .controls .swiper-button-prev.swiper-button-disabled,
.product-cards-section .controls .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
  cursor: not-allowed;
}
.product-cards-section .controls .swiper-button-prev.swiper-button-disabled:hover,
.product-cards-section .controls .swiper-button-next.swiper-button-disabled:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-color: #ccc;
}
.product-cards-section .controls .swiper-button-prev {
  left: -70px;
}
@media (max-width: 1536px) {
  .product-cards-section .controls .swiper-button-prev {
    left: -60px;
  }
}
@media (max-width: 1200px) {
  .product-cards-section .controls .swiper-button-prev {
    left: -60px;
  }
}
.product-cards-section .controls .swiper-button-next {
  right: -70px;
}
@media (max-width: 1536px) {
  .product-cards-section .controls .swiper-button-next {
    right: -60px;
  }
}
@media (max-width: 1200px) {
  .product-cards-section .controls .swiper-button-next {
    right: -60px;
  }
}