@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.7;
}

.bebas {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.txt-xxl {
  font-size: clamp(6rem, 8vw + 1rem, 8rem);
  line-height: 1.1;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.txt-xl {
  font-size: clamp(4.8rem, 6vw + 1rem, 6rem);
  line-height: 1.1;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.txt-l {
  font-size: clamp(3.6rem, 4.8vw + 1rem, 4.8rem);
  line-height: 1.3;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.txt-m {
  font-size: clamp(2.8rem, 3.6vw + 1rem, 3.6rem);
  line-height: 1.3;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.txt-s {
  font-size: 2.4rem;
  line-height: 1.7;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 64em) {
  html {
    font-size: 56.25%;
  }
}
@media screen and (max-width: 48em) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 28.75em) {
  html {
    font-size: 47.35%;
  }
}

body {
  box-sizing: border-box;
  background-color: #fff;
}

::selection {
  background-color: #408d6d;
  color: #fff;
}

a {
  text-decoration: none;
}

a,
button {
  display: inline-block;
}

button,
input,
textarea {
  outline: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
}

ol,
ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  border: 0;
}

.bold {
  font-weight: 700;
}

.normal {
  font-weight: 400;
}

.light {
  font-weight: 300;
}

.block {
  display: block;
}

.container {
  max-width: 127.8rem;
  margin: 0 auto;
}

.color-chocolate {
  color: #c55256;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  font-weight: 700;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  /* Hide the label while loading */
  /* Fallback if you do not wrap text in a span */
  /* Spinner */
}
.btn--primary {
  background-color: #408d6d;
}
.btn--primary:hover {
  background-color: rgb(48.0780487805, 105.9219512195, 81.8829268293);
}
.btn--ghost {
  border: 2px solid #408d6d;
}
.btn--ghost:hover {
  background-color: #408d6d;
}
.btn--loading {
  pointer-events: none;
  cursor: not-allowed;
}
.btn--loading span, .btn--loading .btn__label {
  visibility: hidden;
}
.btn--loading {
  color: transparent;
}
.btn--loading::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid white;
  border-top-color: transparent;
  animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
.input:not(:last-child) {
  margin-bottom: 2rem;
}
.input__label {
  display: block;
}
.input__control {
  padding: 1rem;
  background-color: #f2f2f2;
  border-left: 8px solid #408d6d;
  width: 100%;
}
.input__control--error + .input__error {
  display: block;
}
.input__control:focus {
  border-left-color: rgb(48.0780487805, 105.9219512195, 81.8829268293);
  outline: 2px solid rgb(48.0780487805, 105.9219512195, 81.8829268293);
}
.input__error {
  font-size: 1.6rem;
  color: #c55256;
  display: none;
}

.toast {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  max-width: 800px;
  padding: 10px 20px;
  margin: auto;
  background: #cccccc;
  font-family: inherit;
  text-align: center;
  color: #333333;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, top 0.2s, visibility 0.2s;
  border-radius: 3px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.toast--visible {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
.toast--success {
  background: #00c02b;
  border-color: #009d23;
  color: #ffffff;
}
.toast--error {
  background: #d50000;
  border-color: #ba0000;
  color: #ffffff;
}

.nav {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100vw;
  height: 8rem;
  padding: 1rem 2.4rem 0;
  background-color: #fff;
  font-family: "Bebas Neue", sans-serif;
}
.nav--expanded .nav__background {
  opacity: 1;
  transform: scaleX(1);
  pointer-events: auto;
}
.nav--expanded .nav__list {
  opacity: 1;
  pointer-events: auto;
}
.nav__container {
  width: 100%;
  height: 100%;
}
.nav__container .container {
  height: 100%;
}
.nav__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2;
  transform: scaleX(0);
  transform-origin: right;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.nav__logo-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  padding-bottom: 1rem;
}
.nav__logo {
  width: 6rem;
  height: auto;
}
.nav__list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  z-index: 3;
  height: 100%;
}
@media screen and (max-width: 36.25em) {
  .nav__list {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 3rem;
    position: fixed;
    top: 20rem;
    right: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
}
.nav__list-item {
  height: 100%;
}
.nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 1.6rem;
  border-bottom: 1rem solid transparent;
  color: #000;
  font-size: 2rem;
  transition: border-bottom-color 0.3s;
}
@media screen and (max-width: 36.25em) {
  .nav__link {
    color: #fff;
    font-size: 3.2rem;
  }
}
.nav__link:hover {
  border-bottom-color: #408d6d;
}
.nav__link--active {
  color: rgb(48.0780487805, 105.9219512195, 81.8829268293);
  border-bottom-color: rgb(48.0780487805, 105.9219512195, 81.8829268293);
}

.hamburger {
  display: none;
  position: relative;
  z-index: 4;
  height: 4rem;
  width: 4rem;
  background-color: transparent;
}
@media screen and (max-width: 36.25em) {
  .hamburger {
    display: block;
  }
}
.hamburger--active .hamburger__line {
  background-color: transparent;
}
.hamburger--active .hamburger__line::before {
  transform: rotate(45deg);
}
.hamburger--active .hamburger__line::after {
  transform: rotate(-45deg);
}
.hamburger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
  background-color: #408d6d;
}
.hamburger__line::before, .hamburger__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #408d6d;
  transition: transform 0.3s;
}
.hamburger__line::before {
  transform: translateY(-1.2rem);
}
.hamburger__line::after {
  transform: translateY(1.2rem);
}

.footer {
  padding: 2.4rem;
  background-color: #fff;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2.4rem;
  align-items: center;
}
@media screen and (max-width: 26.875em) {
  .footer__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.footer__logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__logo {
  height: 6rem;
}
.footer__social-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
.footer__social-link {
  transition: transform 0.3s;
}
.footer__social-link:hover {
  transform: translateY(-0.4rem);
}
.footer__social-icon {
  width: 3.2rem;
  height: auto;
}

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  padding: 34rem 2.4rem 8rem;
}
@media screen and (max-width: 48.125em) {
  .hero {
    background-position: 55% center;
  }
}
@media screen and (max-width: 31.25em) {
  .hero {
    background-position: 65% center;
  }
}
.hero__wrapper {
  position: relative;
  z-index: 1;
}
.hero__content-wrapper {
  color: #fff;
}
.hero__text {
  max-width: 58rem;
  margin-bottom: 3.2rem;
}

.intro {
  position: relative;
  z-index: 2;
  padding: 8rem 2.4rem 8rem;
  background-image: url("../img/bg.jpg");
  background-size: cover;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-gap: 4rem;
  align-items: center;
}
@media screen and (max-width: 68.75em) {
  .intro__grid {
    grid-template-columns: 1.5fr 1fr;
  }
}
@media screen and (max-width: 58.75em) {
  .intro__grid {
    grid-template-columns: 1fr;
    grid-gap: 6rem;
  }
}
@media screen and (max-width: 58.75em) {
  .intro__content-wrapper {
    max-width: 70rem;
  }
}
.intro__title {
  margin-bottom: 1.2rem;
}
.intro__img-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.intro__img {
  width: 100%;
  height: auto;
  max-height: 40rem;
  transform-origin: left center;
}

.showcase {
  height: 48rem;
  background-image: linear-gradient(to bottom, rgba(64, 141, 109, 0.7), rgba(48.0780487805, 105.9219512195, 81.8829268293, 0.7)), url("../img/gud_showcase.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (max-width: 50em) {
  .showcase {
    background-image: url("../img/gud_showcase.jpg");
    background-attachment: scroll;
    height: 36rem;
  }
}

.flavours {
  position: relative;
  z-index: 1;
  padding: 8rem 2.4rem;
}
.flavours__header {
  max-width: 66rem;
  margin-bottom: 8rem;
}
.flavours__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  max-width: 94rem;
}
@media screen and (max-width: 52.1875em) {
  .flavours__grid {
    grid-column-gap: 4rem;
  }
}
@media screen and (max-width: 36.875em) {
  .flavours__grid {
    grid-template-columns: 1fr;
  }
}
.flavours__grid-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2.4rem;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 36.875em) {
  .flavours__grid-item {
    text-align: left;
  }
}
.flavours__grid-item--almond .flavours__img-wrapper {
  margin-top: 1rem;
}
.flavours__grid-item--almond .flavours__img-wrapper::before {
  top: -1rem;
  background-color: rgba(180, 170, 140, 0.3);
}
.flavours__grid-item--orange .flavours__img-wrapper {
  margin-bottom: 1rem;
}
.flavours__grid-item--orange .flavours__img-wrapper::before {
  bottom: -1rem;
  background-color: rgba(242, 127, 87, 0.3);
}
.flavours__grid-item--orange .flavours__backdrop {
  top: unset;
  bottom: 0;
  left: 3rem;
}
@media screen and (max-width: 36.875em) {
  .flavours__grid-item--orange .flavours__backdrop {
    left: unset;
    right: 0;
  }
}
.flavours__grid-item--peanut .flavours__img-wrapper {
  margin-top: 1rem;
}
.flavours__grid-item--peanut .flavours__img-wrapper::before {
  top: -1rem;
  background-color: rgba(226, 172, 97, 0.3);
}
.flavours__grid-item--lemon .flavours__content {
  max-width: 32rem;
  margin: 0 auto;
}
@media screen and (max-width: 36.875em) {
  .flavours__grid-item--lemon .flavours__content {
    max-width: 100%;
    margin: unset;
  }
}
.flavours__grid-item--lemon .flavours__img-wrapper {
  margin-bottom: 1rem;
}
.flavours__grid-item--lemon .flavours__img-wrapper::before {
  bottom: -1rem;
  background-color: rgba(237, 209, 93, 0.3);
}
.flavours__grid-item--lemon .flavours__backdrop {
  top: unset;
  bottom: 0;
  left: 3rem;
}
@media screen and (max-width: 36.875em) {
  .flavours__grid-item--lemon .flavours__backdrop {
    left: unset;
    right: 0;
  }
}
.flavours__img-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.flavours__img-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 80%;
}
.flavours__backdrop {
  position: absolute;
  top: 0;
  left: -2rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  object-fit: cover;
}
@media screen and (max-width: 36.875em) {
  .flavours__backdrop {
    max-width: 36rem;
    object-fit: contain;
    opacity: 0.3;
  }
}
@media screen and (max-width: 30em) {
  .flavours__backdrop {
    max-width: 100%;
  }
}
.flavours__img {
  height: 100%;
  max-height: 54rem;
  width: auto;
}

