* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Yanone Kaffeesatz", sans-serif;
}

:root {
  --text-font: "Roboto Condensed", sans-serif;
}

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

.container-lg {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

main {
  overflow: hidden;
  background-color: #F8F2EB;
  padding-bottom: 100px;
}

input,
textarea,
button {
  outline: none;
  border: none;
}

header {
  position: relative;
  z-index: 5;
  height: 168px;
}

nav {
  transition: all .3s;
  background-color: #1E2126;
  padding-top: 33px;
  padding-bottom: 28px;

  & .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    & .logo {
      margin-right: 110px;
    }

    & .nav-menu__rows {
      display: flex;
      flex-direction: column;
      gap: 27px;
      width: 100%;

      & .nav-menu__top {
        display: flex;
        align-items: center;
        justify-content: space-between;

        & .address {
          display: flex;
          gap: 12px;
          color: #FFF;
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
        }

        & .nav-contacts {
          display: flex;
          align-items: center;
          gap: 40px;

          & .email {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #FFF;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
          }

          & .button-contact {
            color: #FFF;
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            padding: 14px 30px;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.30);
            background: rgba(255, 255, 255, 0.30);
          }
        }
      }

      & .nav-menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;

        & li {
          & a {
            color: #FFF;
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            /* 100% */
            letter-spacing: 1.2px;
            text-transform: uppercase;
          }
        }

        .menu-separator {
          width: 6px;
          height: 6px;
          border-radius: 6px;
          background-color: #fff;
        }
      }
    }

    & .nav-menu__rows.mobile {}
  }
}

nav.is-fixed {
  position: fixed;
  width: 100%;
  transition: all .3s;
}

.mainscreen {
  position: relative;
  padding-top: 122px;

  & .towers-decor {
    position: absolute;
    left: 0;
    top: -11rem;
    z-index: 0;
  }

  & .mainscreen__inner {
    position: relative;

    & .crus {
      position: absolute;
      right: -8rem;
      top: -19rem;
      z-index: 2;
    }

    & .pieces {
      position: absolute;
      right: -10rem;
      top: -7rem;
      max-width: 100%;
    }

    & .mainscreen-disclaimer {
      color: #1E2126;
      font-family: var(--text-font);
      font-size: 26px;
      font-style: normal;
      font-weight: 500;
      line-height: 120%;
      margin-bottom: 16px;
      max-width: 488px;
      position: relative;
      z-index: 3;
      /* 31.2px */
    }

    & .mainscreen-about {
      color: #1E2126;
      font-size: 50px;
      font-style: normal;
      font-weight: 400;
      line-height: 90%;
      max-width: 544px;
      margin-bottom: 80px;
      position: relative;
      z-index: 3;

      & span {
        color: #BF9064;
      }

      /* 45px */
    }

    & .order {
      color: #FFF;
      text-align: center;
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      border-radius: 50px;
      border: 2px solid #CFA782;
      background-color: #BF9064;
      display: flex;
      max-width: 291px;
      width: 100%;
      justify-content: center;
      align-items: center;
      height: 56px;
      position: relative;
      z-index: 3;
    }
  }
}

.about-product {
  margin-top: 200px;
  position: relative;
  z-index: 3;

  & .about-product__title {
    color: #BF9064;
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    /* 72px */
    margin-bottom: 42px;
  }

  & .about-product__subtitle {
    color: #1E2126;
    font-family: "Yanone Kaffeesatz";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 9px;
  }

  & .about-product-description {
    color: #1E2126;
    font-family: "Roboto Condensed";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 28.8px */
    max-width: 1100px;
  }
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 71px;
}

.product-card {
  background-color: #F2F4F5;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
  border-radius: 20px;
  border: 2px solid #FFF;
}

.product-card h3+img {
  max-width: 100%;
  height: 228px;
  object-fit: contain;
}

.product-card h3 {
  font-size: 18px;
  /* margin-bottom: 10px; */
  color: #000;
  text-align: center;
  font-family: "Yanone Kaffeesatz";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 203px;
}

