* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Poppins", sans-serif;
  color: #474747;
}

html {
  scroll-behavior: smooth;
}

span {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
}

@media (max-width: 900px) {
  br {
    display: none;
  }
}
img {
  display: block;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 90%;
}

.btn {
  display: flex;
  padding: 18px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 50px;
  border-bottom: 6px solid #116800;
  background: linear-gradient(180deg, #35F60F 0%, #1FA604 100%);
  color: var(--natural-white, #FFF);
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
  max-width: 430px;
}
.btn img {
  width: 24px;
  height: 24px;
}
.btn:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.btn--yellow {
  border-bottom-color: #8E7C02;
  background: linear-gradient(180deg, #FFFE4A 0%, #FFD901 100%);
  color: #0E0D11;
}

.hero {
  position: relative;
  overflow: hidden;
  background: url("../img/background-image-hero.png") center right/cover no-repeat;
}
.hero .hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 700px;
  padding: 40px 0;
}
.hero .hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 483px;
  flex-shrink: 0;
}
.hero .hero-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero .hero-rating img {
  width: 126px;
  height: auto;
}
.hero .hero-rating span {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #fff;
}
.hero .hero-title {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  color: #fff;
}
.hero .hero-desc {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #fff;
}
.hero .hero-desc strong {
  font-weight: 700;
}
.hero .hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 430px;
}
.hero .hero-cta .payments {
  width: 202px;
  height: auto;
}
.hero .hero-art {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  align-self: stretch;
}
.hero .hero-mockup,
.hero .hero-leaf {
  position: absolute;
  pointer-events: none;
}
.hero .hero-mockup--main {
  z-index: 3;
  height: 700px;
  width: auto;
  left: -10%;
  top: 3%;
  transform: none;
}
.hero .hero-mockup--secondary {
  z-index: 1;
  height: 630px;
  width: auto;
  left: 0%;
  bottom: -2%;
  top: auto;
  transform: rotate(18deg);
  transform-origin: bottom center;
  animation: hero-sway 6s ease-in-out infinite;
}
.hero .hero-leaf--between {
  z-index: 2;
  width: 170px;
  left: 46%;
  top: 26%;
  animation: hero-leaf-a 5s ease-in-out infinite;
}
.hero .hero-leaf--front {
  z-index: 4;
  width: 180px;
  left: 10%;
  top: 36%;
  animation: hero-leaf-b 6.5s ease-in-out infinite;
}
.hero .hero-leaf--bottom {
  z-index: 4;
  width: 200px;
  left: 48%;
  bottom: -10%;
  animation: hero-leaf-a 7s ease-in-out infinite;
}
@media (max-width: 900px) {
  .hero {
    background: url("../img/background-image-hero-mobile.png") center top/cover no-repeat;
  }
  .hero .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-height: 800px;
    padding: 48px 0 0;
    gap: 32px;
  }
  .hero .hero-text {
    width: 100%;
    max-width: none;
    align-items: center;
  }
  .hero .hero-title,
  .hero .hero-desc {
    max-width: 100%;
  }
  .hero .hero-title {
    font-size: 36px;
  }
  .hero .hero-cta {
    width: 100%;
    max-width: 430px;
  }
  .hero .hero-cta .btn {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero .hero-art {
    width: 100%;
    height: 360px;
    align-self: auto;
  }
  .hero .hero-mockup--main {
    width: 100%;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .hero .hero-mockup--secondary {
    width: 100%;
    left: 12%;
    top: -84%;
    transform: translate(-50%, -52%) rotate(7deg);
  }
  .hero .hero-leaf--between {
    width: 20%;
    left: 58%;
    top: 10%;
  }
  .hero .hero-leaf--front {
    width: 26%;
    left: 20%;
    top: 30%;
  }
  .hero .hero-leaf--bottom {
    width: 34%;
    left: 60%;
    top: 82%;
  }
}

@keyframes hero-sway {
  0%, 100% {
    transform: rotate(7deg);
  }
  50% {
    transform: rotate(9deg);
  }
}
@keyframes hero-leaf-a {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(6deg);
  }
}
@keyframes hero-leaf-b {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(-6deg);
  }
}
.header {
  background: #FFEFDB;
  box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.25);
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 87px;
}
.header .logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 35.432px;
  letter-spacing: 1.4173px;
  color: #240800;
  padding: 10px 20px;
  border-radius: 5px;
  white-space: nowrap;
}
.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header .nav-menu a {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #050505;
  white-space: nowrap;
}
.header .nav-menu a:hover {
  color: #E85B2A;
}
@media (max-width: 900px) {
  .header .header-inner {
    justify-content: center;
  }
  .header .nav-menu {
    display: none;
  }
}