.gifts__intro {
  padding: 40rem 2.4rem 4rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/gifts.jpg");
  background-size: cover;
  background-position: center;
}
.gifts__intro-content {
  max-width: 77.2rem;
  color: #fff;
}
.gifts__cta {
  padding: 4rem 2.4rem;
}
.gifts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4rem;
  max-width: 106rem;
}
@media screen and (max-width: 62.1875em) {
  .gifts__grid {
    grid-template-columns: 1fr 1.5fr;
  }
}
@media screen and (max-width: 56.25em) {
  .gifts__grid {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
}
@media screen and (max-width: 55.625em) {
  .gifts__cta-title {
    max-width: 60rem;
  }
}
.gifts__list {
  list-style: disc;
  margin: 1.2rem 0 2rem 2rem;
}
.usp {
  padding: 8rem 2.4rem;
  background-color: #eaf6f1;
}
.usp__header {
  margin-bottom: 3.2rem;
}
.usp__title {
  color: #408d6d;
}
.usp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2.4rem;
  max-width: 111.4rem;
}
@media screen and (max-width: 43.125em) {
  .usp__grid {
    grid-template-columns: 1fr;
    grid-gap: 3.2rem;
    margin-top: 3.2rem;
  }
}
.usp__grid-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
}
@media screen and (max-width: 43.125em) {
  .usp__grid-item {
    grid-template-rows: auto;
    grid-template-columns: max-content 1fr;
    grid-gap: 2rem;
  }
}
@media screen and (max-width: 18.75em) {
  .usp__grid-item {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}
.usp__icon {
  align-self: end;
  width: 6.6rem;
  height: auto;
}
@media screen and (max-width: 43.125em) {
  .usp__icon {
    align-self: center;
  }
}
.usp__content-wrapper {
  max-width: 32rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #408d6d;
}
@media screen and (max-width: 43.125em) {
  .usp__content-wrapper {
    max-width: 52rem;
  }
}

.logos {
  padding: 6rem 0;
  background-color: #fff;
}
.logos__header {
  padding: 0 2.4rem;
  margin-bottom: 2.4rem;
  text-align: center;
}
.logos__wrapper {
  position: relative;
  z-index: 1;
}
.logos__wrapper::before, .logos__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 3;
  width: 100%;
  max-width: 6rem;
  height: 100%;
  pointer-events: none;
}
.logos__wrapper::before {
  left: 0;
  background-image: linear-gradient(to right, rgba(251, 249, 247, 0.6), transparent);
}
.logos__wrapper::after {
  right: 0;
  background-image: linear-gradient(to left, rgba(251, 249, 247, 0.6), transparent);
}
.logos__logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 2.4rem;
  height: 12rem;
}
.logos__logo {
  height: auto;
  width: 100%;
  max-width: 20rem;
  max-height: 10rem;
  object-fit: contain;
}