.product-info {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #BF9064;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  height: 76px;

  & .product-info__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

.product-info span {
  display: flex;
  align-items: center;
  width: 85px;
  height: 46px;
  border-radius: 10px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.target {
  margin-top: 134px;
  overflow: hidden;
  padding-bottom: 120px;
}

.target-inner {
  padding: 50px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #BF9064;
  border-radius: 40px;
  min-height: 567px;

  & .target-inner__info {
    max-width: 574px;

    & .target-inner__title {
      color: #FFF;
      margin-bottom: 40px;
      font-size: 70px;
      font-style: normal;
      font-weight: 400;
      line-height: 90%;
      /* 63px */
    }

    & .targer-inner__subtitle {
      color: #FFF;
      margin-bottom: 55px;
      font-size: 40px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
    }

    & .target-inner__description {
      color: #FFF;
      font-family: var(--text-font);
      font-size: 26px;
      font-style: normal;
      font-weight: 400;
      line-height: 120%;
      /* 31.2px */
    }
  }

  & .target-inner__image {
    position: absolute;
    top: 0;
    right: -3rem;

    & img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
}

.pieces {
  transition: transform 0.1s ease-out;
}

.ingridients {
  margin-top: 120px;
}

.ingridients-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;

  & .ingridients-image {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    margin: 0 auto;
    max-width: 666px;

    & img {
      object-fit: contain;
      width: 100%;
      height: 100%;
    }
  }

  .flower-decor {
    position: absolute;
    top: -15rem;
    right: 0;
    left: -22rem;
    margin: 0 auto;
    max-width: 670px;
    z-index: -1;

    & img {
      object-fit: contain;
      width: 100%;
      height: 100%;
    }
  }

  & .ingridients-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 217px;

    & .ingridients-item {
      max-width: 347px;
      display: flex;
      flex-direction: column;
      gap: 20px;

      & .ingriients-item__name {
        color: #BF9064;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
      }

      & .ingridients-intem__description {
        color: #3A1811;
        font-family: var(--text-font);
        font-size: 26px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;

        & strong {
          font-size: 26px;
          font-style: normal;
          line-height: 120%;
        }

        /* 31.2px */
      }
    }
  }
}


.advantage {
  margin-top: 279px;

}

.advantage-inner {
  border-radius: 40px;
  border: 2px solid #FFF;
  background: #BF9064;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 50px;
  min-height: 523px;

  & .advantage-flower {
    position: absolute;
    right: -17rem;
    top: -27rem;
    max-width: 670px;

    & img {
      object-fit: contain;
      width: 100%;
      height: 100%;
    }
  }

  & .advantage-image {
    position: absolute;
    left: -2rem;
    top: 0;
    max-width: 757px;
    height: 100%;

    & img {
      object-fit: contain;
      width: 100%;
      height: 100%;
    }
  }

  & .advantage-info {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 499px;

    & .advantage-name {
      color: #FFF;
      font-size: 70px;
      font-style: normal;
      font-weight: 400;
      line-height: 90%;
      /* 63px */
    }

    & .advantage-description {
      color: #FEFEFF;
      font-size: 26px;
      font-style: normal;
      font-weight: 400;
      line-height: 120%;
      /* 31.2px */
    }
  }
}

.contacts {
  margin-top: 120px;
}

.contacts-inner {
  display: flex;
  flex-direction: column;
  gap: 45px;

  & .contacts-info {
    display: flex;
    justify-content: space-between;
    gap: 50px;

    &:first-child {

      & .contacts-row {
        transform: translateY(-2rem);
      }

    }

    & .contacts-title {
      color: #3A1811;
      font-size: 90px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      margin-bottom: 36px;
    }

    & .contacts-items {
      display: flex;
      flex-direction: column;
      gap: 40px;

      & .contacts-item {
        display: flex;
        flex-direction: column;
        gap: 20px;

        & .contacts-item__label {
          color: #BF9064;
          font-size: 36px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
        }

        & .contacts-item__text {
          color: #3A1811;
          font-family: "Roboto Condensed";
          font-size: 24px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;

          & a {
            color: #3A1811;
            font-family: "Roboto Condensed";
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
          }
        }
      }
    }

    & .contacts-map {
      max-width: 730px;
      height: 360px;
      width: 100%;
      border-radius: 20px;

      & img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        border-radius: 20px;
      }

      & iframe {
        object-fit: contain;
        width: 100%;
        height: 100%;
        border-radius: 20px;
      }
    }
  }
}

