*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body,
h1,
h2,
h3,
p,
ul,
blockquote {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

img,
picture {
  display: block;
  max-width: 100%;
}

button {
  border: 0;
}

body {
  overflow-x: hidden;
  overflow-x: clip;
  color: #111111;
  background: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.1875rem #ffe600;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.3;
}

.container {
  width: min(90%, 80rem);
  margin-inline: auto;
}
@media (min-width: 48rem) {
  .container {
    width: min(100%, 80rem);
    padding-inline: 2rem;
  }
}

.only-desktop {
  display: none;
}
@media (min-width: 75rem) {
  .only-desktop {
    display: inline;
  }
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: #0e0d11;
  background: #ffe600;
  border-radius: 0.5rem;
  transform: translateY(-200%);
  transition: transform 180ms ease;
}
.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1rem;
  padding: 1.125rem 2rem;
  border-radius: 3.125rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
}
@media (min-width: 48rem) {
  .button {
    padding-inline: 6.5rem;
    font-size: 1.5rem;
  }
}
.button--primary {
  color: #ffffff;
  background: linear-gradient(180deg, #35f60f 0%, #1fa604 100%);
  border-bottom: 0.375rem solid #116800;
}
.button img {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.section-heading__title {
  max-width: 38rem;
  font-size: 2rem;
}
@media (min-width: 48rem) {
  .section-heading__title {
    font-size: 2.5rem;
  }
}
.section-heading__title span {
  color: #e85d04;
}
.section-heading__description {
  max-width: 48rem;
  color: #4b4b4b;
  font-size: 1rem;
  font-weight: 500;
}
@media (min-width: 48rem) {
  .section-heading__description {
    font-size: 1.25rem;
  }
}
.section-heading--wide {
  gap: 1rem;
}
@media (min-width: 75rem) {
  .section-heading--wide .section-heading__title {
    max-width: 56rem;
  }
  .section-heading--wide .section-heading__title span {
    display: block;
  }
}
.section-heading--inverse {
  color: #ffffff;
}
.section-heading--inverse .section-heading__description {
  color: #ffffff;
  font-weight: 400;
}

.eyebrow {
  color: #111111;
  font-size: 1.125rem;
  line-height: 1;
  text-transform: uppercase;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #586571;
  font-size: 1rem;
}
.rating img {
  width: auto;
  height: 2rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
  width: 100%;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(142, 142, 142, 0.17);
  border-radius: 0.5rem;
  font-size: 1.125rem;
  backdrop-filter: blur(0.5rem);
}
.feature-list img {
  flex: 0 0 auto;
  width: 1.875rem;
  height: 1.875rem;
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 24rem);
  overflow: hidden;
  padding-bottom: 2.5rem;
  color: #1d1d1d;
  background: #fff9f4;
  border: 0.0625rem solid rgba(13, 42, 69, 0.4);
  border-radius: 1.25rem;
  cursor: pointer;
}
.offer-card--featured {
  background: linear-gradient(to bottom, #ffa64d, #fff1e4);
  border: 0.25rem solid #ffa64d;
  animation: offer-card-pulse 4s ease-in-out infinite;
}
@media (min-width: 75rem) {
  .offer-card--featured {
    padding-bottom: 3rem;
  }
}
.offer-card__eyebrow {
  width: 100%;
  padding: 1rem;
  color: #ffffff;
  background: #e85d04;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}
.offer-card--featured .offer-card__eyebrow {
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 75rem) {
  .offer-card--featured .offer-card__eyebrow {
    padding-block: 1.25rem;
  }
}
.offer-card__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 0.75rem 0;
}
@media (min-width: 48rem) {
  .offer-card__body {
    gap: 1rem;
    padding-inline: 1rem;
  }
}
@media (min-width: 75rem) {
  .offer-card__body {
    display: contents;
  }
}
.offer-card__media {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
@media (min-width: 75rem) {
  .offer-card__media {
    display: contents;
  }
}
.offer-card__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 75rem) {
  .offer-card__heading {
    display: contents;
  }
}
.offer-card__info {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  max-width: 10.25rem;
}
@media (min-width: 75rem) {
  .offer-card__info {
    display: contents;
  }
}
.offer-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}
@media (min-width: 75rem) {
  .offer-card__title {
    margin-top: 1rem;
    font-size: 2.5rem;
  }
}
.offer-card__supply {
  color: #4b4b4b;
  font-size: 0.875rem;
  text-transform: uppercase;
}
@media (min-width: 75rem) {
  .offer-card__supply {
    font-size: 1rem;
  }
}
.offer-card__product {
  position: relative;
  display: block;
  width: 100%;
  height: 8.5rem;
}
.offer-card__product picture {
  display: block;
  max-width: none;
  width: 110%;
  margin-inline: -5%;
}
.offer-card__product picture,
.offer-card__product picture img {
  height: 100%;
}
.offer-card__product picture img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 48rem) {
  .offer-card__product picture {
    width: 100%;
    margin-inline: 0;
  }
}
@media (min-width: 75rem) {
  .offer-card__product {
    width: calc(100% - 2rem);
    height: 15.25rem;
    margin-top: 0.75rem;
  }
}
.offer-card__free-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.875rem;
  height: 2.875rem;
}
@media (min-width: 75rem) {
  .offer-card__free-badge {
    width: 8.625rem;
    height: 6.375rem;
  }
}
.offer-card__sale {
  position: absolute;
  top: 0.9375rem;
  right: 0.5rem;
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
}
.offer-card__sale > img {
  grid-area: 1/1;
  width: 100%;
  height: 100%;
}
@media (min-width: 75rem) {
  .offer-card__sale {
    top: 1.5rem;
    right: 0.75rem;
    width: 5rem;
    height: 5rem;
  }
}
.offer-card__sale-text {
  grid-area: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  line-height: 0.625rem;
  text-align: center;
  text-transform: uppercase;
}
.offer-card__sale-text em {
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 500;
}
.offer-card__sale-text strong {
  font-size: 0.6875rem;
  font-weight: 700;
}
@media (min-width: 75rem) {
  .offer-card__sale-text {
    line-height: 0.8125rem;
  }
  .offer-card__sale-text em {
    font-size: 0.6875rem;
  }
  .offer-card__sale-text strong {
    font-size: 0.9375rem;
  }
}
.offer-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.offer-card__price strong {
  font-size: 2.625rem;
  line-height: 1.3;
}
.offer-card__price small {
  color: #8e8e8e;
  font-size: 1rem;
}
@media (min-width: 75rem) {
  .offer-card__price {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
  .offer-card__price strong {
    font-size: 3.25rem;
  }
  .offer-card__price small {
    font-size: 1.25rem;
  }
}
.offer-card__benefits {
  display: grid;
  gap: 0.25rem;
  width: 100%;
  color: #676767;
  font-size: clamp(0.625rem, 2.9vw, 0.6875rem);
  text-transform: uppercase;
}
.offer-card__benefits span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 48rem) {
  .offer-card__benefits {
    font-size: 0.75rem;
  }
  .offer-card__benefits span {
    gap: 0.5rem;
  }
}
.offer-card__benefits img {
  flex: 0 0 auto;
  width: 0.8125rem;
  height: 0.8125rem;
}
@media (min-width: 75rem) {
  .offer-card__benefits {
    gap: 0.5rem;
    width: min(100% - 2.5rem, 19.625rem);
    font-size: 1rem;
  }
  .offer-card__benefits span {
    gap: 0.75rem;
  }
  .offer-card__benefits img {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.offer-card--featured .offer-card__benefits {
  color: #1d1d1d;
}
@media (min-width: 75rem) {
  .offer-card--featured .offer-card__benefits {
    font-size: 1.125rem;
    font-weight: 600;
  }
}
.offer-card__buy {
  width: 100%;
  cursor: pointer;
}
.offer-card__buy img {
  width: 100%;
  height: auto;
  cursor: pointer;
}
@media (min-width: 75rem) {
  .offer-card__buy {
    width: min(100% - 2.5rem, 19.625rem);
    margin-top: 1rem;
  }
}
.offer-card__payments {
  width: 100%;
}
.offer-card__payments img {
  width: 100%;
  height: auto;
}
@media (min-width: 75rem) {
  .offer-card__payments {
    width: min(100% - 2.5rem, 19.625rem);
    margin-top: 1rem;
  }
}
.offer-card__total {
  color: #676767;
  font-size: 0.875rem;
  text-transform: uppercase;
}
.offer-card__total s {
  color: #1d1d1d;
  text-decoration-color: #c1121f;
}
.offer-card__total strong {
  margin-left: 0.5rem;
  color: #c94a0f;
}
@media (min-width: 75rem) {
  .offer-card__total {
    margin-top: 1rem;
    font-size: 1.25rem;
  }
}

@keyframes offer-card-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}
.ingredient-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  color: #ffffff;
  background: #e85d04;
  border: 0.0625rem solid rgba(17, 17, 17, 0.11);
  border-radius: 1.25rem;
  box-shadow: 0 0.25rem 0.125rem rgba(0, 0, 0, 0.1);
}
.ingredient-card picture {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 0.0625rem solid rgba(84, 118, 132, 0.2);
  border-radius: 0.625rem;
}
.ingredient-card picture img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 352/221;
  -o-object-fit: cover;
     object-fit: cover;
}
.ingredient-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}
.ingredient-card p {
  font-size: 1.125rem;
  line-height: 1.25;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 12.75rem;
  padding: 1rem 1.5rem;
  color: #ffffff;
  background: rgba(142, 142, 142, 0.17);
  border: 0.0625rem solid #595959;
  border-radius: 0.625rem;
  backdrop-filter: blur(0.9375rem);
}
.benefit-card img {
  width: 3.25rem;
  height: 3.25rem;
}
.benefit-card p {
  font-size: 1.25rem;
  line-height: normal;
}

