@font-face {
    font-family: 'Nunito';
    src: url("../fonts/Nunito/Nunito-Bold.woff") format('woff'),
    url("../fonts/Nunito/Nunito-Bold.woff2") format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url("../fonts/Nunito/Nunito-Black.woff") format('woff'),
    url("../fonts/Nunito/Nunito-Black.woff2") format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url("../fonts/Nunito/Nunito-Regular.woff") format('woff'),
    url("../fonts/Nunito/Nunito-Regular.woff2") format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url("../fonts/Nunito/Nunito-Light.woff") format('woff'),
    url("../fonts/Nunito/Nunito-Light.woff2") format('woff2');
    font-weight: 200;
    font-style: normal;
}

:root {
    --violet: #c69ad6;
    --coldGreen: #608a7e;
    --darkGreen: #385a50;
    --caral: #a23c59;
}

body {
    background-color: #fff;
}

* {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.1;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

div {
    width: 100%;
}

input,
select,
label,
button {
    display: block;
    width: 100%;
}

input,
select,
button {
    padding: 25px;
    border-radius: 30px;
}

select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
}


.select {
    position: relative;
}

.select:before {
    content: "";
    display: block;
    background: url("../img/sort-down-solid.svg") no-repeat center;
    position: absolute;
    right: 15px;
    bottom: 5px;
    top: 0;
    margin: auto;
    z-index: 2;
    width: 30px;
    height: 26px;
    text-align: center;
    cursor: pointer;
}

.wrapper {
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
}

