*,
:before,
:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Capitalize 'Poppins' */
    font-size: 16px;
    line-height: 1.6;
    /* Adjusted for better readability */
    background: #000;
    color: #fff;
}


.wrapper {
    overflow: hidden;
}

.container {
    width: 970px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timer {
    font-size: 0;
    max-width: 268px;
    margin: 0 auto;
}

.timer__item {
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    position: relative;
}

.timer__item:not(:last-child):after {
    content: ':';
    position: absolute;
    right: 0;
    top: -2px;
    font-size: 35px;
}

.timer__item div {
    font-size: 35px;
    text-align: center;
}

.present {
    padding: 35px 0;
    position: relative;
}

.present:before {
    content: '';
    width: 894px;
    height: 1342px;
    background: url(img/bg-01.jpg) center no-repeat;
    position: absolute;
    top: -50%;
    left: 50%;
    margin: -55px 0 0 -1000px;
    opacity: .7;
}

.container_logo-mod {
    padding: 0 50px 0 110px;
}

.logo {
    font-size: 60px;
    font-weight: 900;
    line-height: 0;
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    -o-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: -22%;
    margin: 10px 0 0 0px;
}

.present__title {
    font-size: 30px;
    font-weight: bold;
    padding: 5px 0 20px;
}

.clr-mod {
    color: #ffba00;
}

.clr-mod_02 {
    color: #d92b2b;
}

.clr-mod_03 {
    color: #000;
}

.present__wrap {
    display: table;
    width: 100%;
}

.present__cell {
    display: table-cell;
    vertical-align: top;
}

.present__text {
    font-size: 19px;
    line-height: 2;
    padding: 0 0 20px;
    width: 75%;
}

.advantage {
    width: 75%;
    font-size: 19px;
    font-weight: bold;
    list-style: none;
    padding: 0 0 30px;
    position: relative;
    z-index: 2;
}

.advantage__item {
    padding: 10px 0 15px 55px;
    position: relative;
}

.advantage__item:before {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid #fdb900;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.advantage__item:after {
    content: '';
    width: 16px;
    height: 10px;
    border: 3px solid transparent;
    border-left: 3px solid #fdb900;
    border-bottom: 3px solid #fdb900;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    margin: 14px 0 0 12px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

button {
    font-size: 23px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 20px;
    background: #ff1e19;
    display: table;
    margin: 0 auto;
    color: #ffffff;
    cursor: pointer;
    letter-spacing: 0px;
    position: relative;
    z-index: 5;
    text-shadow: 0 0 0 #000;
    overflow: hidden;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -ms-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.button__wrap {
    position: relative;
    z-index: 2;
}

button:before {
    content: '';
    width: 98%;
    height: 96%;
    position: absolute;
    top: 2%;
    left: 1%;
    box-shadow: inset 0 0 0 0 #000;
    -webkit-transition: box-shadow .2s;
    -moz-transition: box-shadow .2s;
    -o-transition: box-shadow .2s;
    transition: box-shadow .2s;
    z-index: 1;
}

button:after {
    content: '';
    width: 98%;
    height: 96%;
    position: absolute;
    top: 2%;
    left: 1%;
    background: #ffba00;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transition: transform .3s;
    -moz-transition: transform .3s;
    -ms-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
}

button:hover {
    color: #000;
}

button:hover:before {
    box-shadow: inset 0 0 7px 3px #000;
}

button:hover:after {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.subbutton {
    letter-spacing: 1px;
    margin: 0;
}

.sale {
    min-width: 125px;
    min-height: 125px;
    margin: -50px 30px 0 auto;
    font-size: 29px;
    font-weight: bold;
    text-transform: uppercase;
    background: url(img/sale-bg.png) center no-repeat;
    position: relative;
    z-index: 1;
    display: table;
}

.sale__wrap {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.sale:after {
    content: '';
    width: 260px;
    height: 400px;
    background: url(img/kam-ratan.png) center no-repeat;
    position: absolute;
    top: 65%;
    right: 0;
    margin: -33px -13px 0 0;
}

.sale:before {
    content: '';
    width: 244px;
    height: 400px;
    background: url(img/product-tube-shadow.png) center no-repeat;
    position: absolute;
    top: 100%;
    right: 0;
    margin: -60px 0 0 0;
}

.sale__text {
    display: block;
    font-size: 1.3rem;
    margin-top: 16px;
}

.sale__value {
    font-size: 46px;
    position: relative;
}

/* .sale__value:after {
    content: '%';
    font-size: 29px;
    font-weight: 400;
    line-height: 1.43;
    position: absolute;
    left: 100%;
    top: 0;
    margin: 0 0 0 5px;
} */

.sale_text {
    font-weight: 400;
    font-size: 12px;
}

form {
    width: 265px;
}

.form__wrap {
    background: #ececec;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    line-height: 1.3;
    padding: 20px;
    margin: 20px 0 20px;
    position: relative;
    z-index: 1;
}

.form__title {
    font-size: 20px;
    color: #000;
    padding: 0 0 10px;
    text-align: center;
}

.form__field {
    background: #ffffff;
    margin: 10px 0;
    border: 1px solid #a6a6a6;
    position: relative;
}

.form__field input {
    font-size: 14px;
    padding: 10px;
    width: 100%;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.price {
    padding: 10px 0 0;
}

.price__old {
    font-size: 20px;
    color: #000;
}

.price__old span {
    text-decoration: line-through;
}

.price__new {
    font-size: 30px;
    font-weight: bold;
    color: #a62121;
    padding: 10px 0 0;
}

.statistic {
    padding: 40px 0;
}

.subtitle {
    font-size: 35px;
    font-weight: bold;
    padding: 20px 10px;
    text-align: center;
    line-height: 1.3;
}


.subtitle_l-mod {
    text-align: left;
}

.statistic__photo {
    float: left;
    margin: 0 -90px 0 0;
    position: relative;
}

.statistic__wrap {
    background: #fff;
    padding: 10px 40px 30px;
    color: #000;
    width: 60%;
    margin: 90px 0px 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.statistic__text {
    font-size: 20px;
    line-height: 1.8;
}

.statistic__text:before {
    content: '';
    width: 100px;
    border: 1px solid #e42929;
    display: block;
    margin: 0 0 10px;
}

.promo {
    padding: 40px 0;
    position: relative;
}

.composition {
    padding: 70px 0 120px;
    position: relative;
}

.composition:before {
    content: '';
    width: 848px;
    height: 976px;
    background: url(img/bg-02.jpg) center no-repeat;
    position: absolute;
    bottom: 0;
    left: 120px;
    opacity: .3;
}

.title {
    font-size: 39px;
    text-align: center;
    line-height: 1.3;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.title_p-mod {
    padding: 0 10px;
}

.composition__wrap {
    display: table;
    width: 100%;
    table-layout: fixed;
    padding: 90px 0 50px;
}

.composition__cell {
    display: table-cell;
    vertical-align: top;
    padding: 0 20px 0 10px;
    position: relative;
}

.composition__cell:before {
    content: '';
    width: 146px;
    height: 146px;
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0 0 40px;
}

.composition__item_01:before {
    background: url(img/composition-icon-01.png) center no-repeat;
}

.composition__item_02:before {
    background: url(img/composition-icon-02.png) center no-repeat;
}

.composition__item_03:before {
    background: url(img/composition-icon-01.png) center no-repeat;
}

.composition__title {
    font-weight: bold;
    font-size: 26px;
    line-height: 1.3;
    padding: 20px 0;
    width: 70%;
}

.composition__title:after {
    content: '';
    width: 70px;
    border-top: 1px solid #e42929;
    display: block;
    margin: 10px 0 0;
}

.composition__text {
    line-height: 1.7;
}

.effect {
    padding: 80px 0 90px;
    background: #eeeeee;
    position: relative;
    z-index: 2;
}

.subtitle_w-mod {
    width: 70%;
    margin: 0 auto;
}

.effect__wrap {
    display: table;
    width: 75%;
    padding: 0 15px 0 35px;
    margin: 0 auto;
    table-layout: fixed;
    background: url(img/efeect-scale-bg.png) top center no-repeat;
    height: 465px;
}

.effect__cell {
    display: table-cell;
    vertical-align: bottom;
}

.effect__pict img {
    margin: 0 auto;
}

.effect__data {
    display: table;
    padding: 10px;
    background: #000;
    margin: 45px auto 0;
}

.effect__parameter {
    font-size: 18px;
    font-weight: bold;
}

.effect__parameter:after {
    content: '';
    width: 50px;
    border-top: 1px solid #e42929;
    display: block;
    margin: 15px 0;
}

.effect__parameter:last-child:after {
    display: none;
}

.effect__parameter span {
    display: block;
}

.use {
    padding: 110px 0;
    position: relative;
}

.use:before {
    content: '';
    width: 2000px;
    height: 662px;
    background: url(img/bg-03.jpg) center bottom no-repeat;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin: 0 0 0 -1000px;
}

.use__wrap {
    display: table;
    width: 95%;
    margin: 0 auto;
    table-layout: fixed;
    padding: 70px 0 0;
}

.use__cell {
    display: table-cell;
    vertical-align: top;
    position: relative;
    text-align: center;
    padding: 0 10px;
}

.use__cell:before {
    content: '';
    width: 146px;
    height: 146px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.use__item_01:before {
    background: url(img/use-pict-01.png) center no-repeat;
    background-size: contain;
}

.use__item_02:before {
    background: url(img/use-pict-02.png) center no-repeat;
    background-size: contain;
}

.use__item_03:before {
    background: url(img/use-pict-03.png) center no-repeat;
    background-size: contain;
}

.use__title {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.3;
    padding: 20px 0;
}

.use__title:after {
    content: '';
    width: 70px;
    border-top: 1px solid #e42929;
    display: block;
    margin: 10px auto 0;
}

.use__text {
    line-height: 1.7;
    width: 85%;
    margin: 0 auto;
}

.review {
    padding: 90px 0 70px;
    position: relative;
    z-index: 2;
    background: #fff;
    color: #000;
}

.review:before {
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(img/bg-04.jpg) center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    opacity: .17;
    position: absolute;
}

.user {
    padding: 50px;
    display: table;
    width: 100%;
}

.user:before {
    content: '';
    width: 146px;
    height: 146px;
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0 20px 0 0;
}

.user_01:before {
    background: url(img/user-ava-01.jpg) center no-repeat;
}

.user_02:before {
    background: url(img/user-ava-02.jpg) center no-repeat;
}

.user_03:before {
    background: url(img/user-ava-03.html) center no-repeat;
}

.user__data {
    display: table-cell;
    vertical-align: top;
    padding: 0 0 0 20px;
    border-left: 1px solid #ff0000;
}

.user__info {
    font-size: 24px;
    padding: 0 0 15px;
}

.user__name {
    font-weight: bold;
}

.user__age {}

.review__text {
    line-height: 1.7;
}

.order {
    padding: 55px 0 160px;
    position: relative;
}

.order .timer {
    max-width: 265px;
    margin-top: 20px;
}

.order:before {
    content: '';
    background: url(img/bg-05.jpg) right top no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .4;
}

.order__wrap {
    display: table;
    width: 65%;
    margin: 0 auto;
    direction: rtl;
}

.order__cell {
    display: table-cell;
    vertical-align: top;
    direction: ltr;
}

.sale__order {
    margin: 30px 10px 0 0;
}

.sale__order:before {
    display: none;
}

.sale__order:after {
    display: none;
}

.product__order {
    width: 260px;
}

/* .product__order:after {
        content: '';
        width: 368px;
        height: 504px;
        background: url(img/kam-ratan.png) center no-repeat;
        position: absolute;
        bottom: 0;
        right: 0;
        margin: 0 165px -85px 0;
    } */

.order__btn {
    margin: 0 auto;
}

.effect__arrow {
    width: 100px;
    height: 8px;
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #ff2a00), to(transparent));
    background: -webkit-linear-gradient(right, #ff2a00 50%, transparent);
    background: -moz-linear-gradient(right, #ff2a00 50%, transparent);
    background: -o-linear-gradient(right, #ff2a00 50%, transparent);
    background: linear-gradient(to left, #ff2a00 50%, transparent);
    -webkit-transform: rotate(-12deg);
    -moz-transform: rotate(-12deg);
    -ms-transform: rotate(-12deg);
    -o-transform: rotate(-12deg);
    transform: rotate(-12deg);
    transform-origin: left bottom;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -320px;
}

.effect__arrow:after {
    content: '';
    width: 24px;
    height: 24px;
    border: 6px solid transparent;
    border-bottom-color: red;
    border-right-color: red;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    margin: -8px 0 0 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.glare {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.glare__item {
    width: 1px;
    height: 1px;
    background: rgba(126, 126, 126, .7);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
}

.glare__item_01 {
    top: 0;
    left: 0;
    -webkit-box-shadow: 0 0 280px 180px rgba(126, 126, 126, .7);
    -moz-box-shadow: 0 0 280px 180px rgba(126, 126, 126, .7);
    box-shadow: 0 0 280px 180px rgba(126, 126, 126, .7);
}

.glare__item_02 {
    top: -10%;
    right: 30%;
    -webkit-box-shadow: 0 0 430px 330px rgba(126, 126, 126, .7);
    -moz-box-shadow: 0 0 430px 330px rgba(126, 126, 126, .7);
    box-shadow: 0 0 430px 330px rgba(126, 126, 126, .7);
}

.glare__item_03 {
    top: 60%;
    left: 30%;
    -webkit-box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
    -moz-box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
    box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
    z-index: 1;
}

.glare__item_04 {
    top: 45%;
    left: 45%;
    -webkit-box-shadow: 0 0 480px 380px rgba(126, 126, 126, .7);
    -moz-box-shadow: 0 0 480px 380px rgba(126, 126, 126, .7);
    box-shadow: 0 0 480px 380px rgba(126, 126, 126, .7);
    z-index: 1;
}

.glare__item_05 {
    top: 0;
    left: 55%;
    -webkit-box-shadow: 0 0 530px 430px rgba(126, 126, 126, .7);
    -moz-box-shadow: 0 0 530px 430px rgba(126, 126, 126, .7);
    box-shadow: 0 0 530px 430px rgba(126, 126, 126, .7);
}

.glare__item_06 {
    top: 10%;
    left: 40%;
    -webkit-box-shadow: 0 0 480px 380px rgba(126, 126, 126, .7);
    -moz-box-shadow: 0 0 480px 380px rgba(126, 126, 126, .7);
    box-shadow: 0 0 480px 380px rgba(126, 126, 126, .7);
}

.glare__item_07 {
    top: 25%;
    right: 0;
    -webkit-box-shadow: 0 0 330px 230px rgba(126, 126, 126, .7);
    -moz-box-shadow: 0 0 330px 230px rgba(126, 126, 126, .7);
    box-shadow: 0 0 330px 230px rgba(126, 126, 126, .7);
}

.glare__item_08 {
    bottom: -10%;
    left: 5%;
    -webkit-box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
    -moz-box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
    box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
}

.bx-pager.bx-default-pager {
    text-align: center;
}

.bx-pager-item {
    margin: 0 10px;
    display: inline-block;
    font-size: 0;
}

.bx-pager-link {
    display: block;
    border: 1px solid #000;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
}

.active {
    background: #000;
}

.experts__item {
    position: relative;
    margin-bottom: 100px;
    padding-left: 345px;
    min-height: 230px;
}

.experts__item-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background-image: url(img/retina.png);
    background-position: 0 0;
    width: 310px;
    height: 310px;
}

.experts__item-image {
    position: absolute;
    left: 42px;
    bottom: 2px;
    border: none;
    width: 240px;
}

.experts__item-title {
    position: absolute;
    right: 27px;
    bottom: -50px;
    text-align: right;
}

.experts__item-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fc0326;
}

.experts__item-post {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.experts__item-text {
    position: relative;
    padding: 52px 40px 24px 60px;
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    background-image: url(img/expert1-bg.png);
    background-repeat: no-repeat;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}

.experts__item-text:after,
.experts__item-text:before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: '';
    background-color: #1c98d2;
}

.experts__item-text:before {
    position: absolute;
    left: -23px;
    width: 40px;
    height: 3px;
}

.experts__item-text p {
    margin-bottom: 25px;
}

.experts__item-text p:last-child {
    margin-bottom: 0;
}

.experts__item-text span {
    font-weight: 700;
}

.experts__item:nth-child(even) {
    padding-right: 345px;
    padding-left: 0;
    margin-top: 70px;
}

.experts__item:last-child {
    margin-bottom: 0;
}

.experts__item:nth-child(even) .experts__item-image-wrapper {
    right: 0;
    left: auto;
    bottom: 2px;
}

.experts__item:nth-child(even) .experts__item-image-wrapper {
    background-image: url(img/retina.png);
    background-position: -318px 0;
    width: 310px;
    height: 310px;
}

.experts__item:nth-child(even) .experts__item-image {
    bottom: 4px;
    left: 25px;
}

.experts__item:nth-child(even) .experts__item-title {
    right: auto;
    left: 27px;
    text-align: left;
}

.experts__item:nth-child(even) .experts__item-text {
    background-image: url(img/expert2-bg.png);
}

.experts__item:nth-child(even) .experts__item-text:before {
    right: -40px;
    left: auto;
}

.experts__item:nth-child(even) .experts__item-text:after {
    right: -41px;
    left: auto;
}

.experts__item-text:after {
    left: -25px;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

@media (max-width: 990px) {

    .experts__item-text:before,
    .experts__item-text:after {
        display: none;
    }

    .experts__item {
        margin-bottom: 0;
        padding-left: 0 !important;
        padding-right: 0 !important;
        min-height: auto;
    }

    .experts__item-text {
        background-color: #1c98d2;
        padding: 15px;
    }

    .experts__item .experts__item-image-wrapper {
        width: 170px !important;
        top: -170px;
        bottom: inherit;
    }

    .experts__item:nth-child(even) .experts__item-image-wrapper {
        bottom: inherit;
        right: 0;
        top: -250px;
    }

    .experts__item-image {
        left: 12px;
    }

    .experts__item:nth-child(even) .experts__item-image {
        left: 0;
    }

    .experts__item .experts__item-title {
        top: 70px;
        width: 110px;
        right: -140px;
        text-align: left;
    }

    .experts__item:nth-child(even) .experts__item-title {
        right: auto;
        top: 140px;
        left: -130px;
    }

    .experts__item {
        margin-top: 256px !important;
    }

    .experts__item-image {
        bottom: 92px;
    }

    .container {
        width: 768px;
        padding: 0 10px;
    }

    .present:before {
        margin: 230px 0 0 -447px;
    }

    .present__text {
        width: 65%;
    }

    .logo {
        position: relative;
        top: 0;
        left: 0;
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
        margin: 0;
        line-height: 1;
        text-align: center;
    }

    .present__wrap {
        display: block;
    }

    .present__cell {
        display: block;
    }

    /*.present__title:before {*/
    /*    content: '';*/
    /*    width: 140px;*/
    /*    height: 100px;*/
    /*    display: block;*/
    /*    float: right;*/
    /*}*/
    .sale {
        position: absolute;
        top: 75px;
        right: 0;
    }

    .subbutton {
        margin: 0 auto 10px;
    }

    form {
        margin: 20px auto;
    }

    .statistic__photo {
        float: none;
        margin: 0 auto;
        display: table;
    }

    .statistic__wrap {
        margin: -35px auto 0;
    }

    .effect__wrap {
        width: 100%;
    }

    .composition {
        padding: 35px 0 60px;
    }

    .composition__wrap {
        padding: 90px 20px 50px;
    }

    .composition__title {
        font-size: 22px;
    }

    .effect {
        padding: 35px 0 45px;
    }

    .use {
        padding: 45px 0;
    }

    .use:before {
        -webkit-background-size: 60%;
        background-size: 60%;
    }

    .use__wrap {
        width: 100%;
        padding: 35px 0 0;
    }

    .use__title {
        font-size: 24px;
    }

    .product__order:after {
        margin: 0 0 -50px 0;
    }

    .sale__order {
        position: absolute;
        top: 100px;
        right: 50%;
        margin: 40px -170px 0 0;
    }

    .subtitle {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .present:before {
        margin: 70px 0 0 -447px;
        background-size: 65%;
    }

    .container {
        width: auto;
        padding: 0 10px;
    }

    .container_logo-mod {
        padding: 0 15px;
    }

    .logo {
        font-size: 60px;
        margin-top: -25px;
    }

    .title {
        font-size: 26px;
    }

    .sale {
        font-size: 25px;
        margin-right: 5px;
    }

    .sale__value {
        font-size: 46px;
    }

    .sale__value:after {
        font-size: 19px;
        margin: 0;
    }

    .sale_text {
        font-size: 12px;
        margin-left: -5px;
    }

    .present__text {
        position: relative;
        z-index: 2;
        width: 65%;
        line-height: 1.43;
    }

    .advantage {
        width: 65%;
    }

    .present__title {
        font-size: 16px;
    }

    .present__title:before {
        width: 105px;
        height: 60px;
    }

    .sale:before {
        margin: -45px -15px 0 0;
    }

    .sale:after {
        margin: -55px 0 0 0;
        background-position: right center;
    }

    .statistic {
        padding: 15px 0;
    }

    .statistic__wrap {
        width: 75%;
    }

    .composition:before {
        background-position: top center;
        background-size: 60%;
        bottom: auto;
        top: 0;
        left: 50%;
        margin: 0 0 0 -424px;
    }

    .composition:after {
        content: '';
        width: 900px;
        height: 900px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        background: -webkit-radial-gradient(circle, transparent 50%, #000 60%);
        background: -moz-radial-gradient(circle, transparent 50%, #000 60%);
        background: -o-radial-gradient(circle, transparent 50%, #000 60%);
        background: radial-gradient(circle, transparent 50%, #000 60%);
        position: absolute;
        top: 0;
        left: 50%;
        margin: -260px 0 0 -450px;
    }

    .composition__wrap {
        padding: 20px 0;
    }

    .composition__cell {
        display: block;
        padding: 15px 30px 15px 0;
    }

    .composition__cell:before {
        margin: 0;
        float: right;
    }

    .effect__wrap {
        padding: 0;
    }

    .effect__cell_mob {
        display: none;
    }

    .effect__parameter {
        font-size: 16px;
    }

    .use__cell {
        display: block;
    }

    .user {
        padding: 30px 0 10px;
        display: block;
    }

    .user:before {
        float: left;
        width: 60px;
        height: 60px;
        background-size: 100%;
        margin: 0 10px 0 0;
    }

    .user__data {
        display: block;
        border: none;
        padding: 0;
    }

    .user__info {
        font-size: 16px;
        padding: 0 0 10px;
    }

    .review {
        padding: 30px 0;
    }

    .review__text {
        line-height: 1.43;
    }

    .order {
        padding: 60px 0 40px;
    }

    .order__wrap {
        width: 70%;
        padding: 0 15px;
    }

    .sale__order {
        margin: 20px -195px 0 0;
    }

    .product__order:after {
        background: url(img/KAMA.png) center no-repeat;
        margin: 0 -40px 0 0;
    }

    .subtitle_w-mod {
        width: 90%;
    }

    .clr-mod_02 {
        display: block;
    }

    .glare__item_01 {
        -webkit-box-shadow: 0 0 180px 80px rgba(126, 126, 126, .7);
        -moz-box-shadow: 0 0 180px 80px rgba(126, 126, 126, .7);
        box-shadow: 0 0 180px 80px rgba(126, 126, 126, .7);
    }

    .glare__item_02 {
        -webkit-box-shadow: 0 0 330px 230px rgba(126, 126, 126, .7);
        -moz-box-shadow: 0 0 330px 230px rgba(126, 126, 126, .7);
        box-shadow: 0 0 330px 230px rgba(126, 126, 126, .7);
    }

    .glare__item_03 {
        -webkit-box-shadow: 0 0 280px 180px rgba(126, 126, 126, .7);
        -moz-box-shadow: 0 0 280px 180px rgba(126, 126, 126, .7);
        box-shadow: 0 0 280px 180px rgba(126, 126, 126, .7);
        z-index: 1;
    }

    .glare__item_04 {
        -webkit-box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
        -moz-box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
        box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
        z-index: 1;
    }

    .glare__item_05 {
        top: 0;
        left: 55%;
        -webkit-box-shadow: 0 0 430px 330px rgba(126, 126, 126, .7);
        -moz-box-shadow: 0 0 430px 330px rgba(126, 126, 126, .7);
        box-shadow: 0 0 430px 330px rgba(126, 126, 126, .7);
    }

    .glare__item_06 {
        -webkit-box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
        -moz-box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
        box-shadow: 0 0 380px 280px rgba(126, 126, 126, .7);
    }

    .glare__item_07 {
        -webkit-box-shadow: 0 0 230px 130px rgba(126, 126, 126, .7);
        -moz-box-shadow: 0 0 230px 130px rgba(126, 126, 126, .7);
        box-shadow: 0 0 230px 130px rgba(126, 126, 126, .7);
    }

    .glare__item_08 {
        -webkit-box-shadow: 0 0 280px 180px rgba(126, 126, 126, .7);
        -moz-box-shadow: 0 0 280px 180px rgba(126, 126, 126, .7);
        box-shadow: 0 0 280px 180px rgba(126, 126, 126, .7);
    }

    .use__cell {
        -webkit-transition: opacity .2s;
        -moz-transition: opacity .2s;
        -ms-transition: opacity .2s;
        -o-transition: opacity .2s;
        transition: opacity .2s;
    }


}

@media (max-width: 479px) {
    .effect__wrap {
        padding: 0 30px;
        width: 300px;
        background: url(img/efeect-scale-mob-bg.png) top center no-repeat;
        height: 310px;
    }

    .effect__pict img {
        width: 50px;
    }

    .effect__pict_mod img {
        width: 65px;
    }

    .effect__data {
        margin: 20px auto 0;
    }

    .sale {
        right: -15px;
        top: 165px;
    }

    .sale:before {
        margin: -30px -25px 0 0;
        background-size: 50%;
    }

    .sale:after {
        margin: -30px 0px 0 0;
        background-size: 75%;
        background-position: center;
    }

    .present__title:before {
        width: 85px;
    }

    .advantage,
    .present__text {
        width: calc(100% - 136px);
    }

    .present__text {
        font-size: 16px;
        line-height: 1.2;
    }

    .advantage {
        font-size: 16px;
    }

    button {
        padding: 12px 20px;
        font-size: 18px;
    }

    .statistic__wrap {
        width: 90%;
        padding: 0 10px 25px;
    }

    .statistic__text {
        line-height: 1.3;
        font-size: 16px;
        width: 80%;
    }

    .promo {
        padding: 30px 0;
    }

    .title {
        font-size: 20px;
        text-align: left;
    }

    .title_mob {
        text-align: center;
    }

    .composition__cell:before {
        width: 60px;
        height: 60px;
        background-size: 100%;
    }

    .composition__title {
        padding: 5px 0 15px;
    }

    .composition__text span {
        display: none;
    }

    .title_order-mob {
        font-size: 20px;
        width: 55%;
        margin: 0px 10px 0px 10px;
        padding: 0 5px 0px;
    }

    .sale__order {
        right: 0;
        top: -60px;
        margin: 0;
    }

    .product__order:after {
        margin-top: 0px;
        margin-right: -90px;
        margin-bottom: -60px;
        margin-left: 0px;
        background-size: 30%;
        bottom: 39%;
    }

    .order:before {
        background-position: center top;
        -webkit-background-size: auto 70%;
        background-size: auto 70%;
    }

    .order__wrap,
    .order__cell {
        display: block;
        width: auto;
        margin-top: 0px;
    }

    .order__btn {
        margin: 0 auto;
    }

    .effect__arrow {
        width: 100px;
        height: 8px;
        background: -webkit-gradient(linear, right top, left top, color-stop(50%, #ff2a00), to(transparent));
        background: -webkit-linear-gradient(right, #ff2a00 50%, transparent);
        background: -moz-linear-gradient(right, #ff2a00 50%, transparent);
        background: -o-linear-gradient(right, #ff2a00 50%, transparent);
        background: linear-gradient(to left, #ff2a00 50%, transparent);
        -webkit-transform: rotate(-20deg);
        -moz-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        -o-transform: rotate(-20deg);
        transform: rotate(-20deg);
        transform-origin: left bottom;
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -25px 0 0 -160px;
    }

    .effect__arrow:after {
        content: '';
        width: 24px;
        height: 24px;
        border: 6px solid transparent;
        border-bottom-color: red;
        border-right-color: red;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        margin: -8px 0 0 0;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }


}

.ac_footer {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 50px 0;
    color: #A12000;
}

.ac_footer p {
    text-align: center;
}

.text-blink {
    text-decoration: none;
    color: red;
    font-weight: bold;
    animation: textBlink 0.2s infinite;
}

@keyframes textBlink {
    0% {
        color: white;
    }

    39% {
        color: white;
    }

    40% {
        color: yellow;
    }

    70% {
        color: yellow;
    }

    71% {
        color: white;
    }

    100% {
        color: white;
    }
}

.img-kama {
    object-fit: contain;
    width: 100%;
    height: auto;
    display: block;
}


.KAMA {
    width: 100%;
    margin-bottom: 35px;
}