.cta {
  padding: 22rem 2.4rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 55em) {
  .cta {
    background-position: bottom;
  }
}
@media screen and (max-width: 41.625em) {
  .cta {
    padding: 12rem 2.4rem 0;
  }
}
.cta__grid {
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  grid-gap: 3.2rem;
  align-items: end;
}
@media screen and (max-width: 55em) {
  .cta__grid {
    grid-template-columns: 1fr;
    grid-gap: 6rem;
  }
}
.cta__content-wrapper {
  max-width: 66.6rem;
  padding-bottom: 4rem;
  color: #fff;
}
.cta__title {
  margin-bottom: 2rem;
  max-width: 52rem;
}
.cta__btn-wrapper {
  margin-top: 2rem;
}
.cta__outro {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #408d6d;
}
.cta__logo-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 35em) {
  .cta__logo-wrapper {
    justify-content: flex-start;
  }
}
.cta__logo {
  width: 100%;
  height: auto;
  transform: translateY(1rem);
}
@media screen and (max-width: 55em) {
  .cta__logo {
    max-width: 40rem;
  }
}

.story {
  padding: 26rem 2.4rem 6rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/journey.jpg");
  background-size: cover;
  background-position: center;
}
.story__content {
  max-width: 73rem;
  color: #fff;
}
.founders {
  background-image: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)), url("../img/gud_pattern.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  padding: 6rem 2.4rem;
}
.founders__text {
  max-width: 68rem;
  margin-bottom: 4.4rem;
}
.founders__grid {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-gap: 4rem;
}
@media screen and (max-width: 39.375em) {
  .founders__grid {
    grid-template-columns: 1fr;
    grid-gap: 2.4rem;
  }
}
.founders__grid-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.founders__img {
  width: 14rem;
  height: 14rem;
  border-radius: 100px;
  object-fit: cover;
}
.purpose {
  padding: 8rem 2.4rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../img/purpose.jpg");
  background-size: cover;
  background-position: center;
}
.purpose__content {
  max-width: 60rem;
  color: #fff;
}
.purpose__header {
  margin-bottom: 28rem;
}
.vision {
  padding: 8rem 2.4rem 0;
}
.vision__text {
  max-width: 100.6rem;
  margin-bottom: 4rem;
}
.vision__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.vision__img {
  width: 100%;
  height: 60rem;
  object-fit: cover;
  object-position: top;
}
@media screen and (max-width: 43.125em) {
  .vision__img {
    height: 30rem;
  }
}
@media screen and (max-width: 36.25em) {
  .vision__img {
    height: 26rem;
  }
}
@media screen and (max-width: 31.25em) {
  .vision__img {
    height: 20rem;
  }
}