.container {
    width: 100%;
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

header,
.footer {
    background: url("../img/order-bg.png") no-repeat center;
    background-size: cover;
    padding: 75px 0 260px;
}

.footer {
    padding-bottom: 30px;
}

footer {
    padding-bottom: 30px;
}

.order {
    justify-content: space-between;
    position: relative;
}

.order-left {
    flex: 0 0 590px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.titleBlock {
    margin-bottom: 55px;
}

.order-title {
    font-size: 110px;
    font-weight: 900;
    color: var(--violet);
    line-height: 100px;
}

.order-subTitle {
    font-size: 44px;
    font-weight: 700;
    color: var(--coldGreen);
}

.order-info {
    flex: 0 0 325px;
    max-width: 100%;
}

.order-list {
    margin-bottom: 40px;
}

.orderList-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.orderList-img {
    display: block;
    max-width: 35px;
    margin-right: 20px;
}

.orderList-text {
    font-size: 24px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .orderList-text {
        flex: 1 0 0%;
    }
}

.text-black {
    font-weight: 900;
}

.order-prices {
    font-weight: 900;
}

.newPrice {
    color: var(--violet);
}

.newPrices-text {
    font-size: 24px;
}

.newPrices-price {
    font-size: 69px;
    display: block;
}

.oldPrice {
    font-size: 18px;
    color: var(--coldGreen);
    text-decoration: line-through;
}

.order-right {
    flex: 1 0 355px;
    max-width: 385px;
    margin-left: 15px;
}

.formBlock {
    padding: 15px 0 35px;
    background: linear-gradient(90deg, #a7e4d2, #c2eee1, #a7e4d2);
    border: 1px solid #8abfaf;
    border-radius: 20px;
    flex: 1 0 300px;
    max-width: 385px;
}

.formBlock-title,
.formBlock-sale {
    text-align: center;
    font-weight: 900;
    color: var(--coldGreen);
}

.formBlock-title {
    font-size: 30px;
}

.formBlock-sale {
    font-size: 36px;
    background-color: #f0d22b;
    padding: 15px 0;
    line-height: 24px;
    margin-top: 15px;
}

.formBlock-sale__small {
    font-size: 24px;
}

.order-form {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 300px;
    max-width: 300px;
    margin: 15px auto 0;
}

.form-label,
.label-text {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--coldGreen);
}

select, input {
    border: 1px solid #73ab9b;
}

.order-btn {
    margin: 20px auto 0;
    font-size: 23px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    background-image: repeating-linear-gradient(45deg, var(--violet) 0px, var(--violet) 5px, #b68cc6 5px, #b68cc6 7px);
    border: none;
    max-width: 320px;
    width: 100%;
}

.order-product {
    max-width: 260px;
    width: 100%;
    position: absolute;
    left: -5px;
    bottom: -20px;
}

.product-img {
    display: block;
    width: 100%;
    max-width: 320px;
    position: relative;
    z-index: 2;
}

.order-product:before,
.order-product:after {
    content: '';
    display: block;
    position: absolute;
}

.order-product:before {
    background: url("../img/product_before.png") no-repeat center;
    width: 285px;
    height: 202px;
    bottom: 115px;
    right: 60px;
    z-index: 1;
}

.order-product:after {
    background: url("../img/product_after.png") no-repeat center;
    width: 200px;
    height: 202px;
    bottom: -20px;
    right: -10px;
    z-index: 3;
}

.effects {
    padding-bottom: 30px;
    background: url("../img/effects-bg.png") no-repeat 0% 0%;
    background-size: 10%;
}

.effects-title {
    text-align: right;
    width: 100%;
    color: var(--coldGreen);
    font-weight: 700;
    font-size: 60px;
    margin: -110px 0 75px;
}

.effects-title_black {
    font-weight: 900;
    display: block;
    color: var(--darkGreen);
}

.effects-texts {
    padding: 0 35px 0;
}

.effects-texts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
}

.effects-text {
    display: block;
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 20px;
}

.effects-text_left {
    flex: 1 0 365px;
    max-width: 365px;
}

.effects-text_right {
    flex: 1 0 515px;
    max-width: 515px;
}

.text-darkGreen {
    color: var(--darkGreen);
    font-weight: 900;
}

.effects-imgBlock {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 20px;
    padding-bottom: 100px;
}

.img {
    display: block;
    width: 100%;
}

.effects-img {
    display: block;
    width: 100%;
    flex: 1 0 60px;
    margin: 0 10px;
}

.effects-img1 {
    max-width: 345px;
    position: relative;
}

.effects-img1:before {
    content: 'кераноциты';
    display: block;
    background: url("../img/effects-before.png") no-repeat 100% 0%;
    background-size: 13px;
    max-width: 200px;
    width: 100%;
    min-height: 95px;
    font-size: 24px;
    position: absolute;
    top: -75px;
    left: 0;
}

.effects-img2 {
    max-width: 190px;
    height: 90%;
}

.effects-img3 {
    max-width: 345px;
    position: relative;
}

.effects-img1:after,
.effects-img3:after {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: var(--coldGreen);
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: -60px;
}

.effects-img1:after {
    content: 'здоровая кожа';
}

.effects-img3:after {
    content: 'кожа при псориазе';
}

.imgMiddle {
    display: flex;
    flex-wrap: wrap;
}

.imgMiddle-item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #24313c;
    font-size: 20px;
}

.imgMiddle-item1 {
    border-radius: 20px 20px 0 0;
    background-color: #a4ddc2;
}

.imgMiddle-item2 {
    background-color: #e7fbf3;
}

.imgMiddle-item3 {
    background-color: #cdfbe6;
}

.imgMiddle-item4 {
    border-radius: 0 0 20px 20px;
    background-color: #a4ddc2;
}

.effects-footer {
    font-size: 24px;
    text-align: center;
    color: var(--caral);
    font-weight: 900;
    text-transform: uppercase;
    display: block;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
}

.exac {
    background-color: #f7f7f7;
    padding: 170px 0 90px;
    position: relative;
    overflow-x: hidden;
}

.exac:before {
    content: '';
    display: block;
    width: 100%;
    background: url("../img/exac-before.png") no-repeat 0 0;
    height: 157px;
    background-size: 100%;
    position: absolute;
    top: 0;
}

.exac-title {
    font-size: 70px;
    font-weight: 300;
    width: 100%;
    line-height: 1;
    margin-bottom: 50px;
}

.ixac-img {
    max-width: 39px;
    width: 100%;
    margin-right: 30px;
}

.exacList-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.exac-text {
    font-size: 24px;
}

.exac .container {
    z-index: 2;
}

.exac-hand {
    position: absolute;
    bottom: 0;
    left: 0;
    right: -500px;
    margin: auto;
    max-width: 600px;
    width: 100%;
    z-index: 1;
}

.mistakes {
    padding: 170px 0 70px;
    background: url("../img/mistakes-bg.png") no-repeat center;
    background-size: cover;
}

.mistake-title {
    font-size: 57px;
    font-weight: 300;
    text-align: right;
    width: 100%;
    margin-bottom: 150px;
}

.mistake-title_big {
    color: var(--darkGreen);
    font-weight: 900;
    font-size: 96px;
    display: block;
    text-transform: uppercase;
}

.mistakes-list {
    background: linear-gradient(to right, #e0fcf3, #c2ffec);
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 -15px;
    flex-wrap: wrap;
    width: 100%;
}

.mistakes-list:before {
    content: '';
    display: block;
    position: absolute;
    top: -103px;
    right: 0;
    max-width: 227px;
    width: 100%;
    height: 110px;
    background: url("../img/list-before.png") no-repeat;
    background-size: 100%;
}

.mistakesList-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 280px;
    flex: 1 0 188px;
    width: 100%;
    margin: 0 15px;
}

.mistakes-img {
    max-width: 174px;
    display: block;
    margin-bottom: 35px;
}

.mistakesItem-title {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
    color: var(--caral);
    font-size: 24px;
    font-weight: 900;
}

.mistakesItem-text {
    font-size: 18px;
    text-align: center;
    max-width: 100%;
}

.tired {
    padding: 15px 0 350px;
    background: url("../img/tired-woman.png") no-repeat 50% 100%;
    background-size: 2000px;
    position: relative;
    z-index: 1;
}

.tired-title {
    color: var(--caral);
    font-size: 96px;
    font-weight: 900;
}

.tired-title,
.tired-subTitle {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    display: block;
}

.tired-subTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 70px;
}