footer {

  background-color: #1E2126;
  padding-top: 49px;
  padding-bottom: 42px;

  & .footer-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 60px;

    & .footer-item {
      &:nth-child(3) {
        align-self: flex-start;
      }
    }

    & .footer-menu {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 60px;

      & li {
        & a {
          color: #FFF;
          font-size: 20px;
          font-style: normal;
          font-weight: 500;
          line-height: 24px;
          /* 120% */
          letter-spacing: 1.2px;
        }
      }
    }

    & .footer-contacts {
      display: flex;
      flex-direction: column;
      gap: 16px;

      & .footer-contacts__title {
        color: #FFF;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        /* 120% */
        letter-spacing: 1.2px;
      }

      & a {
        display: flex;
        align-items: center;
        gap: 9px;
        color: #FFF;
        font-family: var(--text-font);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }
    }

    & .footer-address {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 352px;
      width: 100%;

      & .footer-address__item {
        display: flex;
        gap: 10px;

        & span {
          color: #FFF;
          font-family: var(--text-font);
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
        }
      }
    }
  }
}

nav {
  & .nav-inner {
    & .nav-menu__rows.mobile {
      display: none;

      & .nav-menu__top {
        & .nav-contacts {
          & .button-contact {}
        }
      }
    }


  }
}


& .nav-menu__rows.mobile {
  display: none;
}

.burger {
  display: none;
}

.overlay {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.60) 100%) no-repeat;
  position: fixed;
  z-index: 50;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
}

.overlay.active {
  display: block;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 51;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  opacity: 0;
  transition: all .5s;

  & .modal-inner {
    padding: 45px 40px 65px;
    border-radius: 40px;
    background: #BF9064;
    position: relative;
    max-width: 700px;
    width: 100%;

    & .close {
      position: absolute;
      top: 40px;
      right: 40px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
    }

    & .modal-decor {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;

      & img {
        object-fit: contain;
        width: 100%;
        height: 100%;
      }
    }

    & .modal-title {
      position: relative;
      z-index: 2;
      color: #FFF;
      font-size: 50px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      margin-bottom: 53px;
    }

    & .modal-content {
      position: relative;
      z-index: 2;
      max-width: 620px;
      width: 100%;

      & form {
        & .input-group {
          display: flex;
          flex-direction: column;
          gap: 40px;
          margin-bottom: 60px;

          & .input {
            height: 56px;
            width: 100%;

            & input {
              border-radius: 10px;
              border: 2px solid rgba(248, 242, 235, 0.80);
              background: #FFF;
              width: 100%;
              height: 100%;
              display: block;
              color: #000;
              font-family: var(--text-font);
              font-size: 22px;
              font-style: normal;
              font-weight: 400;
              line-height: normal;
              padding-left: 18px;

              &::placeholder {
                color: #000;
                font-family: var(--text-font);
                font-size: 22px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
              }
            }
          }

          & textarea {
            border-radius: 10px;
            border: 2px solid rgba(248, 242, 235, 0.80);
            background: #FFF;
            width: 100%;
            height: 112px;
            display: block;
            color: #000;
            font-family: var(--text-font);
            font-size: 22px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            padding-left: 18px;
            padding-top: 15px;

            &::placeholder {
              color: #000;
              font-family: var(--text-font);
              font-size: 22px;
              font-style: normal;
              font-weight: 400;
              line-height: normal;
            }
          }
        }

        & button {
          display: flex;
          justify-content: center;
          align-items: center;
          margin: 0 auto;
          max-width: 350px;
          width: 100%;
          height: 50px;
          border-radius: 50px;
          border: 2px solid rgba(255, 255, 255, 0.30);
          background-color: rgba(255, 255, 255, 0.30);
          color: #FFF;
          text-align: center;
          font-size: 24px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          cursor: pointer;
        }
      }
    }
  }
}

.modal.active {
  transform: scale(1);
  opacity: 1;
  transition: all .5s;
}

@media(max-width: 1400px) {

  .contacts-inner {
    & .contacts-info {
      & .contacts-items {
        & .contacts-item {
          max-width: 300px;
        }
      }
    }
  }

  .container {
    padding-left: 37px;
    padding-right: 37px;
  }

  .container-lg {
    padding-left: 27px;
    padding-right: 27px;
  }

  .advantage-inner {
    min-height: 413px;

    & .advantage-image {
      position: absolute;
      left: -2rem;
      top: 0;
      /* max-width: 41.5vw; */
      /* height: 53vh; */
    }
  }

  .target-inner {
    min-height: auto;

    & .target-inner__image {
      position: absolute;
      top: 0;
      right: -3rem;
      max-width: 58vw;
    }
  }


}

