html {
    box-sizing: border-box;
}

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

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


/* font-family: 'Montserrat', sans-serif;
font-family: 'Playfair Display', serif; */

img {
    max-width: 100%;
}

ul,
li {
    list-style: none;
}

.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 {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 10px;
    z-index: 2;
}

.button {
    position: relative;
    display: block;
    width: 100%;
    max-width: 265px;
    margin: 0 auto;
    padding: 25px 15px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: 50px;
    border: none;
    background-color: #ca2933;
    box-shadow: 0px 11px 21px 0px rgba(239, 49, 61, 0.5);
    outline: none;
    cursor: pointer;
    transition: all .3s ease-out;
    z-index: 1;
}

.button::before,
.button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    transition: all .3s ease-out;
    z-index: -1;
}

.button::before {
    background: linear-gradient(to left, #d02c37 0%, #ca2933 1%, #ef313d 100%), #ef313d;
}

.button::after {
    background: linear-gradient(to right, #d02c37 0%, #ca2933 1%, #ef313d 100%), #ef313d;
    opacity: 0;
}

.button:hover::after,
.button:focus::after {
    opacity: 1;
}

.button:hover,
.button:focus {
    box-shadow: none;
}

.triangle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width: 991px;
    fill: #ffffff;
    z-index: -1;
}


.decoration__item {
    position: absolute;
    z-index: -1;
}

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

.common-background {
    max-width: 727px;
    margin: 10px auto 0;
    background-color: #ffffff;
    background-image: linear-gradient(to right, transparent 0%, transparent 70%, #f5f5f5 100%), linear-gradient(to top, #d6d6d6 0%, #ffffff 69%, #ffffff 100%);
    box-shadow: -20px 0 25px 0px rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0 0;
}

.common__product-name {
    font-weight: 900;
    font-size: 39px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #ca2933;
}

.common__title {
    margin-top: 5px;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #4e4e4e;
}

.common__paragraph {
    max-width: 140px;
    margin-top: 10px;
    font-style: italic;
    font-size: 15px;
    color: #4e4e4e;
}

.common__paragraph--bottom {
    max-width: 156px;
    font-size: 18px;
}

.common__wrapper {
    position: relative;
    max-width: 300px;
    margin: 20px auto 0;
    z-index: 1;
}

.common__wrapper::before {
    content: "";
    position: absolute;
    top: -215px;
    right: -85px;
    display: block;
    width: 324px;
    height: 460px;
    background: url("../images/common-doc1.png") no-repeat;
    z-index: -1;
}

.common__wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 2px solid rgba(202, 41, 51, 0.4);
    z-index: -1;
}

.common__prices {
    width: 135px;
    height: 135px;
    padding: 35px 10px;
    margin-left: 10px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(42, 136, 70, 0.8);
}

.common__prices--bottom {
    padding: 25px 10px;
}

.common__prices-item {
    display: none;
}

.common__price-desc {
    display: block;
    font-size: 10px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    text-transform: none;
}

.common__price {
    font-size: 17px;
    line-height: 1;
    /* font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif; */
    font-family: 'Bodoni Moda', Georgia, 'Times New Roman', Times, serif;
    text-transform: uppercase;
}

.common__currency {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.common__price--old {
    position: relative;
}

.common__price--old .common__price-desc {
    margin-bottom: 5px;
}

.common__price--old::before,
.common__price--old::after {
    content: "";
    position: absolute;
    /* top: 50%; */
    bottom: 10px;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    display: block;
    width: 50%;
    height: 1px;
    background-color: #000000;
}

.common__price--old::before {
    /* transform: translate(-50%, -50%) rotate(20deg); */
    transform: translateX(-50%) rotate(20deg);
}

.common__price--old::after {
    /* transform: translate(-50%, -50%) rotate(-20deg); */
    transform: translateX(-50%) rotate(-20deg);
}

.common__price--new {
    margin-top: 5px;
    font-size: 34px;
    color: #ffffff;
}

.common__product {
    position: relative;
    width: 330px;
    margin-top: -100px;
    font-size: 0;
    text-align: center;
    z-index: 1;
}

.common__product::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: 0;
    display: block;
    width: 296px;
    height: 254px;
    background: url("../images/decoration-leaf3.png") center / contain no-repeat;
}

.common__product--bottom {
    margin-top: -65px;
}

.common__order {
    max-width: 320px;
    margin: 0 auto;
}

.common--bottom {
    margin-top: 20px;
    padding: 40px 0 80px;
}

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

.common__wrapper--bottom::before {
    top: -180px;
    right: -110px;
    width: 354px;
    height: 518px;
    background: url("../images/common-doc2.png") center / contain no-repeat;
}

.common__wrapper--bottom::after {
    top: 53%;
}

.common__product-name-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
    font-size: 130px;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: rgba(192, 192, 192, 0.5);
    z-index: -1;
}

.common__product-name-background::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 920px;
    height: 920px;
    background: radial-gradient(closest-side, #ffffff 0%, transparent 100%);
}

.common__decoration .decoration__item--1 {
    top: 30px;
    left: -680px;
    width: 537px;
    height: 537px;
    border-radius: 50%;
    border: 2px solid #ca2933;
}

.common__decoration .decoration__item--2 {
    bottom: -30px;
    right: -570px;
    max-width: 272px;
}

.common__decoration .decoration__item--3 {
    top: 230px;
    left: -350px;
    max-width: 257px;
}

.common__decoration .decoration__item--4 {
    top: 100px;
    right: -300px;
    max-width: 186px;
}

.order__title {
    font-weight: 700;
    font-size: 25px;
    text-transform: uppercase;
    text-align: center;
    color: #4e4e4e;
}

.order__form {
    max-width: 260px;
    margin: 10px auto 0;
}

.order__label {
    display: block;
}

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