.divisor {
  border-top: 1px solid rgba(232, 91, 42, 0);
  background: linear-gradient(270deg, rgb(184, 189, 199) 0%, rgb(242, 244, 248) 33.173%, rgb(242, 244, 248) 71.635%, rgb(156, 163, 175) 100%);
}
.divisor .divisor-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  max-width: 1202px;
  width: 90%;
  margin: 0 auto;
  min-height: 60px;
}
.divisor .divisor-track[aria-hidden=true] {
  display: none;
}
.divisor .divisor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #5b5b5b;
  white-space: nowrap;
}
.divisor .divisor-item img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .divisor {
    display: flex;
    gap: 32px;
    overflow: hidden;
    padding: 35px 0;
    background: linear-gradient(270deg, rgb(226, 230, 238) 0%, rgb(242, 244, 248) 33.173%, rgb(242, 244, 248) 71.635%, rgb(226, 230, 238) 100%);
  }
  .divisor .divisor-track {
    width: auto;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    justify-content: flex-start;
    gap: 32px;
    animation: divisor-scroll 18s linear infinite;
  }
  .divisor .divisor-track[aria-hidden=true] {
    display: flex;
  }
}

@keyframes divisor-scroll {
  from {
    transform: translateX(calc(-100% - 32px));
  }
  to {
    transform: translateX(0);
  }
}
.benefits-1 {
  padding: 80px 0;
}
.benefits-1 .benefits-1-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.benefits-1 .benefits-1-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.benefits-1 .benefits-1-title .eyebrow {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 7.14px;
  text-transform: uppercase;
  color: #474747;
  line-height: 26px;
}
.benefits-1 .benefits-1-title .heading {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  color: #000;
}
.benefits-1 .benefits-1-title .heading span {
  color: #E85B2A;
}
.benefits-1 .benefits-1-title .subtitle {
  max-width: 939px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #474747;
}
.benefits-1 .benefits-1-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}
.benefits-1 .benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 40px;
  background: #FFFAF4;
  border: 1px solid #ddd;
  border-radius: 16px;
}
.benefits-1 .benefit-card .benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #E85B2A;
  border-radius: 16px;
}
.benefits-1 .benefit-card .benefit-icon img {
  width: 40px;
  height: 40px;
}
.benefits-1 .benefit-card h3 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #000;
}
.benefits-1 .benefit-card p {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #474747;
}
.benefits-1 .benefits-1-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.benefits-1 .benefits-1-cta .payments {
  width: 202px;
  height: auto;
}
@media (max-width: 900px) {
  .benefits-1 {
    padding: 48px 0;
  }
  .benefits-1 .benefits-1-title .heading {
    font-size: 40px;
  }
  .benefits-1 .benefits-1-cards {
    grid-template-columns: 1fr;
  }
  .benefits-1 .benefit-card {
    padding: 24px;
  }
}

.about {
  padding: 40px 0 80px;
}
.about .about-inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.about .about-banner {
  width: 100%;
}
.about .about-banner img {
  width: 100%;
  height: 368px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.about .about-content {
  display: grid;
  grid-template-columns: 587px 1fr;
  gap: 24px;
  align-items: center;
}
.about .about-text {
  display: flex;
  flex-direction: column;
}
.about .about-text .eyebrow {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 7.14px;
  text-transform: uppercase;
  color: #474747;
  line-height: 26px;
  margin-bottom: 8px;
}
.about .about-text .heading {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 16px;
}
.about .about-text .heading span {
  color: #E85B2A;
}
.about .about-text .about-p {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #474747;
}
.about .about-text .about-p + .about-p {
  margin-top: 16px;
}
.about .about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 32px;
}
.about .about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #474747;
}
.about .about-feature img {
  width: 24px;
  height: 24px;
}
.about .about-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 430px;
  margin-top: 32px;
}
.about .about-cta .payments {
  width: 202px;
  height: auto;
}
.about .about-image img {
  width: 100%;
  height: 727px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 900px) {
  .about {
    padding: 24px 0 48px;
  }
  .about .about-inner {
    gap: 32px;
  }
  .about .about-banner img {
    height: 220px;
  }
  .about .about-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .about .about-image {
    order: -1;
  }
  .about .about-image img {
    height: auto;
  }
  .about .about-text .heading {
    font-size: 40px;
  }
  .about .about-features {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
  }
  .about .about-feature {
    white-space: nowrap;
    font-size: 14px;
  }
  .about .about-feature img {
    width: 20px;
    height: 20px;
  }
  .about .about-cta {
    width: 100%;
  }
}

