html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    font-size: 18px;
    line-height: 1.4;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #000000;
    background: #ffffff;
}

img {
    max-width: 100%;
}

ul,
li {
    list-style: none;
}

picture {
    display: block;
    font-size: 0;
    text-align: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.overflow {
    overflow: hidden;
}


/*----------------------------------------- Common -----------------------------------------*/

.container {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 10px;
}

.button {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 29px 15px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #CD405B;
    border: none;
    border-radius: 40px;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0), 0px 8px 13px 0px rgba(0, 0, 0, 0.3);
    outline: none;
    cursor: pointer;
    transition: .3s linear;
}

.button:hover,
.button:focus {
    color: #3e3332;
    background: transparent;
    box-shadow: inset 280px 0 0 0 #f2d666, 0px 8px 13px 0px rgba(0, 0, 0, 0.3);
}

.title {
    font-weight: 900;
    font-size: 26px;
    line-height: 1.15;
    text-transform: uppercase;
    color: #493f3d;
}

.product-logo {
    color: #ffffff;
}

.accent {
    color: #CD405B;
}

.arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90px;
    margin: 0 auto;
}

.arrows__item:not(:last-of-type) {
    margin-right: 10px;
}

.arrows__button {
    display: block;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 5px;
    background-position: center;
    background-repeat: no-repeat;
    outline: none;
    cursor: pointer;
}

.arrows__button--previous {
    background-color: #f2d666;
    background-image: url("../images/arrow-previous.svg");
}

.arrows__button--next {
    background-color: #ffffff;
    background-image: url("../images/arrow-next.svg");
}

.decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.decoration {
    position: absolute;
}


/*----------------------------------------- Common (top block) -----------------------------------------*/

.common {
    position: relative;
    padding: 25px 0 50px;
    color: #ffffff;
    background-color: #82a6ef;
    background: url("../images/common-bg.jpg") top left / cover no-repeat, #82a6ef;
    z-index: 0;
}

.common__paragraph {
    font-weight: 900;
    font-size: 21px;
    line-height: 1.2;
    text-transform: uppercase;
}

.common__logo {
    max-width: 240px;
    margin: 15px auto 0;
    font-size: 0;
    text-align: center;
}

.common__product {
    position: relative;
}

.common__product-wrapper {
    width: 300px;
    height: 300px;
    margin-top: 20px;
    padding: 30px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f2d666;
}

.common__product-image {
    position: absolute;
    top: 0px;
    left: -25px;
    width: 170px;
}

.common__product-info {
    max-width: 125px;
    margin-top: 45px;
    margin-left: auto;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    text-align: right;
    color: #3e3332;
}

.common__prices {
    width: 162px;
    height: 162px;
    margin-top: 10px;
    margin-left: auto;
    margin-bottom: -20px;
    margin-right: -20px;
    padding: 30px;
    text-align: center;
    background-color: #493f3d;
    border-radius: 50%;
}

.common__price {
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
}

.common__price-span {
    display: block;
    text-decoration: line-through;
}

.common__price--new {
    font-weight: 900;
    font-size: 32px;
    color: #CD405B;
}

.common__list {
    margin-top: 20px;
    margin-right: 10px;
}

.common__item {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 80px;
    padding-left: 90px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.common__item::after {
    content: "";
    display: inline-block;
    min-height: 80px;
    visibility: hidden;
}

.common__item--2 {
    justify-content: flex-end;
    padding-left: 0;
    padding-right: 90px;
    text-align: right;
}

.common__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    padding: 9px;
    border: 1px solid #493f3d;
    background-color: #493f3d;
    background-clip: content-box;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

.common__item--2::before {
    left: auto;
    right: 0;
}

.common__item--1::before {
    background-image: url("../images/common-icon1.svg");
}

.common__item--2::before {
    background-image: url("../images/common-icon2.svg");
}

.common__item--3::before {
    background-image: url("../images/common-icon3.svg");
}

.common__item p {
    max-width: 100%;
}

.common__button {
    margin-top: 45px;
}

.common__decoration--1 {
    top: 30px;
    left: calc(50% - 235px);
}

.common__decoration--2 {
    top: 50%;
    right: calc(50% - 480px);
}


/*----------------------------------------- Symptoms -----------------------------------------*/

.symptoms {
    position: relative;
    padding: 60px 0 60px;
    background-color: #edf0f5;
    background: url("../images/symptoms-bg.jpg") top left / cover no-repeat, #edf0f5;
    z-index: 0;
}

.symptoms__title {
    max-width: 250px;
}

.symptoms__paragraph {
    margin-top: 20px;
}

.symptoms__list {
    margin-top: 40px;
}

.symptoms__item {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    -ms-flex-align: center;
    min-height: 70px;
    padding-left: 80px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.1;
    color: #493f3d;
    letter-spacing: -0.6px;
}
.symptoms__item p br, .expert__info br {
  display:none
}

.symptoms__item:not(:first-of-type) {
    margin-top: 10px;
}

.symptoms__item:nth-child(even) {
    justify-content: flex-end;
    padding-left: 0;
    padding-right: 80px;
    text-align: right;
}

.symptoms__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background-color: #CD405B;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 11px 29px 0px rgba(0, 0, 1, 0.42);
}

.symptoms__item:after {
    content: "";
    display: inline-block;
    min-height: 70px;
    visibility: hidden;
}

.symptoms__item:nth-child(even)::before {
    left: auto;
    right: 0;
}

.symptoms__item--1::before {
    background-image: url("../images/symptoms-icon1.svg");
}

.symptoms__item--2::before {
    background-image: url("../images/symptoms-icon2.svg");
    background-position: top 6px left 9px;
}

.symptoms__item--3::before {
    background-image: url("../images/symptoms-icon3.svg");
}

.symptoms__item--4::before {
    background-image: url("../images/symptoms-icon4.svg");
}

.symptoms__item--5::before {
    background-image: url("../images/symptoms-icon5.svg");
}

.symptoms__item--6::before {
    background-image: url("../images/symptoms-icon6.svg");
}

.symptoms__item--7::before {
    background-image: url("../images/symptoms-icon7.svg");
}

.symptoms__item--8::before {
    background-image: url("../images/symptoms-icon8.svg");
}

.symptoms__item--9::before {
    background-image: url("../images/symptoms-icon9.svg");
}

.symptoms__item--10::before {
    background-image: url("../images/symptoms-icon10.svg");
}

.symptoms__decoration {
    top: 30px;
    left: calc(50% - 235px);
}


/*----------------------------------------- Effects -----------------------------------------*/

