@-webkit-keyframes wave {
    0% {
        background-position: 0 50%
    }

    to {
        background-position: 200% 50%
    }
}

@keyframes wave {
    0% {
        background-position: 0 50%
    }

    to {
        background-position: 200% 50%
    }
}

@-webkit-keyframes btn-blink {

    0%,
    to {
        background: #bd2b51;
        -webkit-box-shadow: 0;
        box-shadow: 0
    }

    50% {
        background: #f50747;
        -webkit-box-shadow: 0 0 10px 1px #f50747;
        box-shadow: 0 0 10px 1px #f50747
    }
}

@keyframes btn-blink {

    0%,
    to {
        background: #bd2b51;
        box-shadow: none
    }

    50% {
        background: #f50747;
        -webkit-box-shadow: 0 0 10px 1px #f50747;
        box-shadow: 0 0 10px 1px #f50747
    }
}

@-webkit-keyframes pulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1
    }

    to {
        width: 240%;
        height: 240%;
        opacity: 0
    }
}

@keyframes pulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1
    }

    to {
        width: 240%;
        height: 240%;
        opacity: 0
    }
}

a,
body,
dd,
del,
div,
footer,
form,
h1,
h2,
h3,
header,
html,
i,
img,
li,
menu,
nav,
object,
output,
p,
s,
section,
span,
time,
u,
ul,
var {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline
}


footer,
header,
menu,
nav,
section {
    display: block
}

body,
br {
    line-height: 1
}

body {
    font-family: "Montserrat", Arial, Helvetica, sans-serif
}


ul {
    list-style: none
}

br {
    font-size: 0
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

button,
button:focus,
input,
input:focus {
    outline: 0
}

a {
    text-decoration: none
}

button {
    border: 0;
    display: block;
    padding: 0
}

::-moz-focus-inner,
::-moz-focus-outer {
    border: 0;
    padding: 0
}

::-ms-clear {
    display: none
}

* {
    -webkit-tap-highlight-color: transparent
}

html {
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden
}

a:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000
}

a,
a:active,
a:focus,
a:hover,
a:visited {
    outline: 0 !important
}

::-moz-focus-inner {
    border: 0;
    outline: 0
}

button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
    border: 0
}

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/montserrat-v31-cyrillic_latin-regular.woff2) format("woff2")
}

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/montserrat-v31-cyrillic_latin-500.woff2) format("woff2")
}

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/montserrat-v31-cyrillic_latin-600.woff2) format("woff2")
}

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/montserrat-v31-cyrillic_latin-700.woff2) format("woff2")
}

img {
    display: block;
    max-width: 100%
}

svg {
    overflow: hidden
}

.container {
    margin: 0 auto;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px
}

.title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2
}

.text600 {
    font-weight: 600
}

.text700 {
    font-weight: 700
}

.important-color {
    color: #bd2b51
}

.btn {
    font-size: clamp(16px, calc(16px + (18 - 16)*(100vw - 320px)/(1230 - 320)), 18px);
    line-height: 1;
    text-transform: uppercase;
    padding: 16px 24px;
    text-align: center;
    color: #fff;
    background: #bd2b51;
    font-weight: 600;
    border-radius: 35px;
    width: 100%;
    -webkit-transition: background .3s ease, -webkit-transform .3s ease;
    transition: background .3s ease, transform .3s ease;
    transition: background .3s ease, transform .3s ease, -webkit-transform .3s ease;
    -webkit-animation: btn-blink 2s infinite ease-in-out;
    animation: btn-blink 2s infinite ease-in-out;
    cursor: pointer
}

.btn:hover {
    background: #93223f;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px)
}

