@keyframes arrow-pulse {
    0%,
    to {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    80% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
}

a,
body,
dd,
div,
footer,
form,
h2,
h3,
h4,
header,
html,
i,
img,
label,
li,
nav,
object,
output,
p,
s,
section,
span,
strong,
u,
ul,
var {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

footer,
header,
nav,
section {
    display: block;
}

body {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #4b3e30;
    line-height: 1.33;
    overflow: hidden;
}

ul {
    list-style: none;
}

br {
    font-size: 0;
}

* {
    -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;
    overflow: visible;
    font-family: Roboto, Arial, Helvetica, sans-serif;
}

* {
    -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;
}

button::-moz-focus-inner,
input[type='button']::-moz-focus-inner,
input[type='submit']::-moz-focus-inner {
    border: 0;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    overflow: hidden;
}

input:-moz-submit-invalid {
    box-shadow: none;
}

input:-moz-ui-invalid {
    box-shadow: none;
}

.text-bold {
    font-weight: 700;
    color: #333;
}

.container {
    width: 100%;
    padding: 0 15px;
}

.title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 10px;
}

strong {
    font-weight: 700;
}

.text-accent {
    color: #aa2f6f;
}

.nowrap {
    white-space: nowrap;
}

.promo-wrapper {
    background: #f4f0f2;
}

.webp .bg-bottom-left,
.webp .bg-bottom-right {
    background-color: #f4f0f2;
}

.timer__text {
    margin-right: 15px;
    font-size: 14px;
    color: #fff;
    line-height: 18px;
}

.timer__time span {
    display: inline-block;
    padding: 5px 4px;
    font-size: 22px;
    color: #fff;
    line-height: 30px;
}

.timer__time span:nth-child(1),
.timer__time span:nth-child(4),
.timer__time span:nth-child(7) {
    margin-right: 5px;
}

.btn,
.timer__time .tm {
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.timer__time .tm {
    width: 30px;
    position: relative;
    border-radius: 2px;
    background: #f90;
}

.btn {
    border-radius: 10px;
    border-bottom: 3px solid #872113;
    background-color: #f12535;
    width: 100%;
    font-size: 20px;
    line-height: 1;
    padding: 10px 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
    background: -webkit-gradient(linear, left top, left bottom, from(#e3331b), to(#c52a15));
    background: linear-gradient(180deg, #e3331b 0, #c52a15 100%);
}

.btn__small {
    display: block;
}

.btn:hover {
    background: -webkit-gradient(linear, left top, right top, from(#e3331b), to(#c52a15));
    background: linear-gradient(90deg, #e3331b 0, #c52a15 100%);
}

.header {
    background-color: #972962;
}

.header__wrapper {
    padding: 23px 0;
}

.header .timer__text br,
.header__logo {
    display: none;
}

.header__content {
    width: 320px;
    padding: 50px 0 20px;
    position: fixed;
    top: 0;
    right: -320px;
    background: #972962;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
    z-index: 90;
}

.header__content.active {
    right: 0;
}

.header__close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

.header__close:hover {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.header__close::after,
.header__close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header__close::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header .timer,
.header__nav {
    margin-bottom: 15px;
}

.header .timer__text {
    margin: 0 0 5px;
    text-align: center;
}

.header .timer__time {
    text-align: center;
}

.header__button {
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    padding: 8px 0;
    border: 1px solid #fff;
    border-radius: 3px;
    color: #fff;
    font-size: 18px;
    background: 0 0;
    cursor: pointer;
    -webkit-transition: background, color 0.3s, 0.3s;
    transition: background, color 0.3s, 0.3s;
}

.header__button:hover {
    background: #f90;
    border: 1px solid #f90;
}

.header-burger__line {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 36px;
    height: 3px;
    background: #fff;
}

.header__burger {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 26px;
    cursor: pointer;
    background: 0;
    z-index: 10;
}

.header__burger::after,
.header__burger::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 3px;
    background: #fff;
    top: 0;
    left: 0;
}

.header__burger::after {
    top: auto;
    bottom: 0;
}

.nav__link {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    color: #fff;
    line-height: 31px;
    text-decoration: underline;
}

.nav__link:hover {
    color: #f7c86a;
    text-decoration: none;
}

.nav__link:first-child {
    border-right: 1px solid rgba(226, 226, 226, 0.25);
}

.nav__link a {
    font-size: 16px;
    line-height: 30px;
    vertical-align: middle;
    color: inherit;
}

.nav__link a:hover {
    border-bottom: 0;
}

.nav__icon {
    margin-right: 10px;
}

.form {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    border-radius: 15px;
    width: 270px;
    text-align: center;
    padding: 25px;
    margin: 13px;
    position: relative;
    z-index: 0;
}

.form__toptitle {
    margin-bottom: 5px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

.form__title {
    text-align: center;
    line-height: 1.1;
    position: relative;
    z-index: 0;
    border-radius: 3px 3px 0 0;
    margin-bottom: 15px;
}

.form::after {
    content: '';
    width: calc(100% - 8px);
    height: 5px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #f90;
    border-radius: 15px 15px 0 0;
}

.form::before {
    content: '-50%';
    top: -30px;
    right: -20px;
    letter-spacing: -0.5px;
    width: 81px;
    height: 59px;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    background: url(../img/discont-bg.png) no-repeat center/contain;
    z-index: 5;
}

.form__input {
    width: 100%;
    height: 60px;
    padding-right: 15px;
    padding-left: 52px;
    background: #f3f3f3;
    border: 1px solid #c4c4c4;
    border-radius: 10px;
    -webkit-box-shadow: inset 1px 2px 7px rgba(0, 0, 0, 0.04);
    box-shadow: inset 1px 2px 7px rgba(0, 0, 0, 0.04);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #444;
    font-size: 16px;
}

.form::before {
    position: absolute;
    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;
}

.form__input:active,
.form__input:focus,
.form__input:hover {
    background-color: #fafafa;
}

.label,
.price {
    margin-bottom: 15px;
    position: relative;
}

.label {
    display: block;
}

.price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: center;
}

.price .x_price_previous:before,
.price::before {
    content: '';
    width: 1px;
    height: 60px;
    opacity: 0.3;
    background-color: #c4c4c4;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.price .x_price_previous {
    position: relative;
    font-size: 40px;
    line-height: 1;
}

.price .x_price_previous:before {
    content: '';
    opacity: 0.8;
    background-color: #e3331b;
    height: 2px;
    width: 107%;
}

.price .x_currency {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.price .x_price_current {
    font-size: 40px;
    line-height: 1;
    font-weight: 900;
    color: #f54646;
}

.price-old {
    width: 50%;
    color: #666;
}

.price-old__title {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 22px;
    color: #666;
}

.price-new {
    width: 50%;
    position: relative;
}

.price-new .x_currency {
    color: #f54646;
}

.price-new__title {
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form__online {
    font-size: 16px;
    line-height: 1;
    color: #31363e;
    margin-bottom: 25px;
}

.last {
    text-align: center;
}

.form__btn {
    margin-bottom: 20px;
    padding-left: 30px;
    text-align: left;
    position: relative;
}

.form__btn:hover .btn__arrow {
    -webkit-animation: arrow-pulse 0.9s ease infinite reverse;
    animation: arrow-pulse 0.9s ease infinite reverse;
}

.form__btn:hover .btn__circle {
    -webkit-transform: rotate(180deg) translate(0, 50%);
    transform: rotate(180deg) translate(0, 50%);
}

.btn__circle,
.label--name:before,
.label--phone:before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn__circle {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    width: 30px;
    height: 30px;
    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;
    border-radius: 30px;
    background-color: #fff;
    right: 10px;
}

.label--name,
.label--phone {
    position: relative;
}

.label--name:before,
.label--phone:before {
    content: '';
    left: 20px;
}

.label--name:before {
    width: 16px;
    height: 18px;
    background: url(../img/icon-name.png) no-repeat center/contain;
}

.label--phone:before {
    width: 20px;
    height: 20px;
    background: url(../img/icon-tel.png) no-repeat center/contain;
}

.form-online__count {
    color: #f12535;
    font-weight: 700;
}

.promo {
    position: relative;
}

.promo__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.promo__hero {
    display: none;
}

.promo__description {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
}

.promo__title {
    width: 250px;
    margin: 0 auto 15px;
}

.promo__subtitle {
    color: #222;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 25px;
    padding-bottom: 30px;
    position: relative;
}

.promo__subtitle::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #575756;
}

.promo__list {
    max-width: 290px;
    margin: 0 auto 20px;
}

.promo-list__item {
    padding-left: 65px;
    position: relative;
}

.promo-list__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50px;
    background-image: url(../img/icon-check.png);
    background-color: #f90;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.promo-list__item:not(:last-child) {
    margin-bottom: 20px;
}

.promo-list__title {
    margin-bottom: 10px;
    font-weight: 500;
}

.promo__pack {
    width: 270px;
    margin: 0 auto 55px;
}

.promo__form {
    margin: 0 auto 15px;
    padding-bottom: 0;
}

.promo__quality {
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
}

.quality {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.quality picture {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.danger__title {
    margin-bottom: 15px;
}

.danger__title .text-accent {
    display: block;
}

.danger__subtitle {
    max-width: 450px;
    margin: 0 auto 25px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}

.danger__list {
    width: 270px;
    margin: 0 auto 35px;
}

.danger__item {
    margin-bottom: 25px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    border-radius: 15px;
    overflow: hidden;
}

.components__item:last-child,
.danger__item:last-child,
.helps__item:last-child,
.prevent__item:last-child,
.symptoms__item:last-child {
    margin-bottom: 0;
}

.danger__effects {
    min-height: 53px;
    padding: 10px;
    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;
    color: #fff;
    font-weight: 700;
    background: #aa2f6f;
    text-align: center;
    line-height: 1;
}

.danger__text {
    padding: 20px 35px;
    text-align: center;
}

.prevent__title {
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
    font-size: 23px;
}

.prevent__list {
    max-width: 290px;
    margin: 0 auto;
}

.prevent__item {
    min-height: 75px;
    margin-bottom: 20px;
    padding-left: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 15px;
    border: 2px solid #c7c7c7;
    border-top-width: 0;
    font-weight: 500;
    position: relative;
}

.prevent__item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 110px;
    background-color: #aa2f6f;
    background-image: url(../img/icon-danger1.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 35px;
}

.prevent__item:nth-child(2)::before {
    background-image: url(../img/icon-danger2.png);
}

.prevent__item:last-child::before {
    background-image: url(../img/icon-danger3.png);
}

.prevent__item:last-child::after {
    display: none;
}

.symptoms__subtitle {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}

.symptoms__list {
    max-width: 290px;
    margin: 0 auto;
}

.symptoms__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    padding: 20px 10px 20px 70px;
    background: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    border-radius: 15px;
    font-weight: 500;
    position: relative;
}

.symptoms__item::before {
    content: '';
    width: 40px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/icon-symptoms1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
}

.symptoms__item:nth-child(2)::before {
    background-image: url(../img/icon-symptoms2.png);
}

.symptoms__item:nth-child(3)::before {
    background-image: url(../img/icon-symptoms3.png);
}

.symptoms__item:nth-child(4)::before {
    background-image: url(../img/icon-symptoms4.png);
}

.symptoms__item:nth-child(5)::before {
    background-image: url(../img/icon-symptoms5.png);
}

.symptoms__item:nth-child(6)::before {
    background-image: url(../img/icon-symptoms6.png);
}

.helps__content {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e6e6e6;
}

.helps__list {
    max-width: 290px;
    margin: 0 auto;
}

.helps__item {
    margin-bottom: 20px;
    padding: 5px 0 5px 60px;
    font-weight: 500;
    position: relative;
}

.helps__item:last-child::after {
    display: none;
}

.helps__item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50px;
    background-image: url(../img/icon-check.png);
    background-color: #f90;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.helps__item::after {
    content: '';
    position: absolute;
    left: 60px;
    bottom: -10px;
    width: 123px;
    height: 1px;
    background: #d7d7d7;
}

.action .timer__text br,
.helps__img {
    display: none;
}

.helps__img::after,
.helps__img::before {
    content: '';
    width: 230px;
    height: 230px;
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 300px;
    border: 1px solid #d7d7d7;
}

.helps__img::after {
    width: 290px;
    height: 290px;
    z-index: -5;
}

.helps__prod {
    margin: 0 auto;
    position: relative;
}

.components__list {
    max-width: 270px;
    margin: 0 auto;
    padding-top: 50px;
}

.components__item {
    margin-bottom: 65px;
    background: #fff;
    border: 1px solid #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    border-radius: 15px !important;
    position: relative;
}

.components__img {
    margin: 0 auto 0;
    border-radius: 15px !important;
    width: 220px;
    height: 220px;
    padding: 15px 0;
}

.action__prod::before,
.components__name {
    color: #fff;
    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;
}

.components__name {
    height: 61px;
    margin: 0 -1px;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    background: #aa2f6f;
}

.components__text {
    padding: 20px;
    text-align: center;
}

.action {
    margin: 0 auto;
}

.action__title {
    max-width: 290px;
    margin: 0 auto 15px;
    position: relative;
}

.action .form__title {
    margin-bottom: 0;
}

.action .timer__text {
    margin: 0 0 10px;
    color: #666;
    text-align: center;
}

.action .timer {
    margin-bottom: 30px;
}

.action .timer__time {
    text-align: center;
}

.action .timer__time span {
    color: #666;
}

.action .timer__time .tm {
    color: #fff;
}

.action .price {
    max-width: 290px;
    margin: 0 auto 15px;
}

.action .price .x_currency {
    display: inline-block;
}

.action__prod {
    width: 290px;
    margin: 0 auto;
    display: block;
    position: relative;
}

.action__prod::before {
    content: '-50%';
    position: absolute;
    top: -10px;
    right: 0;
    letter-spacing: -0.5px;
    width: 81px;
    height: 59px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    background: url(../img/discont-bg.png) no-repeat center/contain;
    z-index: 5;
}

.action__img {
    width: 270px;
    margin: 0 auto 15px;
}

.action__form {
    max-width: 270px;
    margin: 0 auto;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.action__form::after,
.action__form::before {
    display: none;
}

.action .btn {
    margin: 0 auto 20px;
    padding-left: 60px;
}

.action .btn__circle {
    right: 40px;
}

.action .form__online {
    margin: 0;
}

.stat__title {
    margin-bottom: 20px;
}

.stat__subtitle {
    margin-bottom: 25px;
    font-weight: 500;
    text-align: center;
    font-size: 18px;
}

.stat__list {
    max-width: 290px;
    margin: 0 auto 30px;
    padding-top: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
}

.stat__item {
    margin-bottom: 40px;
    background: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #fff;
    border-radius: 15px;
}

.stat__item:last-child {
    margin-bottom: 0;
}

.stat__data {
    width: 90px;
    height: 90px;
    margin: -20px auto 15px;
    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;
    color: #fff;
    border-radius: 140px;
    background: #aa2f6f;
    font-weight: 700;
}

.stat__num {
    font-size: 40px;
}

.stat__per {
    font-size: 20px;
}

.stat__text {
    padding: 0 20px 20px;
    text-align: center;
    font-weight: 500;
}

.doc__content {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e6e6e6;
}

.doc__descr {
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 0;
}

.doc__descr::before {
    content: '';
    width: 50px;
    height: 3px;
    background: #aa2f6f;
    position: absolute;
    bottom: 0;
    left: 0;
}

.doc__text {
    line-height: 1.5;
}

.doc__text:not(:last-child) {
    margin-bottom: 15px;
}

.doc__name {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 18px;
}

.doc__detail {
    font-style: italic;
    font-size: 15px;
    color: #777;
}

.doc__hero {
    display: none;
}

.form__stars {
    width: 105px;
    height: 20px;
    display: inline-block;
    background-image: url(../img/star-unactive.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 10px;
    position: relative;
}

.form__stars::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../img/star.png);
    background-repeat: repeat-x;
    background-size: 21px;
    background-position: 0 1px;
}

.star5::before {
    width: 105px;
}

.modal__wraper {
    display: none;
    padding: 25px;
    text-align: center;
    background-color: #efe8e5;
    border-radius: 10px;
    position: relative;
}

.modal__close,
.modal__close:before {
    position: absolute;
    width: 8px;
    height: 35px;
    border-radius: 3px;
    background-color: #efe8e5;
}

.modal__close {
    top: -40px;
    right: 10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    cursor: pointer;
}

.modal__close:before {
    content: '';
    top: 0;
    right: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.modal__close:hover {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.feedback__modal,
.reviews__feedback {
    display: none;
}

.modal--active {
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 5;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    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;
    padding: 0 15px;
}

.reviews__title {
    margin-bottom: 20px;
}

.reviews__block {
    padding: 20px 10px;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-radius: 15px;
}

.reviews__header {
    margin-bottom: 10px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 15px;
}

.reviews__button {
    border-radius: 10px;
    width: 220px;
    margin: 0 auto 20px;
    padding: 9px;
    border: 1px solid #e3331b;
    background: #fff;
    color: #333;
}

.reviews__button:hover {
    color: #fff;
}

.reviews__button,
.reviews__rating {
    text-align: center;
}

.reviews__stars {
    vertical-align: sub;
    position: relative;
}

.reviews__stars::before {
    content: '';
    width: 95px;
    height: 100%;
    background-image: url(../img/star.png);
    background-size: 21px;
    background-position: 0 1px;
    background-repeat: repeat-x;
    position: absolute;
    top: 0;
    left: 0;
}

.reviews__count {
    display: inline-block;
    vertical-align: middle;
}

.reviews__main {
    height: 400px;
    padding-right: 10px;
    overflow: auto;
    scrollbar-color: #aa2f6f #efefef !important;
    scrollbar-width: thin !important;
}

.reviews__main::-webkit-scrollbar {
    width: 8px;
}

.reviews__main::-webkit-scrollbar-track {
    background: #e6e9e9;
    position: relative;
    border: 1px solid #efefef;
}

.reviews__main::-webkit-scrollbar-thumb {
    background-color: #aa2f6f;
    background-image: url(../img/scrol.png);
    background-size: 4px 7px;
    background-repeat: no-repeat;
    background-position: center center;
}

.comments__item {
    padding: 0 10px 15px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #dedede;
}

.comments__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.comments__avatar,
.comments__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.comments__header {
    margin-bottom: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.comments__avatar {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #959595;
    width: 60px;
    height: 60px;
    margin-right: 10px;
    color: #fff;
    font-size: 50px;
    border-radius: 50%;
    font-weight: 500;
}

.comments__name {
    font-size: 20px;
    margin-bottom: 5px;
    display: block;
}

.comments__stars {
    display: block;
}

.social__date {
    margin-left: auto;
}

.comments__text {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #606060;
    max-height: 100px;
    overflow: hidden;
    -webkit-transition: max-height 0.5s;
    transition: max-height 0.5s;
}

.show-hide-text {
    max-height: 500px;
}

.comments__more {
    margin-bottom: 15px;
    display: inline-block;
    color: #444;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    font-style: italic;
    border-bottom: 1px solid #707070;
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.comments__more:before {
    position: absolute;
    top: 2px;
    content: '';
    width: 12px;
    height: 12px;
    right: -25px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.arrow-top:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 7px;
}

.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.social__button {
    display: inline-block;
    font-size: 15px;
}

.social__button:first-child {
    margin-right: 22px;
}

.social__img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: bottom;
}

.like {
    background: url(../img/like.png) no-repeat;
    cursor: pointer;
}

.like-active {
    background: url(../img/like-active.png) no-repeat;
}

.dislike {
    background: url(../img/dislike.png) no-repeat;
    cursor: pointer;
}

.dislike-active {
    background: url(../img/dislike-active.png) no-repeat;
}

.reviews__feedback {
    padding: 20px 0 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #dedede;
    position: relative;
}

.feedback__icon {
    position: relative;
}

.feedback__icon:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background: url(../img/name2.png) no-repeat;
    left: 20px;
    top: -2px;
}

.feedback__input {
    width: 100%;
    font-size: 17px;
    height: 40px;
    padding-left: 48px;
    border-radius: 10px;
    border: 1px solid #e0e3e4;
    margin-bottom: 10px;
}

.feedback__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.feedback__rating-text {
    font-size: 17px;
    color: #797979;
    margin-right: 20px;
}

.feedback__star {
    cursor: pointer;
}

.feedback__star:before {
    content: '';
    display: block;
    background-image: url(../img/star-unactive.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 26px;
    height: 24px;
}

.feedback__main {
    position: relative;
}

.feedback__main:before {
    position: absolute;
    content: '';
    width: 17px;
    height: 18px;
    left: 20px;
    top: 14px;
    background: url(../img/message.png) no-repeat;
}

.feedback__area {
    resize: none;
    height: 100px;
    padding: 10px 10px 10px 48px;
    -ms-overflow-style: none;
    font-family: sans-serif;
}

.feedback__button {
    width: 180px;
    margin: 0 auto;
}

.hover:before,
.selected:before {
    background: url(../img/star.png);
    background-size: cover;
}

.close-form,
.show-form {
    display: block;
}

.close-form {
    position: absolute;
    top: -5px;
    right: 10px;
}

.close-form,
.close-form:before {
    background-color: #7faa30;
}

.feedback__modal .modal__wraper {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
}

.modal__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.modal__text span {
    display: block;
    font-size: 24px;
}

.use {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e6e6e6;
}

.use__title {
    margin-bottom: 20px;
}

.use__list {
    max-width: 290px;
    margin: 0 auto 30px;
    padding-top: 20px;
}

.use__item {
    margin-bottom: 40px;
    padding: 80px 20px 20px;
    background: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #fff;
    border-radius: 15px;
    text-align: center;
    font-weight: 500;
    position: relative;
}

.use__item::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 100px;
    background-color: #aa2f6f;
    background-image: url(../img/icon-use1.png);
    background-position: 50%;
    background-repeat: no-repeat;
}

.use__item:nth-child(2)::before {
    background-image: url(../img/icon-use2.png);
}

.use__item:nth-child(2) br {
    display: none;
}

.use__item:nth-child(3)::before {
    background-image: url(../img/icon-use3.png);
    background-size: 50px;
}

.order__item:last-child,
.use__item:last-child {
    margin-bottom: 0;
}

.use__prod {
    width: 290px;
    display: block;
    position: relative;
}

.use__img,
.use__prod {
    margin: 0 auto;
}

.order__title {
    margin-bottom: 25px;
}

.order__list {
    max-width: 290px;
    margin: 0 auto;
}

.order__item {
    margin-bottom: 20px;
    background: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    border-radius: 15px;
    overflow: hidden;
}

.order__img {
    margin: 0 auto;
    height: 160px;
}

.order__img--pack {
    padding: 20px;
}

.order__step {
    height: 53px;
    padding: 0 10px;
    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;
    text-align: center;
    background: #aa2f6f;
    font-weight: 700;
    color: #fff;
}

.order__text {
    padding: 30px 20px;
    text-align: center;
}

.webp .promo-last {
    background-color: #f4f0f2;
}

.popup {
    background: #f4f0f2;
    border-radius: 20px;
}

.popup__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 15px;
}

.popup__left {
    display: none;
}

.popup__logo {
    width: 270px;
    margin: 0 auto 15px;
}

.popup__title {
    margin-bottom: 40px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 18px;
    border-bottom: 2px solid #474747;
}

.popup__prod {
    width: 320px;
    margin: 0 auto;
}

.popup__form {
    margin: 0;
    padding-bottom: 0;
    border-bottom: 1px solid #fff;
}

.popup__form::before {
    top: -23px;
    left: -15px;
    right: auto;
}

.popup .price {
    margin-bottom: 10px;
}

.popup .form__title {
    margin-bottom: 8px;
}

.popup .label {
    margin-bottom: 10px;
}

.popup .form__input {
    height: 50px;
}

.popup .form__btn,
.popup .form__online {
    margin-bottom: 10px;
}

.footer {
    padding: 20px 0;
}

.block {
    padding: 25px 0;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .reviews .modal__wraper {
        margin: 0 auto;
    }
}

@media screen and (min-width: 480px) {
    .container {
        width: 480px;
        margin: 0 auto;
    }

    .title {
        font-size: 28px;
    }

    .promo__subtitle {
        font-size: 17px;
    }

    .promo__subtitle::before {
        width: 300px;
    }

    .helps__content {
        margin-bottom: 30px;
        padding-bottom: 35px;
    }

    .helps__img::after,
    .helps__img::before {
        top: 41%;
    }

    .helps__img::before {
        width: 250px;
        height: 250px;
    }

    .helps__img::after {
        width: 320px;
        height: 320px;
    }

    .reviews__block {
        padding: 15px;
    }

    .comments__item {
        padding: 0 15px 20px 0;
    }

    .comments__header,
    .comments__item {
        margin-bottom: 20px;
    }

    .comments__avatar {
        width: 80px;
        height: 80px;
        margin-right: 15px;
        font-size: 30px;
    }

    .comments__text {
        margin-bottom: 15px;
        font-size: 18px;
        max-height: 110px;
    }

    .show-hide-text {
        max-height: 550px;
    }

    .comments__more {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .use {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .use__prod::after,
    .use__prod::before {
        content: '';
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        z-index: -5;
    }

    .use__prod::before {
        top: 0;
        left: -50px;
        width: 90px;
        height: 90px;
    }

    .use__prod::after {
        top: 30px;
        right: -80px;
        width: 190px;
        height: 235px;
    }

    .webp .use__prod::before {
        background-image: url(../img/use-stamp.webp);
    }

    .block {
        padding: 30px 0;
    }
}

@media screen and (min-width: 640px) {
    .container {
        width: 640px;
    }

    .title {
        margin-bottom: 20px;
        font-size: 30px;
    }

    .header__wrapper {
        padding: 10px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .header__logo {
        margin: 0 auto;
        display: block;
    }

    .header__content {
        width: 100%;
        max-width: 420px;
        padding: 0;
        position: static;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header .timer,
    .header__close {
        display: none;
    }

    .header__nav {
        width: 100%;
        max-width: 250px;
        margin: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-align: center;
    }

    .header__button {
        margin: 0 0 0 auto;
    }

    .header__burger {
        display: none;
    }

    .nav__icon {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .promo__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }

    .promo__description {
        max-width: none;
        margin-bottom: 40px;
    }

    .promo__list {
        max-width: none;
        margin: 0 0 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .promo-list__item {
        width: 33%;
        padding-left: 0;
        padding-top: 65px;
    }

    .promo-list__item::before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .promo-list__item:not(:last-child) {
        margin-bottom: 0;
    }

    .promo-list__text,
    .promo-list__title {
        text-align: center;
    }

    .promo__pack {
        margin: 0 30px 60px 0;
    }

    .promo__form {
        margin: 0;
    }

    .promo__quality {
        position: absolute;
        left: 20px;
        bottom: 0;
    }

    .danger__list {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .danger__item {
        width: 270px;
    }

    .prevent__list {
        max-width: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .prevent__item {
        width: 47%;
        min-height: 85px;
    }

    .webp .danger {
        background-image: url(../img/bg-arrow-down.webp);
        background-repeat: no-repeat;
        background-position: 50% 380px;
        background-size: 770px;
    }

    .symptoms__subtitle {
        margin-bottom: 20px;
    }

    .symptoms__list {
        max-width: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .symptoms__item {
        width: 47%;
    }

    .components__item:nth-child(3),
    .symptoms__item:nth-child(5) {
        margin-bottom: 0;
    }

    .helps__content {
        padding-bottom: 40px;
    }

    .helps__img::before {
        width: 330px;
        height: 330px;
    }

    .helps__img::after {
        width: 420px;
        height: 420px;
    }

    .helps__prod {
        width: 350px;
    }

    .components__list {
        max-width: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .components__item {
        width: 46%;
    }

    .action {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .action__title {
        width: 100%;
        max-width: 390px;
        margin-bottom: 20px;
    }

    .action .form__title,
    .action .form__toptitle {
        text-align: center;
    }

    .action .timer {
        width: 44%;
    }

    .action .price {
        width: 270px;
        margin: 0;
    }

    .action__prod {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .action__img {
        margin: 0;
    }

    .action__form {
        margin: 0;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .stat__list {
        max-width: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .stat__item {
        width: 42%;
    }

    .doc__content {
        position: relative;
    }

    .doc__descr {
        max-width: 570px;
        margin: 0 auto 95px;
    }

    .doc__detail,
    .doc__name {
        padding: 0 0 0 240px;
    }

    .doc__detail {
        max-width: 490px;
    }

    .doc__hero {
        width: 130px;
        display: block;
        position: absolute;
        left: 60px;
        bottom: 0;
    }

    .webp .doc {
        background-image: url(../img/bg-arrow-stat.png);
        background-repeat: no-repeat;
        background-position: 50% 250px;
        background-size: 630px;
    }

    .webp .doc {
        background-image: url(../img/bg-arrow-stat.webp);
    }

    .reviews__title {
        margin-bottom: 25px;
    }

    .reviews__header {
        padding-bottom: 20px;
    }

    .reviews__button {
        height: 45px;
        padding: 13px;
        font-size: 16px;
    }

    .reviews__block {
        padding: 20px;
    }

    .comments__item {
        padding: 0 25px 25px 0;
    }

    .comments__header,
    .comments__item {
        margin-bottom: 25px;
    }

    .comments__avatar {
        margin-right: 20px;
    }

    .comments__text {
        margin-bottom: 20px;
        max-height: 80px;
    }

    .show-hide-text {
        max-height: 600px;
    }

    .comments__more,
    .feedback__header {
        margin-bottom: 20px;
    }

    .feedback__header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .feedback__input,
    .feedback__rating {
        margin-bottom: 0;
    }

    .feedback__icon:before {
        top: 9px;
    }

    .feedback__main {
        margin-bottom: 20px;
    }

    .modal__wraper {
        max-width: 450px;
        margin: 0 auto;
    }

    .modal__text {
        font-size: 22px;
        font-weight: 500;
    }

    .use__list {
        max-width: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .use__item {
        width: 46%;
    }

    .order__list {
        max-width: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .order__item {
        width: 45%;
    }

    .order__item:nth-child(3) {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 768px) {
    .container {
        width: 768px;
        padding: 0 10px;
    }

    .title {
        margin-bottom: 25px;
        font-size: 32px;
    }

    .webp .bg-bottom-left,
    .webp .bg-bottom-right {
        background-image: url(../img/bg-drops.webp);
        background-repeat: no-repeat;
        background-position: calc(50% - 70px) 50px;
    }

    .webp .bg-bottom-left {
        background-image: url(../img/bg-drops.png);
    }

    .webp .bg-bottom-left {
        background-image: url(../img/bg-drops.webp);
    }

    .header__content {
        max-width: 540px;
    }

    .header__nav {
        max-width: 340px;
    }

    .promo {
        padding-top: 30px !important;
    }

    .promo__description {
        max-width: 100%;
    }

    .promo__title {
        width: 310px;
        margin-bottom: 10px;
    }

    .promo__subtitle {
        font-size: 20px;
    }

    .promo__subtitle::before {
        width: 350px;
    }

    .promo__list {
        max-width: 610px;
        margin-left: auto;
        margin-right: auto;
    }

    .promo__pack {
        margin-right: 70px;
    }

    .promo__quality {
        left: 75px;
    }

    .danger__subtitle {
        font-size: 20px;
    }

    .danger__list {
        margin-bottom: 45px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .danger__item:first-child {
        margin-right: 30px;
    }

    .prevent__title {
        max-width: 600px;
        margin: 0 auto -25px;
        font-size: 27px;
        background-color: #fff;
        position: relative;
    }

    .prevent__list {
        padding: 50px 20px 30px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border: 2px solid #c7c7c7;
        border-radius: 15px;
        -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
    }

    .prevent__item {
        width: 29%;
        min-height: auto;
        margin-bottom: 0;
        padding-left: 65px;
        border: 0;
        position: relative;
    }

    .prevent__item::before {
        left: 0;
    }

    .prevent__item::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -20px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 1px;
        height: 50px;
        background: #d7d7d7;
    }

    .symptoms__item {
        padding: 20px 20px 20px 80px;
        font-size: 18px;
    }

    .symptoms__item::before {
        width: 50px;
    }

    .helps__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .helps__list {
        margin: 0;
    }

    .helps__img {
        display: block;
        position: relative;
    }

    .helps__img::after,
    .helps__img::before {
        top: 61%;
    }

    .helps__prod {
        padding-top: 40px;
    }

    .components__item {
        width: 42%;
    }

    .action {
        max-width: 610px;
    }

    .action__title {
        max-width: none;
    }

    .stat__list {
        padding-bottom: 80px;
    }

    .stat__item {
        width: 30%;
        margin-bottom: 0;
    }

    .doc__descr {
        margin-bottom: 175px;
    }

    .doc__name {
        padding-left: 330px;
        font-size: 20px;
    }

    .doc__detail {
        max-width: 590px;
        padding-left: 330px;
    }

    .doc__hero {
        width: 190px;
        left: 110px;
    }

    .webp .doc {
        background-position: 50% 180px;
        background-size: 770px;
    }

    .reviews__title {
        margin-bottom: 30px;
    }

    .reviews__header {
        padding-bottom: 23px;
        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;
    }

    .reviews__button {
        margin: 0;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .reviews__count {
        color: #403737;
        font-size: 16px;
    }

    .reviews__block {
        padding: 25px;
    }

    .reviews__main {
        height: 450px;
        padding-right: 20px;
    }

    .comments__item {
        padding: 0 30px 30px 0;
    }

    .comments__header,
    .comments__item {
        margin-bottom: 30px;
    }

    .social__date {
        font-size: 15px;
    }

    .comments__text {
        margin-bottom: 25px;
        max-height: 82px;
    }

    .show-hide-text {
        max-height: 650px;
    }

    .comments__more,
    .feedback__header,
    .feedback__main {
        margin-bottom: 25px;
    }

    .feedback__button {
        margin: 0;
    }

    .modal__wraper {
        max-width: 450px;
        margin: 0 auto;
    }

    .modal__text {
        font-weight: 500;
    }

    .modal__text,
    .modal__text span {
        font-size: 34px;
    }

    .use {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .use__item:nth-child(1) {
        padding: 80px 50px 20px;
    }

    .use__item:nth-child(2) br {
        display: block;
    }

    .block {
        padding: 40px 0;
    }
}

.components__title {
    margin-bottom: 0;
}

@media screen and (min-width: 1024px) {
    .container {
        width: 1024px;
        padding: 0 15px;
    }

    .title {
        font-size: 42px;
    }

    .header {
        border-bottom: 10px solid #fff;
        border-bottom-width: 15px;
    }

    .header__content {
        max-width: 820px;
    }

    .header__nav {
        max-width: 285px;
    }

    .header .timer {
        margin-bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header .timer__text {
        margin: 0 15px 0 0;
        text-align: left;
    }

    .header .timer__text br {
        display: block;
    }

    .nav__link {
        width: auto;
        padding: 0 28px;
    }

    .nav__link:first-child {
        padding-left: 0;
    }

    .header {
        position: relative;
        z-index: 10;
    }

    .header__logo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .form::before {
        right: -10px;
    }

    .promo {
        padding-top: 60px !important;
        padding-bottom: 40px !important;
        margin-bottom: 100px;
        position: relative;
    }

    .promo__content {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        position: relative;
        width: 100%;
    }

    .promo__hero,
    .reviews__title span {
        display: block;
    }

    .promo__decor,
    .promo__img {
        width: 430px;
        position: absolute;
        left: -70px;
        bottom: -40px;
    }

    .promo__decor {
        width: 225px;
        left: 190px;
        bottom: -120px;
        z-index: 0;
    }

    .promo__description {
        max-width: 320px;
        width: 100%;
        margin: 0 30px 0 0;
    }

    .promo__title {
        margin: 0 0 25px;
    }

    .promo__subtitle {
        margin-bottom: 20px;
        padding-bottom: 20px;
        text-align: left;
        font-size: 20px;
        line-height: 1.3;
    }

    .promo__subtitle::before {
        width: 320px;
    }

    .promo__list {
        margin-bottom: 0;
    }

    .promo-list__item {
        width: 100%;
        padding: 0 0 0 65px;
        line-height: 1.3;
    }

    .promo-list__item::before,
    .promo__subtitle::before {
        left: 0;
        -webkit-transform: none;
        transform: none;
    }

    .promo-list__item:not(:last-child) {
        margin-bottom: 20px;
    }

    .promo-list__title {
        font-size: 18px;
        text-align: left;
    }

    .promo-list__text {
        font-size: 17px;
        text-align: left;
    }

    .promo__pack {
        width: 330px;
        margin: 0;
        padding: 0;
        position: absolute;
        bottom: -140px;
        left: 0;
        z-index: 5;
    }

    .promo__quality {
        width: 100%;
        max-width: 500px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        left: 440px;
        bottom: -140px;
    }

    .danger__subtitle {
        margin-bottom: 40px;
        font-size: 22px;
    }

    .danger__list {
        justify-content: space-around;
    }

    .danger__item {
        margin-bottom: 0;
    }

    .danger__item:first-child {
        margin-right: 0;
    }

    .danger__effects {
        min-height: auto;
        height: 53px;
        font-size: 18px;
    }

    .danger__text {
        padding: 20px 25px;
        font-size: 18px;
    }

    .prevent__title {
        max-width: 690px;
        font-size: 30px;
    }

    .prevent__list {
        padding: 70px 20px 50px;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .prevent__item {
        width: 28%;
        padding-left: 100px;
        font-size: 18px;
    }

    .prevent__item::before {
        width: 80px;
        height: 80px;
        background-size: 60px;
    }

    .prevent__item::after {
        right: -15px;
    }

    .webp .danger {
        background-size: 1250px;
        background-position: 50% 190px;
    }

    .symptoms,
    .symptoms__title {
        position: relative;
    }

    .symptoms .container {
        padding-left: 340px;
    }

    .symptoms__title {
        padding-top: 25px;
        text-align: left;
    }

    .symptoms__title::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 70px;
        height: 5px;
        background: #aa2f6f;
    }

    .symptoms__subtitle {
        margin-bottom: 30px;
        text-align: left;
        font-size: 20px;
    }

    .symptoms__list {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        position: relative;
        z-index: 5;
    }

    .symptoms__img {
        width: 510px;
        position: absolute;
        left: calc(50% - 520px);
        bottom: 0;
    }

    .helps__title {
        max-width: 860px;
        margin: 0 auto 30px;
    }

    .helps__content {
        margin-bottom: 50px;
        padding: 33px 0 70px;
        position: relative;
    }

    .helps__list {
        max-width: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .helps__item {
        width: 31%;
        margin-bottom: 40px;
        font-size: 18px;
    }

    .helps__item:nth-child(odd) {
        margin-right: 170px;
        padding: 5px 60px 5px 0;
        text-align: right;
    }

    .helps__item:nth-child(odd)::after,
    .helps__item:nth-child(odd)::before {
        left: auto;
        right: 0;
    }

    .helps__item:nth-child(5) {
        margin-bottom: 0;
    }

    .helps__item:nth-child(5)::after {
        display: none;
    }

    .helps__item::after {
        bottom: -20px;
    }

    .helps__img {
        position: absolute;
        top: 23px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .helps__img::before {
        width: 240px;
        height: 240px;
    }

    .helps__img::after {
        width: 310px;
        height: 310px;
    }

    .helps__prod {
        width: 270px;
    }

    .components__title {
        max-width: 940px;
        margin: 0 auto 60px;
    }

    .components__list {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .components__item {
        width: 29%;
        margin-bottom: 0;
    }

    .components__text {
        min-height: 210px;
        padding: 20px 10px;
        font-size: 17px;
    }

    .action {
        max-width: 760px;
        margin-left: auto;
        margin-right: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        position: relative;
    }

    .action__title {
        width: 100%;
        max-width: 28%;
        margin: 0;
    }

    .action .form__title,
    .action .form__toptitle {
        text-align: left;
    }

    .action .timer {
        width: auto;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .action .price {
        max-width: 260px;
        margin-bottom: 17px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .action__prod {
        width: auto;
        position: absolute;
        top: 0;
        left: -235px;
    }

    .action__prod::before {
        right: -10px;
    }

    .action__img {
        width: 200px;
    }

    .action__form {
        width: 100%;
        max-width: none;
        padding-bottom: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .action .form__input {
        max-width: 240px;
    }

    .action .label {
        margin-bottom: 0;
    }

    .action .btn {
        max-width: 250px;
        margin: 0;
    }

    .action .form__online {
        position: absolute;
        right: 15px;
        bottom: 0;
    }

    .stat__subtitle {
        margin-bottom: 35px;
    }

    .stat__list {
        margin-bottom: 50px;
        padding-bottom: 110px;
    }

    .stat__data {
        width: 120px;
        height: 120px;
    }

    .stat__num {
        font-size: 55px;
    }

    .stat__per {
        font-size: 30px;
    }

    .stat__text {
        padding-bottom: 40px;
        font-size: 18px;
    }

    .doc__content {
        max-width: 570px;
        margin-left: auto;
        margin-right: 0;
        border-bottom: none;
        position: relative;
    }

    .doc__content::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: -424px;
        width: 994px;
        height: 1px;
        background: #e6e6e6;
    }

    .doc__title {
        text-align: left;
    }

    .doc__descr {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .doc__text {
        font-size: 17px;
    }

    .doc__name {
        font-size: 20px;
    }

    .doc__detail,
    .doc__name {
        padding-left: 0;
    }

    .doc__hero {
        width: 380px;
        left: -420px;
    }

    .webp .doc {
        background-size: 1020px;
        background-position: 50% 230px;
    }

    .reviews__title {
        margin-bottom: 35px;
    }

    .reviews__header {
        margin-bottom: 10px;
    }

    .reviews__block {
        padding: 30px;
    }

    .comments__item {
        padding: 0 35px 35px 0;
        margin-bottom: 35px;
    }

    .comments__text {
        margin-bottom: 28px;
    }

    .comments__more,
    .feedback__header,
    .feedback__main {
        margin-bottom: 30px;
    }

    .feedback__button {
        margin: 0;
        border-radius: 10px;
    }

    .modal__wraper {
        max-width: 450px;
        margin: 0 auto;
    }

    .use {
        margin-bottom: 60px;
        padding-bottom: 60px;
    }

    .use__title {
        max-width: 850px;
        margin: 0 auto 30px;
    }

    .use__list {
        margin-bottom: 0;
        padding-top: 110px;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .use__item {
        width: 30%;
        min-height: 166px;
        margin-bottom: 0;
        padding: 80px 0 0;
        font-size: 18px;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: 0;
        border: 0;
        position: relative;
    }

    .use__item:nth-child(odd) {
        margin-bottom: 200px;
    }

    .use__item::after {
        content: '';
        position: absolute;
        right: -80px;
        bottom: -84px;
        width: 100px;
        height: 86px;
        background: url(../img/arrow-use.png);
        background-size: contain;
        background-repeat: no-repeat;
    }

    .use__item:nth-child(1) {
        padding: 80px 50px 0;
    }

    .use__item:nth-child(2) {
        width: 360px;
        min-height: auto;
    }

    .use__item:nth-child(2)::after {
        width: 90px;
        right: -30px;
        bottom: 120px;
        -webkit-transform: rotate(284deg);
        transform: rotate(284deg);
    }

    .use__item:nth-child(3) {
        padding: 80px 20px 0;
    }

    .use__item:nth-child(3)::after {
        display: none;
    }

    .use__prod {
        position: absolute;
        top: 190px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .use__prod::before {
        width: 120px;
        height: 120px;
        left: -80px;
    }

    .order {
        position: relative;
    }

    .order__title {
        margin-bottom: 35px;
    }

    .order__list {
        justify-content: space-between;
        align-items: stretch;
    }

    .order__img {
        height: 138px;
    }

    .order__item {
        width: 23%;
        margin-bottom: 0;
    }

    .order__item:nth-child(1) .order__text {
        padding: 30px 35px;
    }

    .webp .order {
        background-image: url(../img/bg-arrow-stat.png);
        background-repeat: no-repeat;
        background-position: left 50% bottom 100px;
        background-size: 1020px;
    }

    .webp .order {
        background-image: url(../img/bg-arrow-stat.webp);
        background-position: left 50% bottom 30px;
    }

    .popup__content {
        padding: 25px 30px 25px 40px;
        border-radius: 20px;
        position: relative;
        z-index: 0;
    }

    .popup__left {
        max-width: 400px;
        margin-right: 50px;
        display: block;
        position: relative;
    }

    .footer {
        padding: 50px 0;
    }

    .block {
        padding: 60px 0;
    }
}

@media screen and (min-width: 1044px) {
    .form::before {
        right: -20px;
    }
}

@media screen and (min-width: 1220px) {
    .container {
        width: 1220px;
        padding: 0 25px;
    }

    .title {
        font-size: 48px;
        line-height: 56px;
    }

    .webp .promo-wrapper {
        background-image: url(../img/bg-top.png), url(../img/bg-sensor.png), url(../img/bg-promo-drop.png);
        background-repeat: no-repeat;
        background-position: calc(50% - 290px) 0, calc(50% - 776px) 60px, calc(50% + 870px) 55px;
    }

    .no-webp .promo-wrapper {
        background-image: url(../img/bg-top.png), url(../img/bg-sensor.png), url(../img/bg-promo-drop.png);
        background-repeat: no-repeat;
        background-position: calc(50% - 290px) 0, calc(50% - 776px) 60px, calc(50% + 870px) 55px;
    }

    .webp .promo-wrapper {
        background-image: url(../img/bg-top.webp), url(../img/bg-sensor.webp), url(../img/bg-promo-drop.webp);
    }

    .webp .bg-bottom-right {
        background-image: url(../img/bg-drops.png), url(../img/bg-bottom.png);
        background-repeat: no-repeat;
        background-position: calc(50% - 70px) 50px, calc(50% + 280px) 100%;
    }

    .webp .bg-bottom-right {
        background-image: url(../img/bg-drops.webp), url(../img/bg-bottom.webp);
    }

    .webp .bg-bottom-left {
        background-image: url(../img/bg-bottom-left.png), url(../img/bg-drops.png);
        background-repeat: no-repeat;
        background-position: calc(50% - 285px) 100%, calc(50% - 70px) 50px;
    }

    .webp .bg-bottom-left {
        background-image: url(../img/bg-bottom-left.webp), url(../img/bg-drops.webp);
    }

    .header {
        border-bottom: none;
        background-color: transparent;
    }

    .header__content {
        max-width: 1020px;
        background: 0;
    }

    .header__nav {
        max-width: 330px;
        margin-left: 0;
        margin-right: auto;
    }

    .header .timer {
        margin-right: 55px;
    }

    .header__button {
        max-width: 170px;
    }

    .nav__link {
        padding: 0 38px;
    }

    .nav__icon {
        margin-right: 18px;
    }

    .header__logo {
        margin-right: 110px;
    }

    .promo {
        margin-bottom: 106px !important;
        padding-top: 63px !important;
        padding-bottom: 65px !important;
    }

    .promo__img {
        width: 415px;
        top: auto;
        left: 4px;
        bottom: -65px;
    }

    .promo__decor {
        width: auto;
        -webkit-transform: none;
        transform: none;
        left: 245px;
        bottom: -167px;
    }

    .promo__description {
        max-width: 373px;
        margin-right: 30px;
    }

    .promo__title {
        width: auto;
        margin-bottom: 17px;
        padding-left: 32px;
    }

    .promo__subtitle {
        margin-bottom: 15px;
        padding-bottom: 27px;
    }

    .promo__subtitle::before {
        width: 352px;
    }

    .promo-list__item {
        padding-left: 70px;
    }

    .promo-list__item:not(:last-child) {
        margin-bottom: 25px;
    }

    .promo-list__title {
        margin-bottom: 6px;
        font-size: 20px;
    }

    .promo__pack {
        width: 320px;
        left: 87px;
        bottom: -170px;
    }

    .promo__quality {
        left: 567px;
        bottom: -169px;
    }

    .danger {
        padding: 80px 0;
    }

    .danger__list {
        margin-bottom: 74px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .danger__item:first-child {
        margin-right: 75px;
    }

    .danger__item:nth-child(2) {
        margin-right: 75px;
    }

    .danger__text {
        padding: 30px 25px;
    }

    .prevent__title {
        max-width: 770px;
        margin-bottom: -45px;
        font-size: 34px;
    }

    .prevent__list {
        padding: 105px 20px 87px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .prevent__item {
        width: 25%;
        margin-right: 90px;
        padding-left: 125px;
    }

    .prevent__item::before {
        width: 100px;
        height: 100px;
    }

    .prevent__item::after {
        height: 75px;
        right: -35px;
    }

    .prevent__item:last-child {
        margin-right: 0;
    }

    .webp .danger {
        background-size: auto;
        background-position: 50% 210px;
    }

    .symptoms {
        padding-top: 80px;
        padding-bottom: 136px;
    }

    .symptoms .container {
        padding-left: 424px;
    }

    .symptoms__title {
        padding-top: 30px;
    }

    .symptoms__subtitle {
        margin-bottom: 43px;
        font-size: 22px;
    }

    .symptoms__item {
        width: 48%;
        margin-bottom: 30px;
        padding: 30px 20px 30px 130px;
    }

    .symptoms__item::before {
        width: 60px;
        left: 38px;
    }

    .symptoms__img {
        width: auto;
        bottom: 72px;
        left: calc(50% - 696px);
    }

    .helps {
        padding: 80px 0;
    }

    .helps__content {
        margin-bottom: 39px;
        padding: 64px 0 180px;
    }

    .helps__item {
        width: 315px;
        margin-bottom: 60px;
        padding-left: 65px;
    }

    .helps__item:nth-child(odd) {
        padding-right: 65px;
    }

    .helps__item::after {
        bottom: -30px;
    }

    .helps__img {
        top: 90px;
    }

    .helps__img::after,
    .helps__img::before {
        top: 135px;
    }

    .helps__img::before {
        width: 370px;
        height: 370px;
    }

    .helps__img::after {
        width: 470px;
        height: 470px;
    }

    .helps__prod {
        width: 350px;
        padding-top: 0;
    }

    .components {
        padding-top: 80px;
        padding-bottom: 136px;
    }

    .components__title {
        margin-bottom: 60px;
    }

    .components__list {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .components__item {
        width: 350px;
    }

    .components__text {
        padding: 20px;
    }

    .action {
        max-width: 870px;
    }

    .action__title {
        max-width: 26%;
    }

    .action .timer__text {
        max-width: 105px;
        margin: 0 10px 0 0;
        text-align: left;
    }

    .action .timer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .action .price,
    .action .timer {
        margin-bottom: 0;
    }

    .action .price .x_currency {
        display: block;
    }

    .action__prod {
        left: -255px;
    }

    .action__prod::before {
        right: -32px;
    }

    .action__img {
        width: 190px;
    }

    .action__form {
        padding-top: 20px;
    }

    .action .form__input {
        width: 100%;
        max-width: none;
    }

    .action .label {
        width: 100%;
    }

    .action .btn,
    .action .label {
        max-width: 270px;
    }

    .action .form__online {
        right: 23px;
    }

    .stat__title {
        max-width: 1000px;
        margin: 0 auto 30px;
    }

    .stat__subtitle {
        margin-bottom: 80px;
        font-size: 22px;
    }

    .stat__list {
        margin-bottom: 105px;
        padding-bottom: 130px;
    }

    .stat__item {
        width: 370px;
    }

    .stat__data {
        width: 140px;
        height: 140px;
        margin-top: -30px;
    }

    .stat__num {
        font-size: 70px;
    }

    .stat__text {
        padding: 0 30px 70px;
        font-size: 20px;
    }

    .doc {
        padding: 60px 0 20px;
    }

    .doc__content {
        max-width: 605px;
        margin-bottom: 60px;
        padding-bottom: 70px;
    }

    .doc__content::before {
        width: 1170px;
        left: -565px;
    }

    .doc__title {
        margin-bottom: 26px;
    }

    .doc__descr {
        max-width: none;
        margin-bottom: 37px;
        padding-right: 10px;
    }

    .doc__text:not(:last-child) {
        margin-bottom: 32px;
    }

    .doc__name {
        margin-bottom: 15px;
    }

    .doc__hero {
        width: auto;
        left: -532px;
    }

    .webp .doc {
        background-size: auto;
        background-position: 50% 250px;
    }

    .reviews {
        padding-top: 90px;
        padding-bottom: 136px;
    }

    .reviews__title {
        margin-bottom: 50px;
    }

    .reviews__block {
        padding: 35px;
    }

    .comments__more {
        margin-bottom: 35px;
    }

    .reviews__main {
        height: 586px;
    }

    .use {
        margin-bottom: 80px;
        padding-bottom: 80px;
    }

    .use__list {
        padding-top: 145px;
    }

    .use__item {
        width: 270px;
        min-height: 174px;
    }

    .use__item:nth-child(odd) {
        margin-bottom: 225px;
    }

    .use__item::before {
        width: 100px;
        height: 100px;
        top: -45px;
    }

    .use__item::after {
        width: 117px;
        right: -150px;
    }

    .use__item:nth-child(1) {
        padding: 80px 0 0;
    }

    .use__item:nth-child(2) {
        width: 370px;
    }

    .use__item:nth-child(2)::after {
        width: 117px;
        right: -83px;
        bottom: 140px;
    }

    .use__item:nth-child(3) {
        width: 300px;
        padding: 80px 0 0;
    }

    .use__item:nth-child(3)::before {
        background-size: auto;
    }

    .use__prod {
        width: 340px;
        top: 200px;
    }

    .use__prod::before {
        width: 130px;
        height: 130px;
        top: -7px;
        left: -97px;
    }

    .use__prod::after {
        width: 220px;
        top: 70px;
        right: -100px;
    }

    .order {
        padding: 80px 0 160px;
    }

    .order__title {
        margin-bottom: 70px;
    }

    .order__img {
        height: 163px;
    }

    .order__item {
        width: 270px;
    }

    .order__item:nth-child(1) .order__text {
        padding: 30px 40px;
    }

    .order__step,
    .order__text {
        font-size: 18px;
    }

    .order__text {
        padding: 30px;
    }

    .webp .order {
        background-size: auto;
        background-position: left 50% bottom 100px;
    }

    .webp .order {
        background-position: left 50% bottom 60px;
    }

    .webp .promo-last {
        background-image: url(../img/bg-sensor.png), url(../img/bg-promo-drop.png);
        background-repeat: no-repeat;
        background-position: calc(50% - 776px) 0, calc(50% + 870px) 0;
    }

    .webp .promo-last {
        background-image: url(../img/bg-sensor.webp), url(../img/bg-promo-drop.webp);
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .no-webp .order {
        background-size: auto;
        background-position: left 50% bottom 100px;
    }

    .no-webp .order {
        background-position: left 50% bottom 60px;
    }

    .no-webp .promo-last {
        background-image: url(../img/bg-sensor.png), url(../img/bg-promo-drop.png);
        background-repeat: no-repeat;
        background-position: calc(50% - 776px) 0, calc(50% + 870px);
    }

    .no-webp .promo-last {
        background-color: #f4f0f2;
    }

    .no-webp .use__prod::before {
        background-image: url(../img/use-stamp.png);
    }

    .no-webp .danger {
        background-image: url(../img/bg-arrow-down.png);
        background-repeat: no-repeat;
        background-position: 50% 380px;
        background-size: 770px;
    }

    .no-webp .doc {
        background-image: url(../img/bg-arrow-stat.png);
        background-repeat: no-repeat;
        background-position: 50% 250px;
        background-size: 630px;
    }

    .no-webp .order {
        background-image: url(../img/bg-arrow-stat.png);
        background-repeat: no-repeat;
        background-position: left 50% bottom 100px;
        background-size: 1020px;
    }

    .no-webp .promo-wrapper {
        background-image: url(../img/bg-top.png), url(../img/bg-sensor.png), url(../img/bg-promo-drop.png);
        background-repeat: no-repeat;
        background-position: calc(50% - 290px) 0, calc(50% - 776px) 60px, calc(50% + 870px) 55px;
    }

    .no-webp .bg-bottom-right {
        background-image: url(../img/bg-drops.png), url(../img/bg-bottom.png);
        background-repeat: no-repeat;
        background-position: calc(50% - 70px) 50px, calc(50% + 180px) 96.2%;
    }

    .no-webp .bg-bottom-left {
        background-image: url(../img/bg-bottom-left.png), url(../img/bg-drops.png);
        background-repeat: no-repeat;
        background-position: calc(50% - 285px) 100%, calc(50% - 70px) 50px;
    }

    .no-webp .bg-bottom-left,
    .no-webp .bg-bottom-right {
        background-color: #f4f0f2;
    }

    .no-webp .bg-bottom-left,
    .no-webp .bg-bottom-right {
        background-image: url(../img/bg-drops.png);
        background-repeat: no-repeat;
        background-position: calc(50% - 70px) 50px;
    }

    .no-webp .bg-bottom-left {
        background-image: url(../img/bg-drops.png);
    }

    .no-webp .bg-bottom-right {
        background-image: url(../img/bg-drops.png), url(../img/bg-bottom.png);
        background-repeat: no-repeat;
        background-position: calc(50% - 70px) 50px, calc(50% + 280px) 100%;
    }
}

@media screen and (min-width: 640px) and (-ms-high-contrast: active), screen and (min-width: 640px) and (-ms-high-contrast: none) {
    .modal__wraper {
        margin: 0;
    }
}
