@-webkit-keyframes shakeX {

    0%,
    10%,
    to {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    2% {
        -webkit-transform: translate(-3px, 0);
        transform: translate(-3px, 0)
    }

    4% {
        -webkit-transform: translate(4px, 0);
        transform: translate(4px, 0)
    }

    6% {
        -webkit-transform: translate(-5px, 0);
        transform: translate(-5px, 0)
    }

    8% {
        -webkit-transform: translate(2px, 0);
        transform: translate(2px, 0)
    }
}

@keyframes shakeX {

    0%,
    10%,
    to {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    2% {
        -webkit-transform: translate(-3px, 0);
        transform: translate(-3px, 0)
    }

    4% {
        -webkit-transform: translate(4px, 0);
        transform: translate(4px, 0)
    }

    6% {
        -webkit-transform: translate(-5px, 0);
        transform: translate(-5px, 0)
    }

    8% {
        -webkit-transform: translate(2px, 0);
        transform: translate(2px, 0)
    }
}

@-webkit-keyframes pulse-shadow {

    0%,
    to {
        -webkit-box-shadow: 0 0 0 red;
        box-shadow: 0 0 0 red
    }

    20% {
        -webkit-box-shadow: 0 0 15px red;
        box-shadow: 0 0 15px red
    }
}

@keyframes pulse-shadow {

    0%,
    to {
        -webkit-box-shadow: 0 0 0 red;
        box-shadow: 0 0 0 red
    }

    20% {
        -webkit-box-shadow: 0 0 15px red;
        box-shadow: 0 0 15px red
    }
}

@-webkit-keyframes pulse {
    0% {
        width: 100%;
        opacity: 0
    }

    50% {
        opacity: 1
    }

    90% {
        opacity: 0
    }

    to {
        width: var(--max-width);
        opacity: 0
    }
}

@keyframes pulse {
    0% {
        width: 100%;
        opacity: 0
    }

    50% {
        opacity: 1
    }

    90% {
        opacity: 0
    }

    to {
        width: var(--max-width);
        opacity: 0
    }
}

@-webkit-keyframes scale {

    0%,
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    10%,
    30% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-filter: drop-shadow(0 0 10px #ffed50);
        filter: drop-shadow(0 0 10px #ffed50)
    }

    20%,
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: none;
        filter: none
    }
}

@keyframes scale {

    0%,
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    10%,
    30% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-filter: drop-shadow(0 0 10px #ffed50);
        filter: drop-shadow(0 0 10px #ffed50)
    }

    20%,
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: none;
        filter: none
    }
}

@-webkit-keyframes loading-bg {
    0% {
        background-position: 0 0
    }

    to {
        background-position: 500% 0
    }
}

@keyframes loading-bg {
    0% {
        background-position: 0 0
    }

    to {
        background-position: 500% 0
    }
}

@-webkit-keyframes square {

    0%,
    10%,
    20%,
    to {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    5% {
        -webkit-transform: rotate(-2deg) scale(.95);
        transform: rotate(-2deg) scale(.95)
    }

    15% {
        -webkit-transform: rotate(2deg) scale(.95);
        transform: rotate(2deg) scale(.95)
    }
}

@keyframes square {

    0%,
    10%,
    20%,
    to {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    5% {
        -webkit-transform: rotate(-2deg) scale(.95);
        transform: rotate(-2deg) scale(.95)
    }

    15% {
        -webkit-transform: rotate(2deg) scale(.95);
        transform: rotate(2deg) scale(.95)
    }
}

@-webkit-keyframes sticker {
    0% {
        -webkit-transform: scale(5) rotate(-13deg);
        transform: scale(5) rotate(-13deg);
        opacity: 0
    }

    10% {
        opacity: 0
    }

    70% {
        -webkit-transform: scale(1) rotate(-13deg);
        transform: scale(1) rotate(-13deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1) rotate(-13deg);
        transform: scale(1) rotate(-13deg)
    }
}

@keyframes sticker {
    0% {
        -webkit-transform: scale(5) rotate(-13deg);
        transform: scale(5) rotate(-13deg);
        opacity: 0
    }

    10% {
        opacity: 0
    }

    70% {
        -webkit-transform: scale(1) rotate(-13deg);
        transform: scale(1) rotate(-13deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1) rotate(-13deg);
        transform: scale(1) rotate(-13deg)
    }
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
label,
menu,
nav,
picture,
section {
    display: block
}

body {
    font-family: BebasNeuePro, Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.3;
    color: #164876;
    overflow-x: hidden
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

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;
    overflow: visible;
    cursor: pointer
}

::-moz-focus-inner,
::-moz-focus-outer {
    border: 0;
    padding: 0
}

a:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000
}

:active,
:focus,
:hover,
:visited,
a,
a:active,
a:focus,
a:hover,
a:visited {
    outline: 0 !important
}

::-moz-focus-inner {
    border: 0;
    outline: 0
}

::-ms-clear {
    display: none
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased
}

#comebacker_main_div {
    display: none !important;
    height: 0 !important
}

html {
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden
}

button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=file]>input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
option::-moz-focus-inner {
    border: 0
}

:not(#fake) {
    outline: 0
}

@font-face {
    font-family: 'BebasNeuePro';
    font-display: swap;
    src: url(../fonts/BebasNeuePro-Light.woff2) format("woff2"), url(../fonts/BebasNeuePro-Light.woff) format("woff");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: 'BebasNeuePro';
    font-display: swap;
    src: url(../fonts/BebasNeuePro-Regular.woff2) format("woff2"), url(../fonts/BebasNeuePro-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'BebasNeuePro';
    font-display: swap;
    src: url(../fonts/BebasNeuePro-Bold.woff2) format("woff2"), url(../fonts/BebasNeuePro-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal
}

img,
video {
    max-width: 100%;
    display: block
}

img {
    height: auto
}

svg {
    overflow: hidden
}

input:-moz-submit-invalid {
    box-shadow: none
}

input:-moz-ui-invalid {
    box-shadow: none
}

section {
    background: -webkit-gradient(linear, left bottom, left top, from(#47b3ac), to(#25778a));
    background: linear-gradient(0deg, #47b3ac 0, #25778a 100%)
}

.section-bg {
    background-position: 40% 30%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden
}

.container {
    width: 100%;
    padding: 0 15px;
    position: relative
}

.title {
    margin-bottom: 15px;
    font-size: 33px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1.65px
}

.fw300 {
    font-weight: 300
}

.fw400 {
    font-weight: 400
}

.fw700,
b,
strong {
    font-weight: 700
}

.text-accent {
    background: -webkit-gradient(linear, left top, right top, from(#e1493f), to(#e8736c));
    background: linear-gradient(90deg, #e1493f 0, #e8736c 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.text-accent2 {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff156), to(#ff9500));
    background: linear-gradient(180deg, #fff156 0, #ff9500 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent !important
}

.text-warn {
    color: #f84545
}

.td-through {
    text-decoration: line-through;
    white-space: nowrap
}

.ttu {
    text-transform: uppercase
}

.tdu {
    text-decoration: underline
}

.nowrap {
    white-space: nowrap
}

.btn,
.btn::after {
    -webkit-transition: all .3s;
    transition: all .3s
}

.btn {
    width: 100%;
    max-width: 316px;
    min-height: 44px;
    padding: 10px 10px 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
    font-family: BebasNeuePro, Arial, Helvetica, sans-serif;
    position: relative;
    border-radius: 30px;
    background: -webkit-gradient(linear, left top, right top, from(#e1493f), to(#e8736c));
    background: linear-gradient(90deg, #e1493f 0, #e8736c 100%);
    -webkit-box-shadow: 0 4px 20px 0 rgba(255, 0, 0, .5);
    box-shadow: 0 4px 20px 0 rgba(255, 0, 0, .5);
    -webkit-animation: pulse-shadow 1.5s infinite;
    animation: pulse-shadow 1.5s infinite;
    z-index: 5
}

.btn::after {
    content: "";
    width: 25px;
    height: 30px;
    background-image: url(../img/arrow-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%
}

.btn:hover:not(:disabled) {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-animation: none;
    animation: none;
    -webkit-box-shadow: 0 5px 5px 2px rgba(0, 0, 0, .1), inset 0 10px 15px 0 rgba(255, 255, 255, .2), inset 0 -10px 15px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 5px 5px 2px rgba(0, 0, 0, .1), inset 0 10px 15px 0 rgba(255, 255, 255, .2), inset 0 -10px 15px 0 rgba(0, 0, 0, .2);
    background: -webkit-gradient(linear, left top, right top, from(red), to(#e8736c));
    background: linear-gradient(90deg, red 0, #e8736c 100%)
}

.btn:hover:not(:disabled)::after {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0)
}

.btn:disabled {
    opacity: .5;
    cursor: default
}

.form {
    padding: 15px;
    border-radius: 20px;
    border: 1px solid rgba(22, 72, 118, .2);
    background: rgba(255, 255, 255, .5);
    -webkit-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 4px 7px 0 rgba(0, 0, 0, .12)
}

.form__input-wrap {
    margin-bottom: 15px;
    position: relative
}

.form__input {
    width: 100%;
    height: 44px;
    padding: 0 15px 0 35px;
    border-radius: 100px;
    border: 1px solid #164876;
    font-size: 16px;
    font-family: BebasNeuePro, Arial, Helvetica, sans-serif;
    color: #164876;
    /* text-align: center; */
    background: #fff;
    -webkit-box-shadow: 0 3.066px 3.066px 0 rgba(0, 0, 0, .15) inset;
    box-shadow: 0 3.066px 3.066px 0 rgba(0, 0, 0, .15) inset
}

/* .form__input:focus + .form__label:before, .form__input:valid + .form__label:before {
    opacity: 1;
} */
.form__input:focus + .form__label, .form__input:valid + .form__label {
    color: transparent;
}

.form__input::-webkit-input-placeholder {
    color: #164876
}

.form__input::-moz-placeholder {
    color: #164876
}

.form__input:-ms-input-placeholder {
    color: #164876
}

.form__input::placeholder {
    color: #164876
}

.form__label {
    transition: color 200ms;
    /* width: 180px; */
    width: 100%;
    padding-left: 35px;
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1;
    letter-spacing: .4px
}

.form__label::before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-image: url(../img/icon-user.svg);
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: contain
}

.form__label--phone::before {
    background-image: url(../img/icon-tel.svg)
}

.form__btn {
    max-width: none;
    margin-bottom: 15px
}

.form__note {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
    display: block;
    padding-left: 25px;
    font-size: 16px;
    position: relative
}

.form__note::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
    background-image: url(../img/icon-guard.svg);
    background-repeat: no-repeat;
    background-size: contain
}


.sign,
.timer__title br {
    display: none
}

.sign__item {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    -webkit-transform: translateY(-250px);
    transform: translateY(-250px);
    -webkit-transition: all 2s;
    transition: all 2s;
    max-height: 100%;
}

.sign__item--right {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    -webkit-transform: scale(-1) translateY(-250px);
    transform: scale(-1) translateY(-250px)
}

.no-webp .section-bg {
    background-image: url(../img/bg-mob.jpg)
}

.webp .section-bg {
    background-image: url(../img/bg-mob.webp)
}

.header {
    margin-bottom: 15px;
    padding: 0 0 15px;
    border-bottom: 1px solid #fff
}

.header__content {
    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 {
    width: 122px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.menu {
    width: 100%;
    max-width: 226px;
    padding: 80px 33px 27px;
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-transform: translateX(110%);
    transform: translateX(110%);
    background: -webkit-gradient(linear, left bottom, left top, from(#47b3ac), to(#25778a));
    background: linear-gradient(0deg, #47b3ac 0, #25778a 100%);
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    z-index: 15
}

.menu.active {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.menu__close {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 25px;
    right: 15px;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s
}

.menu__close:hover {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.menu__close::after,
.menu__close::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 100%;
    height: 1px;
    background: #fff
}

.menu__close::after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg)
}

.menu__timer {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .5)
}

.menu-items {
    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: center;
    -ms-flex-pack: center;
    justify-content: center
}

.menu-items__item {
    border-bottom: 1px solid rgba(255, 255, 255, .5)
}

.menu-items__item:first-child .menu-items__link {
    padding-top: 0
}

.menu-items__item:last-child {
    border: 0
}

.menu-items__item:hover .menu-items__link {
    -webkit-transform: translateX(5px);
    transform: translateX(5px)
}

.menu-items__link {
    padding: 38px 0;
    display: block;
    font-size: 25px;
    color: #fff;
    -webkit-transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    letter-spacing: .5px;
    position: relative
}

.menu-items__link.active {
    color: #fafb63
}

.menu-items__link.active::before {
    background-color: #fafb63
}

.timer__title {
    margin-bottom: 13px;
    font-size: 18px;
    color: #fff;
    text-align: center
}

.timer__content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px
}

.timer__content>span {
    color: #fff;
    font-size: 18px
}

.burger,
.timer__cell,
.timer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.timer__cell {
    width: 39px;
    height: auto;
    aspect-ratio: 1/1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    background: #fff
}

.burger {
    width: 25px;
    padding: 8px 0;
    position: relative;
    background: 0;
    cursor: pointer
}

.burger__line {
    width: 17px;
    height: 3px;
    margin-left: auto;
    border-radius: 3px;
    background-color: #164876
}

.burger__line::after,
.burger__line::before {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 3px;
    background-color: #164876
}

.burger__line::after {
    top: auto;
    bottom: 0
}

.overlay {
    display: none
}

.overlay.active {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 15
}

.overlay--menu.active {
    z-index: 10
}

.label {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: .3em .9em;
    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;
    font-size: 23px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -.688px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-transform: rotate(-13deg);
    transform: rotate(-13deg);
    opacity: 0
}

.label__text {
    background: -webkit-gradient(linear, left bottom, left top, from(#47b3ac), to(#25778a));
    background: linear-gradient(0deg, #47b3ac 0, #25778a 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transform: skewX(-6deg);
    transform: skewX(-6deg)
}

.label__text span {
    font-size: .78em;
    letter-spacing: -.535px
}

.prod {
    position: relative;
    z-index: 5
}

.prod::after,
.prod::before {
    content: "";
    width: 120%;
    height: 3%;
    background: #8e8e8e;
    position: absolute;
    left: 50%;
    bottom: -.5%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 100%;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    z-index: -2
}

.prod::after {
    width: 92%;
    height: 1%;
    bottom: 0;
    background: #000;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    z-index: -1
}

.prod__label {
    position: absolute;
    top: -15px;
    left: 0
}

.price,
.price-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.price {
    margin-bottom: 15px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 15px;
    line-height: 1
}

.price-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.price-box__title {
    margin-bottom: 4px;
    color: #164876;
    white-space: nowrap
}

.price-box__new {
    margin: auto 0
}

.price-box:first-child .price-box__new {
    font-size: 30px;
    position: relative;
    opacity: .7
}

.price-box:first-child .price-box__new::after {
    content: "";
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 2px;
    background: #ff2b1d;
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg)
}

.price-box:last-child .price-box__new {
    font-size: 40px;
    font-weight: 800;
    color: #164876
}

.x_currency {
    margin-left: 4px;
    font-size: .6em
}

.discount {
    width: 60px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-animation: scale 3s linear infinite;
    animation: scale 3s linear infinite
}

.square-images {
    max-width: 473px;
    aspect-ratio: 1/1;
    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;
    --collage-gap: 10px;
    gap: var(--collage-gap);
    -webkit-animation: square 7s linear infinite;
    animation: square 7s linear infinite;
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.square-images__img {
    width: calc((100% - var(--collage-gap))/2)
}

.title-capsule {
    width: 100%;
    max-width: 335px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.title-capsule__right {
    width: 100%
}

.title-capsule__img {
    width: 11%;
    min-width: 33px;
    max-width: 51px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.title-capsule__logo {
    width: 82%;
    margin-bottom: 15px
}

.title-capsule__text {
    font-weight: 700;
    letter-spacing: .8px;
    font-size: 20px
}

.promo.block {
    padding-top: 15px
}

.promo__content-info,
.promo__content-wrapper {
    width: 100%
}

.promo__prod {
    width: 46.2%;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.promo__prod img {
    margin: 0 auto
}

.promo__prod--mob {
    display: none
}

.promo-titles {
    max-width: 360px;
    margin: 0 auto 15px
}

.promo__title {
    margin-bottom: 15px !important;
    font-size: 25px !important;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .5px
}

.promo__collage {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 360px;
    margin: 0 auto 15px;
    padding-top: 50px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.promo__form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto
}

.promo__square-images {
    width: 64.8%;
    position: absolute;
    top: 0;
    right: 0
}

.promo-note {
    padding-top: 160px;
    font-weight: 700;
    letter-spacing: .8px
}

.promo-note__text {
    line-height: 1.13;
    font-size: 18px
}

.promo-note__label {
    display: none
}

.animate .label {
    -webkit-animation: sticker .6s ease-out forwards;
    animation: sticker .6s ease-out forwards
}

.animate .promo-note__label,
.animate.promo .prod__label {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.no-webp .label {
    background-image: url(../img/label.png)
}

.webp .label {
    background-image: url(../img/label.webp)
}

.dream__title {
    color: #fff;
    text-align: center
}

.dream-list,
.dream-list__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.dream-list {
    margin: 0 auto;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.dream-list__content {
    height: 100%;
    padding: 10px 15px;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 15px;
    background-color: #fff
}

.dream-list__title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1
}

.dream-list__title:last-child {
    margin-bottom: 0
}

.dream-list__img {
    max-width: 65px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.dream-list__text {
    font-weight: 700;
    line-height: 1.1
}

.helps__title {
    text-align: center;
    letter-spacing: 1.65px;
    line-height: 1.1
}

.helps .title-logo {
    width: 140px;
    margin: 0 auto 10px
}

.helps__description {
    max-width: 500px;
    margin: 0 auto 25px;
    font-size: 20px
}

.helps__text:not(:last-child) {
    margin-bottom: 15px
}

.helps-bottom {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.helps-bottom__content {
    max-width: 260px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-top: 15px;
    border-top: 1px solid rgba(22, 72, 118, .5)
}

.helps__prod {
    width: 30%;
    min-width: 84px;
    max-width: 115px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.helps__label {
    font-size: 16px
}

.benefits__title br,
.helps-bottom .discount,
.ignore-list__title br {
    display: none
}

.benefits__title {
    margin-bottom: 25px;
    text-align: center;
    color: #fff;
    letter-spacing: 1.65px
}

.benefits .title-logo {
    width: 140px;
    margin: 5px auto 0
}

.benefits__hero {
    max-width: 290px;
    margin: 20px auto 0
}

.benefits-list {
    /* max-width: 360px; */
    margin: 0 auto
}

.benefits-list__item {
    padding: 10px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    opacity: 0;
    -webkit-transition: opacity 2s;
    transition: opacity 2s
}

.benefits-list__item:not(:last-child) {
    margin-bottom: 10px
}

.benefits-list__item:nth-child(2) {
    -webkit-transition-delay: .5s;
    transition-delay: .5s
}

.benefits-list__item:nth-child(3) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s
}

.benefits-list__icon {
    max-width: 60px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.benefits-list__label {
    max-width: 70px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: -10px
}

.benefits-list__text {
    color: #fff;
    line-height: 1.2;
    letter-spacing: 1px;
    font-size: 20px
}

.benefits-list__text span {
    color: #fff156
}

.animate .benefits-list__item {
    opacity: 1
}

.symptoms {
    overflow: hidden
}

.symptoms.section-bg {
    background-position: 50% 100%
}

.symptoms__text {
    margin-bottom: 20px;
    letter-spacing: .8px;
    font-size: 20px
}

.symptoms__hero {
    max-width: 236px
}

.symptoms-list {
    max-width: 360px;
    margin: 0 auto
}

.symptoms-list__title {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700
}

.symptoms-list__item {
    padding-left: 30px;
    position: relative;
    opacity: 0;
    -webkit-transition: opacity 2s;
    transition: opacity 2s
}

.symptoms-list__item:nth-child(2) {
    -webkit-transition-delay: .6s;
    transition-delay: .6s
}

.symptoms-list__item:nth-child(3) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s
}

.symptoms-list__item:nth-child(4) {
    -webkit-transition-delay: 1.8s;
    transition-delay: 1.8s
}

.symptoms-list__item::before {
    content: "";
    width: 18px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 2px;
    left: 0;
    background-image: url(../img/icon-symptoms.svg);
    background-repeat: no-repeat;
    background-size: contain
}

.symptoms-list__item:not(:last-child) {
    margin-bottom: 15px
}

.symptoms-list__item:not(:last-child) .symptoms-list__text {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(22, 72, 118, .5)
}

.symptoms-list__text {
    font-size: 20px;
    font-weight: 700
}

.animate .symptoms-list__item {
    opacity: 1
}

.pulse {
    width: 67px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    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;
    background-image: url(../img/circle-red.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0
}

.pulse::after,
.pulse::before {
    content: "";
    --max-width: 150%;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0) 0, rgba(255, 78, 78, 0) 56%, rgba(255, 85, 85, .1) 61%, rgba(255, 92, 92, .35) 66%, rgba(255, 100, 100, 0) 72%, rgba(255, 140, 140, 0) 100%);
    z-index: -1;
    -webkit-animation: pulse 1500ms ease-out infinite forwards;
    animation: pulse 1500ms ease-out infinite forwards
}

.pulse::after {
    --max-width: 200%;
    z-index: -2
}

.pulse__img {
    width: 40%;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.pulse--green {
    background-image: url(../img/circle-green.png)
}

.pulse--green::after,
.pulse--green::before {
    background: radial-gradient(ellipse at center, rgba(59, 157, 160, 0) 0, rgba(59, 157, 160, 0) 56%, rgba(59, 157, 160, .1) 61%, rgba(59, 157, 160, .35) 66%, rgba(59, 157, 160, 0) 72%, rgba(59, 157, 160, 0) 100%)
}

.ignore__title {
    color: #fff;
    text-align: center
}

.ignore-list {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px
}

.ignore-list__item {
    padding: 15px;
    border-radius: 15px;
    background-color: #fff
}

.ignore-list__item--2 .pulse__img {
    width: 62%
}

.ignore-list__item--2 .ignore-list__title {
    background: -webkit-gradient(linear, left top, right top, from(#25778a), to(#47b3ac));
    background: linear-gradient(90deg, #25778a 0, #47b3ac 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.ignore-list__item--2 .complication-list__item span::before {
    background-image: url(../img/arrow-right-green.svg)
}

.ignore-list__item--2 .complication-list__item--last {
    color: #297e8e
}

.ignore-list__pulse {
    width: 40px;
    height: 40px
}

.ignore-list__title,
.ignore-list__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.ignore-list__top {
    margin-bottom: 15px;
    padding-left: 15px;
    gap: 30px
}

.ignore-list__title {
    min-height: 2lh;
    font-weight: 700;
    font-size: 22px
}

.complication-list {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.complication-list__item {
    margin-right: 4px;
    display: inline;
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: .8px;
    font-size: 20px
}

.complication-list__item:first-child span {
    padding-left: 0
}

.complication-list__item:first-child span::before {
    display: none
}

.complication-list__item span {
    padding-left: 1em;
    position: relative
}

.complication-list__item span::before {
    content: "";
    width: .7em;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    background-image: url(../img/arrow-right-red.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%
}

.complication-list__item--last {
    margin: 5px 0 0;
    display: block;
    text-transform: uppercase;
    font-size: 22px;
    color: #e55f57
}

.complication-list__item--last::before {
    height: 50px;
    vertical-align: text-bottom
}

.feed__title {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #fff
}

.feed__btn {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 18px;
    font-family: BebasNeuePro, Arial, Helvetica, sans-serif;
    color: #fff;
    background: 0;
    border: 1px solid rgba(255, 255, 255, .5);
    -webkit-transition: background .3s;
    transition: background .3s
}

.feed__btn:hover {
    background-color: rgba(255, 255, 255, .15)
}

.feed__btn span {
    position: relative
}

.feed__btn span::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0
}

.loading-btn {
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 33%, rgba(255, 255, 255, .15) 33%, rgba(255, 255, 255, .15) 66%, rgba(255, 255, 255, 0) 66%, rgba(255, 255, 255, 0) 100%);
    background-repeat: repeat-x;
    background-size: 90px;
    background-position: 10px 0;
    background-color: transparent !important;
    -webkit-animation: loading-bg 5s infinite linear;
    animation: loading-bg 5s infinite linear;
    pointer-events: none
}

.feed-list {
    margin-bottom: 24px
}

.feed-list__item {
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3)
}

.feed-list__item:nth-child(n+5) {
    display: none
}

.feed-list__item:not(:last-child) {
    margin-bottom: 10px
}

.feed-list__item--main .feed-list__img {
    background: #faf7e3
}

.feed-list__img {
    width: 56px;
    height: 56px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 100%;
    overflow: hidden
}

.feed-list__name {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .9px;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff156), to(#ff9500));
    background: linear-gradient(180deg, #fff156 0, #ff9500 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.feed-list__text {
    color: #fff;
    letter-spacing: .8px;
    line-height: 1.33;
    font-size: 18px
}

.consist__content {
    margin-bottom: 25px
}

.consist-list,
.consist-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.consist-list {
    margin-bottom: 25px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px
}

.consist-list__item {
    --image-width: 58px;
    --gap: 10px;
    --padding-left: 0;
    width: calc((100% - 15px)/2);
    padding-left: var(--padding-left);
    gap: var(--gap);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.consist-list__item:nth-last-child(-n+2)::before {
    display: none
}

.consist-list__item:nth-child(2) .consist-list__img {
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.consist-list__item:nth-child(3) .consist-list__img {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s
}

.consist-list__item:nth-child(4) .consist-list__img {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s
}

.consist-list__item:nth-child(5) .consist-list__img {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s
}

.consist-list__item:nth-child(6) .consist-list__img {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.consist-list__item:nth-child(7) .consist-list__img {
    -webkit-animation-delay: 3.6s;
    animation-delay: 3.6s
}

.consist-list__item:nth-child(8) .consist-list__img {
    -webkit-animation-delay: 4.2s;
    animation-delay: 4.2s
}

.consist-list__item::before {
    content: "";
    width: calc(100% - var(--image-width) - var(--gap) - var(--padding-left));
    height: 1px;
    background: rgba(22, 72, 118, .2);
    position: absolute;
    right: 0;
    bottom: 0
}

.consist-list__img {
    width: var(--image-width);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-animation: shakeX 5s infinite;
    animation: shakeX 5s infinite
}

.consist-list__text {
    padding: 10px 0;
    font-size: 20px;
    font-weight: 700
}

.steps {
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(22, 72, 118, .1);
    background: #fff;
    -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .12)
}

.steps__title {
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1.5px
}

.steps-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 25px
}

.steps-list__item:not(:last-child) {
    margin-bottom: 20px
}

.steps-list__item:last-child .steps-list__text {
    padding: 0;
    border: 0
}

.steps-list__pulse {
    width: 32px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    top: 10px
}

.steps-list__title {
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .8px
}

.steps-list__text {
    padding-bottom: 20px;
    letter-spacing: .7px;
    border-bottom: 1px solid rgba(22, 72, 118, .3);
    font-size: 20px
}

.last {
    overflow: hidden
}

.footer {
    padding-top: 25px;
    text-align: center;
    line-height: 1
}

.popup__content {
    width: 100%;
    max-width: 290px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(43, 51, 119, .2);
    position: relative
}

.popup .promo__collage {
    max-width: 270px;
    margin: 0 0 15px;
    position: relative
}

.popup .promo-note__text {
    font-size: 16px
}

.popup .prod__label {
    display: none
}

.popup .price-box:first-child .price-box__new {
    font-size: 24px
}

.popup .price-box:last-child .price-box__new {
    font-size: 30px
}

.ever-popup__close:after,
.ever-popup__close:before {
    height: 4px !important;
    border-radius: 10px
}

.ever-popup.show .label {
    -webkit-animation: sticker .6s ease-out forwards;
    animation: sticker .6s ease-out forwards;
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.block {
    padding: 25px 0;
    position: relative
}

@media (min-width:375px) {
    .btn {
        padding-left: 10px
    }

    .form__btn {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .promo__collage {
        padding-top: 40px
    }
}

@media (min-width:400px) {
    .prod__label {
        left: -10px
    }
}

@media (min-width:480px) {
    .container {
        width: 480px;
        margin: 0 auto
    }

    .title {
        font-size: 36px
    }

    .no-webp .section-bg {
        background-image: url(../img/bg.jpg)
    }

    .webp .section-bg {
        background-image: url(../img/bg.webp)
    }

    .dream-list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .dream-list__item {
        width: calc((100% - 10px)/2)
    }

    .helps-bottom .discount {
        display: block
    }

    .popup__content {
        max-width: 300px;
        padding: 15px
    }

    .block {
        padding: 30px 0
    }
}

@media (min-width:640px) {
    .container {
        width: 640px
    }

    .title {
        font-size: 38px
    }

    .menu {
        max-width: 300px
    }

    .promo__content,
    .promo__content-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .promo__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .promo__content-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px
    }

    .promo__prod {
        width: 100%;
        max-width: 190px
    }

    .promo__prod--desk {
        display: none
    }

    .benefits__title br,
    .promo__prod--mob {
        display: block
    }

    .promo__collage {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: 100%;
        padding-top: 0;
        margin: 0 0 0 -70px
    }

    .promo__square-images {
        position: static;
        width: 195px;
        left: -50px;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .promo-note {
        padding-top: 0;
        width: 100%
    }

    .promo-note__text {
        font-size: 20px;
        width: calc(100% + 70px)
    }

    .benefits__content {
        max-width: 330px;
        margin: 0 0 0 auto
    }

    .benefits__title {
        text-align: left;
        line-height: 1.03
    }

    .benefits .title-logo {
        width: 150px;
        margin: 0 0 0 10px;
        display: inline-block;
        position: relative;
        bottom: -.1em
    }

    .benefits__hero {
        max-width: 350px;
        position: absolute;
        left: calc(50% - 320px);
        bottom: 0
    }

    .benefits-list {
        position: relative;
        z-index: 2;
        max-width: none;
        margin: 0
    }

    .benefits-list__hero {
        position: absolute
    }

    .symptoms__content {
        max-width: 100%
    }

    .symptoms__title {
        width: 610px
    }

    .symptoms__hero {
        max-width: 260px;
        margin: 0;
        position: absolute;
        left: auto !important;
        right: 15px;
        bottom: -30px
    }

    .symptoms-list {
        max-width: 330px;
        margin: 0
    }

    .ignore__title {
        max-width: 590px;
        margin-left: auto;
        margin-right: auto
    }

    .ignore-list {
        max-width: 580px;
        gap: 15px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .ignore-list__item {
        padding: 20px;
        width: calc((100% - 10px)/2)
    }

    .ignore-list__item--1 .complication-list {
        max-width: 230px
    }

    .consist__content {
        margin-bottom: 35px
    }

    .consist-list,
    .consist__title {
        margin-left: auto;
        margin-right: auto
    }

    .consist__title {
        max-width: 590px;
        text-align: center
    }

    .consist-list {
        max-width: 400px
    }

    .steps__title {
        text-align: center
    }

    .steps-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 15px 25px
    }

    .steps-list__item {
        width: calc((100% - 25px)/2);
        border: 0;
        position: relative
    }

    .steps-list__item:not(:last-child) {
        margin: 0
    }

    .steps-list__item:nth-last-child(-n+2)::before {
        display: none
    }

    .steps-list__item:nth-last-child(-n+2) .steps-list__text {
        padding: 0
    }

    .steps-list__item::before {
        content: "";
        width: 215px;
        height: 1px;
        position: absolute;
        right: 0;
        bottom: 0;
        background: rgba(22, 72, 118, .3)
    }

    .steps-list__text {
        border: 0
    }


        .popup__content {
        max-width: 690px;
        padding-left: 25px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 25px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .popup__left {
        max-width: 140px
    }

    .popup .promo__collage {
        margin: 0;
        padding: 0;
        display: block
    }

    .popup .promo-note {
        display: none
    }

    .popup .prod__label {
        display: block
    }

    .popup .promo__square-images {
        display: none
    }

    .popup .promo__prod {
        width: auto
    }
}

@media (min-width:768px) {
    .container {
        width: 768px
    }

    .title {
        margin-bottom: 25px;
        font-size: 40px
    }

    .btn {
        padding: 15px;
        padding-left: 25px !important
    }

    .form__btn {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }

    .label {
        font-size: 25px
    }

    .title-capsule {
        margin: 0 auto 0 0
    }

    .promo__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 15px 25px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .promo__content-info,
    .promo__content-wrapper {
        display: contents
    }

    .promo__prod--desk {
        display: block
    }

    .promo__prod--mob {
        display: none
    }

    .promo-titles {
        width: 100%;
        max-width: none;
        margin: 0
    }

    .promo__title {
        font-size: 30px !important;
        text-align: left
    }

    .promo__collage {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        max-width: 360px;
        margin: 0;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .promo__form {
        max-width: 300px;
        margin: 0
    }

    .promo__square-images {
        top: -80px;
        left: auto;
        right: 0;
        position: absolute
    }

    .promo-note__text {
        font-size: 20px;
        width: 100%
    }

    .dream-list {
        gap: 0
    }

    .dream-list__item:nth-child(-n+2) {
        padding-top: 0
    }

    .dream-list__item:nth-last-child(-n+2) {
        padding-bottom: 0;
        border-bottom: 0
    }

    .dream-list__item:nth-child(odd) {
        padding-left: 0;
        border-right: 1px solid rgba(255, 255, 255, .3)
    }

    .dream-list__item:nth-child(even) {
        padding-right: 0
    }

    .dream-list__item {
        width: 50%;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, .3)
    }

    .dream-list__title {
        font-size: 22px
    }

    .dream-list__text {
        font-size: 18px
    }

    .helps__content {
        max-width: 480px;
        padding: 30px 0;
        position: relative
    }

    .helps__title {
        text-align: left
    }

    .helps .title-logo {
        margin-left: 0
    }

    .helps__description {
        max-width: none
    }

    .helps__text {
        font-size: 20px
    }

    .helps-bottom__content {
        max-width: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 15px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .helps__prod {
        width: auto;
        max-width: 190px;
        position: absolute;
        top: 15px;
        right: -230px
    }

    .helps-bottom .price {
        margin: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .benefits__content {
        max-width: 430px;
        position: relative
    }

    .benefits__hero {
        max-width: 340px;
        left: calc(50% - 380px)
    }

    .symptoms__content {
        max-width: 500px
    }

    .symptoms__title {
        width: 510px
    }

    .symptoms__hero {
        bottom: -40px
    }

    .symptoms-list {
        max-width: 370px
    }

    .ignore-list {
        max-width: 670px;
        gap: 20px
    }

    .ignore-list__item--1 .complication-list {
        max-width: 290px
    }

    .complication-list__item--last,
    .ignore-list__title {
        font-size: 24px
    }

    .feed__title {
        max-width: none
    }

    .feed-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 15px
    }

    .feed-list__item {
        width: calc((100% - 15px)/2);
        gap: 15px
    }

    .feed-list__item:not(:last-child) {
        margin: 0
    }

    .feed-list__img {
        width: 60px;
        height: 60px
    }

    .consist__content {
        max-width: 480px;
        margin-left: auto;
        margin-bottom: 40px;
        position: relative
    }

    .consist__title {
        max-width: none;
        text-align: left
    }

    .consist__prod {
        top: auto !important;
        right: auto !important;
        left: -240px;
        bottom: 0
    }

    .consist-list {
        max-width: none;
        margin: 0 0 25px
    }

    .steps__title {
        font-size: 28px
    }

    .steps-list {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        row-gap: 20px
    }

    .steps-list__item {
        width: calc((100% - 30px)/2)
    }

    .steps-list__item::before {
        width: 276px
    }

    .last.block {
        padding-bottom: 20px
    }

    /* .popup__content {
        max-width: 690px;
        padding-left: 25px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 25px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .popup__left {
        max-width: 140px
    }

    .popup .promo__collage {
        margin: 0;
        padding: 0;
        display: block
    }

    .popup .promo-note {
        display: none
    }

    .popup .prod__label {
        display: block
    }

    .popup .promo__square-images {
        display: none
    }

    .popup .promo__prod {
        width: auto
    } */

    .block {
        padding: 40px 0
    }
}

@media (min-width:1024px) {
    body {
        font-size: 18px
    }

    .container {
        width: 1024px
    }

    .title {
        font-size: 46px
    }

    .btn {
        font-size: 20px
    }

    .btn::after {
        width: 30px
    }

    .form__input-wrap {
        margin-bottom: 15px
    }

    .form__input {
        height: 50px;
        font-size: 18px
    }

    .form__label {
        font-size: 20px
    }

    .form__note {
        font-size: 16px
    }

    .header {
        margin-bottom: 50px;
        padding-bottom: 20px
    }

    .header__content {
        gap: 15px
    }

    .header__logo {
        width: 171px
    }

    .menu {
        max-width: 720px;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        position: relative;
        background: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: none;
        transform: none;
        -webkit-transition: none;
        transition: none;
        overflow: visible
    }

    .menu__close {
        display: none
    }

    .menu__timer {
        padding: 0;
        border: 0
    }

    .menu-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .menu-items__item {
        border: 0;
        border-right: 1px solid rgba(255, 255, 255, .5)
    }

    .menu-items__item:first-child .menu-items__link {
        padding-left: 0
    }

    .menu-items__item:last-child .menu-items__link {
        padding-right: 0
    }

    .menu-items__item:hover .menu-items__link {
        -webkit-transform: none;
        transform: none
    }

    .menu-items__link {
        padding: 0 37px;
        font-size: 20px;
        line-height: 1;
        color: #164876;
        -webkit-transition: text-shadow .2s, -webkit-filter .2s;
        transition: text-shadow .2s, filter .2s;
        transition: text-shadow .2s, filter .2s, -webkit-filter .2s
    }

    .menu-items__link:hover {
        text-shadow: 0 0 10px #fff;
        -webkit-filter: drop-shadow(0 0 10px #fff);
        filter: drop-shadow(0 0 10px #fff)
    }

    .timer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .timer__title {
        margin: 0 26px 0 0;
        font-size: 20px;
        line-height: 1;
        letter-spacing: .4px;
        color: #164876;
        text-align: left
    }

    .ignore-list__title br,
    .timer__title br {
        display: block
    }

    .timer__content {
        gap: 12px
    }

    .timer__content>span {
        color: #164876
    }

    .burger,
    .prod__label {
        display: none
    }

    .prod::after,
    .prod::before {
        -webkit-filter: blur(7px);
        filter: blur(7px)
    }

    .price-box__title {
        font-size: 20px
    }

    .price-box:first-child .price-box__new {
        font-size: 34px
    }

    .price-box:last-child .price-box__new {
        font-size: 44px
    }

    .discount {
        width: 80px;
        height: 80px
    }

    .title-capsule {
        max-width: none;
        margin: 0 auto
    }

    .title-capsule__logo {
        width: 85%
    }

    .title-capsule__text {
        font-size: 22px;
        letter-spacing: 1.25px
    }

    .promo.block {
        padding-top: 20px
    }

    .promo__content {
        padding-right: 610px;
        padding-bottom: 20px;
        row-gap: 25px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        position: relative
    }

    .promo__prod {
        max-width: 240px;
    }

    .promo__title {
        margin-bottom: 20px !important;
        font-size: 32px !important;
        text-align: left;
        font-weight: 700;
        text-transform: none;
        letter-spacing: 1.75px
    }

    .promo__collage {
        max-width: 600px;
        padding-top: 80px;
        position: absolute;
        right: 0;
        top: auto;
        bottom: 15px;
    }

    .promo__form {
        max-width: 350px;
        padding: 15px 20px
    }

    .promo__square-images {
        top: 0;
        width: 100%;
        max-width: 400px;
        --collage-gap: 15px
    }

    .promo-note {
        margin-left: -90px;
        margin-bottom: 20px;
        padding: 10px 15px 10px 80px;
        gap: 15px;
        border-radius: 20px;
        border: 1px solid rgba(22, 72, 118, .2);
        background: rgba(255, 255, 255, .5);
        -webkit-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, .12);
        box-shadow: 0 4px 7px 0 rgba(0, 0, 0, .12)
    }

    .promo-note,
    .promo-note__label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .dream-list__item {
        padding: 20px
    }

    .dream-list__title {
        font-size: 26px
    }

    .dream-list__img {
        max-width: 76px
    }

    .dream-list__text {
        font-size: 20px
    }

    .helps__content {
        max-width: 600px;
        margin-left: 60px;
        padding: 50px 0
    }

    .helps__title {
        padding-right: 0px
    }

    .helps .title-logo {
        width: 180px
    }

    .helps__description {
        max-width: none;
        margin-bottom: 40px
    }

    .helps__text {
        font-size: 22px
    }

    .helps-bottom__content {
        padding-top: 25px;
        gap: 30px
    }

    .helps__prod {
        max-width: 240px;
        right: -320px
    }

    .helps__label {
        display: block;
        font-size: 35px
    }

    .helps__btn {
        max-width: 260px;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .benefits__content {
        max-width: 500px
    }

    .benefits__hero {
        max-width: 424px;
        left: calc(50% - 470px)
    }

    .benefits-list__icon {
        max-width: 80px
    }

    .benefits-list__label {
        max-width: 90px
    }

    .symptoms__content {
        max-width: 550px
    }

    .symptoms__title {
        width: auto
    }

    .symptoms-list {
        max-width: 500px
    }

    .symptoms-list__title {
        font-size: 32px
    }

    .symptoms-list__item {
        padding-left: 40px
    }

    .symptoms-list__item::before {
        width: 25px
    }

    .symptoms-list__item:not(:last-child) .symptoms-list__text {
        padding-bottom: 20px
    }

    .symptoms-list__text {
        font-size: 22px
    }

    .ignore-list {
        max-width: 850px
    }

    .ignore-list__item {
        border-radius: 20px
    }

    .ignore-list__item--1 .complication-list {
        max-width: 380px
    }

    .ignore-list__pulse {
        width: 50px;
        height: 50px
    }

    .ignore-list__title {
        font-size: 30px
    }

    .complication-list__item {
        font-size: 20px
    }

    .complication-list__item--last {
        font-size: 30px
    }

    .feed-list__item {
        border-radius: 20px
    }

    .feed-list__item--main {
        padding-left: 160px;
        position: relative
    }

    .feed-list__item--main .feed-list__left {
        width: 90px
    }

    .feed-list__item--main .feed-list__img {
        width: 150px;
        height: auto;
        background: 0;
        overflow: auto;
        border-radius: 0;
        position: absolute;
        left: 0;
        bottom: 0
    }

    .feed-list__name {
        margin-bottom: 10px;
        font-size: 20px
    }

    .consist__content {
        max-width: 550px;
        margin-right: 60px
    }

    .consist__prod {
        left: -320px
    }

    .consist-list {
        -webkit-column-gap: 60px;
        -moz-column-gap: 60px;
        column-gap: 60px
    }

    .consist-list__item {
        width: calc((100% - 25px)/2);
        --padding-left: 40px
    }

    .consist-list__item:nth-child(2n) {
        max-width: 200px
    }

    .consist-list__item::after {
        content: "";
        width: 30px;
        height: 10px;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        background-image: url(../img/consist-line.svg);
        background-repeat: no-repeat;
        background-position: 0 50%;
        background-size: contain
    }

    .consist-list__text {
        padding: 20px 0
    }

    .steps {
        padding: 20px
    }

    .steps__title {
        font-size: 30px
    }

    .steps-list {
        row-gap: 30px
    }

    .steps-list__item {
        width: calc((100% - 60px)/3);
        padding-right: 15px;
        border-right: 1px solid rgba(22, 72, 118, .5)
    }

    .steps-list__item:nth-child(3n) {
        padding-right: 0;
        border: 0
    }

    .steps-list__item::before {
        display: none
    }

    .steps-list__pulse {
        font-size: 24px
    }

    .steps-list__title {
        font-size: 20px
    }

    .steps-list__text {
        padding: 0
    }

    .last.block {
        padding-bottom: 30px
    }

    .footer {
        padding-top: 30px
    }

    .popup__content {
        max-width: 800px;
        padding: 20px 20px 20px 40px;
        gap: 40px
    }

    .popup__left {
        max-width: 160px;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }
        .dream-list__content {
        padding: 15px;
    }
}

@media (min-width:1220px) {
    .section-bg {
        background-position: 50% 0
    }

    .container {
        width: 1220px;
        padding: 0 40px
    }

    .title {
        margin-bottom: 30px;
        font-size: 55px;
        letter-spacing: 2.75px
    }

    .btn {
        padding: 17px 15px;
        font-size: 24px
    }

    .form__input {
        height: 58px;
        font-size: 20px
    }

    .form__btn {
        margin-bottom: 20px
    }

    .form__note {
        font-size: 18px
    }

    .header {
        margin-bottom: 54px
    }

    .menu {
        max-width: 730px
    }

    .label {
        font-size: 34px
    }

    .price-box__title {
        font-size: 22px
    }

    .discount {
        width: 89px;
        height: 89px
    }

    .title-capsule {
        gap: 21px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .title-capsule__right {
        padding-top: 20px
    }

    .title-capsule__img {
        width: auto
    }

    .title-capsule__logo {
        width: 298px
    }

    .title-capsule__text {
        font-size: 25px
    }

    .promo.block {
        padding-bottom: 50px
    }

    .promo__content {
        padding-right: 740px;
        padding-bottom: 30px;
        row-gap: 28px
    }

    .promo__prod {
        max-width: 306px
    }

    .promo__title {
        margin-bottom: 15px !important;
        font-size: 35px !important
    }

    .promo__collage {
        max-width: 722px;
        padding-top: 65px
    }

    .promo__price-discount {
        margin-bottom: 10px
    }

    .promo__form {
        padding: 20px 30px
    }

    .promo__square-images {
        max-width: 472px;
        --collage-gap: 20px
    }

    .promo-note {
        margin-bottom: 33px
    }

    .promo-note__text {
        line-height: 1.25
    }

    .dream__title {
        margin-bottom: 44px
    }

    .dream-list__content {
        padding: 10px 80px 10px 25px;
        border-radius: 20px
    }

    .dream-list__title {
        font-size: 32px
    }

    .dream-list__img {
        max-width: 87px
    }

    .dream-list__text {
        font-size: 22px
    }

    .helps__content {
        max-width: 590px;
        margin-left: 42px;
        padding-top: 77px;
        padding-bottom: 80px
    }

    .helps__title {
        margin-bottom: 42px;
        line-height: 1
    }

    .helps .title-logo {
        width: 210px;
        margin-bottom: 4px
    }

    .helps__description {
        margin-bottom: 64px;
        padding-right: 80px
    }

    .helps__text {
        font-size: 22px;
        line-height: 1.33;
        letter-spacing: 1.1px
    }

    .helps__text:not(:last-child) {
        margin-bottom: 30px
    }

    .helps-bottom__content {
        padding-top: 40px
    }

    .helps__prod {
        max-width: 344px;
        top: 55px;
        right: -442px
    }

    .helps__label {
        padding: .2em .7em;
        top: -43px;
        left: -60px;
        font-size: 65px;
        -webkit-transform: rotate(-19deg);
        transform: rotate(-19deg)
    }

    .helps__btn {
        max-width: 290px
    }

    .benefits__content {
        max-width: 550px;
        padding-top: 25px;
        padding-bottom: 25px
    }

    .benefits__title {
        margin-bottom: 25px
    }

    .benefits .title-logo {
        width: 210px
    }

    .benefits__hero {
        max-width: 583px;
        left: calc(50% - 580px)
    }

    .benefits-list__item {
        height: 108px;
        padding: 16px 50px 16px 25px;
        gap: 20px
    }

    .benefits-list__item:not(:last-child) {
        margin-bottom: 25px
    }

    .benefits-list__icon {
        max-width: 91px
    }

    .benefits-list__label {
        max-width: 110px;
        margin: 0 -10px
    }

    .symptoms__content {
        padding: 20px 0
    }

    .symptoms__title {
        width: 670px;
        margin-bottom: 26px
    }

    .symptoms__text {
        margin-bottom: 44px;
        font-size: 22px;
        line-height: 1.36
    }

    .symptoms__hero {
        max-width: 527px;
        right: 75px;
        bottom: -60px
    }

    .symptoms-list__title {
        margin-bottom: 39px;
        font-size: 35px;
        letter-spacing: 1.75px
    }

    .symptoms-list__item:not(:last-child) .symptoms-list__text {
        padding-bottom: 23px
    }

    .ignore__title {
        max-width: 700px;
        margin-bottom: 54px
    }

    .ignore-list {
        max-width: none;
        gap: 40px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .ignore-list__item {
        max-width: 510px;
        padding-top: 41px;
        padding-left: 42px
    }

    .ignore-list__item--1 .complication-list {
        max-width: 400px
    }

    .ignore-list__pulse {
        width: 67px;
        height: 67px
    }

    .ignore-list__top {
        margin-bottom: 33px;
        padding-left: 11px;
        gap: 57px
    }

    .ignore-list__title {
        font-size: 35px;
        letter-spacing: 1.75px
    }

    .complication-list__item {
        font-size: 25px;
        letter-spacing: 1.25px
    }

    .complication-list__item--last {
        font-size: 35px;
        letter-spacing: 1.75px
    }

    .feed__title {
        margin-bottom: 54px
    }

    .feed-list {
        gap: 20px
    }

    .feed-list__item {
        width: calc((100% - 20px)/2);
        gap: 20px
    }

    .feed-list__item--main {
        padding: 28px 25px 26px 229px
    }

    .feed-list__item--main .feed-list__img {
        width: 222px
    }

    .feed-list__item--main .feed-list__name {
        padding-bottom: 13px;
        font-size: 25px;
        letter-spacing: 1.25px;
        position: relative
    }

    .feed-list__item--main .feed-list__name::before {
        content: "";
        width: 100px;
        height: 1px;
        position: absolute;
        left: 0;
        bottom: 0;
        background: rgba(255, 255, 255, .5)
    }

    .feed-list__img {
        width: 70px;
        height: 70px
    }

    .feed-list__text {
        font-size: 20px;
        letter-spacing: .9px
    }

    .consist__content {
        max-width: 660px;
        margin-right: 0;
        margin-bottom: 87px;
        padding-top: 70px
    }

    .consist__helps-bottom {
        max-width: 590px
    }

    .consist__prod {
        left: -415px;
        bottom: -24px
    }

    .consist-list {
        -webkit-column-gap: 70px;
        -moz-column-gap: 70px;
        column-gap: 70px
    }

    .consist-list__item {
        max-width: 220px;
        --padding-left: 42px
    }

    .consist-list__item::after {
        width: 33px
    }

    .consist-list__text {
        padding: 25px 0
    }

    .steps {
        padding: 47px 45px 40px
    }

    .steps__title {
        margin-bottom: 49px;
        font-size: 35px;
        letter-spacing: 1.75px
    }

    .steps-list {
        row-gap: 60px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .steps-list__item {
        width: 100%;
        max-width: 323px;
        padding-right: 15px;
        gap: 35px
    }

    .steps-list__pulse {
        width: 42px;
        font-size: 30px
    }

    .steps-list__title {
        font-size: 22px;
        letter-spacing: 1.1px
    }

    .steps-list__text {
        letter-spacing: .9px
    }

    .popup__content {
        padding: 23px 23px 23px 52px;
        gap: 52px
    }

    .popup__left {
        max-width: 180px
    }

    .popup .price-box:first-child .price-box__new {
        font-size: 34px
    }

    .popup .price-box:last-child .price-box__new {
        font-size: 44px
    }

    .block {
        padding: 60px 0
    }

    .dream-list__content {
        padding: 25px;
    }
}

@media (min-width:1530px) {
    .sign--small {
        display: block
    }

    .sign--small .sign__item {
        width: 127px;
        left: calc(50% - 748px);
        opacity: 0
    }

    .sign--small .sign__item--right {
        left: auto;
        right: calc(50% - 748px)
    }

    .animate .sign--small .sign__item,
    .animate .sign__item {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    .animate .sign--small .sign__item {
        opacity: .15
    }

    .animate .sign--small .sign__item--right,
    .animate .sign__item--right {
        -webkit-transform: scale(-1) translateY(0);
        transform: scale(-1) translateY(0)
    }
}

@media (min-width:1750px) {
    .sign {
        display: block
    }
}

@media (min-width:320px) and (max-width:639px) {

    .benefits.block,
    .symptoms.block {
        padding-bottom: 0
    }
}

@media (min-width:768px) and (max-width:1023px) {
    .consist__title {
        font-size: 35px
    }

    .last .title-capsule {
        max-width: 360px
    }

    .last .title-capsule__img {
        max-width: 35px
    }

    .last .title-capsule__logo {
        max-width: 221px
    }
}

@media (min-width:1024px) and (max-width:1219px) {
    .consist__title {
        font-size: 44px
    }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
    .dream-list__img {
        width: 60px;
    }
    .dream-list__content {
        gap: 10px;
    }
    .dream-list__title {
        font-size: 18px;
    }
    .dream-list__text {
        font-size: 16px;
    }
}

@media screen and (max-width: 479px) {
    .consist-list__item {
        --image-width: 45px;
        gap: 8px;
        width: calc((100% - 8px) / 2);
    }
    .consist-list__text {
        font-size: 16px;
    }
    .consist-list {
        column-gap: 8px;
    }
    
}