.testimonial-card {
  display: grid;
  overflow: hidden;
  background: #fff2e4;
  border: 0.0625rem solid rgba(17, 17, 17, 0.2);
  border-radius: 1.25rem;
}
@media (min-width: 48rem) {
  .testimonial-card {
    grid-template-columns: 17.8125rem 1fr;
    grid-template-rows: minmax(24.875rem, auto);
    gap: 1.5rem;
    min-height: 24.875rem;
    padding-right: 1.5rem;
  }
}
.testimonial-card__photo, .testimonial-card__photo img {
  width: 100%;
  height: 19rem;
}
@media (min-width: 48rem) {
  .testimonial-card__photo, .testimonial-card__photo img {
    min-height: 0;
    height: 100%;
  }
}
.testimonial-card__photo img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 42%;
     object-position: center 42%;
}
.testimonial-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
}
@media (min-width: 48rem) {
  .testimonial-card__content {
    padding: 0;
  }
}
.testimonial-card__content > img {
  width: 8.125rem;
  height: 1.625rem;
}
.testimonial-card__content blockquote {
  color: #4b4b4b;
  font-size: 1.125rem;
  line-height: normal;
}
.testimonial-card__content p {
  font-size: 1.125rem;
  font-weight: 700;
}

.section-divider {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 0;
  pointer-events: none;
}
.section-divider img {
  display: block;
  flex: 0 0 auto;
  width: 7.6875rem;
  height: 1.875rem;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 4.5rem;
  color: #ffffff;
  background: #1d1d1d;
  backdrop-filter: blur(0.5rem);
}
@media (min-width: 48rem) {
  .site-header {
    height: 5.25rem;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .site-header__inner {
    justify-content: space-between;
  }
}
.site-header__brand {
  flex: 0 0 auto;
  width: 4.375rem;
}
@media (min-width: 48rem) {
  .site-header__brand {
    width: 5.25rem;
  }
}
.site-header__brand img {
  width: 100%;
  height: auto;
}
.site-header__nav {
  display: none;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 0.75rem;
  white-space: nowrap;
  scrollbar-width: none;
}
@media (min-width: 48rem) {
  .site-header__nav {
    display: flex;
    gap: 1.5rem;
    font-size: 1.125rem;
  }
}
.site-header__nav::-webkit-scrollbar {
  display: none;
}

.hero {
  position: relative;
  min-height: 43rem;
  overflow: hidden;
  color: #ffffff;
  background: #e85d04;
}
@media (min-width: 75rem) {
  .hero {
    min-height: 50rem;
  }
}
.hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 18% center;
     object-position: 18% center;
}
@media (min-width: 75rem) {
  .hero__background {
    -o-object-position: center;
       object-position: center;
  }
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  min-height: inherit;
  padding-block: 2.5rem 0;
}
@media (min-width: 75rem) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-block: 0;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 35.0625rem;
}
.hero__stage {
  position: relative;
  align-self: center;
  width: min(78%, 18rem);
}
@media (min-width: 75rem) {
  .hero__stage {
    flex: 0 0 auto;
    align-self: flex-end;
    width: 36.5625rem;
    aspect-ratio: 645/800;
  }
}
.hero__product {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  animation: hero-product-in 900ms cubic-bezier(0.4, 0, 0.2, 1) both;
}
@media (min-width: 75rem) {
  .hero__product {
    height: 100%;
  }
}
.hero__bottle-behind {
  position: absolute;
  z-index: 0;
  top: 20.36%;
  left: 17.75%;
  width: 105.45%;
  max-width: none;
  height: auto;
  transform: rotate(11.07deg);
  filter: blur(4px);
  pointer-events: none;
  animation: hero-decor-in 800ms ease 120ms both;
}
.hero__decor {
  position: absolute;
  z-index: 2;
  height: auto;
  pointer-events: none;
}
.hero__decor--leaf-top {
  top: 2%;
  left: -6%;
  width: 36.24%;
  animation: hero-decor-in 800ms ease 200ms both, hero-sway-left 7s ease-in-out infinite alternate;
}
.hero__decor--leaf-bottom {
  right: -8%;
  bottom: 4%;
  width: 47.35%;
  animation: hero-decor-in 800ms ease 560ms both, hero-sway-left 10s ease-in-out infinite alternate;
}
.hero__rating {
  color: #ffffff;
}
.hero__rating img {
  height: 2.3125rem;
}
.hero__title {
  font-size: 1.5rem;
}
@media (min-width: 48rem) {
  .hero__title {
    font-size: 2.25rem;
  }
}
.hero__title span {
  display: block;
  font-weight: 400;
}
.hero__description {
  max-width: 33rem;
  font-size: 1rem;
  line-height: 1.15;
}
@media (min-width: 48rem) {
  .hero__description {
    font-size: 1.125rem;
  }
}