.order__field {
    display: block;
    width: 100%;
    padding: 15px;
    font-weight: 400;
    font-size: 13px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #000000;
    border: 1px solid #ffffff;
    border-radius: 10px;
    background-color: rgba(246, 246, 246, 0.3);
    transition: all .3s ease-out;
    outline: none;
}

.order__field::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 13px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #000000;
    opacity: 1;
}

.order__field::-moz-placeholder {
    font-weight: 400;
    font-size: 13px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #000000;
    opacity: 1;
}

.order__field:-moz-placeholder {
    font-weight: 400;
    font-size: 13px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #000000;
    opacity: 1;
}

.order__field:-ms-input-placeholder {
    font-weight: 400;
    font-size: 13px;
    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;
    background-image: url("../images/customselect.svg");
    background-position: center right 15px;
    background-repeat: no-repeat;
}

.order__field:focus {
    background-color: #ffffff;
}

.order__button {
    margin-top: 20px;
    padding: 20px 15px;
    font-size: 18px;
}

.main-header__container {
    z-index: 10;
}

.main-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.main-header__logo {
    max-width: 49px;
    margin-right: 20px;
    font-size: 0;
    text-align: center;
}

.main-header__nav {
    margin-left: auto;
    margin-right: 10px;
}

.nav__list {
    display: none;
}

.nav--active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: rgba(163, 33, 41, 0.9);
    z-index: 10;
}

.nav--active .nav__list {
    display: block;
    margin-top: 50px;
}

.nav--active .nav__item {
    margin-top: 20px;
    width: 100%;
}

.nav--active .nav__link {
    font-weight: 700;
    font-size: 21px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
}

.nav--active .nav__link:focus,
.nav--active .nav__link:active {
    text-decoration: underline;
}

.nav__button {
    position: relative;
    display: block;
    width: 24px;
    height: 15px;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

.nav__button::before,
.nav__button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 3px;
    background-color: #4e4e4e;
    box-shadow: 0 -6px 0 0 #4e4e4e, 0 6px 0 0 #4e4e4e;
    transition: all .3s ease-out;
}

.nav__button::after {
    display: none;
}

.nav--active .nav__button {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
}

.nav--active .nav__button::before,
.nav--active .nav__button::after {
    display: block;
    background-color: #ffffff;
    box-shadow: none;
}

.nav--active .nav__button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav--active .nav__button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.main-header__button {
    display: block;
    width: 100%;
    max-width: 80px;
    padding: 5px 10px;
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: #d02c37;
    border: 2px solid #d02c37;
    border-radius: 50px;
    background-color: #ffffff;
    cursor: pointer;
    outline: none;
    transition: all .3s ease-out;
}

.main-header__button:hover {
    color: #ffffff;
    background-color: #d02c37;
}

.main-header__common {
    padding-bottom: 70px;
}

.relief {
    padding: 50px 0 250px;
    background-color: #d6d5cf;
    background: url("../images/relief-bg1.jpg") top left calc(50% - 220px) no-repeat,
        url("../images/bg-decoration.png") bottom right calc(50% - 320px) no-repeat,
        #d6d5cf;
}

.relief__title {
    font-weight: 900;
    font-size: 28px;
    line-height: 1.2;
    color: #4d9b64;
    text-transform: uppercase;
}

.relief__wrapper {
    margin-top: 25px;
}

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

.relief__card::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    display: block;
    width: 86%;
    height: 106%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.relief__card-wrapper {
    padding: 20px 15px 20px;
    background-color: #ffffff;
}

.relief__card-wrapper::after {
    content: "";
    display: block;
    clear: both;
}

.relief__card-text {
    font-size: 18px;
    line-height: 1.2;
}

.relief__card-strong {
    color: #ca2933;
}

.relief__card-image {
    float: right;
    min-height: 296px;
    margin-right: -26px;
    margin-bottom: -160px;
    font-size: 0;
    text-align: center;
}

.relief__card-image img {
    margin-top: -30px;
}

.relief__right-column {
    position: relative;
    z-index: 1;
}

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

.relief__product-name {
    margin-top: 50px;
    font-weight: 800;
    font-size: 42px;
    line-height: 1;
    color: #ca2933;
}

.relied__product-desc {
    margin-top: 5px;
    font-weight: 800;
    font-size: 18px;
}

.relief__list {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 70px;
    z-index: 1;
}

.relief__list::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 214px;
    height: 470px;
    background: url("../images/relief-health-kidney.png") center / contain no-repeat;
    z-index: -1;
}

.relief__item {
    position: relative;
    padding-right: 50px;
}

.relief__item::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background-color: #ffffff;
}

.relief__item:nth-child(odd) {
    margin-left: auto;
    padding-right: 0;
    padding-left: 50px;
}

.relief__item:nth-child(odd)::before {
    right: auto;
    left: 0;
}

.relief__item:not(:first-of-type) {
    margin-top: 50px;
}

.relief__item--1::before {
    background: url("../images/relief-icon1.svg") center no-repeat, #ffffff;
}

.relief__item--2::before {
    background: url("../images/relief-icon2.svg") center no-repeat, #ffffff;
}

.relief__item--3::before {
    background: url("../images/relief-icon3.svg") center no-repeat, #ffffff;
}

.relief__item--4::before {
    background: url("../images/relief-icon4.svg") center no-repeat, #ffffff;
}

.relief__item--5::before {
    background: url("../images/relief-icon5.svg") center no-repeat, #ffffff;
}

.relief__item p {
    display: inline-block;
    padding: 7px;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.5);
}

.usage {
    position: relative;
    margin-top: -250px;
    padding-top: 250px;
    z-index: 1;
}

.usage__triangle {
    top: 0;
}

.usage__bg {
    padding-top: 1px;
    padding-bottom: 65px;
    background-color: #ffffff;
}

.usage__container {
    margin-top: -80px;
}

.usage__product-name {
    font-weight: 900;
    font-size: 47px;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(192, 192, 192, 0.3);
}

.usage__product-span {
    display: block;
    margin-top: -5px;
    text-indent: 30px;
    color: rgba(192, 192, 192, 1);
}