.effects {
    position: relative;
    padding: 60px 0;
    background-color: #f1d2b5;
    background: url("../images/effects-bg.jpg") center / cover no-repeat, #f1d2b5;
    z-index: 0;
}

.effects__title {
    letter-spacing: -0.025em;
}

.effects__logo {
    max-width: 240px;
    margin: 15px auto 0;
}

.effects__product {
    position: relative;
    width: 301px;
    margin-top: -35px;
    z-index: 1;
}

.effects__product img {
    width: 170px;
    padding-top: 20px;
}

.effects__product::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(farthest-corner at center left, transparent 0%, transparent 35%, #f2d666 100%);
    z-index: -1;
}

.effects__list {
    margin-top: 30px;
    text-align: center;
    counter-reset: item;
}

.effects__item {
    position: relative;
    padding-top: 110px;
    font-size: 16px;
    line-height: 1.25;
}

.effects__item:not(:first-of-type) {
    margin-top: 20px;
}

.effects__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 98px;
    height: 98px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
}

.effects__item--1::before {
    background-image: url("../images/effects-image1.jpg");
}

.effects__item--2::before {
    background-image: url("../images/effects-image2.jpg");
}

.effects__item--3::before {
    background-image: url("../images/effects-image3.jpg");
}

.effects__item::after {
    content: "0" counter(item);
    counter-increment: item;
    position: absolute;
    top: 20px;
    left: calc(50% - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    font-size: 16px;
    line-height: 1;
    color: #493f3d;
    border-radius: 50%;
    background-color: #f2d666;
}

.effects__decoration--1 {
    max-width: 239px;
    bottom: 0;
    left: calc(50% - 496px);
}

.effects__decoration--2 {
    max-width: 281px;
    top: 230px;
    right: calc(50% - 496px);
}


/*----------------------------------------- Advantages -----------------------------------------*/

.advantages {
    position: relative;
    padding: 60px 0;
    background-color: #c8d3e7;
    background: url("../images/advantages-bg.jpg") center / cover no-repeat, #c8d3e7;
    z-index: 0;
}

.advantages__container {
    position: relative;
    z-index: 2;
}

.advantages__title {
    text-align: center;
}

.advantages__list {
    margin-top: 20px;
    text-align: center;
}

.advantages__item {
    position: relative;
    padding-top: 175px;
    font-weight: 700;
}

.advantages__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 195px;
    height: 180px;
    background-position: center;
    background-repeat: no-repeat;
}

.advantages__item--1::before {
    background-image: url("../images/advantages-image1.png");
}

.advantages__item--2::before {
    background-image: url("../images/advantages-image2.png");
}

.advantages__item--3::before {
    background-image: url("../images/advantages-image3.png");
}

.advantages__item--4::before {
    background-image: url("../images/advantages-image4.png");
}

.advantages__item--5::before {
    background-image: url("../images/advantages-image5.png");
}

.advantages__item--6::before {
    background-image: url("../images/advantages-image6.png");
}

.advantages__item--7::before {
    background-image: url("../images/advantages-image7.png");
}

.advantages__arrows {
    margin-top: 30px;
}

.advantages__decoration {
    top: 50%;
    right: calc(50% - 480px);
}


/*----------------------------------------- Expert -----------------------------------------*/

.expert {
    position: relative;
    padding: 30px 0 60px;
    background-color: #82a6ef;
    background: url("../images/expert-bg.jpg") top center / cover no-repeat, #82a6ef;
    z-index: 0;
}

.expert__image {
    width: 300px;
    height: 300px;
    font-size: 0;
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
}

.expert__info {
    position: relative;
    width: 269px;
    height: 269px;
    margin: -90px auto 0;
    padding: 99px 10px 30px;
    text-align: center;
    font-size: 16px;
    line-height: 1.25;
    color: #ffffff;
    background-color: #493f3d;
    border-radius: 50%;
}

.expert__info::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 67px;
    height: 75px;
    background: url("../images/expert-icon.svg") center no-repeat;
}

.expert__name {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
}

.expert__content {
    position: relative;
    margin: 26px -10px 30px;
    padding: 0 10px 26px 40px;
    background-color: #f7f7f7;
    background: url("../images/expert-copybook-pattern.png") top 26px center repeat-y;
    z-index: 1;
}

.expert__content::before,
.expert__content::after {
    content: "";
    position: absolute;
    right: 0;
    display: block;
    width: 320px;
    z-index: -1;
}

.expert__content::before {
    top: -26px;
    height: 26px;
    background: url("../images/expert-copybook-top.png") top center no-repeat;

}

.expert__content::after {
    bottom: -28px;
    height: 32px;
    background: url("../images/expert-copybook-bottom.png") bottom center no-repeat;

}

.expert__paragraph {
    margin-top: 15px;
}

.expert__results {
    margin-top: 30px;
}

.expert__result:not(:first-of-type) {
    margin-top: 15px;
}

