  * {
      box-sizing: border-box;
    }

    .btn-reset {
      border: none;
      padding: 0;
      background: transparent;
      cursor: pointer;
    }

    .list-reset {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .flex {
      display: flex;
    }

    a {
      text-decoration: none;
    }
    
    .disable-scroll {
      position: relative;
      overflow: hidden;
      height: 100%;
      width: 100%;
    }

/*меню*/

    .header {
      position: fixed;
      width: 100%;
      padding: 15px 0;
      top: 0;
      left: 0;
      background: #fff;
      z-index: 1000;
    }

    .header__container {
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 160px;
      justify-content: space-between;
      align-items: center;
    }

    .header__right {
      justify-content: flex-end;
      align-items: center;
    }

    .header__link {
      position: relative;
      display: inline-block;
      /*width: 248px;*/
      /*height: 43.55px;*/
      /*padding: 14px 15px;*/
      /*padding-right: 27px;*/
      width: 290px;
      height: 48px;
      padding: 15px 8px;
      margin-right: 25px;
      font-family: 'Montserratall',Arial,sans-serif;
      font-style: normal;
      font-weight: 600;
      font-size: 16px;
      line-height: 20px;
      color: #025144 !important;
      z-index: 140;
      text-align: center;
      transition: transform .3s ease-in-out;
    }

    .header__link::before {
      content: ' ';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-image: url(https://static.tildacdn.com/tild6563-6331-4062-b363-363336376439/subscribe-btn.svg);
      background-repeat: no-repeat;
      background-size: cover;
    }
    
    .header__link--kit::before {
      background-image: url(https://static.tildacdn.com/tild3861-6337-4263-b865-376266353465/btn-kit.svg);
    }
    
    .header__link--mobile {
      display: none;
    }
    
    .burger {
      position: relative;
      width: 35px;
      height: 25px;
      background-image: url('https://static.tildacdn.com/tild6666-3830-4634-a332-343537376136/burger.svg');
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: 0;
      z-index: 140;
      transition: background-image .3s ease-in-out;
    }

    .burger.active {
      background-image: url('https://static.tildacdn.com/tild6634-6130-4065-b566-653532303931/burger-active.svg');
    }

    .nav__bg {
      visibility: hidden;
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100vh;
      z-index: -1;
      opacity: 0;
      transition: opacity .3s ease-in-out;
      pointer-events: none;
    }

    .nav__bg.active {
      visibility: visible;
      opacity: 1;
      background: rgba(0, 0, 0, 0.7);
      z-index: 120;
    }

    .nav__bg.hidden {
      visibility: visible;
      opacity: 0;
      background: rgba(0, 32, 27, 0.55);
      z-index: 120;
    }

    .nav__wrap {
      position: absolute;
      top: 0;
      right: 0;
      min-width: 1040px;
      width: calc(1040 / 1920 * 100%);
      height: 100vh;
      padding: 192px 112px 35px;
      padding-right: max(160px, calc((100% - 1600px) / 2 + 160px));
      z-index: 130;
      background: #fff;
      transform: translateX(200%);
      transition: transform .3s ease-in-out;
    }

    .nav__wrap.active {
      transform: translateX(0);
    }
    
    .nav__content {
      display: flex;
      height: 100%;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-end; 
    }

    .nav__list {
      flex-direction: column;
      align-items: flex-end;
      padding-left: 0 !important;
    }

    .nav__item:not(:last-child) {
      margin-bottom: 35px;
    }

    .nav__link {
      position: relative;
      font-family: 'Montserratall',Arial,sans-serif;
      font-weight: 500;
      font-size: 30px;
      line-height: 37px;
      color: #9DC958 !important;
      transition: color .3s ease-in-out;
      white-space: nowrap;
    }

    .nav__link::after {
      position: absolute;
      content: ' ';
      width: 100%;
      height: 4px;
      bottom: -15px;
      right: 1px;
      background-image: url('https://static.tildacdn.com/tild6234-3463-4535-b931-386165666237/line.svg');
      background-repeat: no-repeat;
      background-size: cover;
      transition: opacity .3s ease-in-out;
      opacity: 0;
    }

    .nav__link:active {
      color: #025144 !important;
    }
    
    .nav__link:active::after {
      opacity: 1;
    }

    .socials__link:not(:last-child) {
      margin-right: 15px;
    }

    .socials__link img {
      transition: transform .3s ease-in-out;
    }
    
    .nav__btns {
      display: none;
    }

    
    @media (min-width: 1200px) {
      .header__link:hover {
        transform: scale(1.1);
      }
      
      .socials__link:hover img {
        transform: scale(1.1);
      }
      
      .nav__link:hover {
        color: #025144 !important;
      }
    
      .nav__link:hover::after {
        opacity: 1;
      }
      
      ::-webkit-scrollbar-thumb {
        background:#ff8657;
        border-radius:10px;
          
      }
      
      ::-webkit-scrollbar {
        width:10px;
        height:10px;
        background-color:#fff;
        transition:background-color 1s ease;
      }
    }
    
    @media (max-width: 1200px) {
      .t702 .t-submit {
        width: 256px !important;
        height: 45px !important;
        padding-left: 30px;
        padding-right: 30px;
      }
    }

    @media (max-width: 960px) {
      .header__container {
        padding: 0 10px;
      }

      .nav__wrap {
        min-width: unset;
        width: 100%;
        padding: 192px 50px;
        overflow-y: scroll;
      }

      .nav__content {
        align-items: center;
      }

      .nav__list {
        align-items: center;
        margin-bottom: 50px !important;
      }
    }
    
    @media (max-width: 1310px) {
      .nav__btns {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .header__link {
        display: none;
      }

      .header__link--mobile {
        display: block;
        margin-right: 0;
      }
      
      .header__link--kit {
        margin-bottom: 35px;
      }
    }

    @media (max-width: 698px) {
      /*.header__link {*/
      /*  display: none;*/
      /*}*/

      /*.header__link--mobile {*/
      /*  display: block;*/
      /*  margin-right: 0;*/
      /*}*/

      .logo {
        width: calc(207 / 678 * 100%);
      }
      
      .logo__img {
        width: 100%;
      }
      
      .nav__wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 92px 50px;
      }

      .nav__content {
        justify-content: space-between;
      }

      .socials {
        margin-bottom: 50px;
      }
    }

    @media screen and (max-width: 640px) {
      .t702 .t-submit, .t702 .t-input {
        height: 45px !important;
      }
    }


    @media screen and (max-width: 560px) {
      .t702 .t-popup__block-close {
        background: #fff !important;
      }

      .t-popup__close-icon g {
        fill: #025144 !important;
      }
    }


    @media (max-width: 480px) {
      #rec475594540 {
        padding-top: 20px;
      }

      .logo {
        width: calc(210 / 460 * 100%);
      }

      .burger {
        width: 28px;
        height: 20px;
      }

      .nav__link {
        font-size: 24px;
        line-height: 100%;
      }
    }
    
/*попап*/

.t702 .t-form__submit {
  text-align: left;
}

.t702 .t-submit::before {
  position: absolute;
  content: ' ';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(https://static.tildacdn.com/tild3038-3136-4239-a331-316236363065/header-btn.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.t702 .t-submit {
  width: 65%;
  padding-left: 30px;
  transition: transform .3s ease-in-out;
}

.t702 .t-submit:hover,
.discount-link:hover {
  transform: scale(1.1);
}

.t702 .t702__form-bottom-text {
  position: relative;
  padding-left: 20px;
  color: #9dc958;
  font-size: 11px;
  font-family: 'Montserratall',Arial,sans-serif;
  line-height: 1.25;
  font-weight: 400;
}

.t702 .t702__form-bottom-text::after {
  position: absolute;
  content: ' ';
  top: 5px;
  left: 0;
  height: 14px;
  width: 15px;
  background-image: url(https://static.tildacdn.com/tild3339-3038-4233-b338-643665643333/star.svg);
  background-repeat: no-repeat;
  background-size: cover;
}


.t702 .t-popup__block-close-button {
    width: 23px;
    height: 23px;
    overflow: visible;
    padding: 0px;
}