.benefits-2 {
  position: relative;
  padding: 100px 0 80px;
  background: url("../img/background-benefits-2.png") center top/100% 100% no-repeat;
  overflow: hidden;
}
.benefits-2 .benefits-2-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.benefits-2 .benefits-2-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  color: #fff;
}
.benefits-2 .benefits-2-title h2 {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  color: #fff;
}
.benefits-2 .benefits-2-title p {
  max-width: 1026px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #fff;
}
.benefits-2 .benefits-2-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.benefits-2 .b2-col {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.benefits-2 .b2-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #FFFAF4;
  border-radius: 16px;
}
.benefits-2 .b2-card .b2-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.benefits-2 .b2-card .b2-card-head img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.benefits-2 .b2-card .b2-card-head h3 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  color: #E85B2A;
}
.benefits-2 .b2-card p {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #474747;
}
.benefits-2 .b2-pill {
  display: flex;
  justify-content: center;
}
.benefits-2 .b2-pill img {
  width: 472px;
  max-width: 100%;
  height: auto;
  animation: pill-float 4s ease-in-out infinite;
}
@media (max-width: 900px) {
  .benefits-2 {
    padding: 120px 0 48px;
    background: url("../img/background-benefits-2-mobile.png") center top/100% 100% no-repeat;
  }
  .benefits-2 .benefits-2-title h2 {
    font-size: 32px;
  }
  .benefits-2 .benefits-2-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .benefits-2 .b2-col {
    gap: 16px;
  }
  .benefits-2 .b2-pill {
    order: -1;
  }
  .benefits-2 .b2-pill img {
    width: 280px;
  }
}