.tiredLists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tiredList-left,
.tiredList-right {
    flex: 1 0 50%;
    max-width: 50%;
    width: 100%;
}

.tiredList-item {
    margin-bottom: 80px;
}

.tiredList-item_right {
    text-align: right;
}

.tiredList-item1 {
    font-weight: 900;
    font-size: 18px;
}

.tiredList-item2 {
    font-size: 24px;
    text-align: center;
    margin-right: 130px;
}

.tiredList-item3 {
    font-size: 30px;
    font-weight: 900;
}

.tiredList-item4 {
    font-size: 18px;
    text-align: center;
    margin-right: 130px;
}

.tiredList-item5 {
    font-size: 30px;
    font-weight: 900;
}

.tiredList-item6 {
    font-size: 30px;
    font-weight: 900;
}

.tiredList-item7 {
    font-size: 18px;
}

.tiredList-item8 {
    font-size: 24px;
    font-weight: 900;
}

.tiredList-item9 {
    font-size: 18px
}

.tiredList-item10 {
    font-size: 30px;
    color: var(--caral);
    font-weight: 900;
}

.order2 {
    background: url("../img/order2-bg.png") no-repeat 50% 0%;
    background-size: cover;
    padding: 315px 0 35px;
    margin-top: -400px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.order2-left {
    max-width: 680px;
    flex: 1 0 300px;
}

.order2-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--darkGreen);
    margin-bottom: 50px;
}

.order2-subTitle {
    display: block;
    font-size: 30px;
    text-transform: uppercase;
    color: var(--darkGreen);
    margin-bottom: 35px;
}

.order2-list {
    margin-bottom: 45px;
}

.order2List-item {
    display: flex;
    align-items: center;
}