.usage__product {
    position: relative;
    min-width: 415px;
    margin-top: -100px;
    margin-left: -20px;
    font-size: 0;
    text-align: center;
    z-index: 1;
}

.usage__product::before {
    content: "";
    position: absolute;
    bottom: 65px;
    left: -50px;
    display: block;
    width: 132px;
    height: 132px;
    background: url("../images/decoration-circle3.png") center / contain no-repeat;
    z-index: -1;
}

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

.usage__instruction {
    margin-top: -85px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    text-shadow: 0px 0px 11px #ffffff,
        0px 0px 11px #ffffff,
        0px 0px 11px #ffffff,
        0px 0px 11px #ffffff,
        0px 0px 11px #ffffff;
}

.usage__course {
    position: relative;
    padding-left: 60px;
    margin-top: 15px;
    font-size: 17px;
    line-height: 1;
    color: #4d9b64;
}

.usage__course::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 48px;
    height: 36px;
    background: url("../images/usage-icon.svg") no-repeat;
}

.usage__button {
    margin-top: 20px;
}

.usage__decoration .decoration__item--1 {
    top: -250px;
    left: -550px;
    width: 410px;
    height: 410px;
    border-radius: 50%;
    border: 2px solid #ca2933;
    opacity: 0.3;
}

.usage__decoration .decoration__item--2 {
    bottom: -100px;
    right: -500px;
    width: 397px;
    height: 397px;
    border-radius: 50%;
    border: 2px solid #ca2933;
}


.expert {
    padding: 35px 0 65px;
    background-color: #f3f5f6;
    background: url("../images/expert-bg2.png") top left calc(50% - 60px) no-repeat,
        url("../images/expert-bg3.png") bottom 100px left calc(50% - 80px) no-repeat,
        url("../images/expert-bg1.jpg") top right / cover no-repeat,
        #f3f5f6;
}

.expert__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
}

.expert__item {
    font-weight: 800;
    text-transform: uppercase;
    z-index: 1;
}

.expert__item--2 {
    margin-left: auto;
    text-align: right;
}

.expert__item-small {
    margin-top: -5px;
    font-size: 15px;
    line-height: 1;
    text-shadow: 0px 0px 11px #ffffff,
        0px 0px 11px #ffffff,
        0px 0px 11px #ffffff,
        0px 0px 11px #ffffff,
        0px 0px 11px #ffffff;
    color: #4e4e4e;
}

.expert__item-small--1 {
    margin-left: 70px;
}

.expert__item-small--2 {
    margin-left: auto;
}

.expert__item-small--3 {
    margin-left: 40px;
}

.expert__item-big {
    font-size: 31px;
    line-height: 1;
    text-align: right;
    color: rgba(78, 78, 78, 0.2);
}

.expert__item-big--1 {
    margin-left: -70px;
}

.expert__item-big--3 {
    margin-left: -150px;
}


.expert__title {
    margin-top: 75px;
    font-weight: 900;
    font-size: 28px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #4d9b64;
}

.expert__product-name {
    margin-top: 5px;
    font-weight: 800;
    font-size: 40px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #4e4e4e;
}

.expert__wrapper {
    position: relative;
    margin-top: 60px;
    padding: 85px 10px 30px;
    background-color: #ffffff;
    border-radius: 20px;
}

.expert__wrapper::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 55px;
    display: block;
    width: 81px;
    height: 58px;
    background: url("../images/quotes.png") center / contain no-repeat;
}

.expert__image {
    display: block;
    width: 118px;
    height: 112px;
    margin-top: -125px;
    font-size: 0;
    text-align: center;
    border-radius: 2px;
    overflow: hidden;
}

.expert__image--desktop {
    display: none;
}

.expert__paragraph {
    font-style: italic;
    margin-top: 20px;
}

.expert__info {
    position: relative;
    display: block;
    max-width: 240px;
    margin-top: 20px;
    font-style: normal;
}

.expert__info::after {
    content: "";
    position: absolute;
    top: -15px;
    right: -40px;
    display: block;
    width: 95px;
    height: 73px;
    background: url("../images/expert-signature.png") center / contain no-repeat;
}

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

.composition {
    position: relative;
    padding-bottom: 150px;
    /* margin-bottom: -250px; */
}

.composition__bg {
    padding: 60px 0 1px;
    background-color: #ffffff;
}

.composition__triangle {
    bottom: 0;
    transform: translateX(-50%) scale(1, -1);
}

.composition__product-name {
    position: relative;
    font-weight: 800;
    font-size: 40px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #ca2933;
    z-index: 2;
}

.composition__title {
    position: relative;
    margin-top: 5px;
    font-weight: 900;
    font-size: 26px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #4e4e4e;
    z-index: 2;
}

.composition__toggles {
    position: relative;
    margin-top: 80px;
    z-index: 1;
}

.composition__toggles .slick-list {
    overflow: visible !important;
}

.composition__toggles .slick-track {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translate3d(0, 0, 0) !important;
}

.composition__toggles::before {
    content: "";
    position: absolute;
    top: 42%;
    left: 60%;
    transform: translate(-50%, -50%);
    display: block;
    width: 590px;
    height: 627px;
    background: url("../images/product3.png") center / contain no-repeat;
    z-index: -1;
}

.composition__toggle {
    position: relative;
    float: none !important;
    display: inline-block;
    width: auto !important;
    max-width: 220px;
    margin-top: 14px;
    padding: 9px 36px 7px 20px;
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.43);
    transition: all .3s ease-out;
    cursor: pointer;
    outline: none;
}

.composition__toggle:nth-child(even) {
    margin-top: 34px;
    padding-left: 36px;
    padding-right: 20px;
}

.composition__toggle::before {
    content: "+";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    display: block;
    width: 25px;
    height: 25px;
    padding: 1px;
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #000000;
    transition: all .3s ease-out;
}

.composition__toggle:nth-child(even)::before {
    right: auto;
    left: 5px;
}

