.inner-banner {
  height: 350px;
  position: relative;
}
@media (max-width: 1200px) {
  .inner-banner {
    height: 300px;
  }
}
@media (max-width: 991px) {
  .inner-banner {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .inner-banner {
    height: 200px;
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .inner-banner {
    height: 180px;
  }
}
.inner-banner figure {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .inner-banner figure {
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .inner-banner figure {
    border-radius: 15px;
  }
}
.inner-banner figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-banner .content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .inner-banner .content {
    padding: 0 15px;
  }
}
.inner-banner .content .title {
  color: #fff;
}
.inner-banner .content p.subtitle,
.inner-banner .content p {
  color: #fff;
  margin-top: 15px;
  font-size: 22px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .inner-banner .content p.subtitle,
  .inner-banner .content p {
    font-size: 16px;
    margin-top: 12px;
  }
}
@media (max-width: 480px) {
  .inner-banner .content p.subtitle,
  .inner-banner .content p {
    font-size: 14px;
    margin-top: 10px;
  }
}
.inner-banner .content .mx-width {
  max-width: 60%;
}
.inner-banner .content .btn-groups {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .inner-banner .content .btn-groups {
    margin-top: 25px;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .inner-banner .content .btn-groups {
    margin-top: 20px;
    gap: 10px;
    -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;
  }
}
.inner-banner .content .btn-groups .btn {
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
@media (max-width: 767px) {
  .inner-banner .content .btn-groups .btn {
    padding: 10px 35px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .inner-banner .content .btn-groups .btn {
    padding: 10px 30px;
    font-size: 14px;
    width: 100%;
    max-width: 250px;
  }
}
.inner-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);
}

.cta-section {
  background-color: rgb(239, 250, 255);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cta-section {
    padding: 70px 0;
  }
}
@media (max-width: 991px) {
  .cta-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .cta-section {
    padding: 50px 0;
  }
}
.cta-section .cta-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: 1200px) {
  .cta-section .cta-content {
    gap: 60px;
  }
}
@media (max-width: 991px) {
  .cta-section .cta-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cta-section .cta-content {
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .cta-section .cta-content {
    gap: 30px;
  }
}
.cta-section .cta-illustration {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  width: 100%;
}
@media (max-width: 991px) {
  .cta-section .cta-illustration {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.cta-section .cta-illustration .illustration-container {
  position: relative;
  width: 410px;
  border: 2px dashed #B8D4E8;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cta-section .cta-illustration .illustration-container {
    width: 350px;
  }
}
@media (max-width: 991px) {
  .cta-section .cta-illustration .illustration-container {
    width: 320px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .cta-section .cta-illustration .illustration-container {
    width: 100%;
  }
}
.cta-section .cta-illustration .illustration-container figure {
  padding-top: calc(335 / 410 * 100%);
  position: relative;
}
.cta-section .cta-illustration .illustration-container figure img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
}
@media (max-width: 1200px) {
  .cta-section .cta-illustration .illustration-container figure {
    padding-top: calc(335 / 350 * 100%);
    position: relative;
  }
  .cta-section .cta-illustration .illustration-container figure img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
  }
}
@media (max-width: 991px) {
  .cta-section .cta-illustration .illustration-container figure {
    padding-top: calc(335 / 320 * 100%);
    position: relative;
  }
  .cta-section .cta-illustration .illustration-container figure img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
  }
}
@media (max-width: 767px) {
  .cta-section .cta-illustration .illustration-container figure {
    padding-top: calc(335 / 280 * 100%);
    position: relative;
  }
  .cta-section .cta-illustration .illustration-container figure img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
  }
}
@media (max-width: 480px) {
  .cta-section .cta-illustration .illustration-container figure {
    padding-top: calc(335 / 250 * 100%);
    position: relative;
  }
  .cta-section .cta-illustration .illustration-container figure img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
  }
}
.cta-section .cta-illustration .illustration-container figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
.cta-section .cta-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}
@media (max-width: 991px) {
  .cta-section .cta-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.cta-section .cta-text .cta-title {
  font-weight: 500;
  color: #1D1D1D;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 80%;
}
@media (max-width: 1200px) {
  .cta-section .cta-text .cta-title {
    max-width: 85%;
    margin-bottom: 18px;
  }
}
@media (max-width: 991px) {
  .cta-section .cta-text .cta-title {
    max-width: 100%;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .cta-section .cta-text .cta-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .cta-section .cta-text .cta-title {
    margin-bottom: 10px;
  }
}
.cta-section .cta-text .cta-description {
  max-width: 90%;
  color: #1D1D1D;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.8;
  font-size: 18px;
}
@media (max-width: 1200px) {
  .cta-section .cta-text .cta-description {
    max-width: 95%;
    font-size: 18px;
    margin-bottom: 28px;
  }
}
@media (max-width: 991px) {
  .cta-section .cta-text .cta-description {
    max-width: 100%;
    font-size: 16px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .cta-section .cta-text .cta-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .cta-section .cta-text .cta-description {
    font-size: 15px;
    margin-bottom: 18px;
  }
}
.cta-section .cta-text .cta-button {
  gap: 10px;
}
.cta-section .cta-text .cta-button 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;
}
.cta-section .cta-text .cta-button span {
  font-weight: 500;
}
@media (max-width: 1200px) {
  .cta-section .cta-text .cta-button {
    padding: 14px 28px;
    font-size: 15px;
  }
  .cta-section .cta-text .cta-button i {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .cta-section .cta-text .cta-button {
    padding: 13px 26px;
    font-size: 15px;
  }
  .cta-section .cta-text .cta-button i {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .cta-section .cta-text .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }
  .cta-section .cta-text .cta-button i {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .cta-section .cta-text .cta-button {
    padding: 10px 20px;
    font-size: 13px;
  }
  .cta-section .cta-text .cta-button i {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .cta-section .cta-content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cta-section .illustration-container {
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .cta-section .cta-content {
    gap: 25px;
  }
}

.partners-section {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.partners-section .partners-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .partners-section .partners-marquee {
    height: 110px;
  }
}
@media (max-width: 991px) {
  .partners-section .partners-marquee {
    height: 100px;
  }
}
@media (max-width: 767px) {
  .partners-section .partners-marquee {
    height: 90px;
  }
}
@media (max-width: 480px) {
  .partners-section .partners-marquee {
    height: 80px;
  }
}
.partners-section .marquee-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: marquee 30s linear infinite;
          animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.partners-section .marquee-content:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.partners-section .partner-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 60px;
  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) {
  .partners-section .partner-logo {
    margin-right: 50px;
  }
}
@media (max-width: 991px) {
  .partners-section .partner-logo {
    margin-right: 40px;
  }
}
@media (max-width: 767px) {
  .partners-section .partner-logo {
    margin-right: 30px;
  }
}
@media (max-width: 480px) {
  .partners-section .partner-logo {
    margin-right: 25px;
  }
}
.partners-section .partner-logo:last-child {
  margin-right: 0;
}
.partners-section .logo-placeholder {
  background-color: #ffffff;
  border-radius: 10px;
  min-width: 200px;
  height: 80px;
  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;
  -webkit-box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
          box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .partners-section .logo-placeholder {
    min-width: 180px;
    height: 70px;
  }
}
@media (max-width: 991px) {
  .partners-section .logo-placeholder {
    min-width: 160px;
    height: 65px;
  }
}
@media (max-width: 767px) {
  .partners-section .logo-placeholder {
    min-width: 140px;
    height: 60px;
  }
}
.partners-section .logo-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.partners-section .logo-placeholder:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
          box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .partners-section .partners-marquee {
    height: auto;
    min-height: 90px;
  }
}

.detail-banner {
  position: relative;
}
.detail-banner figure {
  position: relative;
  width: 100%;
  height: 100%;
  height: 444px;
}
@media (max-width: 1200px) {
  .detail-banner figure {
    height: 380px;
  }
}
@media (max-width: 991px) {
  .detail-banner figure {
    height: 320px;
  }
}
@media (max-width: 767px) {
  .detail-banner figure {
    height: 280px;
  }
}
@media (max-width: 480px) {
  .detail-banner figure {
    height: 240px;
  }
}
.detail-banner figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail-banner .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .detail-banner .content {
    padding: 0 15px;
  }
}
.detail-banner .content .title {
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .detail-banner .content .title {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .detail-banner .content .title {
    margin-bottom: 12px;
  }
}
.detail-banner .content p {
  color: #fff;
  font-size: 24px;
  margin: auto;
  margin-bottom: 30px;
  max-width: 70%;
}
@media (max-width: 1200px) {
  .detail-banner .content p {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .detail-banner .content p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .detail-banner .content p {
    font-size: 16px;
    margin-bottom: 15px;
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .detail-banner .content p {
    font-size: 14px;
    margin-bottom: 12px;
    max-width: 95%;
  }
}
.detail-banner .content .btn-groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .detail-banner .content .btn-groups {
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .detail-banner .content .btn-groups {
    gap: 6px;
    -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;
  }
}

.breadcrumb-section {
  position: absolute;
  left: 0;
  top: 30px;
  width: 100%;
}
@media (max-width: 991px) {
  .breadcrumb-section {
    top: 25px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-section {
    top: 20px;
  }
}
@media (max-width: 480px) {
  .breadcrumb-section {
    top: 15px;
  }
}
.breadcrumb-section .breadcrumb {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .breadcrumb-section .breadcrumb {
    padding: 0 10px;
  }
}
.breadcrumb-section .breadcrumb li {
  color: #fff;
  margin-right: 10px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .breadcrumb-section .breadcrumb li {
    margin-right: 8px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .breadcrumb-section .breadcrumb li {
    margin-right: 6px;
    font-size: 12px;
  }
}
.breadcrumb-section .breadcrumb li a {
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .breadcrumb-section .breadcrumb li a {
    margin-right: 8px;
  }
}
@media (max-width: 480px) {
  .breadcrumb-section .breadcrumb li a {
    margin-right: 6px;
  }
}
.breadcrumb-section .breadcrumb li:last-child a {
  font-weight: 500;
}

.home-page .partners-section .logo-placeholder {
  background-color: transparent;
}

.product-card {
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.product-card .product-image {
  position: relative;
  background-color: rgb(245, 245, 245);
  height: 220px;
  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;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 20px;
}
@media (max-width: 1460px) {
  .product-card .product-image {
    height: 190px;
  }
}
@media (max-width: 1200px) {
  .product-card .product-image {
    height: 200px;
  }
}
@media (max-width: 991px) {
  .product-card .product-image {
    height: 180px;
    border-radius: 15px;
  }
}
@media (max-width: 767px) {
  .product-card .product-image {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .product-card .product-image {
    height: 180px;
    border-radius: 12px;
  }
}
.product-card .product-image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 20px;
}
@media (max-width: 991px) {
  .product-card .product-image img {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .product-card .product-image img {
    padding: 12px;
  }
}
@media (max-width: 480px) {
  .product-card .product-image img {
    padding: 10px;
  }
}
.product-card .product-image .wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  background-color: #32694A;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .product-card .product-image .wishlist-btn {
    width: 30px;
    height: 30px;
  }
}
.product-card .product-image .wishlist-btn i {
  font-size: 14px;
}
@media (max-width: 767px) {
  .product-card .product-image .wishlist-btn i {
    font-size: 12px;
  }
}
.product-card .product-info {
  padding: 20px;
  background-color: rgb(245, 245, 245);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 20px;
  margin-top: 15px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .product-card .product-info {
    padding: 15px;
    border-radius: 15px;
    margin-top: 12px;
  }
}
@media (max-width: 767px) {
  .product-card .product-info {
    padding: 12px;
  }
}
@media (max-width: 480px) {
  .product-card .product-info {
    padding: 10px;
    border-radius: 12px;
    margin-top: 10px;
  }
}
.product-card .product-info .btn {
  padding: 10px;
  border-radius: 300px;
  font-size: 14px;
  color: #fff;
}
@media (max-width: 991px) {
  .product-card .product-info .btn {
    padding: 8px;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .product-card .product-info .btn {
    padding: 8px 12px;
  }
}
@media (max-width: 480px) {
  .product-card .product-info .btn {
    padding: 8px 10px;
    font-size: 12px;
  }
}
.product-card .product-info .product-title {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 8px;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .product-card .product-info .product-title {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .product-card .product-info .product-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .product-card .product-info .product-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .product-card .product-info .product-title {
    font-size: 15px;
    margin-bottom: 6px;
  }
}
.product-card .product-info p {
  font-size: 18px;
  margin-bottom: 8px;
}
@media (max-width: 1200px) {
  .product-card .product-info p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .product-card .product-info p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .product-card .product-info p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-card .product-info p {
    font-size: 13px;
    margin-bottom: 6px;
  }
}
.product-card:hover .product-info {
  background-color: #fff;
}
.product-card:hover .product-image {
  background-color: #fff;
}
.product-card:hover .wishlist-btn {
  opacity: 1;
  visibility: visible;
}
.product-card:hover .btn {
  background-color: #32694A;
}

.testimonial-section {
  background-color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .testimonial-section {
    padding: 70px 0;
  }
}
@media (max-width: 991px) {
  .testimonial-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .testimonial-section {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  .testimonial-section {
    padding: 40px 0;
  }
}
.testimonial-section .title {
  color: #000000;
}
@media (max-width: 767px) {
  .testimonial-section .title {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .testimonial-section .title {
    margin-bottom: 30px;
  }
}
.testimonial-section p {
  margin-bottom: 40px;
  font-size: 20px;
}
.testimonial-section .testimonial-swiper {
  position: relative;
  padding-bottom: 15px;
}
.testimonial-section .testimonial-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  -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;
  padding: 30px 25px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-card {
    border-radius: 15px;
    padding: 25px 20px;
  }
}
@media (max-width: 480px) {
  .testimonial-section .testimonial-card {
    padding: 20px 15px;
  }
}
.testimonial-section .testimonial-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.testimonial-section .quote-mark {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 50px;
  height: 50px;
  opacity: 0.15;
  z-index: 0;
}
@media (max-width: 767px) {
  .testimonial-section .quote-mark {
    width: 60px;
    height: 60px;
    top: 15px;
    right: 20px;
  }
}
@media (max-width: 480px) {
  .testimonial-section .quote-mark {
    width: 50px;
    height: 50px;
    top: 12px;
    right: 15px;
  }
}
.testimonial-section .quote-mark img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonial-section .testimonial-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;
  text-align: left;
}
.testimonial-section .testimonial-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-header {
    margin-bottom: 15px;
  }
}
.testimonial-section .testimonial-header .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-header .profile-image {
    width: 50px;
    height: 50px;
    margin-right: 12px;
  }
}
@media (max-width: 480px) {
  .testimonial-section .testimonial-header .profile-image {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }
}
.testimonial-section .testimonial-header .profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-section .testimonial-header .author-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.testimonial-section .testimonial-header .author-name {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-header .author-name {
    font-size: 16px;
    margin-bottom: 3px;
  }
}
@media (max-width: 480px) {
  .testimonial-section .testimonial-header .author-name {
    font-size: 15px;
  }
}
.testimonial-section .testimonial-header .author-title {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-header .author-title {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .testimonial-section .testimonial-header .author-title {
    font-size: 12px;
  }
}
.testimonial-section .testimonial-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-body {
    margin-bottom: 15px;
  }
}
.testimonial-section .quote-icon {
  color: #53B32C;
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .testimonial-section .quote-icon {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .testimonial-section .quote-icon {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.testimonial-section .testimonial-text {
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}
@media (max-width: 1200px) {
  .testimonial-section .testimonial-text {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-text {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .testimonial-section .testimonial-text {
    font-size: 13px;
  }
}
.testimonial-section .testimonial-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-rating {
    gap: 4px;
  }
}
@media (max-width: 480px) {
  .testimonial-section .testimonial-rating {
    gap: 3px;
  }
}
.testimonial-section .testimonial-rating i {
  color: #FFD700;
  font-size: 18px;
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-rating i {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .testimonial-section .testimonial-rating i {
    font-size: 14px;
  }
}
.testimonial-section .testimonial-author {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 15px;
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-author {
    -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: 10px;
  }
}
.testimonial-section .author-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.testimonial-section .author-name {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media (max-width: 1200px) {
  .testimonial-section .author-name {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .testimonial-section .author-name {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .testimonial-section .author-name {
    font-size: 17px;
  }
}
@media (max-width: 480px) {
  .testimonial-section .author-name {
    font-size: 16px;
  }
}
.testimonial-section .author-position {
  color: #666666;
  font-size: 14px;
  margin: 0;
}
@media (max-width: 1200px) {
  .testimonial-section .author-position {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .testimonial-section .author-position {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .testimonial-section .author-position {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .testimonial-section .author-position {
    font-size: 13px;
  }
}
.testimonial-section .swiper-pagination {
  position: relative;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .testimonial-section .swiper-pagination {
    margin-top: 25px;
  }
}
@media (max-width: 480px) {
  .testimonial-section .swiper-pagination {
    margin-top: 20px;
  }
}
.testimonial-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;
}
.testimonial-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #32694A;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.testimonial-section .testimonial-nav-next,
.testimonial-section .testimonial-nav-prev {
  width: 50px;
  height: 50px;
  background-color: #53B32C;
  border-radius: 50%;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.testimonial-section .testimonial-nav-next::after,
.testimonial-section .testimonial-nav-prev::after {
  font-size: 18px;
  font-weight: bold;
}
.testimonial-section .testimonial-nav-next:hover,
.testimonial-section .testimonial-nav-prev:hover {
  background-color: rgb(64.0179372197, 138.0627802691, 33.9372197309);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 1200px) {
  .testimonial-section .testimonial-nav-next,
  .testimonial-section .testimonial-nav-prev {
    width: 45px;
    height: 45px;
  }
  .testimonial-section .testimonial-nav-next::after,
  .testimonial-section .testimonial-nav-prev::after {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-nav-next,
  .testimonial-section .testimonial-nav-prev {
    width: 40px;
    height: 40px;
  }
  .testimonial-section .testimonial-nav-next::after,
  .testimonial-section .testimonial-nav-prev::after {
    font-size: 14px;
  }
}
.testimonial-section .testimonial-nav-next.swiper-button-disabled,
.testimonial-section .testimonial-nav-prev.swiper-button-disabled {
  opacity: 1;
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}
.testimonial-section .testimonial-nav-next {
  right: -70px;
}
@media (max-width: 1200px) {
  .testimonial-section .testimonial-nav-next {
    right: -60px;
  }
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-nav-next {
    right: -50px;
  }
}
.testimonial-section .testimonial-nav-prev {
  left: -70px;
}
@media (max-width: 1200px) {
  .testimonial-section .testimonial-nav-prev {
    left: -60px;
  }
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-nav-prev {
    left: -50px;
  }
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-card {
    text-align: left;
  }
}

.scrap-help-section {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  background-color: #EFFFFE;
}
@media (max-width: 1200px) {
  .scrap-help-section {
    padding: 25px 0;
  }
}
@media (max-width: 991px) {
  .scrap-help-section {
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  .scrap-help-section {
    padding: 15px 0;
  }
}
.scrap-help-section .scrap-help-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 230px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1200px) {
  .scrap-help-section .scrap-help-content {
    min-height: 200px;
    border-radius: 18px;
  }
}
@media (max-width: 991px) {
  .scrap-help-section .scrap-help-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
    border-radius: 15px;
  }
}
@media (max-width: 767px) {
  .scrap-help-section .scrap-help-content {
    border-radius: 12px;
  }
}
.scrap-help-section .content-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
  padding: 40px;
}
@media (max-width: 1200px) {
  .scrap-help-section .content-left {
    padding: 35px;
  }
}
@media (max-width: 991px) {
  .scrap-help-section .content-left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    width: 100%;
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .scrap-help-section .content-left {
    padding: 25px 15px;
  }
}
@media (max-width: 480px) {
  .scrap-help-section .content-left {
    padding: 20px 10px;
  }
}
.scrap-help-section .content-left .btn {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 991px) {
  .scrap-help-section .content-left .btn {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
.scrap-help-section .content-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 1200px) {
  .scrap-help-section .content-right {
    width: 35%;
    height: 200px;
    border-radius: 0 0 0 40px;
  }
}
@media (max-width: 991px) {
  .scrap-help-section .content-right {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 0 0 15px 15px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 767px) {
  .scrap-help-section .content-right {
    height: 200px;
    border-radius: 0 0 12px 12px;
  }
}
@media (max-width: 480px) {
  .scrap-help-section .content-right {
    height: 180px;
  }
}
.scrap-help-section .content-right::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #EFFFFE;
  background: -webkit-gradient(linear, left top, right top, color-stop(13%, rgb(239, 255, 254)), to(rgba(239, 255, 254, 0.21)));
  background: linear-gradient(90deg, rgb(239, 255, 254) 13%, rgba(239, 255, 254, 0.21) 100%);
  z-index: 1;
}
.scrap-help-section .scrap-help-title {
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .scrap-help-section .scrap-help-title {
    margin-bottom: 18px;
  }
}
@media (max-width: 991px) {
  .scrap-help-section .scrap-help-title {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .scrap-help-section .scrap-help-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .scrap-help-section .scrap-help-title {
    margin-bottom: 10px;
  }
}
.scrap-help-section .scrap-help-subtitle {
  color: #000;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .scrap-help-section .scrap-help-subtitle {
    font-size: 17px;
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .scrap-help-section .scrap-help-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .scrap-help-section .scrap-help-subtitle {
    font-size: 15px;
    margin-bottom: 18px;
  }
}
@media (max-width: 480px) {
  .scrap-help-section .scrap-help-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.scrap-help-section .scrap-help-image {
  width: 100%;
  height: 100%;
  position: relative;
}
.scrap-help-section .scrap-help-image figure {
  width: 100%;
  height: 100%;
  margin: 0;
  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;
}
.scrap-help-section .scrap-help-image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .scrap-help-section .scrap-help-content .content-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .scrap-help-section .scrap-help-content .content-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 767px) {
  .scrap-help-section .scrap-help-content .content-left {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 480px) {
  .scrap-help-section .scrap-help-content .content-left {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.tote-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .tote-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .tote-section {
    padding: 50px 0;
  }
}
.tote-section::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 0 100px 0 100px;
  border: 1px solid #000;
}
.tote-section.noborder:before {
  display: none;
}
.tote-section .tote-wrapper {
  background-color: #F0FFEF;
}
.tote-section .tote-left {
  text-align: left;
  padding: 40px 0;
}
@media (max-width: 991px) {
  .tote-section .tote-left {
    margin-bottom: 30px;
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .tote-section .tote-left {
    padding: 20px 0;
  }
}
.tote-section .tote-left .title {
  color: #000;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
}
.tote-section .tote-left p {
  color: #000;
  font-size: 20px;
  margin-bottom: 50px;
}
.tote-section .tote-left .tote-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
@media (max-width: 991px) {
  .tote-section .tote-left .tote-list {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .tote-section .tote-left .tote-list {
    padding-left: 35px;
  }
}
@media (max-width: 480px) {
  .tote-section .tote-left .tote-list {
    padding-left: 30px;
  }
}
.tote-section .tote-left .tote-list::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #53B32C;
  z-index: 0;
}
@media (max-width: 991px) {
  .tote-section .tote-left .tote-list::before {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .tote-section .tote-left .tote-list::before {
    left: 17px;
    width: 1.5px;
  }
}
@media (max-width: 480px) {
  .tote-section .tote-left .tote-list::before {
    left: 15px;
  }
}
.tote-section .tote-left .tote-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .tote-section .tote-left .tote-list li {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .tote-section .tote-left .tote-list li {
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .tote-section .tote-left .tote-list li {
    margin-bottom: 30px;
  }
}
.tote-section .tote-left .tote-list li:last-child {
  margin-bottom: 0;
}
.tote-section .tote-left .tote-list li .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #FFF1CA;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-right: 25px;
}
@media (max-width: 991px) {
  .tote-section .tote-left .tote-list li .step-icon {
    width: 70px;
    height: 70px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .tote-section .tote-left .tote-list li .step-icon {
    width: 60px;
    height: 60px;
    margin-right: 18px;
  }
}
@media (max-width: 480px) {
  .tote-section .tote-left .tote-list li .step-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
}
.tote-section .tote-left .tote-list li .step-icon i {
  font-size: 32px;
  color: #D4A72B;
}
@media (max-width: 991px) {
  .tote-section .tote-left .tote-list li .step-icon i {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .tote-section .tote-left .tote-list li .step-icon i {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .tote-section .tote-left .tote-list li .step-icon i {
    font-size: 20px;
  }
}
.tote-section .tote-left .tote-list li .step-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.tote-section .tote-left .tote-list li .step-content .step-title {
  font-size: 22px;
  font-weight: 500;
  color: #32694A;
  margin-bottom: 10px;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .tote-section .tote-left .tote-list li .step-content .step-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .tote-section .tote-left .tote-list li .step-content .step-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
@media (max-width: 480px) {
  .tote-section .tote-left .tote-list li .step-content .step-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.tote-section .tote-left .tote-list li .step-content .step-description {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .tote-section .tote-left .tote-list li .step-content .step-description {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .tote-section .tote-left .tote-list li .step-content .step-description {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .tote-section .tote-left .tote-list li .step-content .step-description {
    font-size: 13px;
  }
}
.tote-section .tote-left .tote-cta {
  margin-top: 50px;
  text-align: left;
}
@media (max-width: 991px) {
  .tote-section .tote-left .tote-cta {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .tote-section .tote-left .tote-cta {
    margin-top: 35px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .tote-section .tote-left .tote-cta {
    margin-top: 30px;
  }
}
.tote-section .tote-left .tote-cta .start-trading-btn {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 30px;
  background-color: #53B32C;
  color: #fff;
  border: none;
  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;
  text-decoration: none;
}
@media (max-width: 991px) {
  .tote-section .tote-left .tote-cta .start-trading-btn {
    padding: 14px 35px;
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .tote-section .tote-left .tote-cta .start-trading-btn {
    padding: 12px 30px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .tote-section .tote-left .tote-cta .start-trading-btn {
    padding: 11px 25px;
    font-size: 15px;
  }
}
.tote-section .tote-left .tote-cta .start-trading-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;
}
.tote-section .tote-left .tote-cta .start-trading-btn:hover {
  background-color: rgb(64.0179372197, 138.0627802691, 33.9372197309);
  -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);
}
.tote-section .tote-left .tote-cta .start-trading-btn:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.tote-section .tote-right {
  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;
  position: relative;
}
@media (max-width: 992px) {
  .tote-section .tote-right {
    padding-top: 50px;
  }
}
.tote-section .tote-right .tote-circle {
  max-width: 594px;
  width: 100%;
  border-radius: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .tote-section .tote-right .tote-circle {
    width: 100%;
  }
}
.tote-section .tote-right .tote-circle figure {
  padding-top: calc(506 / 594 * 100%);
  position: relative;
}
.tote-section .tote-right .tote-circle figure img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
}
.tote-section .tote-right .tote-square {
  max-width: 448px;
  width: auto;
  position: relative;
}
.tote-section .tote-right .tote-square figure {
  border-radius: 0 100px 0 100px;
  overflow: hidden;
}
.tote-section .tote-right .tote-square figure img {
  width: 100%;
  height: 100%;
}
.tote-section .tote-right .tote-square::before {
  position: absolute;
  content: "";
  left: 30px;
  top: -40px;
  width: 100%;
  height: 100%;
  border-radius: 0 100px 0 100px;
  border: 1px solid #000;
  z-index: 1;
}
@media (max-width: 991px) {
  .tote-section .row {
    text-align: center;
  }
}
.tote-section .features-list .feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 767px) {
  .tote-section .features-list .feature-item {
    padding: 15px;
    margin-bottom: 12px;
  }
}
.tote-section .features-list .feature-item.active {
  background-color: #fff3cd;
  border: 2px solid #ffc107;
}
.tote-section .features-list .feature-item.active .feature-icon svg path {
  fill: #ffc107;
}
.tote-section .features-list .feature-item:not(.active) {
  background-color: #f8f9fa;
  border: 2px solid #e9ecef;
}
.tote-section .features-list .feature-item .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  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-right: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: transparent;
}
@media (max-width: 767px) {
  .tote-section .features-list .feature-item .feature-icon {
    width: 35px;
    height: 35px;
    margin-right: 15px;
  }
}
@media (max-width: 480px) {
  .tote-section .features-list .feature-item .feature-icon {
    width: 30px;
    height: 30px;
    margin-right: 12px;
  }
}
.tote-section .features-list .feature-item .feature-icon i {
  font-size: 18px;
}
@media (max-width: 767px) {
  .tote-section .features-list .feature-item .feature-icon i {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .tote-section .features-list .feature-item .feature-icon i {
    font-size: 14px;
  }
}
.tote-section .features-list .feature-item .feature-icon svg {
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .tote-section .features-list .feature-item .feature-icon svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .tote-section .features-list .feature-item .feature-icon svg {
    width: 16px;
    height: 16px;
  }
}
.tote-section .features-list .feature-item .feature-content .feature-title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .tote-section .features-list .feature-item .feature-content .feature-title {
    font-size: 16px;
  }
}
.tote-section .features-list .feature-item:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.scrap-materials-section {
  padding: 80px 0;
  background-color: transparent;
}
@media (max-width: 991px) {
  .scrap-materials-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .scrap-materials-section {
    padding: 50px 0;
  }
}
.scrap-materials-section .scrap-material-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  -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;
  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;
}
.scrap-materials-section .scrap-material-card:hover {
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.scrap-materials-section .scrap-material-card:hover .card-image figure img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.scrap-materials-section .scrap-material-card .card-image {
  position: relative;
  overflow: hidden;
}
.scrap-materials-section .scrap-material-card .card-image figure {
  padding-top: calc(200 / 300 * 100%);
  position: relative;
}
.scrap-materials-section .scrap-material-card .card-image figure img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
}
.scrap-materials-section .scrap-material-card .card-image figure {
  margin: 0;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.scrap-materials-section .scrap-material-card .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;
}
.scrap-materials-section .scrap-material-card .card-content {
  padding: 25px;
  -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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .scrap-materials-section .scrap-material-card .card-content {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .scrap-materials-section .scrap-material-card .card-content {
    padding: 15px;
  }
}
.scrap-materials-section .scrap-material-card .card-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 767px) {
  .scrap-materials-section .scrap-material-card .card-description {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .scrap-materials-section .scrap-material-card .card-description {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
.scrap-materials-section .scrap-material-card .btn {
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 25px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 767px) {
  .scrap-materials-section .scrap-material-card .btn {
    padding: 10px 20px;
    font-size: 13px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .scrap-materials-section .scrap-material-card .btn {
    padding: 8px 18px;
    font-size: 12px;
  }
}
.scrap-materials-section .scrap-material-card .btn:hover {
  -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);
}

.stats-achievements-section {
  padding: 50px 0;
  padding-bottom: 80px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .stats-achievements-section {
    padding: 70px 0;
    padding-top: 50px;
  }
}
@media (max-width: 991px) {
  .stats-achievements-section {
    padding: 60px 0;
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .stats-achievements-section {
    padding: 50px 0;
    padding-top: 30px;
  }
}
@media (max-width: 480px) {
  .stats-achievements-section {
    padding: 40px 0;
    padding-top: 30px;
  }
}
.stats-achievements-section .stats-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1200px) {
  .stats-achievements-section .stats-grid {
    gap: 35px;
  }
}
@media (max-width: 991px) {
  .stats-achievements-section .stats-grid {
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .stats-achievements-section .stats-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
@media (max-width: 480px) {
  .stats-achievements-section .stats-grid {
    gap: 30px;
  }
}
.stats-achievements-section .stat-item {
  text-align: center;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.stats-achievements-section .stat-item .stat-number {
  font-size: 48px;
  font-weight: 400;
  background: -webkit-gradient(linear, left top, right top, from(#13251b), to(#32694A));
  background: linear-gradient(to right, #13251b 0%, #32694A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #32694A;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .stats-achievements-section .stat-item .stat-number {
    font-size: 42px;
    margin-bottom: 18px;
  }
}
@media (max-width: 991px) {
  .stats-achievements-section .stat-item .stat-number {
    font-size: 40px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .stats-achievements-section .stat-item .stat-number {
    font-size: 36px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .stats-achievements-section .stat-item .stat-number {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
.stats-achievements-section .stat-item .stat-description {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  margin: 0;
  max-width: 75%;
}
@media (max-width: 1200px) {
  .stats-achievements-section .stat-item .stat-description {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .stats-achievements-section .stat-item .stat-description {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .stats-achievements-section .stat-item .stat-description {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .stats-achievements-section .stat-item .stat-description {
    font-size: 13px;
  }
}

.how-it-works-section {
  padding: 80px 0;
  background-color: #fff;
  color: #fff;
}
@media (max-width: 991px) {
  .how-it-works-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .how-it-works-section {
    padding: 50px 0;
  }
}
.how-it-works-section .how-it-works-card {
  text-align: left;
  padding: 40px 20px;
  padding-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .how-it-works-section .how-it-works-card {
    padding: 30px 15px;
  }
}
@media (max-width: 480px) {
  .how-it-works-section .how-it-works-card {
    padding: 25px 10px;
  }
}
.how-it-works-section .how-it-works-card .card-icon {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .how-it-works-section .how-it-works-card .card-icon {
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .how-it-works-section .how-it-works-card .card-icon {
    margin-bottom: 20px;
  }
}
.how-it-works-section .how-it-works-card .card-icon .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #FDF4D7;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .how-it-works-section .how-it-works-card .card-icon .icon-circle {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 480px) {
  .how-it-works-section .how-it-works-card .card-icon .icon-circle {
    width: 60px;
    height: 60px;
  }
}
.how-it-works-section .how-it-works-card .card-icon .icon-circle i {
  font-size: 32px;
  color: #D4A72B;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .how-it-works-section .how-it-works-card .card-icon .icon-circle i {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .how-it-works-section .how-it-works-card .card-icon .icon-circle i {
    font-size: 24px;
  }
}
.how-it-works-section .how-it-works-card .card-title {
  font-size: 20px;
  font-weight: 500;
  color: #386641;
  margin-bottom: 15px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .how-it-works-section .how-it-works-card .card-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .how-it-works-section .how-it-works-card .card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.how-it-works-section .how-it-works-card .card-description {
  font-size: 16px;
  color: #808080;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767px) {
  .how-it-works-section .how-it-works-card .card-description {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .how-it-works-section .how-it-works-card .card-description {
    font-size: 13px;
  }
}

.team-assistance-section {
  padding: 60px 0;
}
@media (max-width: 991px) {
  .team-assistance-section {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .team-assistance-section {
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  .team-assistance-section {
    padding: 30px 0;
  }
}
.team-assistance-section .team-assistance-content {
  text-align: center;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media (max-width: 767px) {
  .team-assistance-section .team-assistance-content {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .team-assistance-section .team-assistance-content {
    gap: 15px;
  }
}
.team-assistance-section .team-assistance-content .title {
  font-weight: 500;
}
.team-assistance-section .team-assistance-content .team-assistance-text {
  color: rgba(0, 0, 0, 0.7);
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .team-assistance-section .team-assistance-content .team-assistance-text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .team-assistance-section .team-assistance-content .team-assistance-text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .team-assistance-section .team-assistance-content .team-assistance-text {
    font-size: 15px;
  }
}
.team-assistance-section .team-assistance-content .team-phone-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 2px solid #32694A;
  border-radius: 30px;
  background-color: transparent;
  color: #32694A;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 767px) {
  .team-assistance-section .team-assistance-content .team-phone-link {
    padding: 10px 20px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .team-assistance-section .team-assistance-content .team-phone-link {
    padding: 8px 18px;
    font-size: 15px;
    gap: 8px;
  }
}
.team-assistance-section .team-assistance-content .team-phone-link i {
  font-size: 16px;
}
@media (max-width: 480px) {
  .team-assistance-section .team-assistance-content .team-phone-link i {
    font-size: 14px;
  }
}
.team-assistance-section .team-assistance-content .team-phone-link:hover {
  background-color: #32694A;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(50, 105, 74, 0.3);
          box-shadow: 0 4px 12px rgba(50, 105, 74, 0.3);
}
.team-assistance-section .team-assistance-content .team-phone-link:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}