.expert__result-heading {
    max-width: 230px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

.expert__result-number {
    position: relative;
    margin-top: 5px;
}

.expert__result-percent {
    position: absolute;
    top: -20px;
    right: 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

.expert__result-percent::after {
    content: "%";
    display: inline-block;
    font-weight: 700;
}

.expert__progressbar {
    padding: 2px;
    background-color: #d0c7c4;
    box-shadow: inset 0px 0px 4px 0px rgba(0, 0, 0, 0.27);
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.expert__progress {
    display: block;
    width: 100%;
    max-width: 0;
    min-height: 16px;
    border-radius: 8px;
    background-color: #ffc029;
    background: linear-gradient(to bottom, #ffc029, #bb8c1e);
    transition: opacity 0.3s linear, max-width 1.5s linear;
}


/* .expert__progress--1,
.expert__progress--5,
.expert__progress--7 {
  max-width: 97%;
}

.expert__progress--2 {
  max-width: 92%;
}

.expert__progress--3 {
  max-width: 91%;
}

.expert__progress--4 {
  max-width: 95%;
}

.expert__progress--6 {
  max-width: 94%;
} */

.expert__desc {
    margin-top: 10px;
    font-style: italic;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: #ffffff;
}

.expert__decoration--1 {
    top: 20%;
    left: calc(50% - 580px);
}

.expert__decoration--2 {
    top: 30px;
    right: calc(50% - 235px);
}


/*----------------------------------------- Reasons -----------------------------------------*/

.reasons {
    position: relative;
    padding: 50px 0;
    background-color: #f1d2b5;
    background: url("../images/reasons-bg.jpg") top -150px right / auto calc(100% + 150px) no-repeat, #f1d2b5;
    z-index: 2;
}

.reasons__title {
    color: #ffffff;
}

.reasons__list {
    margin-top: 30px;
    margin-right: -8px;
}

.reasons__item:not(:first-of-type) {
    margin-top: 30px;
}

.reasons__item {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 85px;
    padding-left: 95px;
    font-size: 16px;
    line-height: 1.3;
}

.reasons__item::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    display: block;
    width: 85px;
    height: 85px;
    border: 7px solid rgba(255, 255, 255, 0.44);
    border-radius: 50%;
    box-shadow: 0px 14px 29px 0px rgba(0, 0, 0, 0.57);
    background-color: #ffffff;
    background-clip: content-box;
    background-position: center;
    background-repeat: no-repeat;
}

.reasons__item--1::before {
    background-image: url("../images/reasons-icon1.svg");
    background-size: 49px auto;
}

.reasons__item--2::before {
    background-image: url("../images/reasons-icon2.svg");
    background-size: 52px auto;
}

.reasons__item--3::before {
    background-image: url("../images/reasons-icon3.svg");
    background-size: 44px auto;
}

.reasons__item--4::before {
    background-image: url("../images/reasons-icon4.svg");
    background-size: 52px auto;
}

.reasons__item--5::before {
    background-image: url("../images/reasons-icon5.svg");
    background-size: 61px auto;
}

.reasons__item::after {
    content: "";
    display: inline-block;
    min-height: 85px;
    visibility: hidden;
}

.reasons__item p {
    max-width: 100%;
}

.reasons__span {
    display: block;
    font-weight: 900;
    text-transform: uppercase;
}

.reasons__button {
    margin-top: 40px;
}

.reasons__decoration {
    max-width: 340px;
    bottom: 230px;
    right: calc(50% - 540px);
}


/*----------------------------------------- Usage -----------------------------------------*/

.usage {
    padding: 70px 0;
    background-color: #d1d3d3;
    background: url("../images/usage-bg.jpg") center / cover no-repeat, #d1d3d3;
}

.usage__title {
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 0px 57px rgba(0, 0, 0, 0.68);
}

.usage__wrapper {
    position: relative;
    max-width: 300px;
    margin: 25px auto 0;
}

.usage__list {
    position: relative;
    counter-reset: item;
    z-index: 2;
}

.usage__item {
    max-width: 180px;
}

.usage__item--2,
.usage__item--4 {
    max-width: 190px;
    margin-left: auto;
}

.usage__item--3 {
    margin-top: 345px;
}

.usage__top {
    position: relative;
    max-width: 137px;
    margin: 0 auto;
}

.usage__top::before {
    content: "0" counter(item);
    counter-increment: item;
    position: absolute;
    top: 15px;
    right: -21px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    font-weight: 900;
    font-size: 18px;
    line-height: 1.2;
    color: #ffffff;
    background-color: #CD405B;
    border-radius: 50%;
    z-index: 2;
}

.usage__top--2::before,
.usage__top--4::before {
    right: auto;
    left: -2px;
}

.usage__image {
    position: relative;
    z-index: 1;
}

.usage__image::before,
.usage__image::after {
    content: "";
    position: absolute;
    display: block;
    z-index: -1;
}

.usage__image--1::before,
.usage__image--2::before {
    bottom: 32px;
    transform: translateY(100%);
}

.usage__image--3::before,
.usage__image--4::before {
    top: 20px;
    transform: translateY(-100%);
}

.usage__image--1::before {
    left: 48%;
    width: 79px;
    height: 419px;
    background: url("../images/usage-line1.svg");
}

.usage__image--2::before {
    left: 12%;
    width: 53px;
    height: 130px;
    background: url("../images/usage-line2.svg");
}

.usage__image--3::before {
    left: 47%;
    width: 49px;
    height: 144px;
    background: url("../images/usage-line3.svg");
}

.usage__image--4::before {
    left: -5%;
    width: 74px;
    height: 357px;
    background: url("../images/usage-line4.svg");
}

.usage__image::after {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 0, 0, 0.3);
    animation: usagePulse 1s ease-out infinite;
}

.usage__image--1::after {
    top: 492px;
    left: 112px;
}

.usage__image--2::after {
    top: 202px;
    left: 12px;
}

.usage__image--3::after {
    bottom: 229px;
    left: 79px;
}

.usage__image--4::after {
    bottom: 441px;
    left: -10px;
}

@keyframes usagePulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.usage__desc {
    position: relative;
    margin-top: -15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0px 0px 10px #ffffff, 0px 0px 15px #ffffff, 0px 0px 25px #ffffff;
    z-index: 1;
}

.usage__desc::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 110%;
    height: 100%;
    background: radial-gradient(closest-side at center, #ffffff, transparent);
    z-index: -1;
}

.usage__product {
    position: absolute;
    top: 49%;
    left: 65%;
    transform: translate(-50%, -50%);
    width: 471px;
}


/*----------------------------------------- Reviews -----------------------------------------*/

.reviews {
    position: relative;
    padding: 50px 0 65px;
    background-color: #82a6ef;
    background: url("../images/reviews-bg.jpg") top center / cover no-repeat, #82a6ef;
    z-index: 0;
}

.reviews__title {
    max-width: 250px;
    font-size: 21px;
}

.reviews__arrows {
    justify-content: flex-start;
    margin-top: 120px;
    margin-left: 0;
}

.reviews__list {
    position: relative;
    margin-top: 25px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 4px 6px 31px 0px rgba(0, 0, 1, 0.23);
    z-index: 1;
}

.reviews__list .slick-list {
    border-radius: 8px;
    background-color: #ffffff;
}

.reviews__list::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -10px;
    display: block;
    width: 189px;
    height: 281px;
    background: url("../images/reviews-image-desktop.png") center / contain no-repeat;
    z-index: -1;
}

.reviews__item {
    padding: 10px;
    padding-bottom: 0;
    background-color: #ffffff;
}

.reviews__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.reviews__avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin-right: 10px;
    font-size: 0;
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
}

.reviews__author {
    max-width: calc(100% - 48px - 10px);
}

.reviews__name {
    position: relative;
    padding-right: 34px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #14171a;
}

.reviews__name::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 24px;
    height: 24px;
    background: url("../images/reviews-verify-icon.svg") center / contain no-repeat;
}

.reviews__nick {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1;
    color: #657786;
}

.reviews__follow-button {
    display: none;
}

.reviews__content {
    margin-top: 10px;
    letter-spacing: -0.025em;
}