.order2List-img {
    margin-right: 35px;
}

.order2List-text {
    font-size: 20px;
}

.text_black {
    font-weight: 900;
}

.prder2-text {
    font-size: 22px;
    margin-bottom: 40px;
}

.order2-right {
    max-width: 320px;
    flex: 1 0 320px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    position: relative;
    padding-bottom: 40px;
}

.order2-right .order-product {
    top: -25px;
    max-width: 100%;
}

.order2-right .order-product:before,
.order2-right .order-product:after {
    bottom: 0;
    top: 0;
    margin: auto;
}

.order2-right .order-product:before {
    background: url("../img/product2_before.png");
    width: 462px;
    height: 196px;
    top: -200px;
    left: -70px;
}

.order2-right .order-product:after {
    background: url("../img/product2_after.png");
    width: 212px;
    height: 232px;
    bottom: -180px;
    right: -30px;
}

.multi {
    background-color: var(--violet);
    padding: 70px 0 100px;
    position: relative;
}

.multi:before,
.multi:after {
    content: '';
    display: block;
    position: absolute;
    top: -30px;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 2;
}

.multi:before {
    background: url("../img/multi-before.png");
    width: 155px;
    height: 179px;
    left: 100px;
}

.multi:after {
    background: url("../img/multi-after.png");
    width: 144px;
    height: 376px;
    right: 0;
    top: -200px;
}

.multi-title {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    max-width: 810px;
    width: 100%;
    display: block;
    margin: 0 auto 60px;
}

.multi-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.milti-imgs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex: 1 0 340px;
    max-width: 690px;
}

.multi-list {
    display: block;
    max-width: 250px;
    flex: 0 1 250px;
}

.multiList-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.multi-img {
    max-width: 150px;
    display: block;
    width: 100%;
    margin: 10px;
}

.multiList-text {
    font-size: 24px;
    font-weight: 900;
    text-align: right;
    color: #fff;
}

.multiList-check {
    max-width: 29px;
    display: block;
    width: 100%;
    margin-left: 15px;
}

.plus {
    padding: 80px 0 200px;
    position: relative;
    background: url("../img/plus-bg.png") no-repeat 50% 100%;
    background-size: 2000px;
    z-index: 2;
}

.plus:before {
    content: '';
    display: block;
    background: url("../img/plus-before.png") no-repeat center;
    width: 237px;
    height: 253px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.plus-title {
    color: var(--violet);
    font-weight: 900;
    font-size: 60px;
    text-align: center;
    margin-bottom: 65px;
    width: 100%;
}

.plus-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 180px 0 370px;
}