.btn:active {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.decor,
.scroll-link {
    display: none
}

.block {
    padding-top: 25px;
    padding-bottom: 25px
}

.promo {
    background: url(../img/bg-white.svg) no-repeat center/cover
}

.promo__container {
    padding-top: 71px
}

.promo__inner {
    position: relative
}

.promo__inner::after {
    display: block;
    clear: both;
    content: ""
}

.promo__title {
    margin-bottom: 10px;
    line-height: 1.2
}

.promo__price,
.promo__subheader,
.promo__subtitle {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.promo__subtitle {
    font-weight: 500;
    width: 75%;
    margin-bottom: 94px;
    line-height: 1.2
}

.promo__price,
.promo__subheader {
    position: relative;
    font-weight: 700
}

.promo__subheader {
    width: 51%;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.4;
    font-style: italic;
    padding-bottom: 16px;
    margin-bottom: 18px
}

.promo__subheader span {
    background: 0 0;
    -webkit-text-fill-color: #bd2b51
}

.promo__price-previous::before,
.promo__subheader::before {
    position: absolute;
    content: "";
    height: 1px;
    background: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background: linear-gradient(180deg, #074e67 0, #003546 100%);
    left: 0
}

.promo__subheader::before {
    bottom: 0;
    width: 80%
}

.promo__price {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 40px;
    margin-bottom: 40px
}

.promo__price-currency {
    font-size: 21px
}

.promo__price-previous {
    opacity: .7;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 19px;
    position: relative;
    top: -17px;
    margin-left: -37px;
    font-weight: 400
}

.promo__price-previous::before {
    width: 100%;
    top: 45%;
    opacity: .7
}

.promo__product-inner--desc {
    display: none
}

.promo__product-inner {
    position: relative;
    float: right;
    width: 49%;
    margin-left: 15px;
    margin-top: -80px;
    margin-bottom: 30px
}

.promo__img {
    width: 160px;
    margin-left: auto
}

.promo__discount {
    position: absolute;
    font-size: 19px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 62px;
    height: 62px;
    background-size: contain;
    color: #fff;
    right: 0;
    top: -30px
}

.promo__aside-medal--desc {
    display: none
}

.promo__aside-medal {
    position: absolute;
    top: 10px;
    min-width: 164px;
    left: -150px
}

.promo__aside-inner {
    border-radius: 37px;
    border: 1px solid #003546;
    background: #fff;
    padding: 5px 55px 5px 14px
}

.promo__aside-text {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    line-height: 1.08;
    letter-spacing: -.24px
}

.promo__aside-bage {
    width: 67px;
    height: 67px;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: -16px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.promo__aside-img {
    display: none
}

.webp .promo__discount {
    background-image: url(../img/discount.webp)
}

.webp .promo__aside-bage {
    background-image: url(../img/badge.webp)
}

.header,
.overlay {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 15;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px)
}

.overlay {
    opacity: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    -webkit-transition: all .3s;
    transition: all .3s;
    pointer-events: none
}

.overlay.active {
    opacity: 1;
    pointer-events: visible
}

.header {
    padding: 15px;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    border-bottom: 1px solid #ddd
}

header.liquid-glass {
    background-color: rgba(255, 255, 255, .3);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(15px);
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.header__raiting--desctop {
    display: none
}

.header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__logo {
    display: block;
    width: 121px
}

.burger {
    cursor: pointer
}

.header__item {
    display: none
}

.burger__line {
    width: 25px;
    height: 3px;
    display: block;
    margin-bottom: 5px;
    background: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background: linear-gradient(180deg, #074e67 0, #003546 100%);
    border-radius: 5px
}

.burger__line:nth-child(2) {
    width: 18px;
    margin-left: auto
}

.burger__line:last-of-type {
    margin-bottom: 0
}

.nav {
    max-width: 240px;
    width: 100%;
    padding: 15px 15px 40px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: fixed;
    overflow: auto;
    top: 0;
    right: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    height: 100vh;
    z-index: 20;
    background: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background: linear-gradient(180deg, #074e67 0, #003546 100%)
}

.nav.menu-open {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.nav__burger {
    width: 22px;
    height: 22px;
    cursor: pointer;
    position: relative;
    margin-left: auto
}

.nav-burger__line {
    background: #fff;
    width: 22px;
    height: 3px;
    border-radius: 5px;
    display: block;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 7px;
    right: 0
}

.nav-burger__line:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.nav__inner {
    margin-bottom: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.nav__list {
    margin-bottom: 20px
}

.nav__item:not(:last-of-type) {
    margin-bottom: 47px
}

.nav__link {
    color: #fff;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    -webkit-transition: color .4s ease, background .4s ease;
    transition: color .4s ease, background .4s ease;
    background: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
    background: linear-gradient(90deg, #fff, #fff);
    background-clip: text;
    font-weight: 700;
    font-size: 18px
}

.nav__link span {
    color: #fff
}

.nav__link:hover {
    color: transparent;
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(#bd2b51), to(#fff));
    background: linear-gradient(90deg, #fff, #bd2b51, #fff);
    background-size: 200%;
    -webkit-animation: wave 1.5s linear infinite;
    animation: wave 1.5s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.warning {
    background: url(../img/bg-dark.svg) no-repeat center/cover
}

.warning__img {
    display: none
}

.warning__text {
    color: #fff;
    line-height: 1.5;
    margin-bottom: 15px
}

.warning__text:last-of-type {
    margin-bottom: 14px
}

.warning__inner {
    margin-bottom: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 23px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.how__offer-wrapper picture,
.warning__inner picture {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.warning__product {
    width: 29px
}

.warning__inner-text {
    font-size: 17px;
    color: #fff;
    font-style: italic;
    line-height: 1.35
}

.warning__list {
    border-radius: 20px 30px 0 0;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    position: relative;
    padding: 15px;
    line-height: 1.2
}

.warning__list:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .15);
    opacity: .3;
    top: 0;
    left: 0;
    border-radius: 20px 30px 0 0
}

.warning__items {
    position: relative;
    padding-left: 20px
}

.warning__items::before {
    position: absolute;
    content: "";
    width: 11px;
    height: 11px;
    background: #fff;
    border-radius: 50%;
    top: 5px;
    left: 0
}

.warning__items:not(:last-of-type) {
    margin-bottom: 10px
}

.warning__footnot-inner {
    background: #fff;
    padding: 9px 7px 11px 15px;
    border-radius: 0 0 20px 20px
}

.warning__footnote {
    font-size: 18px;
    background-image: -webkit-gradient(linear, left top, right top, from(#f50747), color-stop(#003546), to(#f50747));
    background-image: linear-gradient(90deg, #f50747, #003546, #f50747);
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: wave 2s infinite ease-in-out;
    animation: wave 2s infinite ease-in-out
}

.about {
    background: url(../img/bg-white.svg) no-repeat center/cover
}

.about__inner {
    margin-bottom: 40px
}

.about__logo {
    margin-bottom: 13px;
    width: 195px
}

.about__title {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 17px
}

.about__items {
    position: relative;
    padding-left: 35px;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition: opacity .8s ease-out, .5s, -webkit-transform .8s ease-out;
    transition: opacity .8s ease-out, transform .8s ease-out, .5s;
    transition: opacity .8s ease-out, transform .8s ease-out, .5s, -webkit-transform .8s ease-out
}

.about__items.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.about__items:not(:last-of-type) {
    margin-bottom: 18px
}

.about__aside-point {
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50%;
    background: #bd2b51;
    top: 5px;
    left: 5px
}

.about__aside-point:after,
.about__aside-point:before {
    content: "";
    position: absolute;
    border: 1px solid #bd2b51;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: pulse 2s infinite ease-out;
    animation: pulse 2s infinite ease-out
}

.about__aside-point::after {
    -webkit-animation-delay: .7s;
    animation-delay: .7s
}

.about__text {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.1
}

.about__text .important-color {
    background: 0 0;
    -webkit-text-fill-color: #bd2b51
}

.about__promo-inner {
    position: relative;
    width: 220px;
    margin: 0 auto;
    float: none
}

.about__img {
    margin: 0 auto;
    -webkit-filter: drop-shadow(0 0 1px #333);
    filter: drop-shadow(0 0 1px #333)
}

.about__discount {
    right: auto;
    left: 0;
    top: -20px;
    z-index: 1
}

.advantage {
    background: url(../img/bg-dark.svg) no-repeat center/cover
}

.advantage .decor {
    width: 70px
}

.advantage__title {
    color: #fff;
    margin-bottom: 15px
}

.advantage__inner {
    padding-bottom: 24px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 20px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative
}

.advantage__inner::-webkit-scrollbar {
    height: 8px
}

.advantage__inner::-webkit-scrollbar-track {
    background: #d3d3d3;
    background-position: center
}

.advantage__inner::-webkit-scrollbar-thumb {
    background-color: #bd2b51;
    background-image: url(../img/thumb.png);
    background-position: center;
    background-repeat: no-repeat
}

.advantage__list {
    background: rgba(7, 57, 76, .5);
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0 16px 16px 0;
    min-width: 175px;
    color: #fff;
    font-weight: 600;
    padding: 13px 19px
}

.advantage__item {
    min-height: 55px;
    -ms-flex-line-pack: center;
    align-content: center
}

.advantage__item:not(:last-of-type) {
    padding-bottom: 11px;
    margin-bottom: 11px;
    border-bottom: 1px solid rgba(30, 114, 145, .64)
}

.advantage__list--main,
.advantage__list--other {
    min-width: 270px;
    border-radius: 16px;
    padding: 12px 19px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none
}

.advantage__list--main .advantage__item--text,
.advantage__list--other .advantage__item--text {
    position: relative;
    padding-left: 29px
}

.advantage__list--main .advantage__item--text::before,
.advantage__list--other .advantage__item--text::before {
    position: absolute;
    content: "";
    background: url(../img/check.svg) no-repeat center/contain;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.advantage__list--main {
    -webkit-box-shadow: 5px 4px 15px 0 rgba(0, 0, 0, .3);
    box-shadow: 5px 4px 15px 0 rgba(0, 0, 0, .3);
    background: #fff
}

.advantage__list--main .advantage__item--text {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.advantage__list--other {
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1)
}

.advantage__list--other .advantage__item--text::before {
    background: url(../img/abort.svg) no-repeat center/contain
}

.advantage__item-header {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 17px
}

.advantage__item--text {
    line-height: 1.34
}

.advantage__item--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 13px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.advantage__product {
    width: 17px
}

.advantage__logo {
    width: 123px
}

.advantage__footnote {
    color: #fff;
    font-style: italic;
    line-height: 1.28;
    font-weight: 700
}

.how {
    background: url(../img/bg-white.svg) no-repeat center/cover
}

.how__logo-inner {
    margin-bottom: 28px
}

.how__logo {
    width: 195px;
    margin-bottom: 8px
}

.how__title {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px
}

.how__list {
    margin-bottom: 15px
}

.how__item {
    border-radius: 16px;
    background: #fff;
    border: 1px solid #d3d3d3;
    padding: 20px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.how__item:not(:last-of-type) {
    margin-bottom: 12px
}

.how__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50px
}

.how__item-header {
    font-weight: 700
}

.how__item-header,
.how__item-text {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.38
}

.how__offer-wrapper {
    background: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background: linear-gradient(180deg, #074e67 0, #003546 100%);
    border-radius: 16px;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.how__img {
    width: 100px
}

.how__offer-inner {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.how__offer-medals {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-bottom: 15px
}

.how__offer-header {
    color: #fff;
    font-size: 21px;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.19;
    font-weight: 700;
    text-align: center
}

.how__offer-discount,
.how__offer-medal {
    position: static;
    width: 65px;
    height: 65px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.how__offer-discount {
    color: #bd2b51;
    font-size: 20px
}

.how__offer-medal {
    -webkit-transform: none;
    transform: none
}

.how__offer-btn-block {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%
}

.how__offer-price {
    margin: 0 auto 18px;
    color: #fff;
    background: 0 0;
    -webkit-text-fill-color: #fff;
    font-size: 40px
}

.how__offer-price .promo__price-previous {
    font-size: 19px;
    margin-left: -42px
}

.how__offer-price .promo__price-currency {
    font-size: 21px
}

.how__offer-price .promo__price-previous {
    color: #fff;
    background: 0 0;
    -webkit-text-fill-color: #fff
}

.how__offer-price .promo__price-previous::before,
.promo-bottom__price .promo__price .promo__price-previous::before {
    background: #fff
}


.webp .how__offer-discount {
    background-image: url(../img/white-discount.png)
}

.composition {
    background: url(../img/bg-dark.svg) no-repeat center/cover
}

.composition__title {
    color: #fff;
    margin-bottom: 20px;
    text-align: center
}

.composition__inner {
    position: relative;
    padding-bottom: 65%
}

.composition__name-inner {
    position: absolute;
    width: 40%;
    top: 0;
    left: 0
}

.composition__name-inner:nth-child(2) {
    top: auto;
    bottom: 15%;
    left: 14%;
    width: 30%
}

.composition__name-inner:nth-child(3) {
    top: 5%;
    left: auto;
    right: 27%;
    width: 35%
}

.composition__name-inner:nth-child(4) {
    top: auto;
    left: auto;
    bottom: 6%;
    right: 0;
    width: 33%
}

.composition__name-inner:nth-child(5) {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    width: 22%
}

.composition__name {
    display: none
}

.composition__item {
    padding-left: 10px;
    position: relative
}

.composition__item:not(:last-of-type) {
    margin-bottom: 24px
}

.composition__item:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #fff;
    content: ""
}

.composition__header {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    font-size: 17px
}

.composition__desc {
    color: #fff;
    line-height: 1.45
}

.reviews {
    background: url(../img/bg-white.svg) no-repeat center/cover
}

.reviews__title {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 20px
}

.reviews__block {
    border-radius: 16px;
    background: #fff;
    -webkit-box-shadow: 3.222px 3.222px 16.11px 0 rgba(0, 0, 0, .15);
    box-shadow: 3.222px 3.222px 16.11px 0 rgba(0, 0, 0, .15);
    padding: 24px 19px
}

.reviews__top {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d3d3d3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.reviews__reiting-text {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    display: inline-block
}

.reviews__reiting-img {
    width: 96px
}

.reviews__logo {
    width: 104px
}

.reviews__main {
    height: 400px;
    overflow: auto
}

.reviews__main::-webkit-scrollbar {
    width: 8px
}

.reviews__main::-webkit-scrollbar-track {
    background: #d3d3d3;
    position: relative;
    border: 1px solid #d3d3d3
}

.reviews__main::-webkit-scrollbar-thumb {
    background-color: #003546;
    background-image: url(../img/thumb_horizontal.svg);
    background-size: 4px 7px;
    background-repeat: no-repeat;
    background-position: center center
}

.comments__item {
    padding: 0 0 20px;
    margin-bottom: 20px;
    margin-right: 10px;
    border-bottom: 1px solid #d3d3d3
}

.comments__item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.comments__header {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.comments__avatar {
    width: 50px;
    height: 50px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.comments__name {
    margin-bottom: 5px;
    display: block;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600
}

.comments__stars {
    width: 92px;
    height: 16px;
    display: block;
    background: url(../img/stars.svg) no-repeat center/contain
}

.social__date {
    margin-left: auto;
    font-size: 14px;
    color: #5e5e5e;
    float: right
}

.social__date--desktop {
    display: none
}

.comments__text {
    margin-bottom: 15px;
    line-height: 1.57;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.social__button {
    display: inline-block;
    color: #c4c4c4
}

.social__button:first-child {
    margin-right: 16px;
    padding-right: 16px;
    position: relative
}

.social__button:first-child:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #c4c4c4;
    top: 0;
    right: -2px
}

.social__img {
    width: 16px;
    height: 16px;
    margin-right: 7px;
    display: inline-block;
    vertical-align: bottom;
    cursor: pointer
}

.social__count {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
    background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.like {
    background: url(../img/like.png) no-repeat center/contain
}

.dislike {
    background: url(../img/dislike.png) no-repeat center/contain
}

.like-active {
    background: url(../img/like-active.png) no-repeat center/contain;
    background-size: 92%
}

.dislike-active {
    background: url(../img/dislike-active.png) no-repeat center/contain;
    background-size: 92%
}

.promo-bottom {
    background: url(../img/bg-dark.svg) no-repeat center/cover
}

.promo-bottom__title {
    line-height: 1.37;
    margin-bottom: 14px;
    color: #fff;
    font-weight: 700;
    width: 290px
}

.promo-bottom__logo {
    width: 218px;
    margin-bottom: 10px
}

.promo-bottom__subtitle {
    margin-bottom: 35px;
    color: #fff;
    font-weight: 700;
    width: 100%;
    line-height: 1.27;
    font-size: 22px;
    background: 0 0;
    -webkit-text-fill-color: #fff
}

.promo-bottom__product-inner {
    position: relative;
    float: none;
    width: 280px;
    margin: 0 auto 20px
}

.promo-bottom__product-inner .promo__discount {
    background: url(../img/red-discount.svg) no-repeat center/contain;
    right: 30px;
    top: -20px
}

.promo-bottom__product-inner .promo__img {
    width: 200px;
    margin: 0 auto
}

.promo-bottom__form-inner {
    border-radius: 17px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
    padding: 20px 15px
}

.promo-bottom__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-bottom: 15px
}

.promo-bottom__price .promo__price {
    margin-bottom: 0;
    -webkit-text-fill-color: #fff;
    background: 0 0;
    font-size: 40px
}

.promo-bottom__price .promo__price .promo__price-previous {
    -webkit-text-fill-color: #fff;
    background: 0 0;
    font-size: 20px;
    margin-left: -33px
}

.promo-bottom__price .promo__price .promo__price-currency {
    font-size: 16px
}

.promo-bottom__price-text {
    color: #fff;
    font-weight: 500;
    font-size: 29px
}

.promo-bottom__input {
    text-align: center;
    padding: 17px 26px;
    border-radius: 50px;
    background: #fff;
    color: #003546;
    margin-bottom: 8px;
    display: block;
    width: 100%;
    border: 0;
    font-size: 16px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    -webkit-transition: -webkit-box-shadow .3s ease;
    transition: box-shadow .3s ease;
    transition: box-shadow .3s ease, -webkit-box-shadow .3s ease
}

.promo-bottom__input::-webkit-input-placeholder {
    color: #003546
}

.promo-bottom__input::-moz-placeholder {
    color: #003546
}

.promo-bottom__input:-ms-input-placeholder {
    color: #003546
}

.promo-bottom__input::placeholder {
    color: #003546
}

.promo-bottom__input:focus,
.promo-bottom__input:hover {
    -webkit-box-shadow: 0 0 5px 3px rgba(31, 102, 178, .3) inset;
    box-shadow: 0 0 5px 3px rgba(31, 102, 178, .3) inset
}

.promo-bottom__btn {
    width: 100%;
    margin-bottom: 12px
}

.promo-bottom__footnote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.promo-bottom__footnote span {
    color: #fff;
    font-size: 14px
}

.promo-bottom__raiting {
    display: none
}

.footer {
    background: #003546;
    padding: 20px;
    text-align: center
}

.footer__text {
    color: #fff
}

.my-popup-block .popup__logo,
.my-popup-block .promo-bottom__subtitle,
.popup__product--desktop {
    display: none
}

.my-popup-block {
    border-radius: 17px;
    background: url(../img/bg-dark.svg) no-repeat center/cover;
    padding: 30px 10px
}

.my-popup-block .popup__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 15px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-bottom: 10px
}

.my-popup-block .promo-bottom__product-inner {
    width: 100px;
    margin: 0
}

.my-popup-block .promo__img {
    width: 100%
}

.my-popup-block .promo-bottom__price-text {
    text-align: center;
    display: block;
    margin-bottom: 5px
}

.my-popup-block .promo-bottom__price {
    display: block;
    margin-bottom: 20px
}

.my-popup-block .promo__discount {
    left: auto;
    right: -105px;
    top: 10px
}

@media screen and (min-width:480px) {
    .container {
        width: 480px
    }

    .title {
        font-size: 28px
    }

    .btn {
        width: 280px
    }

    .block {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .promo__container {
        padding-top: 91px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        position: relative
    }

    .promo__title {
        width: 70%;
    }

    .promo__subtitle {
        font-size: 20px;
        margin-bottom: 20px;
        width: 70%
    }

    .promo__subheader {
        font-size: 22px;
        width: 55%
    }

    .promo__price {
        margin-bottom: 20px
    }

    .promo__btn {
        width: 240px;
        float: left
    }

    .promo__product-inner {
        width: 40%;
        margin-bottom: 0;
        margin-top: -140px
    }

    .promo__img {
        width: 180px
    }

    .promo__discount {
        width: 65px;
        height: 65px;
        font-size: 20px;
        top: -10px
    }

    .promo__aside-medal {
        top: auto;
        bottom: -30px;
        left: auto;
        right: 5px
    }

    .header__logo {
        width: 140px
    }

    .nav {
        max-width: 240px;
        padding: 20px
    }

    .warning__text {
        margin-bottom: 20px
    }

    .warning__list {
        padding: 20px
    }

    .warning__items {
        padding-left: 25px
    }

    .warning__footnot-inner {
        padding-left: 20px
    }

    .about__logo {
        width: 200px
    }

    .about__title {
        margin-bottom: 20px
    }

    .about__text {
        font-size: 18px
    }

    .about__promo-inner {
        margin-top: 0
    }

    .advantage__title {
        margin-bottom: 20px
    }

    .advantage__list {
        padding: 16px 20px;
        width: 200px
    }

    .advantage__list--main,
    .advantage__list--other {
        padding: 15px 20px
    }

    .advantage__item-header {
        font-size: 18px
    }

    .advantage__product {
        width: 20px
    }

    .advantage__logo {
        width: 130px
    }

    .advantage__footnote {
        font-size: 17px
    }

    .how__offer-wrapper {
        padding: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        position: relative
    }

    .how__img {
        margin-bottom: 0;
        width: 130px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    .how__offer-inner {
        width: 260px;
        margin-left: auto;
        -webkit-box-flex: inherit;
        -ms-flex: inherit;
        flex: inherit
    }

    .how__offer-medals {
        gap: 10px
    }

    .how__offer-btn-block {
        width: 260px;
        margin-left: auto;
        margin-right: 0;
        margin-top: 0
    }

    .how__offer-btn {
        width: 100%
    }

    .how__offer-price {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px
    }

    .composition__item {
        padding-left: 15px
    }

    .reviews__title {
        margin-bottom: 25px
    }

    .reviews__raiting {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 21px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .reviews__reiting-text {
        margin-bottom: 0
    }

    .comments__item {
        padding: 0 0 25px;
        margin-right: 15px;
        margin-bottom: 25px
    }

    .comments__header {
        margin-bottom: 18px;
        gap: 21px
    }

    .comments__avatar {
        width: 60px;
        height: 60px
    }

    .comments__text {
        margin-bottom: 18px
    }

    .comments__name {
        font-size: 17px;
        margin-bottom: 8px
    }

    .social__date--mob {
        display: none
    }

    .social__date--desktop {
        display: block
    }

    .social__date {
        font-size: 16px;
        width: 96px;
        height: 17px
    }

    .social__button:first-child {
        margin-right: 20px;
        padding-right: 20px
    }

    .social__img {
        width: 20px;
        height: 20px;
        vertical-align: top;
        margin-right: 9px
    }

    .promo-bottom__title {
        font-size: 22px;
        width: 100%;
        text-align: center;
        margin-bottom: 20px
    }

    .promo-bottom__logo {
        width: 220px;
        margin: 0 auto 15px
    }

    .promo-bottom__subtitle {
        font-size: 24px;
        margin-bottom: 40px;
        text-align: center;
        width: 70%
    }

    .promo-bottom__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .promo-bottom__product-inner {
        width: 150px;
        margin-right: 15px;
        margin-top: 0
    }

    .promo-bottom__product-inner .promo__discount {
        right: auto;
        left: 0
    }

    .promo-bottom__btn {
        float: none
    }

    .my-popup-block {
        padding: 30px
    }

    .my-popup-block .promo-bottom__product-inner {
        width: 100px
    }

    .my-popup-block .promo__discount {
        left: auto;
        right: -120px;
        width: 80px;
        height: 80px;
        font-size: 25px;
        top: 0
    }

    .my-popup-block .btn {
        width: 100%
    }
}

@media screen and (min-width:640px) {
    .container {
        width: 640px
    }

    .title {
        font-size: 31px
    }

    .promo__inner {
        position: static
    }

    .promo__inner::after {
        content: none
    }

    .promo__title {
        margin-bottom: 15px;
        width: 100%;
    }

    .promo__subtitle {
        font-size: 22px;
        margin-bottom: 20px
    }

    .promo__subheader {
        font-size: 24px;
        width: 70%;
        padding-bottom: 20px
    }

    .promo__subheader::before {
        width: 150px
    }

    .promo__price,
    .promo__subheader {
        margin-bottom: 20px
    }

    .promo__btn {
        width: 280px
    }

    .promo__product-inner--desc {
        display: block
    }

    .promo__product-inner--mob {
        display: none
    }

    .promo__product-inner {
        width: 200px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin: 0;
        float: none
    }

    .promo__img {
        width: 100%
    }

    .promo__discount {
        width: 70px;
        height: 70px;
        font-size: 22px;
        top: -30px
    }

    .promo__aside-medal--desc {
        display: block
    }

    .promo__aside-medal {
        top: auto;
        bottom: 130px;
        right: auto;
        left: 190px;
        min-width: 198px
    }

    .promo__aside-inner {
        padding: 10px 81px 10px 22px
    }

    .promo__aside-bage {
        width: 70px;
        height: 70px;
        right: -6px
    }

    .nav {
        max-width: 320px;
        padding: 30px
    }

    .warning__text {
        margin-bottom: 25px
    }

    .warning__list {
        padding: 25px
    }

    .warning__items {
        padding-left: 30px
    }

    .warning__footnot-inner {
        padding-left: 25px
    }

    .about__container {
        position: relative
    }

    .about__container::after,
    .about__promo-inner::after {
        content: "";
        display: block;
        clear: both
    }

    .about__inner {
        margin-bottom: 0
    }

    .about__logo {
        width: 210px
    }

    .about__title {
        margin-bottom: 35px
    }

    .about__list {
        float: left;
        width: 64%
    }

    .about__promo-inner {
        float: right
    }

    .advantage__title {
        margin-bottom: 25px
    }

    .advantage__inner {
        gap: 25px
    }

    .advantage__list {
        padding-left: 25px;
        padding-right: 25px;
        width: inherit;
        min-width: 250px
    }

    .advantage__item {
        min-height: 58px
    }

    .advantage__list--main,
    .advantage__list--other {
        min-width: 400px
    }

    .advantage__item-header {
        font-size: 19px
    }

    .advantage__item--text {
        font-size: 17px
    }

    .advantage__item--inner {
        gap: 20px
    }

    .advantage__product {
        width: 24px
    }

    .advantage__logo {
        width: 140px
    }

    .advantage__footnote {
        font-size: 18px
    }

    .how__container {
        position: relative
    }

    .how__logo-inner {
        margin-bottom: 30px;
        text-align: center
    }

    .how__logo {
        display: inline;
        vertical-align: middle;
        margin-right: 15px;
        margin-bottom: 0
    }

    .how__title {
        display: inline;
        vertical-align: sub
    }

    .how__list {
        margin-bottom: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 15px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .how__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 7.5px);
        flex: 1 1 calc(50% - 7.5px)
    }

    .how__item:not(:last-of-type) {
        margin-bottom: 0
    }

    .how__offer-wrapper {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .how__img {
        position: static;
        width: 80px;
        -webkit-transform: none;
        transform: none
    }

    .how__offer-inner {
        width: inherit;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }

    .how__offer-header {
        text-align: left
    }

    .how__offer-price {
        margin-bottom: 12px
    }

    .reviews__wrapper {
        position: relative
    }

    .reviews__title {
        margin-bottom: 30px
    }

    .reviews__reiting-img {
        width: 100px
    }

    .reviews__logo {
        width: 110px
    }

    .comments__name {
        font-size: 18px
    }

    .comments__stars {
        width: 100px;
        height: 17px
    }

    .promo-bottom__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        position: relative
    }

    .promo-bottom__title {
        font-size: 18px;
        text-align: left;
        margin-bottom: 25px
    }

    .promo-bottom__logo {
        width: 230px;
        margin: 0 0 15px
    }

    .promo-bottom__subtitle {
        font-size: 26px;
        margin-bottom: 30px;
        text-align: left;
        width: 100%
    }

    .promo-bottom__inner {
        display: block
    }

    .promo-bottom__product-inner {
        width: 250px
    }

    .promo-bottom__product-inner .promo__product-inner--mob {
        display: none
    }

    .promo-bottom__product-inner .promo__product-inner--desc {
        display: block
    }

    .promo-bottom__product-inner .promo__discount {
        left: auto;
        right: 0
    }

    .promo-bottom__product-inner .promo__img {
        margin: 0 0 0 auto;
        display: block
    }

    .promo-bottom__raiting {
        display: block;
        position: absolute;
        top: 30px;
        right: 15px;
        border-radius: 50px;
        border: 1px solid rgba(7, 77, 103, .15);
        background: rgba(255, 255, 255, .15);
        padding: 9px 24px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 13px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .promo-bottom__aside-medal {
        bottom: 30px;
        right: 20px;
        left: auto;
        top: auto
    }

    .my-popup-block .promo__discount {
        left: auto;
        right: -120px
    }
}

@media screen and (min-width:768px) {
    body {
        font-size: 17px
    }

    .container {
        width: 768px;
        padding-left: 25px;
        padding-right: 25px
    }

    .title {
        font-size: 34px
    }

    .block {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .promo__container {
        padding-top: 100px
    }

    .promo__title {
        margin-bottom: 20px
    }

    .promo__subheader,
    .promo__subtitle {
        font-size: 24px;
        margin-bottom: 25px
    }

    .promo__subheader {
        font-size: 26px;
        padding-bottom: 25px;
        width: 75%
    }

    .promo__price {
        margin-bottom: 26px
    }

    .promo__product-inner {
        width: 300px
    }

    .promo__img {
        width: 220px;
        margin: 0 auto
    }

    .promo__discount {
        width: 80px;
        height: 80px;
        font-size: 24px;
        right: -10px;
        top: -40px
    }

    .promo__aside-medal {
        left: 220px;
        bottom: 145px
    }

    .promo__aside-bage {
        width: 80px;
        height: 80px;
        right: -15px
    }

    .header {
        padding-left: 25px;
        padding-right: 25px
    }

    .warning__inner-text {
        font-size: 18px
    }

    .warning__footnote {
        font-size: 19px
    }

    .about__container::after {
        content: none
    }

    .about__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        gap: 20px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .about__logo {
        width: 220px
    }

    .about__title {
        font-size: 24px
    }

    .about__list {
        float: none;
        width: 100%
    }

    .about__promo-inner::after {
        content: ""
    }

    .about__promo-inner {
        float: none;
        width: 250px
    }

    .advantage__inner,
    .advantage__title {
        margin-bottom: 30px
    }

    .advantage__inner {
        padding-bottom: 34px;
        gap: 30px
    }

    .advantage__list {
        padding-left: 30px;
        padding-right: 30px;
        min-width: 330px
    }

    .advantage__list--main,
    .advantage__list--other {
        min-width: 360px
    }

    .advantage__list--main .advantage__item--text,
    .advantage__list--other .advantage__item--text {
        padding-left: 42px
    }

    .advantage__list--main .advantage__item--text::before,
    .advantage__list--other .advantage__item--text::before {
        width: 25px;
        height: 25px
    }

    .advantage__item-header {
        font-size: 20px
    }

    .advantage__logo {
        width: 150px
    }

    .advantage__footnote {
        font-size: 19px
    }

    .how__logo-inner {
        margin-bottom: 35px
    }

    .how__logo {
        margin-right: 20px;
        width: 200px
    }

    .how__list {
        margin-bottom: 25px;
        gap: 20px
    }

    .how__item {
        -ms-flex-preferred-size: calc(50% - 10px);
        flex-basis: calc(50% - 10px)
    }

    .how__icon {
        width: 58px
    }

    .how__offer-wrapper {
        padding: 21px 25px;
        gap: 20px
    }

    .how__offer-medals {
        gap: 17px
    }

    .how__offer-header {
        font-size: 22px
    }

    .how__offer-price {
        font-size: 47px;
        margin-bottom: 12px
    }

    .how__offer-price .promo__price-previous {
        font-size: 25px;
        top: -27px;
        margin-left: -57px
    }

    .how__offer-price .promo__price-currency {
        font-size: 29px
    }

    .composition__inner {
        padding-bottom: 45%
    }

    .composition__name-inner {
        width: 30%;
        left: 15%
    }

    .composition__name-inner .composition__name {
        left: -35%
    }

    .composition__name-inner .composition__name::before {
        background: url(../img/line.svg) no-repeat center/contain;
        width: 100px;
        height: 100px;
        position: absolute;
        content: '';
        top: -100px;
        left: 50px
    }

    .composition__name-inner:nth-child(2) {
        width: 20%;
        left: 26%
    }

    .composition__name-inner:nth-child(2) .composition__name {
        left: -85%
    }

    .composition__name-inner:nth-child(2) .composition__name::before {
        top: -86px;
        left: 100px
    }

    .composition__name-inner:nth-child(3) {
        width: 25%;
        right: 35%
    }

    .composition__name-inner:nth-child(3) .composition__name {
        left: 65%;
        top: -5%
    }

    .composition__name-inner:nth-child(3) .composition__name::before {
        top: 16px;
        left: -63px
    }

    .composition__name-inner:nth-child(4) {
        width: 23%;
        right: 15%
    }

    .composition__name-inner:nth-child(4) .composition__name {
        left: 85%;
        top: -25%
    }

    .composition__name-inner:nth-child(4) .composition__name::before,
    .composition__name-inner:nth-child(5) .composition__name::before {
        top: 26px;
        left: -73px;
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    .composition__name-inner:nth-child(5) {
        width: 12%;
        right: 15%
    }

    .composition__name-inner:nth-child(5) .composition__name {
        left: 85%;
        top: -75%;
        width: 100px
    }

    .composition__name-inner:nth-child(5) .composition__name::before {
        width: 60px;
        height: 60px;
        left: -43px
    }

    .composition__name {
        display: block;
        color: #fff;
        font-weight: 700;
        font-size: 18px;
        position: absolute
    }

    .composition__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 20px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .composition__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 20px);
        flex: 1 1 calc(50% - 20px);
        border-radius: 16px;
        padding: 15px;
        border: 1px solid rgba(255, 255, 255, .2);
        background: rgba(255, 255, 255, .1);
        position: static
    }

    .composition__item:not(:last-of-type) {
        margin-bottom: 0
    }

    .composition__item:before {
        content: none
    }

    .composition__header {
        font-size: 18px
    }

    .composition__desc,
    .promo-bottom__footnote span {
        font-size: 16px
    }

    .reviews__title {
        margin-bottom: 35px
    }

    .reviews__reiting-img {
        width: 110px
    }

    .reviews__logo {
        width: 120px
    }

    .reviews__block {
        padding: 25px
    }

    .reviews__main {
        height: 450px
    }

    .comments__avatar {
        width: 70px;
        height: 70px
    }

    .comments__stars {
        width: 110px;
        height: 19px
    }

    .comments__name {
        font-size: 19px
    }

    .comments__text {
        margin-bottom: 26px
    }

    .promo-bottom__title {
        font-size: 19px;
        margin-bottom: 30px
    }

    .promo-bottom__logo {
        width: 240px
    }

    .promo-bottom__subtitle {
        font-size: 28px;
        margin-bottom: 35px
    }

    .promo-bottom__inner {
        max-width: 419px;
        width: 100%
    }

    .promo-bottom__product-inner {
        width: 300px
    }

    .promo-bottom__product-inner .promo__discount {
        right: -10px
    }

    .promo-bottom__product-inner .promo__img {
        width: 220px;
        margin: 0 auto
    }

    .promo-bottom__form-inner {
        width: 333px;
        padding: 22px 26px
    }

    .promo-bottom__price {
        gap: 19px;
        margin-bottom: 20px
    }

    .promo-bottom__price .promo__price {
        font-size: 46px;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .promo-bottom__price .promo__price .promo__price-previous {
        font-size: 23px
    }

    .promo-bottom__price .promo__price .promo__price-currency {
        font-size: 19px
    }

    .promo-bottom__price-text {
        font-size: 34px
    }

    .promo-bottom__input {
        font-size: 17px;
        padding-top: 18px;
        padding-bottom: 18px
    }

    .promo-bottom__raiting {
        top: 40px;
        right: 40px
    }

    .promo-bottom__aside-medal {
        left: auto;
        top: auto;
        bottom: 40px;
        right: 40px
    }

    .my-popup-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 0;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding: 30px
    }

    .my-popup-block .popup__logo {
        display: block;
        width: 200px;
        margin-bottom: 15px
    }

    .my-popup-block .promo-bottom__subtitle {
        display: block;
        margin-bottom: 40px
    }

    .my-popup-block .popup__top {
        display: block;
        margin-bottom: 20px
    }

    .my-popup-block .popup__product--mob {
        display: none
    }

    .my-popup-block .popup__product--desktop {
        display: block
    }

    .my-popup-block .promo-bottom__product-inner {
        width: 240px
    }

    .my-popup-block .promo-bottom__price {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 19px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .my-popup-block .promo__discount {
        top: -30px
    }

    .my-popup-block .my-popup__left {
        width: 378px
    }
}

@media screen and (min-width:1000px) {

    .my-popup-block {
        padding: 40px 65px;
        gap: 30px
    }

    .my-popup-block .popup__logo {
        width: 271px
    }

    .my-popup-block .promo-bottom__subtitle {
        margin-bottom: 66px
    }

    .my-popup-block .promo-bottom__product-inner {
        width: 300px
    }

    .my-popup-block .promo__img {
        width: 100%
    }

    .my-popup-block .promo__discount {
        top: -20px
    }
}

@media screen and (min-width:1024px) {
    body {
        font-size: 18px
    }

    .container {
        width: 1024px
    }

    .title {
        font-size: 37px
    }

    .btn {
        padding: 20px 24px
    }

    .block {
        padding-top: 60px;
        padding-bottom: 60px
    }

    .promo {
        overflow: hidden
    }

    .promo__container {
        padding-top: 140px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 30px;
        position: relative;
        padding-bottom: 80px
    }

    .promo__inner {
        width: 35%
    }

    .promo__title {
        margin-bottom: 22px
    }

    .promo__subheader,
    .promo__subtitle {
        font-size: 26px;
        margin-bottom: 30px;
        width: 80%
    }

    .promo__subheader {
        font-size: 28px;
        padding-bottom: 30px;
        width: 90%
    }

    .promo__price {
        font-size: 60px
    }

    .promo__price-currency {
        font-size: 31px
    }

    .promo__price-previous {
        font-size: 29px;
        top: -27px;
        margin-left: -63px
    }

    .promo__product-inner {
        width: 260px
    }

    .promo__img {
        width: 100%;
        margin: 0;
        position: relative;
        z-index: 1
    }

    .promo__discount {
        width: 90px;
        height: 90px;
        font-size: 26px;
        top: -45px;
        right: -15px;
        z-index: 2
    }

    .promo__aside-medal {
        left: auto;
        right: 50px;
        bottom: 100px
    }

    .promo__aside-inner {
        background: rgba(255, 255, 255, .5)
    }

    .promo__aside-bage {
        width: 90px;
        height: 90px;
        z-index: 2
    }

    .promo__aside-img {
        position: absolute;
        display: block;
        right: 25px;
        height: 102%;
        -webkit-filter: brightness(1.1) saturate(.7);
        filter: brightness(1.1) saturate(.7);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        top: 50%
    }

    .promo__aside-point {
        width: 15px;
        height: 15px;
        position: absolute;
        border-radius: 50%;
        background: #bd2b51;
        top: 34%;
        right: 120px
    }

    .promo__aside-point:after,
    .promo__aside-point:before {
        content: "";
        position: absolute;
        border: 1px solid #bd2b51;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-animation: pulse 2s infinite ease-out;
        animation: pulse 2s infinite ease-out
    }

    .promo__aside-point::after {
        -webkit-animation-delay: .5s;
        animation-delay: .5s
    }

    .promo__aside-point:nth-child(2) {
        top: 51%;
        right: 230px
    }

    .promo__aside-point:nth-child(3) {
        top: auto;
        bottom: 31%;
        right: 170px
    }

    .promo__aside-line {
        width: 300px;
        height: 1px;
        background: #ddd;
        position: absolute;
        top: 50%;
        left: -300px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    .burger {
        display: none
    }

    .header__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 46px
    }

    .header__raiting {
        display: block;
        background: rgba(255, 255, 255, .5);
        border: 1px solid rgba(0, 53, 70, .5);
        border-radius: 50px;
        padding: 9px 24px
    }

    .header__raiting-text {
        color: #333;
        font-size: 16px;
        margin-right: 13px;
        background: 0 0
    }

    .header__raiting-img {
        display: inline;
        vertical-align: middle
    }

    .header__item {
        display: block
    }

    .header__logo {
        width: 180px
    }

    .header__link,
    .header__link:hover {
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent
    }

    .header__link {
        font-family: "Montserrat", Arial, Helvetica, sans-serif;
        font-size: 16px;
        text-decoration: none;
        -webkit-transition: color .4s ease, background .4s ease;
        transition: color .4s ease, background .4s ease;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
        background-image: linear-gradient(180deg, #074e67 0, #003546 100%)
    }

    .header__link span {
        background: 0 0;
        -webkit-text-fill-color: #bd2b51
    }

    .header__link:hover {
        color: transparent;
        background-image: -webkit-gradient(linear, left top, right top, from(#003546), color-stop(#bd2b51), to(#003546));
        background-image: linear-gradient(90deg, #003546, #bd2b51, #003546);
        background-size: 200%;
        -webkit-animation: wave 1.5s linear infinite;
        animation: wave 1.5s linear infinite
    }

    .warning {
        overflow: hidden
    }

    .warning__container {
        position: relative
    }

    .warning__img {
        display: block;
        width: 670px;
        position: absolute;
        left: -190px;
        bottom: 0
    }

    .warning__wrapper {
        width: 540px;
        margin-left: auto
    }

    .warning__inner-text {
        font-size: 19px
    }

    .warning__items:not(:last-of-type) {
        margin-bottom: 15px
    }

    .warning__footnote {
        font-size: 20px
    }

    .about__container {
        gap: 60px;
        padding-top: 80px;
        padding-bottom: 90px
    }

    .about__logo {
        width: 230px
    }

    .about__title {
        margin-bottom: 40px
    }

    .about__items {
        padding-left: 56px
    }

    .about__items:not(:last-of-type) {
        margin-bottom: 22px
    }

    .about__aside-point {
        top: 5px
    }

    .about__text {
        font-size: 21px
    }

    .about__promo-inner {
        width: 260px
    }

    .about__discount {
        left: -30px
    }

    .advantage__title {
        margin-bottom: 40px;
        text-align: center
    }

    .advantage__inner {
        gap: 38px
    }

    .advantage__list {
        min-width: 340px
    }

    .advantage__item {
        min-height: 61px
    }

    .advantage__list--main,
    .advantage__list--other {
        min-width: 364px
    }

    .advantage__item-header {
        font-size: 21px
    }

    .advantage__item--text {
        font-size: 18px
    }

    .advantage__logo {
        width: 186px
    }

    .advantage__footnote {
        font-size: 20px;
        text-align: center
    }

    .how__logo-inner {
        margin-bottom: 45px
    }

    .how__logo {
        width: 210px
    }

    .how__list {
        margin-bottom: 31px;
        gap: 20px
    }

    .how__item {
        -ms-flex-preferred-size: calc(32.3333% - 10px);
        flex-basis: calc(32.3333% - 10px);
        -webkit-transition: border-color .3s ease;
        transition: border-color .3s ease
    }

    .how__item:hover {
        border-color: #003546
    }

    .how__item:hover .how__icon ellipse,
    .how__item:hover .how__icon path:not(.not-fill) {
        fill: #bd2b51
    }

    .how__item:hover .how__icon stop {
        stop-color: #bd2b51
    }

    .how__img {
        width: 60px
    }

    .how__offer-inner,
    .how__offer-medals {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }

    .how__offer-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .how__offer-medals {
        margin-bottom: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }

    .how__offer-header {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        font-size: 24px
    }

    .how__offer-price {
        font-size: 47px
    }

    .composition__title {
        margin-bottom: 30px
    }

    .composition__inner {
        padding-bottom: 46%
    }

    .composition__name-inner {
        left: 17%
    }

    .composition__name-inner .composition__name {
        left: -55%
    }

    .composition__name-inner .composition__name::before {
        width: 155px;
        height: 130px;
        top: -120px;
        left: 130px
    }

    .composition__name-inner:nth-child(2) {
        left: 28%;
        bottom: 16%
    }

    .composition__name-inner:nth-child(2) .composition__name::before {
        top: -103px;
        left: 120px;
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg)
    }

    .composition__name-inner:nth-child(3) {
        right: 33%
    }

    .composition__name-inner:nth-child(3) .composition__name,
    .composition__name-inner:nth-child(4) .composition__name {
        left: auto;
        right: -40%;
        top: 0
    }

    .composition__name-inner:nth-child(3) .composition__name::before {
        top: 9px;
        left: -168px
    }

    .composition__name-inner:nth-child(4) {
        right: 17%;
        bottom: 7%
    }

    .composition__name-inner:nth-child(4) .composition__name::before {
        top: 9px;
        left: -168px;
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    .composition__name-inner:nth-child(5) {
        right: 17%;
        bottom: 1%
    }

    .composition__name-inner:nth-child(5) .composition__name {
        left: auto;
        right: -100%;
        top: -60%;
        width: 110px
    }

    .composition__name-inner:nth-child(5) .composition__name::before {
        width: 100px;
        height: 100px;
        top: 9px;
        left: -98px
    }

    .composition__name {
        font-size: 20px
    }

    .composition__list {
        gap: 0
    }

    .composition__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(20% - 30px);
        flex: 1 1 calc(20% - 30px);
        background: 0 0;
        border: 0;
        border-radius: 0;
        padding: 0
    }

    .composition__item:not(:last-of-type) {
        border-right: 1px solid rgba(255, 255, 255, .3);
        padding: 0 15px 0 0;
        margin-right: 15px
    }

    .composition__header {
        margin-bottom: 19px
    }

    .reviews__title {
        margin-bottom: 39px
    }

    .reviews__raiting {
        border: 0;
        background: 0 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0
    }

    .reviews__reiting-text {
        background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
        background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-right: 0
    }

    .reviews__reiting-img {
        width: 120px
    }

    .reviews__logo {
        width: 140px
    }

    .reviews__block {
        padding: 25px 40px
    }

    .comments__stars {
        width: 120px;
        height: 21px
    }

    .comments__item {
        padding-bottom: 30px;
        margin-bottom: 30px
    }

    .comments__name {
        font-size: 20px
    }

    .comments__text {
        margin-bottom: 31px
    }

    .promo-bottom__container {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .promo-bottom__title {
        font-size: 20px;
        margin-bottom: 35px
    }

    .promo-bottom__logo {
        width: 250px
    }

    .promo-bottom__subtitle {
        font-size: 29px;
        margin-bottom: 40px
    }

    .promo-bottom__inner {
        max-width: 359px;
        width: 100%
    }

    .promo-bottom__product-inner .promo__img {
        width: 260px
    }

    .promo-bottom__price .promo__price .promo__price-previous {
        top: -17px;
        margin-left: -30px
    }

    .promo-bottom__raiting {
        border-radius: 50px;
        border: 1px solid rgba(7, 77, 103, .15);
        background: rgba(255, 255, 255, .15);
        padding: 9px 24px;
        right: 20px
    }

    .footer {
        background: #fff
    }

    .footer__text {
        background-image: -webkit-gradient(linear, left top, left bottom, from(#074e67), to(#003546));
        background-image: linear-gradient(180deg, #074e67 0, #003546 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent
    }

    .my-popup-block .promo-bottom__subtitle,
    .my-popup-block .promo__img {
        width: 100%
    }
}

@media screen and (min-width:1190px) {
    .container {
        width: 1190px
    }

    .title {
        font-size: 40px
    }

    .scroll-link {
        display: block;
        position: absolute;
        width: 15px;
        margin: 0 auto;
        bottom: 0;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        padding-bottom: 15px;
        -webkit-transition: .3s;
        transition: .3s;
        cursor: pointer
    }

    .scroll-link:hover {
        -webkit-transform: translate(-50%, 10px);
        transform: translate(-50%, 10px)
    }

    .scroll-link:active {
        -webkit-transform: scale(.9) translate(-50%, 10px);
        transform: scale(.9) translate(-50%, 10px)
    }

    .block {
        padding-top: 110px;
        padding-bottom: 110px
    }

    .promo__container {
        padding-top: 146px;
        padding-bottom: 90px;
        gap: 50px
    }

    .promo__inner {
        width: 32%
    }

    .promo__subtitle {
        font-size: 30px;
        margin-bottom: 42px;
        width: 100%
    }

    .promo__subheader {
        font-size: 30px;
        padding-bottom: 45px;
        margin-bottom: 45px
    }

    .promo__product-inner {
        width: 316px
    }

    .promo__discount {
        width: 115px;
        height: 115px;
        top: -36px;
        right: -25px;
        font-size: 35px
    }

    .promo__aside-medal {
        right: 80px;
        bottom: 140px
    }

    .promo__aside-point {
        top: 37%;
        right: 140px
    }

    .header {
        padding-top: 24px;
        padding-bottom: 24px
    }

    .header__logo {
        width: 243px
    }

    .header__inner {
        width: 1140px;
        margin: 0 auto
    }

    .warning__container {
        padding-top: 84px;
        padding-bottom: 73px
    }

    .warning__img {
        left: -40px
    }

    .warning__inner-text {
        font-size: 20px
    }

    .warning__footnote {
        font-size: 22px
    }

    .about__container {
        padding-top: 118px;
        padding-bottom: 79px;
        gap: 90px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .about__logo {
        width: 243px
    }

    .about__title {
        margin-bottom: 50px
    }

    .about__items:not(:last-of-type) {
        margin-bottom: 30px
    }

    .about__aside-point {
        top: 5px
    }

    .about__text {
        font-size: 22px
    }

    .about__promo-inner {
        width: 360px
    }

    .advantage__container {
        padding-top: 80px;
        padding-bottom: 90px
    }

    .advantage__inner {
        margin-right: 0;
        overflow: inherit;
        padding-bottom: 0;
        margin-bottom: 48px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .advantage__list {
        padding-left: 0;
        padding-right: 0;
        background: 0 0;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        border-radius: 0;
        min-width: 330px
    }

    .advantage__list--main,
    .advantage__list--other {
        padding-left: 34px;
        padding-right: 34px;
        border-radius: 20px;
        min-width: 367px
    }

    .advantage__list--main {
        background: #fff
    }

    .advantage__list--other {
        background: rgba(255, 255, 255, .1)
    }

    .advantage__item-header {
        font-size: 22px
    }

    .advantage__footnote {
        font-size: 22px;
        width: 90%;
        margin: 0 auto
    }

    .how__container {
        padding-top: 89px;
        padding-bottom: 110px
    }

    .how__logo-inner {
        margin-bottom: 54px
    }

    .how__logo {
        width: 243px;
        margin-right: 22px
    }

    .how__list {
        gap: 30px
    }

    .how__item {
        padding: 50px 25px
    }

    .how__icon {
        width: 68px
    }

    .how__offer-medals {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }

    .how__offer-header {
        font-size: 30px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        max-width: 400px
    }

    .how__offer-discount {
        font-size: 32px
    }

    .how__offer-discount,
    .how__offer-medal {
        width: 108px;
        height: 108px
    }

    .composition__container {
        padding-top: 96px;
        padding-bottom: 93px
    }

    .composition__inner {
        padding-bottom: 48%
    }

    .composition__name-inner {
        width: inherit;
        max-width: 100%;
        left: 15%;
        top: -3%
    }

    .composition__name-inner .composition__name {
        left: -37%;
        bottom: 13%
    }

    .composition__name-inner .composition__name::before {
        top: -114px;
        left: 150px;
        -webkit-transform: rotate(6deg);
        transform: rotate(6deg)
    }

    .composition__name-inner:nth-child(2) {
        width: inherit;
        max-width: 100%;
        left: 29%;
        bottom: 11%
    }

    .composition__name-inner:nth-child(2) .composition__name {
        left: -66%;
        bottom: 24%
    }

    .composition__name-inner:nth-child(2) .composition__name::before {
        top: -84px;
        left: 140px;
        -webkit-transform: rotate(22deg);
        transform: rotate(22deg)
    }

    .composition__name-inner:nth-child(3) {
        width: inherit;
        max-width: 100%;
        right: 28%;
        top: 3%
    }

    .composition__name-inner:nth-child(3) .composition__name {
        right: -24%
    }

    .composition__name-inner:nth-child(3) .composition__name::before {
        top: 16px;
        left: -176px;
        -webkit-transform: rotate(1deg);
        transform: rotate(1deg)
    }

    .composition__name-inner:nth-child(4) {
        width: inherit;
        max-width: 100%;
        right: 11%;
        bottom: 4%
    }

    .composition__name-inner:nth-child(4) .composition__name {
        right: -36%;
        top: 15%
    }

    .composition__name-inner:nth-child(4) .composition__name::before {
        top: -25px;
        left: -181px;
        -webkit-transform: rotate(22deg);
        transform: rotate(22deg)
    }

    .composition__name-inner:nth-child(5) {
        width: inherit;
        max-width: 100%;
        right: 15%;
        bottom: 3%
    }

    .composition__name-inner:nth-child(5) .composition__name {
        right: -130%;
        top: -55%;
        width: 120px
    }

    .composition__name-inner:nth-child(5) .composition__name::before {
        top: 4px;
        left: -109px;
        -webkit-transform: rotate(-1deg);
        transform: rotate(-1deg)
    }

    .composition__name {
        font-size: 22px
    }

    .composition__item {
        -ms-flex-preferred-size: calc(20% - 56px);
        flex-basis: calc(20% - 56px)
    }

    .composition__item:not(:last-of-type) {
        margin-right: 28px;
        padding-right: 28px
    }

    .reviews__wrapper {
        padding-top: 79px;
        padding-bottom: 112px
    }

    .reviews__logo {
        width: 178px
    }

    .comments__avatar {
        width: 80px;
        height: 80px
    }

    .comments__name {
        font-size: 22px
    }

    .reviews__main {
        height: 550px
    }

    .promo-bottom__container {
        padding-top: 60px;
        padding-bottom: 86px
    }

    .promo-bottom__title {
        font-size: 22px;
        margin-bottom: 43px
    }

    .promo-bottom__logo {
        width: 271px
    }

    .promo-bottom__subtitle {
        font-size: 30px;
        margin-bottom: 51px
    }

    .promo-bottom__inner {
        max-width: 419px;
        width: 100%
    }

    .promo-bottom__product-inner {
        width: 300px
    }

    .promo-bottom__product-inner .promo__img {
        width: 100%
    }

    .promo-bottom__input {
        font-size: 18px
    }

    .promo-bottom__raiting {
        top: 60px
    }

    .promo-bottom__raiting .header__raiting-text {
        color: #fff
    }
}

@media screen and (min-width:1440px) {
    .decor {
        display: block;
        position: absolute;
        top: -130px;
        opacity: .8;
        left: 25px
    }

    .decor--right {
        top: auto;
        left: auto;
        right: 25px;
        bottom: -150px
    }

    .warning {
        position: relative
    }

    .warning__img {
        width: 713px;
        left: -82px
    }

    .advantage,
    .composition {
        position: relative;
        overflow: hidden
    }
}

@media screen and (min-width:1620px) {
    .decor {
        left: calc(50% - 720px)
    }

    .decor--right {
        right: calc(50% - 739px);
        top: auto;
        left: auto
    }

    .advantage .decor {
        left: calc(50% - 795px)
    }

    .advantage .decor--right {
        left: auto;
        right: calc(50% - 795px)
    }

    .advantage__container {
        width: 1456px
    }
}

@media screen and (min-width:1920px) {
    .advantage .decor {
        width: 96px;
        left: calc(50% - 832px)
    }

    .advantage .decor--right {
        left: auto;
        right: calc(50% - 832px)
    }
}

@media screen and (min-width:480px) and (min-width:640px) {
    .how__offer-btn-block {
        width: 231px;
        margin: 0
    }
}

@media screen and (min-width:480px) and (min-width:768px) {
    .how__offer-btn-block {
        width: 280px
    }
}

@media screen and (min-width:1024px) and (min-width:1190px) {
    .promo__aside-point:nth-child(2) {
        top: 53%;
        right: 280px
    }

    .promo__aside-point:nth-child(3) {
        bottom: 29%;
        right: 210px
    }
}

@media screen and (min-width:1190px) and (min-width:1024px) {
    .promo-bottom__raiting .header__raiting-text {
        color: #333
    }
}