.reviews__image {
    margin-top: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.reviews__date {
    padding: 10px 0;
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    color: #657786;
}

.reviews__reactions {
    padding: 10px 0;
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    color: #657786;
    border-top: 1px solid #e6ecf0;
    border-bottom: 1px solid #e6ecf0;
}

.reviews__reactions-number {
    color: #14171a;
}

.reviews__reactions-item:not(:last-of-type) {
    margin-right: 10px;
}

.reviews__followers {
    padding: 10px 0;
    font-size: 0;
    border-bottom: 1px solid #e6ecf0;
}

.reviews__actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: #657786;
}

.reviews__action-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.reviews__action-button {
    display: block;
    width: 17px;
    height: 17px;
    background-position: center;
    background-repeat: no-repeat;
}

.reviews__action-button--comment {
    background-image: url("../images/reviews-comment-icon.svg");
}

.reviews__action-button--share {
    margin-right: 5px;
    background-image: url("../images/reviews-share-icon.svg");
}

.reviews__action-button--like {
    margin-right: 5px;
    background-image: url("../images/reviews-like-icon.svg");
}

.reviews__action-button--email {
    background-image: url("../images/reviews-email-icon.svg");
}

.reviews__reply {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 -10px;
    padding: 15px 10px;
    border-top: 1px solid #e6ecf0;
    background-color: #f5f8fa;
    border-radius: 0 0 8px 8px;
}

.reviews__reply-avatar {
    flex-shrink: 0;
    width: 31px;
    height: 31px;
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
}

.reviews__input {
    width: 100%;
    max-width: calc(100% - 31px - 10px);
    padding: 10px;
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    color: #bfd7f1;
    border: 1px solid #bfd7f1;
    background-color: #ffffff;
    border-radius: 8px;
}

.reviews__decoration--1 {
    top: 30px;
    left: calc(50% - 235px);
}

.reviews__decoration--2 {
    top: 150px;
    right: calc(50% - 570px);
    transform: scale(-1, -1)
}


/*----------------------------------------- Steps -----------------------------------------*/

.steps {
    padding: 60px 0 60px;
    background-color: #f1d2b5;
    background: url("../images/steps-bg.jpg") top center / cover no-repeat, #f1d2b5;
}

.steps__title {
    text-align: center;
}

.steps__list {
    max-width: 240px;
    margin: 20px auto 0;
    text-align: center;
}

.steps__item:not(:first-of-type) {
    margin-top: 20px;
}

.steps__item {
    position: relative;
    padding-top: 220px;
    line-height: 1.2;
    z-index: auto;
}

.steps__item--3 {
    padding-top: 190px;
    z-index: 1;
}

.steps__item::before {
    content: "";
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background-color: rgba(242, 214, 102, 0.33);
    z-index: -1;
}

.steps__number {
    position: absolute;
    top: 10px;
    left: 38%;
    line-height: 1;
    color: #CD405B;
    z-index: 2;
}

.steps__number--1 {
    top: 0;
}

.steps__number--3,
.steps__number--4 {
    left: 50%;
    transform: translateX(-50%);
}

.steps__image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-height: 225px;
    font-size: 0;
    text-align: center;
    z-index: 2;
}

.steps__image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.steps__image--1 {
    width: 237px;
}

.steps__image--2 {
    width: 434px;
}

.steps__image--3 {
    width: 282px;
}

.steps__image--4 {
    top: 10px;
    width: 270px;
}

.steps__desc {
    position: relative;
    z-index: 2;
}


/*----------------------------------------- Common (bottom block) -----------------------------------------*/

.common--bottom {
    padding: 60px 0 60px;
    background-color: #82a6ef;
    background: url("../images/common-bottom-bg.jpg") top left / cover no-repeat;
}

.common__paragraph--bottom {
    font-size: 20px;
}

.common__prices--bottom {
    display: none;
}

.common__product-image--desktop {
    display: none;
}

.common__product-wrapper--bottom {
    display: flex;
    justify-content: flex-end;
    padding-right: 15px;
    align-items: center;
    margin-top: 10px;
}

.common__product-info--bottom {
    max-width: 135px;
    margin-top: 0;
    margin-left: 0;
    font-size: 16px;
    line-height: 1.1;
    text-transform: none;
}

.common__list--bottom {
    margin-top: 30px;
}

.common__order {
    margin-top: 50px;
}

.common__decoration--bottom-1 {
    top: 70px;
}

.common__decoration--bottom-2 {
    top: 32%;
}


/*----------------------------------------- Order -----------------------------------------*/

.order__product-info {
    display: none;
}

.order__prices {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.prices__item {
    font-size: 14px;
    line-height: 1;
    color: #312321;
}

.prices__item--old {
    padding: 0 15px;
    text-align: right;
}

.prices__item-span {
    display: block;
    margin-top: 5px;
    text-decoration: line-through;
}

.prices__item--new {
    font-weight: 900;
    font-size: 75px;
    line-height: 1;
    color: #CD405B;
}

.order__form {
    max-width: 280px;
    margin: 20px auto 0;
}

.order__label {
    display: block;
    width: 100%;
}

.order__label:not(:first-of-type) {
    margin-top: 10px;
}

.order__field {
    display: block;
    width: 100%;
    padding: 15px 25px;
    font-size: 15px;
    line-height: 1.2;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #000000;
    border: 1px solid #ffffff;
    border-radius: 25px;
    background-color: #ffffff;
    outline: none;
    transition: all .3s ease-out;
}

.order__field::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 1.2;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #000000;
    opacity: 1;
}

.order__field::-moz-placeholder {
    font-size: 15px;
    line-height: 1.2;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #000000;
    opacity: 1;
}

.order__field:-moz-placeholder {
    font-size: 15px;
    line-height: 1.2;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #000000;
    opacity: 1;
}

.order__field:-ms-input-placeholder {
    font-size: 15px;
    line-height: 1.2;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #000000;
    opacity: 1;
}

.order__field--select::-ms-expand {
    display: none;
}

.order__field--select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 50px;
    background: url("../images/customselect.png") center right 25px no-repeat, #ffffff;
}

.order__field:focus {
    border-color: #CD405B;
}

.order__field:focus::-webkit-input-placeholder {
    color: #9f9f9f;
}

.order__field:focus::-moz-placeholder {
    color: #9f9f9f;
}

.order__field:focus:-moz-placeholder {
    color: #9f9f9f;
}

.order__field:focus:-ms-input-placeholder {
    color: #9f9f9f;
}

.order__button {
    margin-top: 20px;
}


/* Diagonal layout for "reasons" and "steps" blocks: if browsers support clip-path: change padding + add negative margin + add pseudo-element with background and clip-path to "reasons" and "steps" blocks */