.product-header {
  padding: 26rem 2.4rem 2rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/products.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.product-header__content {
  max-width: 56rem;
}
.product-header__text {
  margin-bottom: 3rem;
}
.product-header__stat {
  display: inline-block;
  width: max-content;
}

.product {
  position: relative;
  z-index: 1;
  padding: 10rem 2.4rem 0;
  overflow: hidden;
}
.product--almond {
  background-color: rgb(240.3947368421, 238.4473684211, 232.6052631579);
  border-bottom: 3px solid #b4aa8c;
}
.product--almond .product__img-wrapper::after {
  background-image: linear-gradient(to bottom, transparent, rgb(240.3947368421, 238.4473684211, 232.6052631579));
}
.product--orange {
  background-color: rgb(252.9889502762, 235.1988950276, 229.0110497238);
  border-bottom: 3px solid #f27f57;
}
.product--orange .product__img-wrapper::after {
  background-image: linear-gradient(to bottom, transparent, rgb(252.9889502762, 235.1988950276, 229.0110497238));
}
.product--orange .product__backdrop {
  transform: scaleX(1);
}
.product--peanut {
  background-color: rgb(249.7272727273, 239.9090909091, 226.2727272727);
  border-bottom: 3px solid #e2ac61;
}
.product--peanut .product__img-wrapper::after {
  background-image: linear-gradient(to bottom, transparent, rgb(249.7272727273, 239.9090909091, 226.2727272727));
}
.product--lemon {
  background-color: rgb(252.3, 248.1, 230.7);
  border-bottom: 3px solid #edd15d;
}
.product--lemon .product__img-wrapper::after {
  background-image: linear-gradient(to bottom, transparent, rgb(252.3, 248.1, 230.7));
}
.product--lemon .product__backdrop {
  transform: scaleX(1);
}
.product__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
}
.product__backdrop {
  position: absolute;
  top: 3rem;
  right: -5rem;
  width: 100%;
  max-width: 44rem;
  opacity: 0.3;
  transform: scaleX(-1);
}
@media screen and (max-width: 67.5em) {
  .product__backdrop {
    max-width: 32rem;
  }
}
@media screen and (max-width: 46.875em) {
  .product__backdrop {
    opacity: 0.2;
  }
}
.product__grid {
  display: grid;
  grid-template-columns: 30rem 1fr;
  grid-gap: 6rem;
  align-items: stretch;
}
@media screen and (max-width: 61.25em) {
  .product__grid {
    grid-gap: 3.2rem;
  }
}
@media screen and (max-width: 41.25em) {
  .product__grid {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
.product__img-wrapper {
  position: relative;
  z-index: 1;
}
.product__img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@media screen and (max-width: 41.25em) {
  .product__img {
    position: static;
    max-width: 30rem;
    height: 60rem;
  }
}
.product__content {
  padding-top: 3.2rem;
}
.product__info {
  max-width: 66rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #000;
}
.product__info-text {
  margin-bottom: 2rem;
}
.product__stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  grid-gap: 3.2rem;
  margin-top: 6rem;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 48.125em) {
  .product__stats {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
}
@media screen and (max-width: 48.125em) {
  .product__stat {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
  }
}
.product__icon {
  height: 4.8rem;
  max-width: 4rem;
}
@media screen and (max-width: 48.125em) {
  .product__icon {
    height: auto;
    width: 6rem;
    max-width: unset;
  }
}
.product__ingredients {
  padding-bottom: 3.2rem;
}

.product-outro {
  padding: 6rem 2.4rem;
}
.product-outro__text {
  max-width: 83rem;
  margin-bottom: 3.2rem;
}

.contact {
  padding: 24rem 2.4rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/contact.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid #408d6d;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4rem;
}
@media screen and (max-width: 39.375em) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}
.contact__content {
  color: #fff;
}
.contact__text {
  max-width: 49rem;
  margin-bottom: 4rem;
}
.contact__info-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact__info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  background-color: rgba(64, 141, 109, 0.8);
  color: #fff;
  transition: background-color 0.3s;
}
.contact__info:hover {
  background-color: #408d6d;
}
.contact__form {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 4rem 4.2rem;
  max-width: 48rem;
  overflow: hidden;
}
.contact__btn-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.contact__success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 3.2rem;
  background-image: linear-gradient(to top, rgba(64, 141, 109, 0.97), rgba(48.0780487805, 105.9219512195, 81.8829268293, 0.97));
  opacity: 0;
  transform: translateY(50%);
  pointer-events: none;
  color: #fff;
}
.contact__success--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.3s, transform 0.3s;
}
.contact__success--visible .contact__success-icon {
  opacity: 1;
  transition: opacity 0.6s 0.3s;
}
.contact__success--visible .contact__success-content {
  opacity: 1;
  transition: opacity 0.6s 0.6s;
}
.contact__success-icon {
  max-width: 12rem;
  transform: translateX(-1rem);
  opacity: 0;
}
.contact__success-content {
  opacity: 0;
}/*# sourceMappingURL=main.css.map */