@keyframes hero-product-in {
  from {
    opacity: 0;
    transform: translateY(2rem) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes hero-decor-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hero-sway-left {
  from {
    transform: translate3d(-0.25rem, 0, 0) rotate(-5deg);
  }
  to {
    transform: translate3d(2.25rem, 0, 0) rotate(5deg);
  }
}
@keyframes hero-sway-right {
  from {
    transform: translate3d(2rem, 0, 0) rotate(4deg);
  }
  to {
    transform: translate3d(-1rem, 0, 0) rotate(-4deg);
  }
}
.offers {
  background: #ffffff;
  padding-block: 4rem;
}
@media (min-width: 75rem) {
  .offers {
    padding-block: 5rem;
  }
}
.offers__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 75rem) {
  .offers__inner {
    gap: 2.75rem;
  }
}
.offers__grid {
  display: grid;
  justify-items: center;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 75rem) {
  .offers__grid {
    grid-template-columns: repeat(3, minmax(0, 24rem));
    align-items: center;
    justify-content: center;
  }
}
.offers .offer-card--six {
  order: 1;
}
.offers .offer-card--three {
  order: 2;
}
.offers .offer-card--two {
  order: 3;
}
@media (min-width: 75rem) {
  .offers .offer-card--two {
    order: 1;
  }
  .offers .offer-card--six {
    order: 2;
  }
  .offers .offer-card--three {
    order: 3;
  }
}
.offers--repeat {
  border-top: 0.75rem solid #ffffff;
}
.offers__repeat-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 37.5rem;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(89deg, #111312 8%, #1e2323 46%, #111312 100%);
}
@media (min-width: 75rem) {
  .about {
    aspect-ratio: 1920/785;
    min-height: 36.8125rem;
  }
}
.about::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.82));
}
@media (min-width: 75rem) {
  .about::after {
    background: none;
  }
}
.about__background, .about__background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about__background img {
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about__product {
  position: relative;
  z-index: 1;
  order: 2;
  display: block;
  width: min(80%, 20rem);
  height: auto;
  margin: auto auto 0;
}
@media (min-width: 75rem) {
  .about__product {
    position: absolute;
    bottom: 0;
    left: 46.5104%;
    width: auto;
    height: 100%;
    margin: 0;
  }
}
.about__inner {
  position: relative;
  z-index: 2;
  order: 1;
  display: flex;
  align-items: center;
  flex: 1;
  padding-block: 2.5rem;
}
.about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 35.4375rem;
}
.about__content .eyebrow {
  color: #e2c677;
}
.about__content h2 {
  font-size: 1.75rem;
}
@media (min-width: 48rem) {
  .about__content h2 {
    font-size: 2.25rem;
  }
}
.about__content h2 span {
  color: #f57c22;
}
.about__content p {
  font-size: 1rem;
}
@media (min-width: 48rem) {
  .about__content p {
    font-size: 1.125rem;
  }
}
.about__content .feature-list li {
  font-size: 1rem;
}