@supports (clip-path: polygon(0% 150px,
100% 0%,
100% calc(100% - 150px),
0% 100%)) {
    .symptoms {
        padding: 60px 0 120px;
    }
    .effects {
        position: relative;
        margin-top: -120px;
        padding: 120px 0 150px;
        background: none;
        z-index: 1;
    }
    .effects::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        width: 100%;
        min-width: 991px;
        height: 100%;
        background-color: #f1d2b5;
        background: url("../images/effects-bg.jpg") center / cover no-repeat, #f1d2b5;
        clip-path: polygon(0% 0%, 100% 120px, 100% 100%, 0% 100%);
        z-index: -1;
    }
    .advantages {
        position: relative;
        margin-top: -150px;
        padding-top: 150px;
        padding-bottom: 70px;
        background: none;
        z-index: 1;
    }
    .advantages::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        width: 100%;
        min-width: 991px;
        height: 100%;
        background-color: #82a6ef;
        background: url("../images/advantages-bg.jpg") center / cover no-repeat, #82a6ef;
        clip-path: polygon(0% 0%, 100% 150px, 100% 100%, 0% 100%);
        z-index: -1;
    }
    .expert {
        padding: 30px 0 150px;
    }
    .reasons {
        margin-top: -150px;
        padding: 130px 0;
        background: none;
    }
    .reasons::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        width: 100%;
        min-width: 991px;
        height: 100%;
        background: url("../images/reasons-bg.jpg") top -10px center / cover no-repeat, #f1d2b5;
        clip-path: polygon(0% 150px, 100% 0%, 100% calc(100% - 150px), 0% 100%);
        z-index: -1;
    }
    .usage {
        margin-top: -150px;
        padding: 130px 0 70px;
    }
    .steps {
        position: relative;
        padding: 60px 0 150px;
        background: none;
        z-index: 1;
    }
    .steps::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        width: 100%;
        min-width: 991px;
        height: 100%;
        background: url("../images/steps-bg.jpg") top center / cover no-repeat, #f1d2b5;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% calc(100% - 150px));
        z-index: -1;
    }
    .common--bottom {
        margin-top: -150px;
        padding-top: 150px;
    }
}


/* ----------------------------------------- Media queries ----------------------------------------- */