@keyframes pill-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.ingredients {
  padding: 80px 0;
  background: #FFEFDB;
}
.ingredients .ingredients-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.ingredients .ingredients-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ingredients .ingredients-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 488px;
}
.ingredients .ingredients-title h2 {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  color: #050505;
}
.ingredients .ingredients-title h2 span {
  color: #E85B2A;
}
.ingredients .ingredients-title p {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #474747;
}
.ingredients .ingredients-nav {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}
.ingredients .ing-arrow {
  width: 64px;
  height: 64px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.ingredients .ing-arrow img {
  width: 64px;
  height: 64px;
}
.ingredients .ing-arrow:hover {
  opacity: 0.85;
}
.ingredients .ingredients-viewport {
  overflow: hidden;
}
.ingredients .ingredients-track {
  display: flex;
  gap: 32px;
  transition: transform 0.4s ease;
}
.ingredients .ing-card {
  flex: 0 0 calc((100% - 64px) / 3);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.ingredients .ing-card-img {
  width: 100%;
  height: 221px;
  background: #fefefe;
  border: 1px solid rgba(84, 118, 132, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.ingredients .ing-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ingredients .ing-card-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ingredients .ing-card-text h3 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  color: #E85B2A;
}
.ingredients .ing-card-text p {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #5b5b5b;
}
.ingredients .ingredients-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  gap: 8px;
  max-width: 430px;
}
.ingredients .ingredients-cta .payments {
  width: 202px;
  height: auto;
}
@media (max-width: 900px) {
  .ingredients {
    padding: 48px 0;
  }
  .ingredients .ingredients-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .ingredients .ingredients-title h2 {
    font-size: 40px;
  }
  .ingredients .ing-card {
    flex: 0 0 100%;
  }
  .ingredients .ingredients-cta {
    width: 100%;
  }
}

.testimonials {
  padding: 80px 0;
  background: #FFEFDB;
}
.testimonials .testimonials-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  grid-template-areas: "head carousel" "cta carousel" "peoples peoples";
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 40px;
  align-items: start;
}
.testimonials .testi-head {
  grid-area: head;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonials .testi-head .testi-rating-stars {
  width: 107px;
  height: 20px;
}
.testimonials .testi-head .testi-rating-text {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #79656b;
  line-height: 1.4;
  margin-bottom: 12px;
}
.testimonials .testi-head .testi-title {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  color: #050505;
}
.testimonials .testi-head .testi-title span {
  color: #E85B2A;
}
.testimonials .testi-cta {
  grid-area: cta;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 380px;
}
.testimonials .testi-cta .payments {
  width: 194px;
  height: auto;
}
.testimonials .testi-carousel {
  grid-area: carousel;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  align-self: center;
  min-width: 0;
}
.testimonials .testi-photo {
  flex-shrink: 0;
  width: 300px;
}
.testimonials .testi-photo img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 150px 150px 16px 16px;
}
.testimonials .testi-quote-viewport {
  flex-shrink: 0;
  width: 419px;
  max-width: 100%;
  overflow: hidden;
}
.testimonials .testi-track {
  display: flex;
  transition: transform 0.4s ease;
}
.testimonials .testi-slide {
  flex: 0 0 100%;
}
.testimonials .testi-quote {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.testimonials .testi-quote .testi-mark {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 0.6;
  color: #E85B2A;
  margin-bottom: 16px;
}
.testimonials .testi-quote .testi-text {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #79656b;
  margin-bottom: 16px;
}
.testimonials .testi-quote .testi-text strong {
  font-weight: 700;
  color: #79656b;
}
.testimonials .testi-quote .testi-stars {
  width: 130px;
  height: 26px;
  margin-bottom: 24px;
}
.testimonials .testi-quote .testi-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(121, 101, 107, 0.25);
}
.testimonials .testi-quote .testi-author {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.testimonials .testi-quote .testi-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.testimonials .testi-quote .testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.testimonials .testi-quote .testi-name {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  color: #E85B2A;
  line-height: 1.2;
}
.testimonials .testi-quote .testi-verified {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #727272;
}
.testimonials .testi-quote .testi-verified img {
  width: 20px;
  height: 20px;
}
.testimonials .testi-quote .testi-nav {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}
.testimonials .testi-quote .testi-arrow {
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.testimonials .testi-quote .testi-arrow img {
  width: 48px;
  height: 48px;
}
.testimonials .testi-quote .testi-arrow:hover {
  opacity: 0.85;
}
.testimonials .testi-peoples {
  grid-area: peoples;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
}
.testimonials .testi-peoples img {
  width: 100%;
  aspect-ratio: 341/460;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 13px;
}
@media (max-width: 900px) {
  .testimonials {
    padding: 48px 0;
  }
  .testimonials .testimonials-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "carousel" "peoples" "cta";
    row-gap: 24px;
  }
  .testimonials .testi-head {
    align-items: center;
    text-align: center;
  }
  .testimonials .testi-head .testi-title {
    font-size: 40px;
  }
  .testimonials .testi-cta {
    max-width: none;
    width: 100%;
  }
  .testimonials .testi-carousel {
    flex-direction: column;
    gap: 24px;
  }
  .testimonials .testi-photo {
    width: 100%;
    max-width: 320px;
  }
  .testimonials .testi-photo img {
    height: 360px;
  }
  .testimonials .testi-quote-viewport {
    width: 100%;
  }
  .testimonials .testi-peoples {
    gap: 12px;
  }
}

.shipping {
  width: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #F39E3C 0%, #E85B2A 100%);
}
.shipping__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 0;
}
@media (max-width: 900px) {
  .shipping__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 38px;
  }
}
.shipping__truck {
  flex-shrink: 0;
  width: 212px;
  height: 116px;
}
.shipping__truck img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 900px) {
  .shipping__truck {
    width: 160px;
    height: auto;
  }
}
.shipping__txt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .shipping__txt {
    width: 100%;
  }
}
.shipping__title {
  font-family: "Sora", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: #f2f4f6;
}
@media (max-width: 900px) {
  .shipping__title {
    font-size: 28px;
    max-width: 240px;
  }
}
.shipping__note {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
}
@media (max-width: 900px) {
  .shipping__note {
    font-size: 16px;
  }
}

.area-kits {
  padding: 80px 0;
  background: #fff;
}
.area-kits .kits-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  margin-bottom: 40px;
}
.area-kits .kits-title h2 {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  color: #0e0d11;
}
.area-kits .kits-title h2 span {
  color: #E85B2A;
}
.area-kits .kits-title p {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #5b5b5b;
}
.area-kits .kits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.area-kits .kit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(232, 91, 42, 0.24);
  border-radius: 16px;
  overflow: hidden;
  padding-bottom: 40px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.area-kits .kit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(232, 91, 42, 0.18);
}
.area-kits .kit-link {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: 16px;
}
.area-kits .kit-header {
  background: #E85B2A;
  color: #fff;
  text-align: center;
  padding: 16px;
}
.area-kits .kit-header strong {
  display: block;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #fff;
}
.area-kits .kit-header span {
  display: block;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}