.ingredients {
  background: #fffffb;
  padding-block: 4rem;
}
@media (min-width: 75rem) {
  .ingredients {
    padding-block: 5rem;
  }
}
.ingredients__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.ingredients__grid {
  display: grid;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 48rem) {
  .ingredients__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 75rem) {
  .ingredients__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.benefits {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #111111;
}
.benefits__background, .benefits__background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.benefits__background img {
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 75rem) {
  .benefits {
    min-height: 43.875rem;
  }
}
.benefits__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-block: 4rem;
}
@media (min-width: 75rem) {
  .benefits__inner {
    padding-block: 5rem;
  }
}
@media (min-width: 75rem) {
  .benefits__inner {
    justify-content: center;
    min-height: inherit;
    padding-block: 0;
  }
}
.benefits .section-heading {
  gap: 1rem;
}
@media (min-width: 75rem) {
  .benefits .section-heading {
    width: 44.875rem;
    max-width: 100%;
  }
}
.benefits .section-heading__title, .benefits .section-heading__description {
  max-width: 100%;
}
.benefits__grid {
  display: grid;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 75rem) {
  .benefits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

.testimonials {
  background: #fffffb;
  padding-block: 4rem;
}
@media (min-width: 75rem) {
  .testimonials {
    padding-block: 5rem;
  }
}
.testimonials__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.testimonials__slider {
  display: flex;
  gap: 2rem;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}
.testimonials__slider::-webkit-scrollbar {
  display: none;
}
.testimonials__slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.testimonials__slider > * {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
@media (min-width: 75rem) {
  .testimonials__slider > * {
    flex: 0 0 calc((100% - 2rem) / 2);
    min-width: 0;
  }
}

.shipping {
  color: #e85d04;
  background: #101010;
}
.shipping__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-block: 2.5rem;
  text-align: center;
}
@media (min-width: 48rem) {
  .shipping__inner {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    text-align: left;
  }
}
.shipping__inner picture,
.shipping__inner picture img {
  flex: 0 0 auto;
  width: 8.5625rem;
  height: 8.5625rem;
}
.shipping__inner h2 {
  font-size: 2rem;
}
@media (min-width: 48rem) {
  .shipping__inner h2 {
    font-size: 2.25rem;
  }
}
.shipping__inner h2 strong {
  color: #ffffff;
}
.shipping__inner p {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 1.125rem;
}

.guarantee {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(88deg, #111111, #1d1d1d, #111111);
}
.guarantee__lights {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}
.guarantee__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding-block: 4rem;
}
@media (min-width: 75rem) {
  .guarantee__inner {
    padding-block: 5rem;
  }
}
@media (min-width: 48rem) {
  .guarantee__inner {
    flex-direction: row;
    justify-content: center;
  }
}
.guarantee__badge {
  flex: 0 0 auto;
  width: 18.4375rem;
  height: 18.4375rem;
}
.guarantee__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 37.9375rem;
}
.guarantee__content h2 {
  font-size: 2rem;
}
@media (min-width: 48rem) {
  .guarantee__content h2 {
    font-size: 2.25rem;
  }
}
.guarantee__content h2 span {
  display: block;
  color: #e85d04;
}
.guarantee__content p {
  font-size: 1.125rem;
}
.guarantee__content p a {
  color: inherit;
  text-decoration: underline;
}
.guarantee__content p a:hover {
  color: #e85d04;
}