@media(max-width: 1200px) {

  .advantage-inner {
    min-height: 413px;

    & .advantage-image {
      position: absolute;
      left: -2rem;
      top: 0;
      max-width: 59.5vw;
      /* height: 53vh; */
    }
  }

  .advantage-inner {
    & .advantage-info {
      display: flex;
      flex-direction: column;
      gap: 60px;
      max-width: 300px;
    }
  }

  .mainscreen {
    & .mainscreen__inner {
      & .crus {
        position: absolute;
        right: -8rem;
        top: -15rem;
        z-index: 2;
        max-width: 75vw;

        & img {
          object-fit: contain;
          width: 100%;
          height: 100%;
        }

        /* top: 0; */
      }
    }
  }

  .product-cards {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 20px;

    & .product-card {
      width: 100%;
    }
  }



  .target-inner {
    & .target-inner__info {
      & .targer-inner__subtitle {
        margin-bottom: 16px;
        color: #FFF;
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 90%;
        /* 27px */
      }

      & .targer-inner__subtitle {
        color: #FFF;
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        margin-bottom: 16px;
      }

      & .target-inner__description {
        color: #FFF;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        max-width: 300px;
        /* 19.2px */
      }
    }
  }

  .ingridients-inner {
    & .ingridients-image {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      right: 0;
      margin: 0 auto;
      max-width: 415px;
    }
  }

  .ingridients {
    margin-top: 50px;
  }

  .advantage {
    margin-top: 175px;
  }

  .advantage-inner {
    & .advantage-info {
      gap: 16px;

      & .advantage-name {
        color: #FFF;
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 90%;
        /* 27px */
      }
    }

    & .advantage-description {
      color: #FFF;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 120%;
      /* 19.2px */
    }
  }

  nav {
    & .nav-inner {
      & .logo {
        margin-right: 0px;
      }
    }
  }

  nav {
    & .nav-inner {
      & .nav-menu__rows {
        & .nav-menu__top {
          & .nav-contacts {
            & .button-contact {
              color: #FFF;
              font-size: 12px;
              font-style: normal;
              font-weight: 400;
              line-height: normal;
              padding: 6px 12px;
              border-radius: 50px;
              border: 2px solid rgba(255, 255, 255, 0.30);
              background: rgba(255, 255, 255, 0.30);
            }
          }
        }
      }


    }
  }

}

@media(max-width: 1024px) {
  header {
    position: relative;
    z-index: 5;
    height: 89.78px;
  }

  .about-product {
    margin-top: 120px;
  }

  nav {
    & .nav-inner {
      & .nav-menu__rows.desktop {
        display: none;
      }
    }
  }

  .burger {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 22px;

    & .burger-line {
      height: 2px;
      width: 17px;
      background-color: #fff;
      cursor: pointer;
      position: relative;

      &::before {
        content: '';
        position: absolute;
        width: 25px;
        height: 2px;
        right: 0;
        top: 0;
        background-color: #fff;
        transform: translateY(-10px);
        transition: all .5s;
      }

      &::after {
        content: '';
        position: absolute;
        width: 21px;
        height: 2px;
        right: 0;
        top: 0;
        background-color: #fff;
        transform: translateY(10px);
        transition: all .5s;
      }
    }
  }

  .burger.active {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 22px;

    & .burger-line {
      height: 2px;
      width: 17px;
      background-color: transparent;
      cursor: pointer;
      position: relative;

      &::before {
        content: '';
        position: absolute;
        width: 25px;
        height: 2px;
        right: 0;
        top: 0;
        background-color: #fff;
        transform: translateY(0px) rotate(-45deg);
        transition: all .5s;
      }

      &::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 2px;
        right: 0;
        top: 0;
        background-color: #fff;
        transform: translateY(0px) rotate(45deg);
        transition: all .5s;
      }
    }
  }

  nav {
    & .nav-inner {
      & .nav-menu__rows.mobile {
        display: flex;
        position: absolute;
        top: 89.78px;
        background: #1E2126;
        left: 0;
        padding-right: 38px;
        padding-left: 38px;
        height: 100vh;
        flex-direction: column-reverse;
        justify-content: flex-end;
        padding-top: 53px;
        left: -150%;
        transition: all .5s;
      }
    }
  }

  nav {
    & .nav-inner {
      & .nav-menu__rows.mobile.active {
        left: 0;
        transition: all .5s;
      }
    }
  }

  nav {
    & .nav-inner {
      & .nav-menu__rows {
        & .nav-menu {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 34px;
          flex-direction: column;
          align-items: flex-start;
        }
      }
    }
  }


  nav {
    & .nav-inner {
      & .nav-menu__rows {
        & .nav-menu {
          .menu-separator {
            display: none;
          }
        }
      }
    }
  }

  nav {
    & .nav-inner {
      & .nav-menu__rows.mobile {
        & .nav-menu__top {
          margin-top: 48px;
          flex-direction: column;
          align-items: flex-start;
        }
      }
    }
  }

  nav {
    & .nav-inner {
      & .nav-menu__rows {
        & .nav-menu__top {
          & .address {
            margin-bottom: 20px;
          }
        }
      }
    }
  }


  nav {
    & .nav-inner {
      & .nav-menu__rows.mobile {
        & .nav-menu__top {
          & .nav-contacts {
            flex-direction: column;
            align-items: flex-start;
            gap: 48px;
          }
        }
      }
    }
  }

  nav {
    & .nav-inner {
      & .nav-menu__rows {
        & .nav-menu__top {
          & .nav-contacts {
            & .button-contact {
              color: #FFF;
              font-size: 24px;
              font-style: normal;
              font-weight: 400;
              line-height: normal;
              padding: 14px 30px;
              border-radius: 50px;
              border: 2px solid rgba(255, 255, 255, 0.30);
              background: rgba(255, 255, 255, 0.30);
            }
          }
        }
      }
    }
  }

  nav {
    padding-top: 25px;
    padding-bottom: 25px;

    & .nav-inner {
      & .logo {
        margin-right: 0px;
        max-width: 105px;

        & img {
          object-fit: contain;
          width: 100%;
          height: 100%;
        }
      }
    }
  }
}