.composition__toggle.slick-current {
    background-color: #ca2933;
    color: #ffffff;
}

.composition__toggle.slick-current::before {
    content: "-";
    padding: 0;
    font-size: 23px;
    line-height: 0.9;
    color: #ffffff;
    border-color: #ffffff;
}

.composition__toggle--1 {
    margin-top: 0;
    margin-left: 35px;
}

.composition__toggle--2,
.composition__toggle--4 {
    margin-left: auto;
}

.composition__toggle--3 {
    margin-top: 24px;
}

.composition__wrapper {
    position: relative;
    margin-top: 40px;
    z-index: 2;
}

.composition__arrows {
    position: absolute;
    top: 90px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 77px;
    height: 77px;
    background-color: rgba(202, 41, 51, 0.5);
    border-radius: 50%;
    z-index: 3;
}

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

.composition__arrow-button {
    width: 16px;
    height: 25px;
    border: none;
    cursor: pointer;
    outline: none;
}

.composition__arrow-button--left {
    background: url("../images/composition-left-arrow.svg") center / contain no-repeat;
}

.composition__arrow-button--right {
    background: url("../images/composition-right-arrow.svg") center / contain no-repeat;
}

.composition__item {
    text-align: center;
}

.composition__image {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    font-size: 0;
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
}

.composition__heading {
    margin-top: 10px;
    font-weight: 900;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    color: #ca2933;
}

.composition__desc {
    position: relative;
    margin-top: 5px;
    padding-bottom: 20px;
    font-size: 18px;
}

.composition__desc::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #e0e0e0;
    border-radius: 2px;
}

.composition__attention {
    position: relative;
    margin-top: 30px;
    padding-left: 35px;
    font-style: italic;
    line-height: 1.4;
    z-index: 1;
}

.composition__attention::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    display: block;
    width: 64px;
    height: 167px;
    background: url("../images/composition-attention.png") center / contain no-repeat;
    z-index: -1;
}

.composition__strong {
    font-weight: 700;
    text-transform: uppercase;
}

.composition__button {
    margin-top: 40px;
}

.composition__decoration .decoration__item--1 {
    top: 50%;
    left: -500px;
    width: 410px;
    height: 410px;
    border-radius: 50%;
    border: 2px solid #ca2933;
}

.composition__decoration .decoration__item--2 {
    top: -100px;
    right: -450px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    border: 2px solid #ca2933;
    opacity: 0.2;
}

.composition__decoration .decoration__item--3 {
    max-width: 186px;
    right: -390px;
    bottom: 300px;
}

.reviews {
    padding-bottom: 70px;
    background: url("../images/reviews-bg.jpg") top left -130px no-repeat,
        url("../images/bg-decoration.png") bottom right calc(50% - 320px) no-repeat,
        #f5f5f5;
}

.reviews__intro {
    font-weight: 900;
    font-size: 28px;
    text-align: right;
    text-transform: uppercase;
    color: #4e4e4e;
}

.reviews__title {
    margin-top: 20px;
    font-weight: 900;
    font-size: 28px;
    line-height: 1.1;
    text-align: right;
    color: #4d9b64;
}

.reviews__arrows {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 47px;
    height: 47px;
    margin-top: 10px;
    border-radius: 50%;
    background-color: rgba(77, 155, 100, 0.8);
    z-index: 2;
}

.reviews__arrow {
    font-size: 0;
}

.reviews__arrow:not(:first-of-type) {
    margin-top: 7px;
}

.reviews__arrow-button {
    width: 15px;
    height: 9px;
    border: none;
    outline: none !important;
    cursor: pointer;
}

.reviews__arrow-button--top {
    background: url("../images/reviews-top-arrow.svg") center / contain no-repeat;
}

.reviews__arrow-button--bottom {
    background: url("../images/reviews-bottom-arrow.svg") center / contain no-repeat;
}

.reviews__screen {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 25px auto 0;
    box-shadow: 0 -10px 50px 0 rgba(91, 211, 238, 0.3);
    z-index: 1;
}

.reviews__screen::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 302px;
    height: 50px;
    background: url("../images/reviews-smartphone-top.svg") bottom center / 100% auto no-repeat;
    z-index: -1;
}

.reviews__screen::after {
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 320px;
    height: 698px;
    background: url("../images/reviews-smartphone-border.png") top center / contain no-repeat;
    z-index: -1;
}

.reviews__screen-wrapper {
    padding: 1px 10px 10px;
    background-color: #ffffff;
    border-radius: 0 0 30px 30px;
}

.reviews__screen-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -20px;
}

.reviews__screen-time {
    width: 100%;
    max-width: 55px;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
}

.reviews__screen-info {
    font-size: 0;
    text-align: center;
}

.reviews__screen-address {
    width: 100%;
    max-width: 270px;
    padding: 10px 15px;
    margin: 10px auto 0;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-align: center;
    background-color: #e4e6eb;
    background: url("../images/reviews-smartphone-reload.jpg") center right 15px no-repeat, #e4e6eb;
    border-radius: 7px;
}

.facebook__top-bar {
    margin: 10px 0;
    min-height: 43px;
    font-size: 0;
    background: url("../images/facebook-bar.jpg") center no-repeat;
}

.facebook__post-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 12px;
    color: #4e4e4e;
    border-top: 1px solid #e4e6eb;
    border-bottom: 1px solid #e4e6eb;
}

.facebook__post-likes {
    position: relative;
    padding-left: 30px;
}

.facebook__post-likes::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 22px;
    height: 22px;
    background: url("../images/facebook-post-like.jpg") center / contain no-repeat;
}

.facebook__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.facebook__bar-item {
    position: relative;
    padding-left: 22px;
    font-weight: 700;
    font-size: 10px;
    color: #626770;
}

.facebook__bar-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 20px;
    height: 20px;
}

.facebook__bar-item--likes::before {
    background: url("../images/facebook-like.jpg") center no-repeat;
}