.plus-item {
    max-width: 190px;
    flex: 1 0 190px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.plusItem-title {
    text-align: center;
    font-size: 31px;
    font-weight: 900;
    width: 100%;
    height: 215px;
    padding: 50px 10px 0;
    border-radius: 30px;
    position: relative;
}

.plus-item > .plusItem-title:before {
    content: '';
    position: absolute;
    display: block;
    bottom: -50px;
    left: 0;
    right: 0;
    margin: auto;
    background-size: 100%;
    z-index: 2;
}

.plus-item:nth-child(1) > .plusItem-title:before {
    background: url("../img/plus-img1.png") no-repeat center;
    height: 147px;
    width: 206px;
    left: -10px;
}

.plus-item:nth-child(2) > .plusItem-title:before {
    background: url("../img/plus-img2.png") no-repeat center;
    height: 141px;
    width: 154px;
}

.plus-item:nth-child(3) > .plusItem-title:before {
    background: url("../img/plus-img3.png") no-repeat center;
    height: 166px;
    width: 165px;
}

.plus-item:nth-child(4) > .plusItem-title:before {
    background: url("../img/plus-img4.png") no-repeat center;
    height: 134px;
    width: 205px;
    left: -10px;
}

.plus-item:nth-child(5) > .plusItem-title:before {
    background: url("../img/plus-img5.png") no-repeat center;
    height: 146px;
    width: 157px;
    right: -20px;
}

.plus-item:nth-child(odd) > .plusItem-title {
    background-color: #f0d22b
}

.plus-item:nth-child(even) > .plusItem-title {
    background-color: #a4ddc2;
}

.plusItem-text {
    display: block;
    font-size: 17px;
    max-width: 200px;
    flex: 1 0 190px;
    position: absolute;
    left: 0;
    text-align: center;
    height: initial;
    padding: 80px 0 0;
    align-self: flex-start;
    margin-top: 200px;
}

.plus-item:nth-child(even) > .plusItem-text {
    margin-bottom: 215px;
    align-self: flex-end;
    padding: 0 0 20px;
}

.plusItem-title_small {
    font-size: 24px;
}

.weeks {
    background-color: #fafafa;
    background-size: 100%;
    padding: 300px 0 30px;
    position: relative;
    z-index: 1;
    margin-top: -295px;
    overflow-x: hidden;
}


.weeks-title,
.weeks-subTitle,
.weekList-title,
.weekList-text {
    display: block;
    width: 100%;
    text-align: center;
}

.weeks-title {
    font-size: 60px;
    font-weight: 900;
    color: var(--darkGreen);
}

.weeks-subTitle {
    font-size: 36px;
    margin-bottom: 60px;
}

.weeks-list {
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
}

.weekList-item {
    max-width: 212px;
    flex: 1 0 200px;
    position: relative;
}

.weekList-item:before {
    content: '';
    display: block;
    position: absolute;
    background: url("../img/weeks-arrow.png") no-repeat center;
    width: 27px;
    height: 39px;
    bottom: 0;
    top: -260px;
    right: -30px;
    margin: auto;
}

.weekList-item:last-child:before {
    display: none;
}

.weeks-img {
    display: block;
    max-width: 208px;
    margin: 0 auto 40px;
    position: relative;
}

.weekList-title {
    color: var(--violet);
    font-size: 24px;
    font-weight: 900;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 20px;
}

.weekList-title:before {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background-color: #9dfbde;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.weekList-text {
    font-size: 20px;
    padding: 5px;
}

.weeks-footer {
    margin-top: 30px;
    padding-left: 25px;
}

.alarm {
    position: relative;
    border: 1px solid #dddddd;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background: url("../img/alarm-bg.png") no-repeat center;
    background-size: cover;
}

.alarm:before {
    content: '';
    display: block;
    background: url("../img/alarm-before.png") no-repeat center;
    width: 55px;
    height: 49px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -28px;
    margin: auto;
}

.alarm-left {
    margin-right: 15px;
    max-width: 210px;
}

.alarm-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.alarm-right {
    max-width: 610px;
    flex: 1 0 auto;
}

.alarm-red {
    color: #ea1111;
}

.spec {
    padding: 80px 0;
    background: url("../img/spec-bg.png") no-repeat center;
    background-size: cover;
}

.spec .container {
    justify-content: flex-end;
    align-items: center;
}

.spec-main {
    max-width: 715px;
    flex: 1 0 300px;
}

.spec-title {
    font-weight: 900;
    font-size: 48px;
    color: var(--darkGreen);
    margin-bottom: 50px;
}

.spec-text {
    display: block;
    font-size: 24px;
    margin-bottom: 25px;
}

.spec-name,
.spec-prof {
    font-size: 24px;
}

.specFooter-right_mob {
    display: flex;
    justify-content: space-between;
}

.spec-sign {
    width: 100%;
    display: block;
}

.specFooter-right {
    max-width: 166px;
    margin-left: 10px;
}

.specFooter-left_mob {
    display: none;
}

.specDoc {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -150px;
    margin: auto;
    max-width: 421px;
    width: 100%;
    max-height: 421px;
    height: 100%;
}

.comment {
    padding: 65px 0 130px;
    position: relative;
    background: url("../img/comment-bg.png") no-repeat 50% 100%;
    background-size: 2000px;
}

.comment-title {
    font-size: 60px;
    font-weight: 900;
    color: var(--violet);
    text-align: center;
    width: 100%;
    margin-bottom: 65px;
}

.comment-block {
    background-color: #dcfff4;
    border-radius: 30px;
    padding-bottom: 55px;
    position: relative;
}

.commentBlock-title {
    background-color: #385a50;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 25px 0 30px 25px;
    margin-bottom: 45px;
    color: #fff;
    border-radius: 30px 30px 0 0;
}

.commentBlock-main {
    max-width: 820px;
    display: flex;
    flex-wrap: wrap;
    flex: 1 0 320px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.comment-avatar {
    display: block;
    max-width: 220px;
    width: 100%;
    margin-right: 10px;
}

.comment-text {
    font-size: 20px;
    display: block;
    flex: 1 0 300px;
}

.comment-dots {
    max-width: 100%;
    width: 100%;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
}

.slick-dots li {
    width: 19px;
    height: 19px;
    margin: 0 11px;
    border-radius: 50%;
    border: 2px solid #385a50;
}

.slick-dots .slick-active {
    background-color: #385a50;
}

.slick-dots {
    bottom: 20px;
}

.slick-dots li.slick-active button:before {
    content: '';
}

.comment-arrows {
    display: flex;
    justify-content: space-between;
    max-width: 950px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;

}

.svg-inline--fa {
    width: 30px;
}

.svg-inline--fa path {
    fill: #385a50;
}

.slick-prev {
    left: 35px;
    z-index: 2;
}

.slick-next {
    right: 35px;
    z-index: 2;
}

.slick-prev:before,
.slick-next:before {
    content: '';
}

.fake {
    background-color: #fafafa;
    padding-top: 300px;
    margin-top: -300px;
    padding-bottom: 65px;
}

.fake-block {
    align-items: center;
    justify-content: space-between;
}

.fake-left {
    max-width: 570px;
    flex: 1 0 290px;
    margin-right: 10px;
}

.fake-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--darkGreen);
    margin-bottom: 55px;
}