.area-kits .kit-pote {
  position: relative;
  height: 276px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.area-kits .kit-pote > img {
  max-height: 260px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.area-kits .kit-save {
  position: absolute;
  top: 20px;
  right: 50px;
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-kits .kit-save img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.area-kits .kit-save b {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
}
.area-kits .kit-save b em {
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}
.area-kits .kit-save b small {
  font-size: 10px;
  font-weight: 500;
  color: #fff;
}
.area-kits .kit-free {
  position: absolute;
  left: 12px;
  bottom: 24px;
  width: 92px;
  height: auto;
}
.area-kits .kit-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 40px 24px;
}
.area-kits .kit-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}
.area-kits .kit-price b {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: #E85B2A;
  line-height: 1;
}
.area-kits .kit-price small {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #6e7278;
  padding-bottom: 8px;
}
.area-kits .kit-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.area-kits .kit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 18px;
  line-height: normal;
  text-transform: uppercase;
}
.area-kits .kit-item img,
.area-kits .kit-item .kit-x {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}
.area-kits .kit-item--off {
  background: #fbf5f1;
  border: 1px solid #e2e2e2;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #101010;
}
.area-kits .kit-item--green, .area-kits .kit-item--gold {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  color: #fff;
}
.area-kits .kit-item--green img, .area-kits .kit-item--gold img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.area-kits .kit-item--green {
  background: #00a231;
}
.area-kits .kit-item--gold {
  background: #c7aa08;
}
.area-kits .kit-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 8px 40px 0;
}
.area-kits .kit-buy {
  display: block;
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 280px;
}
.area-kits .kit-buy img {
  width: 100%;
}
.area-kits .kit-buy:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}
.area-kits .kit-cards {
  width: 70%;
  height: auto;
}
.area-kits .kit-total {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #101010;
}
.area-kits .kit-total s {
  text-decoration-color: #E85B2A;
  text-decoration-line: line-through;
  text-decoration-color: #6e7278;
  color: #6e7278;
}
.area-kits .kit-total b {
  font-weight: 700;
  color: #0e0d11;
}
.area-kits .kit--best {
  border: 2px solid rgba(251, 173, 65, 0.59);
  background: #ffe6c4;
  z-index: 2;
  animation: kit-pulse 2s ease-in-out infinite;
}
.area-kits .kit--best:hover {
  animation-play-state: paused;
  transform: scale(1.09) translateY(-6px);
}
.area-kits .kit--best .kit-header {
  background: linear-gradient(-90deg, #a4823d 0%, #ffd580 26.881%, #ffd580 73.187%, #a4823d 100%);
  color: #000;
}
.area-kits .kit--best .kit-header strong,
.area-kits .kit--best .kit-header span {
  color: #000;
}
.area-kits .kit--best .kit-buy {
  max-width: 100%;
}
.area-kits .kit-ribbon {
  position: absolute;
  top: 22px;
  left: -34px;
  z-index: 3;
  background: #d90000;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(-31deg);
}
@media (max-width: 900px) {
  .area-kits {
    padding: 48px 0;
  }
  .area-kits .kits-title h2 {
    font-size: 32px;
  }
  .area-kits .kits {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .area-kits .best-option {
    order: 1;
  }
  .area-kits .k3 {
    order: 2;
  }
  .area-kits .k1 {
    order: 3;
  }
  .area-kits .kit--best {
    animation: none;
    transform: none;
  }
  .area-kits .kit--best:hover {
    transform: translateY(-6px);
  }
  .area-kits .kit-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-areas: "header header" "pote body" "pote footer";
    align-items: stretch;
    padding-bottom: 20px;
  }
  .area-kits .kit-header {
    grid-area: header;
    padding: 12px;
  }
  .area-kits .kit-header strong {
    font-size: 24px;
  }
  .area-kits .kit-header span {
    font-size: 14px;
  }
  .area-kits .kit-pote {
    grid-area: pote;
    height: auto;
    align-self: center;
    padding: 8px;
  }
  .area-kits .kit-pote > img {
    max-height: 200px;
  }
  .area-kits .kit-save {
    top: 6px;
    right: 4px;
    width: 52px;
    height: 52px;
  }
  .area-kits .kit-save b {
    font-size: 9px;
    line-height: 1.1;
  }
  .area-kits .kit-save b small {
    font-size: 7px;
  }
  .area-kits .kit-free {
    left: 4px;
    bottom: 6px;
    width: 46px;
  }
  .area-kits .kit-body {
    grid-area: body;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 14px 8px;
  }
  .area-kits .kit-price {
    justify-content: flex-start;
  }
  .area-kits .kit-price b {
    font-size: 40px;
  }
  .area-kits .kit-price small {
    font-size: 16px;
    padding-bottom: 6px;
  }
  .area-kits .kit-item {
    font-size: 12px;
    padding: 8px;
    gap: 6px;
  }
  .area-kits .kit-item img,
  .area-kits .kit-item .kit-x {
    width: 18px;
    height: 18px;
  }
  .area-kits .kit-footer {
    grid-area: footer;
    align-items: flex-start;
    gap: 10px;
    padding: 0 14px;
  }
  .area-kits .kit-buy {
    max-width: 100%;
  }
  .area-kits .kit-cards {
    width: 100%;
  }
  .area-kits .kit-total {
    font-size: 15px;
  }
}

@keyframes kit-pulse {
  0%, 100% {
    transform: scale(1.02);
  }
  50% {
    transform: scale(1.05);
  }
}
.garantee {
  width: 100%;
  background: linear-gradient(90deg, #F39E3C 0%, #E85B2A 66.691%);
  padding: 60px 0;
}
.garantee__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
@media (max-width: 900px) {
  .garantee__inner {
    flex-direction: column;
    gap: 32px;
  }
}
.garantee__seal {
  flex-shrink: 0;
  width: 320px;
  height: 331px;
  filter: drop-shadow(4px 4px 22px rgba(201, 162, 39, 0.2));
}
.garantee__seal img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 900px) {
  .garantee__seal {
    width: 240px;
    height: auto;
  }
}
.garantee__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  max-width: 722px;
}
@media (max-width: 900px) {
  .garantee__content {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.garantee__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 900px) {
  .garantee__text {
    align-items: center;
  }
}
.garantee__title {
  font-family: "Nunito Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
@media (max-width: 900px) {
  .garantee__title {
    font-size: 32px;
  }
}
.garantee__desc {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}

.faq {
  padding: 80px 0;
  background: #fff;
}
.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.faq__title {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  text-align: center;
  color: #050505;
}
.faq__title span {
  font-family: "Nunito Sans", sans-serif;
  color: #E85B2A;
}
@media (max-width: 900px) {
  .faq__title {
    font-size: 32px;
  }
}
.faq__list {
  width: 100%;
  max-width: 1050px;
  background: #fff;
  border-radius: 20px;
}
.faq .faq-item + .faq-item {
  border-top: 1px solid rgba(117, 106, 107, 0.12);
}
.faq .faq-item:last-child {
  border-bottom: 1px solid rgba(117, 106, 107, 0.12);
}
.faq .faq-item[open] + .faq-item {
  border-top: none;
}
.faq .faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 16px;
  cursor: pointer;
  list-style: none;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  color: #E85B2A;
}
.faq .faq-q::-webkit-details-marker {
  display: none;
}
@media (max-width: 900px) {
  .faq .faq-q {
    font-size: 20px;
  }
}
.faq .faq-chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: inherit;
  transition: transform 0.3s ease;
}
.faq .faq-chevron path {
  color: inherit;
  stroke: currentColor;
}
.faq .faq-a {
  padding: 16px 16px 24px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #756a6b;
}
.faq .faq-item[open] .faq-q {
  background: #E85B2A;
  border-radius: 10px;
  color: #FFEFDB;
}
.faq .faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 60px;
  background: linear-gradient(90deg, #F39E3C 0%, #E85B2A 66.691%);
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
}
.footer__logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 35.432px;
  letter-spacing: 1.4173px;
  color: #fff;
  white-space: nowrap;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.footer__nav a {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}
.footer__nav a:hover {
  opacity: 0.8;
}
.footer__disclaimer {
  width: 90%;
  max-width: 1007px;
  padding: 24px 0;
  border-top: 1px solid #FFEFDB;
}
.footer__disclaimer p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  color: #fff;
}
.footer__copyright {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 32px 20px;
  background: #FBAD41;
}
.footer__copyright p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
@media (max-width: 900px) {
  .footer__nav {
    gap: 16px 24px;
  }
}/*# sourceMappingURL=style.css.map */