.facebook__bar-item--comments::before {
    background: url("../images/facebook-comment.jpg") center no-repeat;
}

.facebook__bar-item--share::before {
    background: url("../images/facebook-share.jpg") center no-repeat;
}

.facebook__comments {
    margin-top: 15px;
}

.facebook__comments .slick-list {
    height: 820px !important;
    padding: 175px 0px !important;
}

.facebook__comment {
    margin-top: 20px;
    outline: none !important;
}

.facebook__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.facebook__comment-avatar {
    width: 43px;
    height: 43px;
    margin-right: 7px;
    border-radius: 50%;
    overflow: hidden;
}

.facebook__comment-content {
    width: 100%;
    max-width: calc(100% - 43px - 7px);
}

.facebook__comment-text {
    padding: 13px 7px;
    background-color: #e4e6eb;
    border-radius: 20px;
}

.facebook__comment-author {
    font-weight: 700;
    color: #3d5798;
}

.facebook__comment-image {
    margin-top: 5px;
    font-size: 0;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
}

.facebook__bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 5px;
}

.facebook__bottom-item {
    font-weight: 14px;
    color: #5b71a8;
}

.facebook__bottom-item:not(:last-of-type) {
    position: relative;
    padding-right: 7px;
    margin-right: 5px;
}

.facebook__bottom-item:not(:last-of-type)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #626770;
}

.facebook__bottom-item--time {
    color: #626770;
}

.reviews__statistic {
    max-width: 300px;
    margin: -50px auto 0;
    padding-bottom: 70px;
}

.reviews__product {
    position: relative;
    width: 328px;
    margin-left: -100px;
    font-size: 0;
    text-align: center;
    z-index: 2;
}

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

.reviews__wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 495px;
    height: 495px;
    border-radius: 50%;
    background-color: #ffffff;
    z-index: -1;
}

.reviews__wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 568px;
    height: 568px;
    background: url("../images/reviews-statistic-circle.png") center / contain no-repeat;
    z-index: -1;
}

.reviews__subtitle {
    max-width: 190px;
    margin-left: auto;
    margin-top: -130px;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    text-align: right;
}

.reviews__list {
    margin-top: 30px;
}

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

.reviews__item-desc {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

.reviews__item-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews__item-percent {
    position: relative;
    width: 100%;
    max-width: calc(100% - 200px - 15px);
    margin-right: 15px;
    padding-right: 20px;
    font-weight: 700;
    font-size: 20px;
    color: #4d9b64;
}

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

.reviews__progressbar {
    display: block;
    width: 100%;
    max-width: 200px;
    min-height: 20px;
}

.reviews__progressbar--1 {
    background: url("../images/reviews-statistic-progress1.svg") center right / contain no-repeat;
}

.reviews__progressbar--2 {
    background: url("../images/reviews-statistic-progress2.svg") center right / contain no-repeat;
}

.reviews__progressbar--3,
.reviews__progressbar--4 {
    background: url("../images/reviews-statistic-progress3.svg") center right / contain no-repeat;
}

.reviews__progressbar--5 {
    background: url("../images/reviews-statistic-progress4.svg") center right / contain no-repeat;
}

.reviews__decoration .decoration__item--1 {
    max-width: 260px;
    top: 270px;
    right: -170px;
}

.reviews__decoration .decoration__item--2 {
    max-width: 188px;
    bottom: -100px;
    left: -210px;
}


.steps {
    padding: 70px 0;
    background-color: #ffffff;
}

.steps__title {
    font-weight: 900;
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    color: #4e4e4e;
}

.steps__product-name {
    display: block;
    color: #ca2933;
}

.steps__list {
    max-width: 300px;
    margin: 30px auto 0;
}

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

.steps__item:last-of-type {
    margin-top: 100px;
}

.steps__item:not(:last-of-type) {
    position: relative;
    z-index: 1;
}

.steps__item:not(:last-of-type)::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: -40px;
    display: block;
    width: 31px;
    height: 67px;
    background: url("../images/steps-arrow.svg") center / contain no-repeat;
}

.steps__number {
    margin-right: 60px;
    font-weight: 900;
    font-size: 33px;
    text-align: right;
    color: #ca2933;
}

.steps__desc {
    position: relative;
    max-width: 225px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    z-index: 1;
}

.steps__desc::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    z-index: -1;
}

.steps__desc--1 {
    padding-top: 120px;
}

.steps__desc--2 {
    padding-top: 100px;
}

.steps__desc--3 {
    padding-top: 130px;
}

.steps__desc--1::before {
    width: 267px;
    height: 166px;
    background: url("../images/steps-image1.png") center / contain no-repeat;
}

.steps__desc--2::before {
    width: 261px;
    height: 139px;
    background: url("../images/steps-image2.png") center / contain no-repeat;
}

.steps__desc--3::before {
    top: -205px;
    left: 40%;
    width: 493px;
    height: 332px;
    background: url("../images/steps-image3.png") center / contain no-repeat;
}

.steps__decoration .decoration__item--1 {
    top: -90px;
    left: -300px;
    width: 332px;
    height: 332px;
    border-radius: 50%;
    border: 2px solid #ca2933;
    opacity: 0.2;
}

.steps__decoration .decoration__item--2 {
    top: 40%;
    right: -500px;
    width: 348px;
    height: 348px;
    border-radius: 50%;
    border: 2px solid #ca2933;
}

.steps__decoration .decoration__item--3 {
    max-width: 158px;
    left: -390px;
    bottom: 100px;
}