.fake-text {
    font-size: 24px;
}

.fake-text_pink {
    text-transform: uppercase;
    color: var(--violet);
}

.fake-right {
    background: url("../img/product-fake-before.png") no-repeat center;
    background-size: 100%;
    max-width: 415px;
}

.product_fake {
    display: block;
    width: 100%;
    max-width: 170px;
    margin: 0 auto;
}

footer {
    padding-top: 20px;
    text-align: center;
}

a {
    color: var(--darkGreen);
}

/*
//
//
//
//
 */
@media screen and (max-width: 1350px) {

    .multi:before,
    .multi:after,
    .plus:before,
    .specDoc {
        display: none;
    }

    .specFooter-left_mob {
        display: block;
    }

    .spec-footer {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .specFooter-left_mob {
        max-width: 200px;
        flex: 1 0 200px;
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .specFooter-right_mob {
        flex-wrap: wrap;
        max-width: 500px;
        flex: 1 0 300px;
    }

    .spec-doc_mob {
        display: block;
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
    header {
        padding: 25px 0;
    }

    .titleBlock {
        margin-bottom: 30px;
    }

    .order .order-product {
        position: static;
        margin: 10px 0;
        flex: 1 0 100px;
        max-width: 160px;
    }

    .order-left {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .formBlock {
        margin: 0 auto;
    }

    .titleBlock {
        text-align: center;
    }

    .order-title {
        font-size: 80px;
    }

    .order-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-product:after,
    .order-product:before {
        display: none;
    }

    .effects-title {
        text-align: center;
        margin-bottom: 30px;
    }

    .effects-texts {
        justify-content: center;
    }

    .effects-text {
        max-width: 60%;
    }

    .effects-img1:before {
        max-width: 175px;
    }

    .effects-img1:after, .effects-img3:after {
        font-size: 24px;
    }

    .exac-hand {
        max-width: 500px;
    }

    .tired:before {
        content: '';
        position: absolute;
        display: block;
        width: 100%;
        top: 0;
        bottom: -1px;
        left: 0;
        right: 0;
        margin: auto;
        background: linear-gradient(rgba(255, 255, 255, 0.8), #fff);
    }

    .tired {
        padding-bottom: 10px;
        background-position: 50% 60%;
    }

    .tiredList-right,
    .tiredList-left {
        margin: 0 10px;
        flex: 1 0 40%;
        max-width: 40%;
    }

    .tiredList-item {
        margin-bottom: 30px;
    }

    .order2 {
        background-position: 15% 50%;
        padding-top: 95px;
        margin-top: 0;
    }

    .order2-left {
        margin: 0 auto;
    }

    .order2-right {
        max-width: 100%;
        flex: 1 0 100%;
        margin: 15px 0;
    }

    .order2-right .order-product {
        max-width: 100%;
        position: relative;
        display: flex;
        justify-content: center;
    }

    .order2-right .order-product:after {
        bottom: -420px;
        left: 130px;
    }

    .order2-right .order-product:before {
        top: 0;
        left: 61px;
    }

    .multi {
        padding: 30px 0;
    }

    .multi-main {
        justify-content: center;
    }

    .multi-title {
        margin-bottom: 20px;
        text-align: left;
    }

    .milti-imgs {
        max-width: 100%;
        flex: 1 0 100%;
        justify-content: center;
    }

    .multi-list {
        max-width: 240px;
        flex: 1 0 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .multiList-item {
        justify-content: flex-start;
        max-width: 240px;
    }

    .multiList-check {
        order: 1;
        margin-right: 15px;
        margin-left: 0;
    }

    .multiList-text {
        order: 2;
    }

    .plus {
        padding: 30px 0 130px;
    }

    .plus-title {
        margin-bottom: 20px;
    }

    .plus-items {
        align-items: flex-start;
        justify-content: center;
        padding: 0;
        max-width: 830px;
        margin: 0 auto;
    }

    .plus-item {
        margin: 10px;
    }

    .plusItem-text,
    .plus-item:nth-child(even) > .plusItem-text {
        position: relative;
        margin-top: 55px;
        margin-bottom: 10px;
        padding-top: 0;
    }

    @-moz-document url-prefix() {
        .plus-item:nth-child(even) > .plusItem-text {
            margin-bottom: 0;
        }
    }


    .weeks {
        padding: 300px 0 30px;
    }

    .weeks-subTitle {
        margin-bottom: 30px;
    }

    .weeks-list {
        max-width: 600px;
        flex: 1 0 300px;
        margin: 0 auto;
    }

    .weekList-item {
        margin: 10px;
    }

    .weekList-item:before {
        display: none;
    }

    .commentBlock-main {
        padding: 0 40px;
    }

    .comment-arrows {
        display: none;
    }

    .fake {
        padding-bottom: 20px;
    }

    .fake-title {
        text-align: center;
    }

    .fake-left {
        margin: 0 auto;
    }

    .fake-right {
        display: none;
    }

    .footerOrder {
        padding-bottom: 175px;
    }

    .effects-title {
        margin-top: 20px;
    }

}

@media screen and (max-width: 768px) {
    .order {
        justify-content: center;
    }

    .order-left {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .order-right {
        max-width: 385px;
        flex: 1 0 300px;
        margin: 0;
    }

    .effects {
        background: none;
    }

    .effects-text {
        max-width: 85%;
    }

    .effects-img1:before {
        font-size: 18px;
        max-width: 125px;
        min-height: 70px;
        top: -45px;
    }

    .imgMiddle-item {
        font-size: 16px;
    }

    .exac-hand {
        max-width: 390px;
    }

    .exac {
        padding: 50px 0 20px;
    }

    .mistake-title {
        margin-bottom: 20px;
    }

    .mistakes-list:before {
        display: none;
    }

    .mistakes-img,
    .mistakesItem-title {
        margin-bottom: 15px;
    }

    .mistakesList-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0 0 30px;
    }

    .mistakes-list {
        margin: 0;
        padding: 50px 20px 20px;
    }

    .tired-title {
        font-size: 70px;
    }

    .tired-subTitle {
        margin-bottom: 30px;
    }

    .tiredLists {
        align-items: center;
    }

    .order2-right .order-product:after,
    .order2-right .order-product:before {
        display: none;
    }

    .milti-imgs {
        max-width: 500px;
        flex: 1 0 500px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .weeks:before {
        display: none;
    }

    .comment {
        padding-bottom: 10px;
    }

    .commentBlock-main {
        padding: 0 15px;
    }

    .comment-avatar {
        margin: 0 auto 20px;
    }

    .comment-text {
        max-width: 100%;
        flex: 1 0 100%;
    }

    .comment-arrows {
        bottom: 0;
        top: initial;
    }

    .placehold {
        display: none;
    }

    .footer {
        padding-top: 20px;
    }

    .footer-texts {
        margin: 0 auto;
    }

    .weekList-item {
        margin-bottom: 20px;
    }

    .weeks-img {
        margin-bottom: 15px;
    }

    .weekList-title {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

}

@media screen and (max-width: 576px) {
    .order-title {
        font-size: 65px;
        line-height: 1;
    }

    .orderList-img {
        max-width: 20px;
        margin-right: 10px;
    }

    .order-info {
        flex: 0 0 190px;
    }

    .order .order-product {
        max-width: 145px;
    }

    .orderList-text {
        font-size: 18px;
    }

    .newPrices-price {
        font-size: 45px;
    }

    .oldPrice {
        font-size: 16px;
    }

    label, button {
        width: 95%;
        margin: 10px auto;
    }

    .effects-imgBlock {
        margin: 0 -10px;
        padding-bottom: 60px;
    }

    .imgMiddle-item {
        font-size: 12px;
    }

    .effects-title {
        font-size: 34px;
        margin-bottom: 15px;
        text-align: left;
    }

    .effects-footer {
        text-align: left;
    }

    .effects-texts {
        padding: 0 10px;
    }

    .effects-text {
        max-width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .effects-img1:before {
        width: 90%;
        font-size: 10px;
        top: -25px;
        min-height: 40px;
        background-size: 8px;
    }

    .effects-img1:after, .effects-img3:after {
        font-size: 16px;
        bottom: -40px;
    }

    .exac-title {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .exac-hand {
        display: none;
    }

    .mistakes {
        padding: 30px 0;
    }

    .mistake-title {
        text-align: left;
    }

    .mistake-title_big {
        font-size: 60px;
    }

    .tired-title {
        font-size: 45px;
    }

    .tiredList-item1,
    .tiredList-item2,
    .tiredList-item3,
    .tiredList-item4,
    .tiredList-item5,
    .tiredList-item6,
    .tiredList-item7,
    .tiredList-item8,
    .tiredList-item9,
    .tiredList-item10 {
        font-size: 16px;
        text-align: center;
        margin: 0 0 20px;
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    }

    .order2 {
        padding-bottom: 10px;
    }

    .order2-title {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .milti-imgs {
        flex: 1 0 300px;
    }

    .plus {
        background: none;
        padding: 30px 0;
    }

    .weeks {
        margin-top: 0;
        padding: 30px 0;
    }

    .weeks-title,
    .weeks-subTitle {
        text-align: left;
        margin-bottom: 15px;
    }

    .plus-title {
        font-size: 30px;
        text-align: left;
    }

    .spec {
        padding: 30px 0;
    }

    .spec-title {
        margin-bottom: 20px;
        font-size: 40px;
    }

    .fake-title {
        font-size: 38px;
        margin-bottom: 15px;
        text-align: left;
    }

}