.faq {
  background: #ffffff;
  padding-block: 4rem;
}
@media (min-width: 75rem) {
  .faq {
    padding-block: 5rem;
  }
}
.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.faq h2 {
  font-size: 2rem;
  text-align: center;
}
@media (min-width: 48rem) {
  .faq h2 {
    font-size: 2.25rem;
  }
}
.faq h2 span {
  color: #e85d04;
}
.faq__list {
  display: grid;
  gap: 1rem;
  width: min(100%, 54.25rem);
}

.faq-item {
  overflow: hidden;
  color: #ffffff;
  background: #111111;
  border-radius: 0.5rem;
  transition: background-color 320ms cubic-bezier(0.4, 0, 0.2, 1), color 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item h3 {
  font-size: inherit;
}
.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 4rem;
  padding: 1rem;
  color: inherit;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
@media (min-width: 48rem) {
  .faq-item__trigger {
    font-size: 1.25rem;
  }
}
.faq-item__toggle {
  position: relative;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
}
.faq-item__icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 320ms cubic-bezier(0.4, 0, 0.2, 1), transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__icon--minus {
  opacity: 0;
  transform: rotate(-90deg);
}
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  color: #4b4b4b;
  background: #fff1e4;
  font-size: 1.125rem;
  transition: grid-template-rows 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__answer-inner {
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s linear 320ms;
}
.faq-item__answer-inner > * {
  padding: 0 1.5rem 1rem;
}
.faq-item__answer-inner > *:first-child {
  padding-top: 1.25rem;
}
.faq-item__answer-inner > *:last-child {
  padding-bottom: 1.5rem;
}
.faq-item__answer-inner a {
  color: #1a0dab;
  font-weight: 600;
  text-decoration: underline;
}
.faq-item__answer-inner ul {
  display: grid;
  gap: 0.25rem;
}
.faq-item__answer-inner img {
  width: min(100%, 16rem);
  height: auto;
}
.faq-item--open {
  color: #ffffff;
  background: #e85d04;
}
.faq-item--open .faq-item__icon--plus {
  opacity: 0;
  transform: rotate(90deg);
}
.faq-item--open .faq-item__icon--minus {
  opacity: 1;
  transform: rotate(0deg);
}
.faq-item--open .faq-item__answer {
  grid-template-rows: 1fr;
}
.faq-item--open .faq-item__answer-inner {
  visibility: visible;
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}/*# sourceMappingURL=style.css.map */