@media(max-width: 992px) {
  .advantage-inner {
    & .advantage-image {
      & img {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
    }
  }

  .advantage-inner {
    min-height: 299px;
  }

  .advantage-inner {
    & .advantage-image {
      position: absolute;
      left: -15rem;
      top: 0;
      max-width: 59.5vw;
      /* height: 53vh; */
      z-index: 2;
    }

    & .advantage-info {
      position: relative;
      z-index: 2;
      max-width: 400px;
    }

  }

  .advantage {
    & .container-lg {
      max-width: 100%;
      padding-left: 0;
      padding-right: 0;


      & .advantage-inner {
        border-radius: 0;
      }
    }
  }


  .ingridients-inner {
    flex-direction: column;
    align-items: flex-start;

    & .ingridients-col {
      &:first-child {
        flex-direction: row;
        gap: 0;

        & .ingridients-item {
          &:nth-child(2) {
            transform: translate(2rem, 19rem);
            align-self: flex-end;
          }
        }
      }

      &:nth-child(2) {
        transform: translate(4rem, 18rem);
      }
    }
  }

  .advantage {
    margin-top: 22rem;
  }

  .mainscreen {
    padding-top: 60px;

    & .mainscreen__inner {

      & .mainscreen-disclaimer {
        color: #1E2126;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        max-width: 318px;
        /* 19.2px */
      }

      & .mainscreen-about {
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 90%;
        margin-bottom: 24px;
        max-width: 318px;
        /* 28.8px */
      }
    }
  }

  .mainscreen {
    & .mainscreen__inner {
      & .crus {
        position: absolute;
        right: -8rem;
        top: -9rem;
        z-index: 2;
        max-width: 75vw;
        /* top: 0; */
      }
    }
  }


}

@media(max-width: 768px) {
  .modal {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 51;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    opacity: 0;
    transition: all .5s;

    & .modal-inner {
      padding: 30px 22px 51px;
      border-radius: 40px;
      background: #BF9064;
      position: relative;
      max-width: 700px;
      width: 90%;

      & .close {
        position: absolute;
        top: 40px;
        right: 40px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
      }

      & .modal-decor {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;

        & img {
          object-fit: contain;
          width: 100%;
          height: 100%;
        }
      }

      & .modal-title {
        position: relative;
        z-index: 2;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }

      & .modal-content {
        position: relative;
        z-index: 2;
        max-width: 620px;
        width: 100%;

        & form {
          & .input-group {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 60px;

            & .input {
              height: 46px;
              width: 100%;

              & input {
                border-radius: 10px;
                border: 2px solid rgba(248, 242, 235, 0.80);
                background: #FFF;
                width: 100%;
                height: 100%;
                display: block;
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                padding-left: 18px;

                &::placeholder {
                  font-size: 14px;
                  font-style: normal;
                  font-weight: 400;
                  line-height: normal;
                }
              }
            }

            & textarea {
              border-radius: 10px;
              border: 2px solid rgba(248, 242, 235, 0.80);
              background: #FFF;
              width: 100%;
              height: 112px;
              display: block;
              color: #000;
              font-family: var(--text-font);
              font-size: 22px;
              font-style: normal;
              font-weight: 400;
              line-height: normal;
              padding-left: 18px;
              padding-top: 15px;

              &::placeholder {
                color: #000;
                font-family: var(--text-font);
                font-size: 22px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
              }
            }
          }

          & button {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
            max-width: 220px;
            width: 100%;
            height: 50px;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.30);
            background-color: rgba(255, 255, 255, 0.30);
            color: #FFF;
            text-align: center;
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            cursor: pointer;
          }
        }
      }
    }
  }

  .advantage-inner {
    & .advantage-info {
      max-width: 300px;
      gap: 16px;

      & .advantage-name {
        color: #FFF;
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 90%;
      }

      & .advantage-description {
        color: #FFF;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 19.2px */
      }
    }
  }

  .advantage-inner {
    & .advantage-image {
      position: absolute;
      left: -13rem;
      top: 0;
      max-width: 70.5vw;
      /* height: 53vh; */
      z-index: 2;
    }
  }


  .section.target {
    margin-top: 48px;
  }

  .target-inner {
    & .target-inner__info {
      & .target-inner__title {
        margin-bottom: 15px;
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 90%;
        /* 27px */
      }

      & .targer-inner__subtitle {
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        margin-bottom: 16px;
      }

      & .target-inner__description {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 19.2px */
      }
    }
  }



  .ingridients-inner {
    flex-direction: column;
    align-items: flex-start;

    & .ingridients-col {
      position: relative;
      z-index: 3;

      &:first-child {
        flex-direction: row;
        gap: 0;

        & .ingridients-item {
          &:nth-child(2) {
            transform: translate(2rem, 19rem);
            align-self: flex-end;
          }
        }
      }

      &:nth-child(2) {
        transform: translate(0rem, 18rem);
      }
    }
  }

  .ingridients-inner {
    & .ingridients-col {
      & .ingridients-item {
        max-width: 216px;

        & .ingriients-item__name {
          color: #BF9064;
          font-size: 30px;
          font-style: normal;
          font-weight: 700;
          line-height: normal;
        }

        & .ingridients-intem__description {
          color: #3A1811;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 120%;

          & strong {
            color: #3A1811;
            font-size: 16px;
            font-style: normal;
            line-height: 120%;
          }

          /* 19.2px */
        }
      }
    }
  }

  .product-info span {
    width: initial;
    padding: 5px 7px;
    height: 22px;
    color: #BF9064;
    text-align: center;
    font-size: 9px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
    border-radius: 5px;
  }

  .product-card h3+img {
    height: 94px;
  }

  .product-card h3 {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .product-info {
    & .product-info__col {
      display: flex;
      flex-direction: column;
      gap: 12px;

      & img {
        max-width: 8px;
      }
    }
  }

  .product-info {
    justify-content: space-between;
    gap: 8px;
    height: 60px;
  }

  .product-card {
    padding: 12px;
  }

  .product-cards {
    margin-top: 32px;
  }

  .pieces {
    display: none;
  }

  .contacts-inner {
    & .contacts-info {
      flex-direction: column;
    }
  }

  .contacts {
    margin-top: 65px;
  }

  .contacts-inner {
    & .contacts-info {
      & .contacts-title {
        color: #3A1811;
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 24px;
      }
    }
  }

  .contacts-inner {
    & .contacts-info {
      & .contacts-items {
        gap: 24px;

        & .contacts-item {
          gap: 20px;

          & .contacts-item__label {
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
          }

          & .contacts-item__text {
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
          }
        }
      }
    }
  }

  .contacts-inner {
    & .contacts-info {
      gap: 25px;
    }
  }

  .contacts-inner {
    & .contacts-info {
      &:first-child {
        & .contacts-row {
          transform: translateY(0rem);
        }
      }
    }
  }

  .contacts-inner {
    & .contacts-info {
      & .contacts-map {
        max-width: 730px;
        height: 260px;
        width: 100%;
        border-radius: 20px;
      }
    }
  }

}

@media(max-width: 650px) {
  .target-inner {
    & .target-inner__image {
      position: absolute;
      top: -1rem;
      right: -2rem;
      max-width: 58vw;
      height: 148px;
    }
  }

  .mainscreen {
    & .mainscreen__inner {
      display: flex;
      flex-direction: column;

      & .crus {
        position: relative;
        right: -38px;
        top: -7rem;
        z-index: 2;
        max-width: 100%;
        order: 5;
        height: 26rem;


        & img {
          width: 100%;
          height: 60rem;
          position: absolute;
          right: -5rem;
          top: 0;
        }
      }

      & .pieces {
        /* max-width: 70%; */
        position: absolute;
        right: 8rem;
        top: 10rem;
        max-width: 100%;

        & img {
          object-fit: contain;
          width: 180%;
          height: 100%;
        }
      }
    }
  }

  .about-product {
    & .about-product__title {
      font-size: 30px;
      font-style: normal;
      font-weight: 400;
      line-height: 90%;
      margin-bottom: 24px;
      /* 27px */
    }

    & .about-product__subtitle {
      font-size: 22px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      margin-bottom: 16px;
    }

    & .about-product-description {
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 120%;
      /* 19.2px */
    }
  }

  .mainscreen {
    & .mainscreen__inner {
      & .order {
        color: #FFF;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        border-radius: 50px;
        border: 2px solid #CFA782;
        background-color: #BF9064;
        display: flex;
        max-width: 203px;
        width: 100%;
        justify-content: center;
        align-items: center;
        height: 42px;
        position: relative;
        z-index: 3;
      }
    }
  }


  .advantage-inner {
    padding-right: 37px;
    padding-bottom: 20px;
    padding-top: 20px;

    & .advantage-info {
      max-width: 180px;
      gap: 16px;
    }
  }

  .advantage-inner {
    & .advantage-info {
      max-width: 136px;
      gap: 16px;
    }
  }

  .advantage-inner {
    & .advantage-image {
      position: absolute;
      left: -13rem;
      top: 0;
      max-width: 107%;
      /* height: 53vh; */
      z-index: 2;
    }
  }

  .contacts-inner {
    & .contacts-info {
      & .contacts-map {
        max-width: 730px;
        height: 153px;
        width: 100%;
        border-radius: 20px;
      }
    }
  }

}

@media(max-width: 500px) {
  footer {
    padding-top: 35px;
    padding-bottom: 27px;

    & .footer-items {
      & .footer-menu {
        & li {
          & a {
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            /* 150% */
            letter-spacing: 1.2px;
          }
        }
      }
    }
  }

  footer {
    & .footer-items {
      & .footer-contacts {
        & .footer-contacts__title {
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 24px;
          /* 150% */
          letter-spacing: 1.2px;
        }
      }
    }
  }

  footer {
    & .footer-items {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 24px;

      flex-direction: column;
      align-items: flex-start;
    }
  }

  .ingridients-inner {
    flex-direction: column;
    align-items: flex-start;

    & .ingridients-col {
      position: relative;
      z-index: 3;

      &:first-child {
        flex-direction: row;
        gap: 0;

        & .ingridients-item {

          &:nth-child(2) {
            transform: translate(-2rem, 15rem);
            align-self: flex-end;
          }
        }
      }

      &:nth-child(2) {
        transform: translate(0rem, 15rem);
      }
    }
  }

  .ingridients-inner {
    & .ingridients-col {
      & .ingridients-item {
        gap: 8px;
        max-width: 216px;

        & .ingriients-item__name {
          color: #BF9064;
          font-size: 30px;
          font-style: normal;
          font-weight: 700;
          line-height: normal;
        }

        & .ingridients-intem__description {
          color: #3A1811;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 120%;

          & strong {
            color: #3A1811;
            font-size: 16px;
            font-style: normal;
            line-height: 120%;
          }

          /* 19.2px */
        }
      }
    }
  }

  .target {
    padding-bottom: 35px;
  }

  .ingridients-inner {
    & .ingridients-image {
      position: absolute;
      left: 40px;
      top: 50%;
      transform: translateY(-50%);
      right: 0;
      margin: 0 auto;
      max-width: 415px;
    }
  }

  .target-inner {
    padding: 20px 11px;
    border-radius: 10px;

    & .target-inner__info {
      & .targer-inner__subtitle {
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        margin-bottom: 16px;
        max-width: 102px;
      }
    }
  }

  .mainscreen {
    & .mainscreen__inner {
      display: flex;
      flex-direction: column;

      & .crus {
        position: relative;
        right: -38px;
        top: -11rem;
        z-index: 2;
        max-width: 100%;
        order: 5;
        height: 18rem;


        & img {
          width: 100%;
          height: 60rem;
          position: absolute;
          right: 0rem;
          top: 0;
        }
      }

      & .pieces {
        /* max-width: 70%; */
        position: absolute;
        right: 8rem;
        top: 10rem;
        max-width: 100%;

        & img {
          object-fit: contain;
          width: 180%;
          height: 100%;
        }
      }
    }
  }
}

@media(max-width: 450px) {
  .ingridients-inner {
    flex-direction: column;
    align-items: flex-start;

    & .ingridients-col {
      position: relative;
      z-index: 3;

      &:first-child {
        flex-direction: row;
        gap: 0;

        & .ingridients-item {

          &:nth-child(2) {
            transform: translate(-2rem, 15rem);
            align-self: flex-end;
          }
        }
      }

      &:nth-child(2) {
        transform: translate(0rem, 15rem);
      }
    }
  }

  .ingridients-inner {
    & .ingridients-col {
      & .ingridients-item {
        gap: 8px;
        max-width: 192px;

        & .ingriients-item__name {
          color: #BF9064;
          font-size: 30px;
          font-style: normal;
          font-weight: 700;
          line-height: normal;
        }

        & .ingridients-intem__description {
          color: #3A1811;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 120%;

          & strong {
            color: #3A1811;
            font-size: 16px;
            font-style: normal;
            line-height: 120%;
          }

          /* 19.2px */
        }
      }
    }
  }

  .target {
    padding-bottom: 35px;
  }

  .ingridients-inner {
    & .ingridients-image {
      position: absolute;
      left: 40px;
      top: 50%;
      transform: translateY(-50%);
      right: 0;
      margin: 0 auto;
      max-width: 415px;
    }
  }

  .mainscreen {
    & .mainscreen__inner {
      & .crus {
        position: relative;
        right: -38px;
        top: -8rem;
        z-index: 2;
        max-width: 100%;
        order: 5;
        height: 18rem;

        & img {
          width: 123%;
          height: 55rem;
          position: absolute;
          right: 0rem;
          top: 0;
        }
      }


    }
  }
}

@media(max-width: 420px) {
  .ingridients-inner {
    flex-direction: column;
    align-items: flex-start;

    & .ingridients-col {
      position: relative;
      z-index: 3;

      &:first-child {
        flex-direction: row;
        gap: 0;

        & .ingridients-item {
          flex: 0 0 58%;

          &:nth-child(2) {
            transform: translate(-1rem, 15rem);
            align-self: flex-end;
            flex: 0 0 53%;
          }
        }
      }

      &:nth-child(2) {
        transform: translate(0rem, 16rem);
      }
    }
  }

  .ingridients-inner {
    & .ingridients-col {
      & .ingridients-item {
        gap: 8px;
        max-width: 200px;
        width: 100%;

        & .ingriients-item__name {
          color: #BF9064;
          font-size: 30px;
          font-style: normal;
          font-weight: 700;
          line-height: normal;
        }

        & .ingridients-intem__description {
          color: #3A1811;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 120%;

          & strong {
            color: #3A1811;
            font-size: 16px;
            font-style: normal;
            line-height: 120%;
          }

          /* 19.2px */
        }
      }
    }
  }

  .target {
    padding-bottom: 35px;
  }

  .ingridients-inner {
    & .ingridients-image {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translate(-1rem, -50%);
      right: 0;
      margin: 0 auto;
      max-width: 520px;
      width: 135%;
      height: 117%;
    }
  }

  .advantage {
    margin-top: 18rem;
  }
}

@media(max-width: 376px) {
  .ingridients-inner {
    flex-direction: column;
    align-items: flex-start;

    & .ingridients-col {
      position: relative;
      z-index: 3;

      &:first-child {
        flex-direction: row;
        gap: 0;

        & .ingridients-item {
          flex: 0 0 66%;

          &:nth-child(2) {
            transform: translate(-3rem, 15rem);
            align-self: flex-end;
            flex: 0 0 58%;
          }
        }
      }

      &:nth-child(2) {
        transform: translate(0rem, 16rem);
      }
    }
  }

  .ingridients-inner {
    & .ingridients-col {
      & .ingridients-item {
        gap: 8px;
        max-width: 200px;
        width: 100%;

        & .ingriients-item__name {
          color: #BF9064;
          font-size: 30px;
          font-style: normal;
          font-weight: 700;
          line-height: normal;
        }

        & .ingridients-intem__description {
          color: #3A1811;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 120%;

          & strong {
            color: #3A1811;
            font-size: 16px;
            font-style: normal;
            line-height: 120%;
          }

          /* 19.2px */
        }
      }
    }
  }

  .target {
    padding-bottom: 35px;
  }

  .ingridients-inner {
    & .ingridients-image {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translate(-1rem, -50%);
      right: 0;
      margin: 0 auto;
      max-width: 520px;
      width: 135%;
      height: 117%;
    }
  }
}