@import url('header.css');

.blockRedLine3103 {
    display: none !important;
}

/*general*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body {
    font-family: "Inter", sans-serif;
    background: rgba(12, 22, 10, 1);
}

button {
    outline: none;
    border: none;
    padding: 0;
}

/*button*/
.intro__btn {
    font-family: "Inter", sans-serif;
    text-align: center;
    background: rgba(36, 255, 0, 1);
    outline: 8px solid rgba(36, 255, 0, 0.3);
    padding: 10px 38px;
    border-radius: 32px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-decoration: none;
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 25.2px;
    color: rgba(12, 22, 10, 1);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.intro__btn:hover {
    background: linear-gradient(87.98deg, #24FF00 -2.04%, #00FFD1 98.29%);
    outline: 14px solid rgba(36, 255, 0, 0.3);
    cursor: pointer;
}

.intro__btn:focus {
    background: linear-gradient(87.98deg, #1CC900 -2.04%, #00D8E6 98.29%);
    outline: 14px solid rgba(36, 255, 0, 0.3)
}

/*button*/
/*general*/
h1 {
    font-family: "Oswald", sans-serif;
    position: relative;
    z-index: 10;
    white-space: nowrap;
    font-size: 160.83px;
    font-weight: 800;
    line-height: 160.83px;
    letter-spacing: -0.02em;
    text-align: center;
    text-transform: uppercase;
    color: white;
    -webkit-text-stroke: 5px black;
    text-shadow:
        -1px -1px 0px white, 1px -1px 0px white, -1px 1px 0px white, 1px 1px 0px white,
        -3px -3px 0px white, 3px -3px 0px white, -3px 3px 0px white, 3px 3px 0px white,
        3px 3px 0px black;
}



h2 {
    font-size: 37.87px;
    font-weight: 700;
    line-height: 53.02px;
    color: rgba(255, 255, 255, 1);
}

h3 {
    font-size: 80px;
    font-weight: 700;
    line-height: 80px;
    color: rgba(254, 62, 1, 1);
}

h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    color: rgba(27, 73, 57, 1);
}

h5 {
    font-size: 58px;
    font-weight: 700;
    line-height: 63.8px;
    text-align: center;
    color: rgba(36, 107, 29, 1);
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
}

.container {
    margin: 0px auto;
    max-width: 1402px;
}

main {
    overflow: hidden;
}

/*BLOCK1*/
.block-1 {
    background: radial-gradient(44.19% 44.19% at 35.3% 55.81%, rgba(36, 255, 0, .5) 0%, rgba(255, 255, 255, 0) 66%), url(../images/block-1_back.png) no-repeat center, rgba(12, 22, 10, 1);
    padding: 133px 0px 84px;
    position: relative;
}

.block-1 .block-1__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.block-1__left {
    position: relative;
    margin-top: -130px;
}

.block-1__right {
    max-width: 550px;
}

.block-1 .product {
    z-index: 1;
    position: relative;
}

.block-1_abs1 {
    position: absolute;
    top: 30%;
    right: -13%;
}

.block-1_abs3 {
    position: absolute;
    bottom: 14%;
    left: -11%;
    z-index: 2;
}

.block-1_abs2 {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 100%;
    border: 10px solid rgba(184, 184, 184, 1);
    background: url(../images/block-1-1.png) no-repeat center;
    overflow: hidden;
    /* Prevents parts of images from overflowing the container */
}

.fade-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.block-1_abs2 img:nth-child(1) {
    -webkit-animation: fade 10s infinite;
    animation: fade 10s infinite;
}

.block-1_abs2 img:nth-child(2) {
    -webkit-animation: fade 30s infinite 10s;
    animation: fade 30s infinite 10s;
}

.block-1_abs2 img:nth-child(3) {
    -webkit-animation: fade 30s infinite 20s;
    animation: fade 30s infinite 20s;
}

@-webkit-keyframes fade {

    0%,
    100% {
        opacity: 0;
    }

    10%,
    30% {
        opacity: 1;
    }
}

@keyframes fade {

    0%,
    100% {
        opacity: 0;
    }

    10%,
    30% {
        opacity: 1;
    }
}

.block-1 h2 {
    margin: 50px 0px 30px;
}

.intro__item {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.intro__item p {
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    font-weight: 400;
    line-height: 33.6px;
    margin-left: 20px;
}

/*
form*/
.price {
    position: absolute;
    z-index: 2;
    bottom: 120px;
    right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
    background: linear-gradient(194.73deg, #3FAA83 6.49%, #194435 87.28%);
    width: 210px;
    height: 210px;
}

.al-cost {
    color: rgba(255, 255, 255, 1);
    font-size: 73px;
    font-weight: 700;
    line-height: 1.1;
}

.al-cost-promo {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.1;
    color: rgba(255, 255, 255, .7);
    text-decoration: line-through;
}

.block-1__form {
    background: linear-gradient(77.52deg, #194435 2.63%, #3FAA83 95.41%);
    border-radius: 20px;
    padding: 30px 58px;
    max-width: 434px;
    margin: 25px auto 0px;
    width: 100%;
    position: relative;
}

.block-1__form .text {
    font-weight: 600;
    line-height: 26px;
    margin-top: 24px;
}

.form__wrap {
    position: relative;
    margin-bottom: 15px;
}

.form__input {
    font-family: "Inter", sans-serif;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 43px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 1);
    border-radius: 29px;
    color: rgba(27, 73, 57, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    border: 2px solid white;
}

input::-webkit-input-placeholder {
    font-family: "Inter", sans-serif;
    color: rgba(144, 141, 141, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
}

input::-moz-placeholder {
    font-family: "Inter", sans-serif;
    color: rgba(144, 141, 141, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
}

input:-ms-input-placeholder {
    font-family: "Inter", sans-serif;
    color: rgba(144, 141, 141, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
}

input::-ms-input-placeholder {
    font-family: "Inter", sans-serif;
    color: rgba(144, 141, 141, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
}

input::placeholder {
    font-family: "Inter", sans-serif;
    color: rgba(144, 141, 141, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
}

input:focus {
    border: 2px solid rgba(36, 255, 0, 1);
    outline: none;
}

form .intro__btn {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.intro__btn .ico_btn {
    margin-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

form .intro__btn .ico_btn:before {
    content: "";
    height: 3px;
    width: 0px;
    border-radius: 3px;
    background: rgba(12, 22, 10, 1);
    margin-right: -2px;
    -webkit-transition: width 0.5s ease;
    transition: width 0.5s ease;
}

form .intro__btn:hover .ico_btn:before {
    width: 60px;
}

.form__input.success {
    background: url(../images/success.svg) no-repeat center right 16px, rgba(255, 255, 255, 1);
    border: 2px solid rgba(36, 255, 0, 1)
}

.form__input.error {
    background: url(../images/error.svg) no-repeat center right 16px, rgba(255, 255, 255, 1);
    border: 2px solid rgba(36, 255, 0, 1)
}

.form__input.error~span {
    display: block;
}


.form__input.error~label {
    opacity: 1;
}

.al-form .form__input.error+.form__error {
    display: block;
    width: 100%;
    height: 100%;
    color: #FF0000;
    font-size: 11px;
    line-height: 5px;
    position: absolute;
    left: 15px;
    text-align: start;
}

.form__error {
    color: #f42222;
    display: block;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}


.form__labels {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.form__label:not(:last-of-type) {
    margin-right: 8px
}

.offer-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/*form*/
/*BLOCK1*/
/*BLOCK-2*/
.block-2 {
    padding: 130px 0px;
    background: url(../images/block-2_back1.png) no-repeat bottom left, url(../images/block-2_back2.png) no-repeat top right, rgba(228, 217, 210, 1);
}

.block-2 .container {
    max-width: 1362px;
}

.block-2 h4 {
    margin: 30px 0px 20px;
    max-width: 860px;
}

.flex_block-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 30px -15px 0px;
}

.flex_block-2 .item {
    width: calc(33.3% - 30px);
    margin: 15px;
    background: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0px 4px 13px 0px rgba(54, 91, 17, 0.1);
    box-shadow: 0px 4px 13px 0px rgba(54, 91, 17, 0.1);
    border-radius: 20px;
}

.flex_block-2 .item div {
    padding: 20px 20px 30px;
    text-align: center;
}

.flex_block-2 .item img {
    width: 100%;
    border-radius: 20px 20px 0px 0px;
}

.flex_block-2 .item .item__title {
    color: rgba(27, 73, 57, 1);
    font-weight: 700;
    margin-bottom: 6px;
}

.flex_block-2 .item .item__text {
    font-size: 16px;
    color: rgba(27, 73, 57, 1);
}

/*BLOCK-2*/
/*BLOCK-3*/
.block-3 {
    background: url(../images/block-3_back.png) no-repeat center / cover, rgba(54, 0, 0, 1);
    padding: 130px 0px 140px;

}

.block-3 .container {
    max-width: 1500px;
}

.block-3 h3 {
    text-align: center;
    margin: auto;
    max-width: 800px;
}

.block-3 h4 {
    max-width: 900px;
    margin: 30px auto 75px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

.flex_block-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: linear-gradient(77.52deg, #661818 2.63%, #B63434 95.41%);
    border-radius: 20px;
    -webkit-box-shadow: 0px 4px 13px 0px rgba(54, 91, 17, 0.1);
    box-shadow: 0px 4px 13px 0px rgba(54, 91, 17, 0.1);
    padding: 60px 50px;
}

.flex_block-3 .item {
    width: calc(25% - 30px);
    margin: 0px 15px;
}

.flex_block-3 .item__title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    margin: 10px 0px 15px;
}

.flex_block-3 .item__text {
    color: rgba(255, 255, 255, 1);
}

/*BLOCK-3*/
/*BLOCK-4*/
.block-4 {
    padding: 130px 0px;
    background: rgba(212, 224, 211, 1);
}

.block-4 .container {
    max-width: 1366px;
}

.block-4__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.block-4 h3 {
    color: rgba(36, 107, 29, 1);
}

.block-4 p {
    color: rgba(21, 45, 55, 1);
    font-size: 24px;
    line-height: 33.6px;
    margin-top: 30px;
}

.block-4 p span {
    font-weight: 700;
    color: rgba(27, 73, 57, 1);
}

.block-4__left {
    max-width: 780px;
}

.block-4__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-top: -220px;
}

.block-4__right:after {
    content: "";
    background: linear-gradient(89.53deg, rgba(96, 96, 96, 0.4) -2.7%, rgba(96, 96, 96, 0.3) 60%, rgba(235, 235, 235, 0) 100%);
    width: 630px;
    height: 40px;
    border-radius: 100%;
    position: absolute;
    bottom: 10px;
    left: 10%;
    -webkit-filter: blur(8px);
    filter: blur(8px);
}

.flex_block-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -15px;
}

.flex_block-4 .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    width: calc(25% - 30px);
    margin: 0px 15px;
}

.flex_block-4 .item div {
    margin-left: 20px;
}

.flex_block-4 .item__title {
    font-size: 80px;
    font-weight: 700;
    line-height: 80px;
    color: rgba(36, 107, 29, 1);
    margin: 0px;
}

.flex_block-4 .item__text {
    color: rgba(27, 73, 57, 1);
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    margin: 0;
}

.flex_block-4 .item img {
    margin-top: 20px;
}

.block-4 p {
    margin: 0px 0px 40px;
}

/*BLOCK-4*/
/*BLOCK-5*/
.block-5 {
    padding: 211px 0px 130px;
}

.block-5 .container {
    max-width: 1366px;
}

.block-5__main {
    max-width: 1188px;
    background: linear-gradient(77.52deg, #194435 2.63%, #3FAA83 95.41%);
    border-radius: 18px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
}

.block-5__left {
    max-width: 666px;
    padding: 30px 0px 40px 116px;
}

.block-5__right {
    margin-right: -300px;
    margin-left: 35px;
    margin-top: -170px;
}

.block-5__right img {
    margin-bottom: -3px;
}

.block-5__left p {
    color: white;
    margin-top: 10px;
}

.block-5__left .name {
    margin-top: 10px;
    color: rgba(254, 173, 1, 1);
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    color: rgba(254, 173, 1, 1);
    text-align: end;
}

.block-5__left .dop_name {
    margin-top: 0;
    font-style: italic;
    text-align: end;
}

/*BLOCK-5*/
/*BLOCK-6*/
.block-6 {
    padding: 0px 0px 130px;
}

.block-6__main {
    max-width: 1362px;
    margin: auto;
    background: rgba(212, 224, 211, 1);
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.block-6 h4 {
    color: rgba(12, 22, 10, 1);
}

.block-6__right {
    padding: 0px 90px;
    max-width: 690px;
}

.block-6 h4 span {
    color: rgba(36, 107, 29, 1);
}

.block-6 p {
    color: rgba(12, 22, 10, 1);
    margin-top: 30px;
}

.block-6 p span {
    font-weight: 700;
    color: rgba(254, 62, 1, 1);
}

.block-6__left {
    margin-left: 40px;
    margin-top: -90px;
    margin-bottom: -42px;
}

.back_5_6 {
    background: radial-gradient(44.19% 44.19% at 85.3% 35.81%, rgba(36, 255, 0, .3) 0%, rgba(255, 255, 255, 0) 66%), radial-gradient(44.19% 44.19% at 25.3% 70.81%, rgba(36, 255, 0, .3) 0%, rgba(255, 255, 255, 0) 66%), radial-gradient(44.19% 44.19% at 25.3% 50.81%, rgba(0, 255, 255, .4) 0%, rgba(255, 255, 255, 0) 66%);
}

/*BLOCK-6*/
/*BLOCK-8*/
.block-8 {
    position: relative;
    z-index: 10;
    background: radial-gradient(50.19% 50.19% at 78.3% 25.81%, rgba(36, 255, 0, .4) 0%, rgba(255, 255, 255, 0) 66%), radial-gradient(60.19% 60.19% at 35.3% 60.81%, rgba(0, 255, 255, .6) 0%, rgba(255, 255, 255, 0) 66%), rgba(27, 73, 57, 1);
}

.block-8_abs {
    position: absolute;
    left: 0;
    bottom: -380px;
}

.block-8 .container {
    position: relative;
    z-index: 11;
    padding: 130px 0px;
    max-width: 1920px;
    background: url(../images/product-5.png) no-repeat top 150px right 160px, url(../images/product-6.png) no-repeat left bottom -100px, url(../images/block-6_back2.png) no-repeat bottom right 50px;
}

.block-8__main {
    text-align: center;
}

h6 {
    color: white;
    font-family: 'Oswald';
    font-size: 102.34px;
    font-weight: 700;
    line-height: 102.34px;
    text-align: center;
}

video {
    border-radius: 20px;
    margin: 40px auto 0px;
    width: 100%;
    max-width: 907px;
}

.block-8 h1 {
    font-size: 141.12px;
    font-weight: 500;
    line-height: 141.12px;
    letter-spacing: -0.02em;
}

#block-11 {
    padding-bottom: 0px;
}

/*BLOCK-8*/
/*BLOCK-10*/
.block-7 {
    background: rgba(212, 224, 211, 1);
    padding: 130px 0px 220px;
    position: relative;
}

.block-7_abs {
    position: absolute;
    bottom: 20px;
    font-family: 'Oswald';
    font-size: 453.98px;
    font-weight: 500;
    line-height: 453.98px;
    letter-spacing: -0.02em;
    text-align: center;
    text-transform: uppercase;
    left: 50%;
    opacity: .3;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: rgba(255, 255, 255, 0.2);
    -webkit-text-stroke: 10px rgba(212, 224, 211, 1);
    text-shadow: -4px -4px 0px white, 4px -4px 0px white, -4px 4px 0px white, 4px 4px 0px white, -12px -12px 0px white, 12px -12px 0px white, -12px 12px 0px white, 12px 12px 0px white, 12px 12px 0px black;
}

.block-7 .container {
    max-width: 1490px;
}

.block-7 .intro__btn {
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: rgba(254, 173, 1, 1);
    outline: 8px solid rgba(254, 173, 1, 0.3);
    padding: 10px 80px;
}

.block-7 .intro__btn:hover {
    background: -webkit-gradient(linear, left top, right top, from(#FEAD01), to(#FEE501));
    background: linear-gradient(90deg, #FEAD01 0%, #FEE501 100%);
    outline: 14px solid rgba(254, 173, 1, 0.3)
}

.block-7 .intro__btn:focus {
    background: -webkit-gradient(linear, left top, right top, from(#F96800), to(#F5A200));
    background: linear-gradient(90deg, #F96800 0%, #F5A200 100%);
}

.block-7 h3 {
    text-align: center;
}

.slider {
    margin: 40px auto 40px;
    max-width: 1362px;
}

.slider-1 {
    background: rgba(255, 255, 255, 1);
    border-radius: 20px;
    -webkit-box-shadow: 0px 4px 13px 0px rgba(54, 91, 17, 0.1);
    box-shadow: 0px 4px 13px 0px rgba(54, 91, 17, 0.1);
    padding: 30px;
}

.one-block-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slider-1 div {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.one-block-slider .name {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    color: rgba(27, 73, 57, 1);
}

.one-block-slider .time {
    color: rgba(27, 73, 57, 1);
    font-size: 14px;
    font-weight: 300;
    line-height: 19.6px;
    margin: 2px 0px 10px;
}

.comment-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.comment-name div {
    margin-left: 15px;
}

.comment-text p {
    margin: 30px 0px 0px;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    color: rgba(27, 73, 57, 1);
}

.custom-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.rev-slider {
    position: relative;
}

.paginate {
    border: none;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
}

.paginate.right {
    right: 0;
    background: rgba(254, 173, 1, 1);
    width: 44px;
    height: 44px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.paginate.right svg path {
    fill: white;
}

.paginate.left {
    left: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 3px solid rgba(21, 45, 55, 1);
    width: 44px;
    height: 44px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slick-slide {
    margin: 0 15px;
    max-width: 434px !important;
}

.popUp {
    background: rgba(0, 0, 0, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    display: none;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.popUp_main {
    background: linear-gradient(77.27deg, #194435 2.63%, #16845D 98.69%);
    border-radius: 20px;
    max-width: 1130px;
    position: relative;
}

.popUp_main p {
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    text-align: center;
    color: white;
    margin-left: 40px;

}

.flex_popup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 63px 105px;
}

.close {
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
}

#popup.show {
    opacity: 1;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/*BLOCK-10*/
.floating__block {
    display: none;
    position: fixed;
    width: 100%;
    margin: 0 auto;
    bottom: 100%;
    left: 0;
    right: 0;
    text-align: center;
    padding: 12px;
    z-index: 111;
    pointer-events: all;
    background: rgba(27, 73, 57, 0.6);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.floating__block .intro__btn {
    max-width: 360px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.floating__block.active {
    bottom: 0;
}

@media (max-width: 1920px) {
    .block-8 .container {
        max-width: 1700px;
        background: url(../images/product-5.png) no-repeat top 170px right 60px, url(../images/product-6.png) no-repeat left -90px bottom -100px, url(../images/block-6_back2.png) no-repeat bottom right;
    }

}

@media (max-width: 1700px) {
    .block-8 .container {
        max-width: 1550px;
        background: url(../images/product-5.png) no-repeat top 160px right -10px, url(../images/product-6.png) no-repeat left -160px bottom -100px, url(../images/block-6_back2.png) no-repeat bottom right -100px;
    }

    .block-8_abs {
        left: -100px;
    }
}

@media (max-width: 1550px) {
    .block-8 .container {
        max-width: 1450px;
        background: url(../images/product-5.png) no-repeat top 160px right -50px, url(../images/product-6.png) no-repeat left -200px bottom -100px, url(../images/block-6_back2.png) no-repeat bottom right -120px;
    }

    .block-3 .container {
        padding: 0px 20px;
    }

    .slider {
        max-width: 1200px;
    }

    .block-7 .container {
        padding: 0px 40px;
    }
}

@media (max-width: 1400px) {
    .block-6 .container {
        padding: 0px 20px
    }

    .block-1 {
        background: radial-gradient(44.19% 44.19% at 45.3% 40.81%, rgba(36, 255, 0, .5) 0%, rgba(255, 255, 255, 0) 66%), url(../images/block-1_back.png) no-repeat center, rgba(12, 22, 10, 1);
    }

    #block-11 {
        padding-bottom: 20px;
    }

    .block-1 .block-1__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .block-1__left {
        max-width: 720px;
    }

    .block-1 h2 {
        margin-top: -50px;
    }

    .block-1__right {
        max-width: 500px;
    }

    .block-1__form {
        max-width: 100%;
        margin-top: 50px;
    }

    .block-1__left {
        margin-top: -90px;
    }

    h1 {
        white-space: normal;
    }

    .block-2 .container {
        padding: 0px 20px;
    }

    .block-4 .container {
        padding: 0px 20px;
    }

    .block-5 .container {
        padding: 0px 20px;
    }

    .block-5__right {
        margin-left: 0px;
        margin-right: -250px;
        margin-top: -160px;
    }

    .block-7 .container {
        padding: 0px 20px;
    }
}

@media (max-width: 1350px) {
    .block-5__left {
        padding: 30px 0px 40px 50px;
        max-width: 550px;
    }

    .block-5__main {
        margin: auto;
    }

    .block-6__right {
        padding: 0px 50px;
    }

    .block-7 .container {
        padding: 0px 10px;
    }
}

@media (max-width: 1300px) {
    .slider {
        padding: 0px 40px;
    }

    .block-7 .container {
        padding: 0px 20px;
    }
}

@media (max-width: 1200px) {
    .flex_block-3 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .flex_block-3 .item {
        width: calc(50% - 30px);
        margin: 15px;
    }

    .flex_block-4 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .flex_block-4 .item {
        width: calc(50% - 30px);
        margin: 15px;
    }

    .block-6__left {
        margin-left: 0px;
    }

    .block-5__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .block-5__left {
        max-width: 100%;
        padding: 30px 50px;
    }

    .block-5__right {
        margin: 0;
    }

    .slider {
        padding-right: 0px;
    }

    .block-7 .container {
        padding-right: 0px;
    }

    .paginate {
        top: -100px;
    }

    .paginate.right {
        right: 20px;
    }

    .block-8 .container {
        background: url(../images/product-5.png) no-repeat top 160px right -100px, url(../images/product-6.png) no-repeat left -250px bottom -100px, url(../images/block-6_back2.png) no-repeat bottom right -120px;
    }

    .popUp {
        padding: 0px 20px;
    }

    .flex_popup {
        padding: 60px;
    }

    .popUp_main p {
        font-size: 26px;
        line-height: 1.2;
        margin-left: 20px;
    }
}

@media (max-width: 1024px) {
    .flex_block-2 .item {
        width: calc(50% - 30px);
        margin: 15px;
    }

    .block-4__right {
        margin-right: 50px;
        margin-top: 0px;
    }

    .block-4__right img {
        width: 300px;
    }

    .flex_block-3 {
        padding: 20px;
    }

    .block-4__main {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: end;
    }

    h3 {
        font-size: 60px;
        line-height: 1;
    }

    .block-5__right img {
        max-width: 500px;
    }

    .block-6__left {
        margin-left: -100px;
    }

    .block-6__right {
        padding: 40px 20px;
    }

    .block-6 p {
        margin-top: 10px;
    }

    .block-8 .container {
        padding: 130px 20px;
        background: none;
    }
}

.mob {
    display: none;
}

.mob_block8 {
    display: none;
}

@media (max-width: 768px) {
    .floating__block {
        display: block;
    }

    h1 {
        font-size: 71.8px;
        line-height: 71.8px;
        letter-spacing: 0;
        -webkit-text-stroke: 3px rgba(12, 22, 10, 1);
        text-shadow: -0.67px -0.67px 0px white, 0.67px -0.67px 0px white, -0.67px 0.67px 0px white, 0.67px 0.67px 0px white, -2px -2px 0px white, 2px -2px 0px white, -2px 2px 0px white, 2px 2px 0px white, 2px 2px 0px black;
    }

    h2 {
        font-size: 24px;
        line-height: 28.8px;
    }

    h3 {
        font-size: 32px;
        line-height: 38.4px;
    }

    h4 {
        font-size: 24px;
        line-height: 28.8px;
    }

    .intro__item img {
        width: 60px;
        height: 60px;
    }

    .intro__item p {
        font-size: 18px;
        line-height: 25.2px;
    }

    .price {
        width: 145px;
        height: 145px;
    }

    .al-cost {
        font-size: 50px;
    }

    .al-cost-promo {
        font-size: 30px;
    }

    .block-1__form {
        padding: 20px;
        max-width: 400px;
        margin-top: 40px;
    }

    .block-1__right {
        max-width: 400px;
        padding: 0px 20px;
    }

    .block-1 {
        padding: 70px 0px 60px;
        background: url(../images/block-1_back_mob.png) no-repeat top -20px center;
    }

    .block-1 .product {
        max-width: 450px;
    }

    .block-1_abs2 {
        width: 140px;
        height: 140px;
        border: 4px solid rgba(184, 184, 184, 1);
    }

    .block-1_abs1 {
        width: 120px;
        height: 120px;
        top: 40%;
        right: 0%;
    }

    .block-1 h2 {
        margin: -70px 0px 10px;
    }

    .block-1_abs3 {
        bottom: 30%;
        left: -3%;
    }

    .block-2 {
        padding: 60px 0px;
        background: url(../images/block-2_back1.png) no-repeat top 40% left -100px, url(../images/block-2_back2.png) no-repeat right bottom -140px, rgba(228, 217, 210, 1);
        background-size: contain;
    }

    .flex_block-2 {
        margin: 10px auto 0px;
        max-width: 400px;
    }

    .flex_block-2 .item {
        width: 100%;
        margin: 30px 0px 0px;
    }

    .block-3 {
        background: url(../images/block-3_back.png) no-repeat center, rgba(54, 0, 0, 1);
        background-size: cover;
        padding: 60px 0px 100px;
    }

    .block-3 h3 {
        text-align: start;
    }

    .block-3 h4 {
        text-align: start;
        margin: 30px 0px 40px;
    }

    .flex_block-3 {
        padding: 30px 16px 0px;
        max-width: 400px;
        margin: auto;
    }

    .flex_block-3 .item {
        width: 100%;
        margin: 0px 0px 30px;
        text-align: center;
    }

    .flex_block-3 .item__title {
        font-size: 18px;
        line-height: 25.2px;
    }

    .flex_block-3 .item__text {
        font-size: 16px;
        line-height: 22.4px;
    }

    .block-4__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .block-4 {
        padding: 0px 0px 60px;
    }

    .block-4 p {
        margin: 30px 0px 10px;
        font-size: 18px;
        line-height: 25.2px;
    }

    .block-4__right {
        margin: -60px auto 20px;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .flex_block-4 {
        margin: 0px;
    }

    .flex_block-4 .item {
        width: 100%;
        margin: 30px 0px 0px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }

    .flex_block-4 .item img {
        margin-top: 10px;
    }

    .block-5__right {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-top: -453px;
    }

    .block-5__right img {
        max-width: 380px;
    }

    .block-5__left {
        padding: 0px 20px 74px;
    }

    .block-5 {
        padding: 450px 0px 60px;
    }

    .block-5__left img {
        margin-top: -40px;
    }

    .back_5_6 {
        background: radial-gradient(104.19% 44.19% at 0.3% 10.81%, rgba(36, 255, 0, .2) 0%, rgba(255, 255, 255, 0) 66%), radial-gradient(44.19% 44.19% at 5.3% 50.81%, rgba(36, 255, 0, .3) 0%, rgba(255, 255, 255, 0) 66%), radial-gradient(104.19% 44.19% at 95.3% 15.81%, rgba(0, 255, 255, .4) 0%, rgba(255, 255, 255, 0) 66%);
    }

    .block-6__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .block-6 {
        padding: 0px 0px 60px;
    }

    .block-6__right {
        padding: 40px 20px 60px;
        text-align: center;
    }

    .block-6__left {
        margin-top: -55px;
    }

    .block-6__left img {
        max-width: 460px;
    }

    .one-block-slider .name {
        font-size: 18px;
        line-height: 25.2px;
    }

    .comment-text p {
        margin: 20px 0px 0px;
        font-size: 16px;
        line-height: 22.4px;
    }

    .slider-1 {
        padding: 20px;
    }

    .block-7 {
        padding: 60px 0px;
        background: radial-gradient(50.19% 50.19% at 28.3% 100.81%, rgba(36, 255, 0, .2) 0%, rgba(255, 255, 255, 0) 66%),
            radial-gradient(60.19% 60.19% at 75.3% 105.81%, rgba(0, 255, 255, .2) 0%,
            rgba(255, 255, 255, 0) 66%), rgba(212, 224, 211, 1)
    }

    .slick-slide {
        max-width: 280px !important;
    }

    .slider {
        padding: 0px;
    }

    .mob_none {
        display: none;
    }

    .mob {
        display: block;
    }

    .block-7_abs {
        font-size: 220.38px;
        font-weight: 500;
        line-height: 220.38px;
        letter-spacing: 0.04em;
        text-align: left;
        width: 400px;
        -ms-hyphens: auto;
        hyphens: auto;
        word-break: break-all;
        overflow-wrap: break-word;
        text-align: center;
        -webkit-text-stroke: 8px rgba(212, 224, 211, 1);
        text-shadow: -2.67px -2.67px 0px white, 2.67px -2.67px 0px white, -2.67px 2.67px 0px white, 2.67px 2.67px 0px white, -8px -8px 0px white, 8px -8px 0px white, -8px 8px 0px white, 8px 8px 0px white, 8px 8px 0px black;
    }

    .flex_popup {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 60px 20px;
    }

    .popUp_main p {
        font-size: 18px;
        font-weight: 700;
        line-height: 25.2px;
        text-align: center;
        margin: 20px auto 0px;
    }

    .block-8_abs {
        display: none;
    }

    .mob_block8 {
        display: block;
    }

    .mob_block8 {
        margin: 0px auto -80px;
        text-align: center;
        background: url(../images/block-8_mob.png) no-repeat center;
    }

    .mob_block8 img {
        margin-top: -70px;
    }

    .block-8 .container {
        padding: 0px 20px 60px;
    }

    h6 {
        font-size: 56.02px;
        font-weight: 700;
        line-height: 56.02px;
        text-align: center;
    }

    .block-8 h1 {
        font-size: 70px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.02em;
    }

    video {
        margin-top: 20px;
    }

    .block-8 {
        background: radial-gradient(50.19% 50.19% at 8.3% 75.81%, rgba(36, 255, 0, .4) 0%, rgba(255, 255, 255, 0) 66%),
            radial-gradient(60.19% 60.19% at 75.3% 30.81%, rgba(0, 255, 255, .3) 0%,
            rgba(255, 255, 255, 0) 66%), rgba(27, 73, 57, 1);
    }

    .block-7 .intro__btn {
        padding: 10px 20px;
        width: 100%;
        max-width: 400px;
    }

    .block-5__left {
        position: relative;
        z-index: 10;
    }

    h5 {
        font-size: 32px;
        font-weight: 700;
        line-height: 38.4px;
        color: rgba(12, 22, 10, 1);
        margin-right: 20px;
    }

    .paginate {
        top: -80px;
    }
}

@media (max-width: 450px) {
    .header__logo {
        max-width: 100px;
    }

    .block-1 .product {
        max-width: 360px;
    }

    .price {
        bottom: 80px;
    }

    .block-1_abs1 {
        top: 35%;
    }

    .block-1 h2 {
        max-width: 200px;
    }
}

@media (max-width: 400px) {
    .block-7 .intro__btn {
        margin-left: -10px;
    }

    .block-5__right img {
        max-width: 320px;
    }

    .block-5__right {
        margin-top: -381px;
        margin-left: -10px;
    }

    .block-5 {
        padding-top: 380px;
    }
}

@media (max-width: 360px) {
    .menu {
        padding: 80px 10px 20px;
    }
}