@media (min-width: 992px) {
    .container {
        max-width: 1030px;
    }

    .triangle {
        min-width: 2000px;
    }

    .common {
        position: relative;
    }

    .common-background {
        max-width: 1370px;
        margin: 30px auto 0;
    }

    .common--bottom {
        margin-top: 90px;
        padding: 0;
    }

    .common__container {
        position: relative;
        padding-top: 90px;
        padding-bottom: 100px;
    }

    .common__product-name {
        max-width: 720px;
        font-size: 94px;
    }

    .common__title {
        max-width: 576px;
        font-size: 48px;
    }



    .common__paragraph {
        max-width: 415px;
        margin-top: 30px;
        font-size: 18px;
    }

    .common__wrapper {
        position: absolute;
        bottom: 0;
        right: -80px;
        width: 100%;
        max-width: 476px;
        margin-top: 0;
    }

    .common__wrapper--bottom {
        right: 0;
    }

    .common__wrapper::before {
        top: auto;
        bottom: 0;
        right: -145px;
        width: 661px;
        height: 937px;
        background: url("../images/common-doc1--desktop.png") no-repeat;
    }

    .common__wrapper--bottom::before {
        right: -170px;
        width: 621px;
        height: 908px;
        background: url("../images/common-doc2--desktop.png") no-repeat;
    }

    .common__wrapper::after {
        top: 55%;
        left: 45%;
        width: 570px;
        height: 570px;
    }

    .common__wrapper--bottom::after {
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
    }

    .common__prices {
        width: 202px;
        height: 202px;
        padding: 55px 10px;
        margin-left: 0;
    }

    .common__prices--bottom {
        padding: 35px 10px;
    }

    .common__price-desc {
        font-size: 14px;
    }

    .common__price {
        font-size: 25px;
    }

    .common__price--old::before,
    .common__price--old::after {
        bottom: 15px;
    }

    .common__price--new {
        font-size: 48px;
    }

    .common__product {
        width: 476px;
        margin-top: -170px;
        margin-bottom: -70px;
    }

    .common__product::after {
        right: -170px;
        bottom: 0;
        width: 395px;
        height: 340px;
    }

    .common__product--bottom {
        margin-bottom: -20px;
    }

    .common__order {
        position: relative;
        width: 100%;
        max-width: calc(100% - 476px);
        margin-top: 50px;
        margin-left: 0;
        z-index: 2;
    }

    .common__product-name-background {
        top: auto;
        bottom: 140px;
        left: 40%;
        transform: translateX(-50%);
        font-size: 250px;
    }

    .common__product-name-background::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        width: 920px;
        height: 920px;
        background: radial-gradient(closest-side, #ffffff 0%, transparent 100%);
    }

    .common__decoration .decoration__item--1 {
        top: 0;
        left: -735px;
        width: 599px;
        height: 599px;
    }

    .common__decoration .decoration__item--3 {
        top: 110px;
        left: -450px;
        max-width: 396px;
    }

    .common__decoration .decoration__item--4 {
        top: -30px;
        right: -500px;
        max-width: 286px;
    }

    .order__form {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        max-width: 500px;
        margin-top: 15px;
        margin-left: 0;
    }

    .order__label {
        width: 100%;
        max-width: calc((100% - 10px)/2);
        margin-bottom: 10px;
    }

    .order__label:nth-child(odd) {
        margin-right: 0px;
    }

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

    .order__button {
        max-width: 310px;
        padding: 25px 15px;
        font-size: 22px;
    }

    .main-header__top {
        position: relative;
        justify-content: space-between;
        max-width: 720px;
        padding: 15px 0;
        z-index: 10;
    }

    .main-header__logo {
        width: 100%;
        max-width: 80px;
        margin-right: 30px;
    }

    .main-header__nav {
        margin-left: 0;
        margin-right: 30px;
        width: 100%;
        max-width: calc(100% - 80px - 100px - 60px);
    }

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

    .nav__item {
        padding: 2px 0;
    }

    .nav__item:not(:last-of-type) {
        margin-right: 40px;
    }

    .nav__link {
        display: block;
        position: relative;
        padding: 2px 0;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        color: #6d6d6d;
        outline: none;
        transition: all .3s ease-out;
    }

    .nav__link::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        display: block;
        width: 0;
        height: 3px;
        background-color: rgba(42, 136, 70, 0.8);
        transition: all .3s ease-out;
    }

    .nav__link:hover::after {
        width: 100%;
    }

    .nav__button {
        display: none;
    }

    .main-header__button {
        width: 100%;
        max-width: 100px;
        padding: 7px 10px;
        font-size: 11px;
    }

    .main-header__common {
        padding-bottom: 90px;
    }

    .relief {
        padding: 120px 0 400px;
        background-color: #d6d5cf;
        background: url("../images/relief-bg1--desktop.jpg") top left calc(50% - 470px) no-repeat,
            url("../images/bg-decoration--desktop.png") bottom right calc(50% - 640px) no-repeat,
            #d6d5cf;
    }

    .relief__title {
        position: relative;
        font-size: 46px;
        text-align: center;
        z-index: 3;
    }

    .relief__wrapper {
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-top: 50px;
        z-index: 2;
    }

    .relief__wrapper::after {
        content: "";
        position: absolute;
        top: 85%;
        left: 55%;
        transform: translate(-50%, -50%);
        display: block;
        width: 771px;
        height: 590px;
        background: url("../images/relief-round-arrow.png") center / contain no-repeat;
        z-index: -1;
    }

    .relief__card {
        width: 100%;
        max-width: 420px;
        margin-right: 90px;
    }

    .relief__card::before {
        right: -60px;
        width: 95%;
        height: 115%;
    }

    .relief__card-wrapper {
        /* padding: 35px 70px 35px 25px; */
        padding: 40px 72px 40px 25px;
    }


    .relief__card-image {
        margin-right: -225px;
        margin-bottom: -460px;
        margin-top: -120px;
    }

    .relief__card-image img {
        margin-top: 0;
    }

    .relief__card-text--narrow {
        max-width: 83%;
    }

    .relief__right-column {
        width: 100%;
        max-width: calc(100% - 420px - 90px);
        margin-top: -30px;
    }

    .relief__right-column::before {
        top: 10%;
        left: auto;
        right: 0;
        transform: translate(50%, -50%);
    }

    .relief__product-name {
        max-width: 415px;
        margin-top: 0;
        margin-left: auto;
        font-size: 48px;
        text-align: right;
    }

    .relied__product-desc {
        max-width: 415px;
        margin-left: auto;
        font-size: 24px;
        text-align: right;
    }

    .relief__list {
        max-width: 360px;
        margin-top: 90px;
    }

    .relief__list::before {
        top: 40%;
        left: 43%;
        width: 265px;
        height: 581px;
    }

    .relief__item p {
        padding: 5px 10px;
        font-size: 13px;
    }

    .usage {
        margin-top: -500px;
        padding-top: 500px;
    }

    .usage__triangle {
        height: 500px;
        top: 0;
    }

    .usage__bg {
        padding-top: 1px;
        padding-bottom: 115px;
    }

    .usage__container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: -180px;
    }

    .usage__product-name {
        width: 100%;
        max-width: 430px;
        margin-left: -120px;
        font-size: 105px;
    }

    .usage__product-span {
        margin-top: -15px;
        text-indent: 77px;
    }

    .usage__product {
        position: absolute;
        top: 73%;
        left: 42%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 741px;
        margin-top: 0;
        margin-left: 0;
    }

    .usage__product::before {
        bottom: 170px;
        width: 186px;
        height: 186px;
    }

    .usage__wrapper {
        width: 100%;
        max-width: 365px;
        margin-left: auto;
    }

    .usage__instruction {
        margin-top: 50px;
        font-size: 22px;
    }

    .usage__course {
        max-width: 320px;
        margin-top: 20px;
    }

    .usage__button {
        margin-top: 110px;
    }

    .usage__decoration .decoration__item--1 {
        top: -340px;
        left: -600px;
    }

    .usage__decoration .decoration__item--2 {
        bottom: -200px;
        right: -900px;
        width: 599px;
        height: 599px;
    }


    .expert {
        padding: 75px 0 90px;
        background-color: #f3f5f6;
        background: url("../images/expert-bg2--desktop.png") top left calc(50% - 300px) no-repeat,
            url("../images/expert-bg3--desktop.png") bottom left calc(50% - 360px) no-repeat,
            url("../images/expert-bg1--desktop.jpg") top right / cover no-repeat,
            #f3f5f6;
    }

    .expert__list {
        margin-right: 120px;
    }

    .expert__item--1 {
        margin-left: auto;
        margin-right: 190px;
    }

    .expert__item--2 {
        margin-left: auto;
    }

    .expert__item--3 {
        margin-left: auto;
        margin-right: 120px;
    }

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

    .expert__item-small {
        margin-top: -7px;
        font-size: 18px;
        text-align: right;
        text-shadow: none;
    }

    .expert__item-big {
        font-size: 48px;
        line-height: 1;
    }

    .expert__item-big--1 {
        margin-left: 0;
        margin-right: 50px;
    }

    .expert__item-big--3 {
        margin-left: 0;
        margin-right: 10px;
    }

    .expert__title {
        max-width: 480px;
        margin-top: 60px;
        margin-left: auto;
        font-size: 46px;
        text-align: right;
    }

    .expert__product-name {
        margin-top: 0;
        font-size: 130px;
        line-height: 1;
        text-align: right;
    }

    .expert__wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-top: 50px;
        padding: 0;
    }

    .expert__wrapper::before {
        top: 20px;
        left: 30px;
        right: auto;
        width: 160px;
        height: 117px;
    }

    .expert__image {
        order: 1;
        width: 100%;
        max-width: 449px;
        height: auto;
        margin-top: 0;
        border-radius: 0 20px 20px 0;
    }

    .expert__blockquote {
        width: 100%;
        max-width: calc(100% - 449px);
        padding: 50px 35px 40px 35px;
        line-height: 1.3;
    }

    .expert__paragraph:first-of-type {
        margin-top: 0;
    }

    .expert__info {
        max-width: 450px;
        margin-top: 40px;
    }

    .expert__info::after {
        top: 0;
        right: -40px;
        width: 136px;
        height: 104px;
    }

    .composition {
        padding-bottom: 320px;
    }

    .composition__bg {
        padding: 120px 0 1px;
    }

    .composition__container {
        position: relative;
        margin-bottom: -145px;
    }

    .composition__triangle {
        height: 320px;
    }

    .composition__product-name {
        max-width: 710px;
        margin-left: auto;
        font-size: 93px;
        text-align: right;
    }

    .composition__title {
        max-width: 510px;
        margin-left: auto;
        margin-top: 0;
        font-size: 46px;
        text-align: right;
    }

    .composition__toggles {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 440px;
        margin-top: 80px;
        margin-left: 20px;
    }

    .composition__toggles::before {
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        width: 708px;
        height: 886px;
    }

    .composition__toggle {
        margin-top: 0;
        font-size: 16px;
    }

    .composition__toggle:nth-child(even) {
        margin-top: 0;
    }

    .composition__toggle--1 {
        margin-bottom: 45px;
        margin-left: 35px;
    }

    .composition__toggle--3 {
        margin-top: 45px;
        margin-bottom: 15px;
    }

    .composition__toggle--5 {
        margin-top: 40px;
    }

    .composition__flex {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 50px;
    }

    .composition__wrapper {
        width: 100%;
        max-width: calc(100% - 330px - 50px);
        margin-top: 0;
        margin-left: 50px;
    }

    .composition__arrows {
        top: auto;
        left: auto;
        bottom: 0;
        right: 0;
    }



    .composition__item {
        display: flex !important;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
    }

    .composition__item:not(:first-of-type) {
        display: none;
    }

    .composition__image {
        order: 1;
        width: 198px;
        height: 198px;
        margin-left: 10px;
        margin-top: -25px;
    }

    .composition__heading {
        width: 100%;
        max-width: calc(100% - 199px - 10px);
        margin-top: 0;
        text-align: right;
    }

    .composition__desc {
        width: 100%;
        max-width: calc(100% - 199px - 10px);
        margin-top: 5px;
        text-align: right;
    }

    .composition__attention {
        order: -1;
        width: 100%;
        max-width: 310px;
        margin-top: 130px;
        padding-left: 15px;
    }

    .composition__attention::before {
        top: auto;
        left: 0;
        bottom: -10px;
    }

    .composition__button {
        margin-top: 0;
        margin-right: 203px;
    }

    .composition__decoration .decoration__item--1 {
        top: -20px;
        left: -800px;
        width: 599px;
        height: 599px;
    }

    .composition__decoration .decoration__item--2 {
        top: -500px;
        right: -400px;
        width: 599px;
        height: 599px;
        opacity: 0.2;
    }

    .composition__decoration .decoration__item--3 {
        max-width: 272px;
        right: -500px;
        bottom: -150px;
    }

    .reviews {
        padding-bottom: 90px;
        background: url("../images/reviews-bg--desktop.jpg") top left -130px no-repeat,
            url("../images/bg-decoration--desktop.png") bottom right calc(50% - 640px) no-repeat,
            #f5f5f5;
    }

    .reviews__container::after {
        content: "";
        display: block;
        clear: both;
    }

    .reviews__top-wrapper {
        float: left;
        max-width: calc(100% - 320px - 65px);
    }

    .reviews__intro {
        font-size: 60px;
        line-height: 1.2;
    }

    .reviews__title {
        margin-top: 0;
        font-size: 48px;
    }

    .reviews__arrows {
        width: 77px;
        height: 77px;
        margin-top: 20px;
        margin-left: auto;
    }

    .reviews__arrow-button {
        width: 25px;
        height: 17px;
    }

    .reviews__screen {
        float: right;
        max-width: 320px;
        margin-left: 65px;
        margin-top: 75px;
    }

    .reviews__screen::before {
        top: -43px;
        width: 320px;
        height: 53px;
        background: url("../images/reviews-smartphone-top--desktop.svg") bottom center / 100% auto no-repeat;
    }

    .reviews__screen::after {
        top: -60px;
        width: 360px;
    }

    .reviews__screen-address {
        max-width: 290px;
    }

    .facebook__top-bar {
        min-height: 46px;
        background: url("../images/facebook-bar--desktop.jpg") center no-repeat;
    }

    .facebook__comments {
        margin-top: 20px;
    }

    .facebook__comments .slick-list {
        height: 820px !important;
        padding: 235px 0px !important;
    }

    .facebook__comment:not(:first-of-type) {
        display: none;
    }

    .facebook__comment-text {
        padding: 15px 10px;
        font-size: 17px;
        line-height: 1.2;
    }

    .reviews__statistic {
        position: relative;
        float: right;
        max-width: 340px;
        margin-top: -200px;
        padding-bottom: 0;
        padding-top: 1px;
        margin-right: 90px;
    }

    .reviews__product {
        margin-left: -350px;
        margin-bottom: -310px;
        width: 615px;
    }

    .reviews__wrapper {
        position: static;
        z-index: 2;
    }

    .reviews__wrapper::before {
        top: 75%;
        width: 530px;
        height: 530px;
        z-index: 0;
    }

    .reviews__wrapper::after {
        top: 75%;
        width: 600px;
        height: 609px;
    }

    .reviews__subtitle {
        position: relative;
        margin-top: 0;
        line-height: 1.1;
        z-index: 2;
    }

    .reviews__list {
        position: relative;
        margin-top: 20px;
        z-index: 2;
    }

    .reviews__item-desc {
        text-shadow: 0px 0px 11px #ffffff,
            0px 0px 11px #ffffff;
    }

    .reviews__item-percent {
        max-width: calc(100% - 225px - -20px);
        font-weight: 700;
        font-size: 22px;
    }

    .reviews__item-percent::after {
        width: 14px;
        height: 24px;
    }

    .reviews__progressbar {
        max-width: 225px;
    }

    .reviews__decoration .decoration__item--1 {
        max-width: 396px;
        top: -250px;
        right: -350px;
    }

    .reviews__decoration .decoration__item--2 {
        max-width: 286px;
        bottom: -200px;
    }

    .steps {
        padding: 120px 0;
    }

    .steps__title {
        font-size: 46px;
    }

    .steps__product-name {
        display: inline;
    }

    .steps__list {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 100%;
        margin-top: 100px;
    }

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

    .steps__item:last-of-type {
        margin-top: 0;
    }

    .steps__item:not(:last-of-type) {
        margin-right: 50px;
        z-index: 2;
    }

    .steps__item {
        width: 100%;
        max-width: calc((100% - 100px)/3);
    }

    .steps__item:not(:last-of-type)::after {
        top: 100px;
        right: -67px;
        bottom: auto;
        transform: rotate(-90deg);
        z-index: 3;
    }

    .steps__desc {
        padding-top: 170px;
    }

    .steps__desc::before {
        top: -30px;
    }

    .steps__desc--2,
    .steps__desc--3 {
        max-width: 100%;
    }

    .steps__desc--1::before {
        width: 317px;
        height: 198px;
    }

    .steps__desc--2::before {
        top: -10px;
        width: 286px;
        height: 153px;
    }

    .steps__desc--3::before {
        top: -205px;
        left: 40%;
        width: 531px;
        height: 358px;
    }

    .steps__number--2 {
        margin-right: 120px;
    }

    .steps__decoration .decoration__item--1 {
        top: -250px;
        left: -360px;
        width: 570px;
        height: 570px;
    }

    .steps__decoration .decoration__item--2 {
        top: auto;
        bottom: -150px;
        right: -700px;
        width: 599px;
        height: 599px;
    }

    .steps__decoration .decoration__item--3 {
        max-width: 272px;
        left: -600px;
        bottom: -100px;
    }
}


@media (min-width: 1020px) {
    .expert__blockquote {
        line-height: 1.4;
    }
}

@media (max-width: 991px) {
    .usage__product-name {
        font-size: 32px;
    }
}