@media (min-width: 992px) {
    /*----------------------------------------- Common -----------------------------------------*/
    .container {
        max-width: 1020px;
    }
    .title {
        font-size: 44px;
        line-height: 1.2;
    }
    /*----------------------------------------- Common (top block) -----------------------------------------*/
    .common {
        padding: 70px 0 100px;
        background-image: url("../images/common-bg-desktop.jpg");
        background-position: top center;
    }
    .common__container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .common__logo {
        position: relative;
        order: -1;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        margin-right: 0;
        text-align: right;
        z-index: 1;
    }
    .common__logo img {
        display: block;
    }
    .common__paragraph {
        max-width: 450px;
        margin-top: 50px;
        margin-bottom: 200px;
        font-size: 44px;
    }
    .common__product {
        position: relative;
        align-self: flex-end;
        width: 100%;
        max-width: calc(100% - 450px);
    }
    .common__product::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        width: 700px;
        height: 700px;
        border: 1px solid #ffffff;
        border-radius: 50%;
        opacity: 1;
    }
    .common__product-wrapper {
        position: relative;
        width: 545px;
        height: 545px;
        margin-top: 0;
        margin-left: auto;
        z-index: 2;
    }
    .common__product-image {
        position: absolute;
        top: -7px;
        left: -32px;
        z-index: 3;
        width: 300px;
    }
    .common__product-info {
        max-width: 270px;
        margin-top: 120px;
        font-size: 26px;
        line-height: 1.1;
    }
    .common__prices {
        width: 258px;
        height: 258px;
        margin-top: 20px;
        margin-bottom: -20px;
        margin-right: -20px;
        padding: 80px 40px;
        text-align: left;
    }
    .common__price {
        font-size: 14px;
        text-align: center;
    }
    .common__price-span {
        display: inline-block;
    }
    .common__price--new {
        margin-top: 5px;
        font-size: 58px;
        text-align: center;
    }
    .common__list {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 470px;
        margin-top: -185px;
        margin-right: 0;
        z-index: 0;
    }
    .common__list::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 10px;
        display: block;
        width: 150%;
        height: 1px;
        background-color: #493f3d;
        z-index: -1;
    }
    .common__item {
        align-items: flex-start;
        max-width: 120px;
        padding-top: 90px;
        padding-left: 0;
        text-align: left;
    }
    .common__item--1 {
        max-width: 145px;
    }
    .common__item:not(:first-of-type) {
        margin-left: 40px;
    }
    .common__item--2 {
        padding-right: 0;
    }
    .common__item::before {
        top: 0;
        left: 0;
        transform: none;
    }
    .common__button {
        position: relative;
        margin-top: -35px;
        z-index: 10;
    }
    .common__decoration--1 {
        top: 10px;
        left: calc(50% - 600px);
    }
    .common__decoration--2 {
        right: calc(50% - 900px);
    }
    /*----------------------------------------- Symptoms -----------------------------------------*/
  .expert__result-heading {
    max-width: 200px;
}
    .symptoms {
        padding: 120px 0;
        background: url("../images/symptoms-bg-desktop.jpg") top center / cover no-repeat, #edf0f5;
    }
    .symptoms__container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .symptoms__left {
        width: 100%;
        max-width: calc(100% - 480px - 30px);
        margin-right: 20px;
    }
    .symptoms__right {
        width: 100%;
        max-width: 480px;
    }
    .symptoms__title {
        max-width: 100%;
        letter-spacing: -0.025em;
    }
    .symptoms__paragraph {
        margin-top: 0;
        font-size: 22px;
        line-height: 1.3;
    }
    .symptoms__list {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        margin-top: 25px;
    }
    .symptoms__item {
        padding-left: 77px;
        margin-bottom: 10px;
    }
    .symptoms__item:not(:first-of-type) {
        margin-top: 0;
    }
    .symptoms__item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 77px;
        padding-right: 0;
        text-align: left;
    }
    .symptoms__item:nth-child(even)::before {
        left: 0;
        right: auto;
    }
    .symptoms__item--1 {
        order: 0;
    }
    .symptoms__item--2 {
        order: 2;
    }
    .symptoms__item--3 {
        order: 4;
    }
    .symptoms__item--4 {
        order: 6;
    }
    .symptoms__item--5 {
        order: 8;
    }
    .symptoms__item--6 {
        order: 1;
    }
    .symptoms__item--7 {
        order: 3;
    }
    .symptoms__item--8 {
        order: 5;
    }
    .symptoms__item--9 {
        order: 7;
    }
    .symptoms__item--10 {
        order: 9;
    }
    .symptoms__item--1,
    .symptoms__item--2,
    .symptoms__item--3,
    .symptoms__item--4,
    .symptoms__item--5 {
        width: 100%;
        max-width: 265px;
        margin-right: 10px;
    }
    .symptoms__item--6,
    .symptoms__item--7,
    .symptoms__item--8,
    .symptoms__item--9,
    .symptoms__item--10 {
        width: 100%;
        max-width: calc(100% - 265px - 10px);
    }
    .symptoms__decoration {
        top: 10px;
        left: calc(50% - 600px);
    }
    /*----------------------------------------- Effects -----------------------------------------*/
    .effects {
        position: relative;
        padding: 80px 0 120px;
        background: url("../images/effects-bg-desktop.jpg") center / cover no-repeat, #f1d2b5;
    }
    .effects__container {
        position: relative;
        z-index: 1;
    }
    .effects__container::before {
        content: "";
        position: absolute;
        /* top: 70%; */
        top: 200px;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        width: 590px;
        height: 590px;
        border-radius: 50%;
        background: radial-gradient(farthest-corner at center left, transparent 0%, transparent 35%, #f2d666 100%);
        z-index: -1;
    }
    .effects__title {
        max-width: 800px;
        letter-spacing: normal;
    }
    .effects__logo {
        width: 100%;
        max-width: 797px;
        margin-left: 0;
    }
    .effects__product {
        position: absolute;
        top: 180px;
        left: 49%;
        transform: translateX(-50%);
        width: 376px;
        margin-top: 0;
        z-index: 1;
    }
    .effects__product img {
        width: 300px;
        padding-top: 50px;
    }
    .effects__product::before {
        display: none;
    }
    .effects__wrapper {
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-top: 30px;
        z-index: 3;
    }
    .effects__left {
        max-width: 310px;
        margin-right: 30px;
    }
    .effects__right {
        max-width: 435px;
    }
    .effects__list {
        margin-top: 0;
        text-align: left;
    }
    .effects__item {
        padding-top: 0;
        padding-left: 110px;
        margin-left: auto;
    }
    .effects__item:not(:first-of-type) {
        margin-top: 50px;
    }
    .effects__item::before {
        left: 0;
        transform: none;
    }
    .effects__item::after {
        top: 20px;
        left: -25px;
    }
    .effects__item--1 {
        max-width: 300px;
        margin-right: 20px;
    }
    .effects__item--2 {
        max-width: 360px;
    }
    .effects__decoration--1 {
        max-width: 316px;
        bottom: -50px;
        left: calc(50% - 1000px);
    }
    .effects__decoration--2 {
        max-width: 313px;
        top: 400px;
        right: calc(50% - 1000px);
    }
    /*----------------------------------------- Advantages -----------------------------------------*/
    .advantages {
        padding: 80px 0 120px;
        background: url("../images/advantages-bg-desktop.jpg") center / cover no-repeat, #c8d3e7;
    }
    .advantages__title {
        max-width: 800px;
        margin: 0 auto;
    }
    .advantages__list {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        margin-top: 40px;
    }
    .advantages__item {
        max-width: calc((100% - 90px)/4);
        font-size: 16px;
        line-height: 1.2;
    }
    .advantages__item:not(:last-of-type,
     :nth-child(4)) {
        margin-right: 30px;
    }
    .advantages__item:nth-child(n+5) {
        margin-top: 30px;
    }
    .advantages__arrows {
        display: none;
    }
    .advantages__decoration {
        top: 70%;
        right: calc(50% - 990px);
    }
    /*----------------------------------------- Expert -----------------------------------------*/
    .expert {
        padding: 60px 0 120px;
        background: url("../images/expert-bg-desktop.jpg") top center / cover no-repeat, #82a6ef;
    }
    .expert__wrapper {
        position: relative;
        padding-top: 1px;
    }
    .expert__person {
        position: absolute;
        top: 0;
        right: -100px;
        width: 822px;
        height: 822px;
        border-radius: 50%;
        overflow: hidden;
    }
    .expert__image {
        width: 822px;
        height: 822px;
    }
    .expert__info {
        position: absolute;
        bottom: 0;
        right: 70px;
        width: 373px;
        height: 373px;
        margin-top: 0;
        margin-right: 0;
        padding: 125px 35px 30px;
        line-height: 1.4;
    }
    .expert__info::before {
        top: 35px;
    }
    .expert__name {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .expert__content {
        max-width: 650px;
        margin: 147px 0 66px -45px;
        padding: 1px 35px 10px 90px;
        background-color: #f7f7f7;
        background: url("../images/expert-copybook-pattern-desktop.png") top 26px center repeat-y;
    }
    .expert__content::before,
    .expert__content::after {
        width: 650px;
    }
    .expert__content::before {
        top: -47px;
        height: 47px;
        background: url("../images/expert-copybook-top-desktop.png") top center no-repeat;
    }
    .expert__content::after {
        bottom: -66px;
        height: 66px;
        background: url("../images/expert-copybook-bottom-desktop.png") bottom center no-repeat;
    }
    .expert__title {
        margin-top: -10px;
    }
    .expert__paragraph {
        margin-top: 15px;
        letter-spacing: -0.025em;
    }
    .expert__results {
        max-width: 500px;
    }
    .expert__result {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
    .expert__result-heading {
        width: 100%;
        max-width: calc(100% - 280px - 15px);
        margin-right: 15px;
        margin-bottom: -5px;
        text-align: right;
    }
    .expert__result-number {
        width: 100%;
        max-width: 280px;
        margin-top: 0;
    }
    .expert__result-percent {
        position: static;
        margin-bottom: 5px;
    }
    .expert__desc {
        max-width: calc(100% - 630px);
        margin-top: -130px;
        margin-left: auto;
    }
    .expert__decorations {
        z-index: 0;
    }
    .expert__decoration--1 {
        top: 50%;
        left: calc(50% - 990px);
    }
    .expert__decoration--2 {
        top: 130px;
        right: calc(50% - 550px);
    }
    /*----------------------------------------- Reasons -----------------------------------------*/
    .reasons {
        padding: 80px 0;
        background-color: #f1d2b5;
        background: url("../images/reasons-bg-desktop.jpg") top left / cover no-repeat, #f1d2b5;
    }
    .reasons__wrapper {
        max-width: 660px;
        margin-top: -20px;
        margin-left: auto;
    }
    .reasons__list {
        max-width: 645px;
        margin-top: 40px;
        margin-right: 0;
    }
    .reasons__item:not(:first-of-type) {
        margin-top: 10px;
    }
    .reasons__item {
        min-height: 120px;
        padding-left: 140px;
        font-size: 18px;
        line-height: 1.4;
    }
    .reasons__item::before {
        width: 120px;
        height: 120px;
    }
    .reasons__item--1::before {
        background-size: auto;
    }
    .reasons__item--2::before {
        background-size: auto;
    }
    .reasons__item--3::before {
        background-size: auto;
    }
    .reasons__item--4::before {
        background-size: auto;
    }
    .reasons__item--5::before {
        background-size: auto;
    }
    .reasons__button {
        margin-top: 50px;
        margin-left: 0;
    }
    .reasons__decoration {
        max-width: 718px;
        top: 45%;
        right: calc(50% - 1020px);
        transform: translateY(-50%);
    }
    /*----------------------------------------- Usage -----------------------------------------*/
    .usage {
        padding: 210px 0;
        background: url("../images/usage-bg-desktop.jpg") center / cover no-repeat, #d1d3d3;
    }
    .usage__title {
        position: relative;
        max-width: 730px;
        margin: 0 auto;
        z-index: 2;
    }
    .usage__wrapper {
        max-width: 100%;
        margin-top: 60px;
        padding: 0 30px 0 15px;
    }
    .usage__list {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .usage__item {
        max-width: 300px;
        margin-left: 0;
        margin-right: auto;
    }
    .usage__item--1,
    .usage__item--2 {
        order: 0;
        margin-right: calc(100% - 300px - 240px);
    }
    .usage__item--2 {
        order: 2;
    }
    .usage__item--3 {
        order: 1;
        margin-top: 0;
    }
    .usage__item--4 {
        order: 3;
    }
    .usage__item--3,
    .usage__item--4 {
        max-width: 230px;
        margin-left: auto;
        margin-right: 0;
    }
    .usage__item--2,
    .usage__item--4 {
        margin-top: 60px;
    }
    .usage__top {
        max-width: 180px;
    }
    .usage__top::before {
        right: 0;
    }
    .usage__top--3::before,
    .usage__top--4::before {
        right: auto;
        left: 0;
    }
    .usage__product {
        top: 35%;
        left: 58%;
        width: 853px;
    }
    .usage__image::before {
        transform: none;
    }
    .usage__image--1::before,
    .usage__image--2::before {
        left: 82%;
    }
    .usage__image--3::before,
    .usage__image--4::before {
        right: 82%;
        left: auto;
    }
    .usage__image--1::before {
        top: 85px;
        width: 309px;
        height: 79px;
        background: url("../images/usage-line1-desktop.svg");
    }
    .usage__image--2::before {
        top: 10px;
        width: 216px;
        height: 76px;
        background: url("../images/usage-line2-desktop.svg");
    }
    .usage__image--3::before {
        top: 85px;
        width: 194px;
        height: 85px;
        background: url("../images/usage-line3-desktop.svg");
    }
    .usage__image--4::before {
        top: 90px;
        width: 260px;
        height: 73px;
        background: url("../images/usage-line4-desktop.svg");
    }
    .usage__image--1::after {
        top: 131px;
        left: 424px;
    }
    .usage__image--2::after {
        top: 8px;
        left: 331px;
    }
    .usage__image--3::after {
        bottom: 7px;
        left: auto;
        right: 310px;
    }
    .usage__image--4::after {
        bottom: 13px;
        left: auto;
        right: 376px;
    }
    /*----------------------------------------- Reviews -----------------------------------------*/
    .reviews {
        padding: 120px 0 110px;
        background: url("../images/reviews-bg-desktop.jpg") top center / cover no-repeat, #82a6ef;
    }
    .reviews__top {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        max-width: 710px;
    }
    .reviews__title {
        max-width: 510px;
        font-size: 32px;
        line-height: 1.2;
    }
    .reviews__arrows {
        margin-top: 0;
        margin-right: 0;
    }
    .reviews__list {
        max-width: 710px;
        margin-top: 30px;
    }
    .reviews__list::before {
        top: auto;
        bottom: -110px;
        right: -458px;
        width: 558px;
        height: 827px;
        background: url("../images/reviews-image-desktop.png") center / contain no-repeat;
        z-index: 1;
    }
    .reviews__item {
        padding: 25px;
        padding-bottom: 0;
    }
    .reviews__avatar {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        margin-right: 10px;
        font-size: 0;
        text-align: center;
        border-radius: 50%;
        overflow: hidden;
    }
    .reviews__author {
        max-width: calc(100% - 48px - 120px - 20px);
        margin-right: 10px;
    }
    .reviews__follow-button {
        position: relative;
        display: inline-block;
        max-width: 120px;
        padding: 10px 15px;
        margin-left: auto;
        margin-right: 30px;
        font-weight: 700;
        font-size: 14px;
        line-height: 1;
        text-align: center;
        color: #ffffff;
        background-color: #3281d4;
        border-radius: 50px;
    }
    .reviews__follow-button::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -30px;
        transform: translateY(-50%);
        display: block;
        width: 13px;
        height: 7px;
        background: url("../images/reviews-following-arrow.svg") center no-repeat;
    }
    .reviews__content {
        margin-top: 15px;
    }
    .reviews__image {
        margin-top: 20px;
    }
    .reviews__date {
        margin-top: 10px;
    }
    .reviews__wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        border-top: 1px solid #e6ecf0;
        border-bottom: 1px solid #e6ecf0;
    }
    .reviews__reactions {
        display: flex;
        align-items: center;
        max-width: 220px;
        min-height: 45px;
        padding: 10px;
        border: none;
        border-right: 1px solid #e6ecf0;
    }
    .reviews__followers {
        padding: 10px;
        border: none;
    }
    .reviews__actions {
        justify-content: space-between;
        max-width: 260px;
    }
    .reviews__reply {
        margin: 0 -25px;
        padding: 15px 25px;
    }
    .reviews__decoration--1 {
        top: 50px;
        left: calc(50% - 800px);
    }
    .reviews__decoration--2 {
        top: 240px;
        right: calc(50% - 900px);
    }
    /*----------------------------------------- Steps -----------------------------------------*/
    .steps {
        padding: 140px 0;
        background: url("../images/steps-bg-desktop.jpg") top center / cover no-repeat, #f1d2b5;
    }
    .steps__list {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 100%;
        margin-top: 80px;
    }
    .steps__item {
        position: relative;
        max-width: calc((100% - 120px)/4);
    }
    .steps__item:not(:first-of-type) {
        margin-top: 0;
        margin-left: 40px;
    }
    .steps__item--1::after,
    .steps__item--2::after,
    .steps__item--3::after {
        content: "";
        position: absolute;
        display: block;
        top: 150px;
        right: 0;
        width: 45px;
        height: 15px;
        background: url("../images/steps-arrow.png") center / contain no-repeat;
        z-index: 2;
    }
    .steps__item--1::after {
        right: -40px;
    }
    .steps__item--2::after {
        right: -20px;
    }
    .steps__item--3::after {
        right: -70px;
    }
    .steps__item {
        padding-top: 245px;
    }
    .steps__item::before {
        top: 50%;
        width: 415px;
        height: 415px;
    }
    .steps__number {
        top: 10px;
        left: 38%;
    }
    .steps__number--1 {
        left: 30%;
    }
    .steps__number--3,
    .steps__number--4 {
        left: 50%;
        transform: translateX(-50%);
    }
    /*----------------------------------------- Common (bottom block) -----------------------------------------*/
    .common--bottom {
        padding: 120px 0;
        background: url("../images/common-bottom-bg-desktop.jpg") top center / cover no-repeat;
    }
    .common__container--bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .common__paragraph--bottom {
        position: relative;
        max-width: 480px;
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 20px;
        font-size: 32px;
        line-height: 1.25;
        text-align: right;
        z-index: 1;
    }
    .common__prices--bottom {
        align-self: flex-end;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        max-width: 315px;
        margin-left: auto;
    }
    .common__product--bottom,
    .common__product--bottom::before,
    .common__product--bottom::after {
        display: none;
    }
    .common__product--desktop {
        position: relative;
        display: block;
        max-width: 100%;
        margin-top: 30px;
        text-align: right;
        z-index: 0;
    }
    .common__product--desktop::before {
        content: "";
        position: absolute;
        top: 120%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        width: 545px;
        height: 545px;
        border-radius: 50%;
        background-color: #f2d666;
        border: none;
        z-index: -1;
    }
    .common__product-image--desktop {
        display: block;
    }
    .common__product-image--box {
        position: absolute;
        top: 30px;
        left: 29%;
        width: 230px;
        z-index: 0;
        transform: rotate(-13deg);
    }
    .common__logo--bottom {
        padding-right: 30px;
        z-index: 10;
    }
    .common__logo--bottom img {
        /* width: 915px; */
    }
    .common__product-image--bottle {
        position: absolute;
        top: -115px;
        left: 42%;
        width: 240px;
        z-index: 2;
        transform: rotate(13deg);
    }
    .common__list--bottom {
        align-self: flex-end;
        display: block;
        max-width: 385px;
        margin-top: 100px;
        margin-right: calc(100% - 385px - 340px);
    }
    .common__list--bottom::before {
        display: none;
    }
    .common__item--bottom:not(:first-of-type) {
        margin-left: auto;
        margin-top: 10px;
    }
    .common__item--bottom {
        align-items: center;
        max-width: 280px;
        margin-right: 0;
        margin-left: auto;
        padding-top: 0;
        padding-right: 90px;
        text-align: right;
    }
    .common__item--bottom::before {
        top: 50%;
        right: 0;
        left: auto;
        transform: translateY(-50%);
    }
    .common__item--bottom-1 {
        margin-right: 60px;
    }
    .common__item--bottom-2 {
        margin-right: 30px;
    }
    .common__order {
        position: relative;
        width: 100%;
        max-width: 340px;
        margin-top: 0;
        z-index: 1;
    }
    .common__decoration--bottom-1 {
        top: 100px;
    }
    .common__decoration--bottom-2 {
        top: 50%;
    }
    /*----------------------------------------- Order -----------------------------------------*/
    .order__product-info {
        display: block;
        margin-top: 20px;
        font-weight: 700;
        font-size: 20px;
        line-height: 1.1;
        color: #493f3d;
    }
    .order__prices {
        display: none;
    }
    .order__form {
        margin-left: 0;
    }
    /* Diagonal layout for "reasons" and "steps" blocks: if browsers support clip-path: change padding + add negative margin + add pseudo-element with background and clip-path to "reasons" and "steps" blocks */
    @supports (clip-path: polygon(0% 150px,
    100% 0%,
    100% calc(100% - 150px),
    0% 100%)) {
        .symptoms {
            padding: 60px 0 260px;
        }
        .effects {
            position: relative;
            margin-top: -260px;
            padding: 260px 0 290px;
            background: none;
            z-index: 1;
        }
        .effects::before {
            min-width: 2000px;
            background: url("../images/effects-bg-desktop.jpg") center / cover no-repeat, #f1d2b5;
            clip-path: polygon(0% 0%, 100% 260px, 100% 100%, 0% 100%);
        }
        .advantages {
            margin-top: -290px;
            padding-top: 290px;
            background: none;
        }
        .advantages::before {
            min-width: 2000px;
            background: url("../images/advantages-bg-desktop.jpg") center / cover no-repeat, #82a6ef;
            clip-path: polygon(0% 0%, 100% 290px, 100% 100%, 0% 100%);
        }
        .expert {
            padding: 60px 0 300px;
        }
        .reasons {
            margin-top: -300px;
            padding: 300px 0 260px;
            background: none;
        }
        .reasons::before {
            min-width: 2000px;
            background: url("../images/reasons-bg-desktop.jpg") top -10px center / cover no-repeat, #f1d2b5;
            clip-path: polygon(0% 300px, 100% 0%, 100% calc(100% - 300px), 0% 100%);
        }
        .usage {
            margin-top: -300px;
            padding: 360px 0 210px;
        }
        .steps {
            padding-bottom: 300px;
            background: none;
        }
        .steps::before {
            min-width: 2000px;
            background: url("../images/steps-bg-desktop.jpg") top center / cover no-repeat, #f1d2b5;
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% calc(100% - 300px));
        }
        .common--bottom {
            margin-top: -300px;
            padding-top: 300px;
        }
    }
}
@media (max-width: 768px) {
  .expert__wrapper {
    margin: 0px 10px 0 0;
}
  .expert__person {
  margin-bottom: 30px;}
  .expert__content::before {
      width: 310px;
}

.expert__content::after {
      width: 310px;
}
.common {
    background: #82a6ef;
}
}
@media (min-width: 2000px) {
    .effects__decoration--1 {
        left: 0;
    }
    .effects__decoration--2 {
        right: 0;
    }
    .reasons__decoration {
        right: 0;
    }
}

@media (max-width: 992px) {
    .usage__image--1::after,
    .usage__image--2::after,
    .usage__image--3::after,
    .usage__image--4::after,
    .usage__image--1::before,
    .usage__image--2::before,
    .usage__image--3::before,
    .usage__image--4::before {
        display: none;
    }
}