html {
    scroll-behavior: smooth;
}

body {
    font-family: "Google Sans", sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    line-height: normal;
}

a {
    color: inherit;
}

.wrapper {
    width: 100%;
    position: relative;
    min-height: 100%;
    overflow: hidden;
}


.soty_bg {

    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .5;
    z-index: 5;
    pointer-events: none;
}

.soty_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.header {
    padding: 20px 70px;
    background-color: rgb(29, 29, 29, .4);

    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;


    position: absolute;
    z-index: 9999;
    gap: 70px;

}

.logo {
    max-width: 215px;
    width: 100%;
    height: auto;
}

.logo img {
    width: 100%;
    height: 100%;
}

.header_nav {
    max-width: 730px;
    width: 100%;
}

.header_list {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}


.header_link {
    font-size: 14px;
    position: relative;
}

.header_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    display: block;
    height: 1px;
    background-color: #fff;
    transition: all .4s ease;
}

.header_link:hover::after {
    left: 0;
    width: 100%;
}

.timer_wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    max-width: 191px;
    width: 100%;
}

.timer_wrap span {
    font-size: 14px;
}

.timer {
    display: flex;
    align-items: center;
    font-size: 52px;
    font-weight: 700;
    -webkit-text-stroke: 1px rgba(255, 0, 0, 0.6);
}

.timer * {
    background: linear-gradient(180deg, #FFE092 0%, #E3A302 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.burger_wrap {
    display: none;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
    position: absolute;
    top: 26px;
    right: 23px;
}

.burger_wrap span {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 10px;
}


.top_block {
    background-image: url("../images/page1.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    min-height: 100vh;

    display: flex;
    align-items: center;
    padding: 140px 70px 50px;

    position: relative;
}


.photo_right_top {
    position: absolute;
    right: 0;
    top: 140px;
    z-index: 0;
}

.main_top {
    position: relative;
    z-index: 20;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.left_part {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 33.33%;
}

.title span {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(180deg, #FFE092 0%, #E3A302 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title {
    font-size: 36px;
}


.componente {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.component {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.component img {
    width: 48px;
    height: 48px;
}

.component p {
    padding: 8px;
}

.component span {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(180deg, #FFE092 0%, #E3A302 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.product {
    width: 33.33%;
    display: flex;
    justify-content: center;
}

.product img {
    width: 100%;
    max-width: 341px;
}

.form_wrap {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    border-radius: 16px;
    padding: 40px 30px;
    gap: 24px;
    background: linear-gradient(150deg, #0B0A47 30%, #F2A93D 100%);
}

form {
    width: 100%;


    max-width: 430px;
    display: flex;
    flex-direction: column;
    align-items: stretch;

}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.old_price {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(180deg, #FFE092 0%, #E3A302 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 50%;
}

.old_price::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    height: 2px;
    background: red;
    transform: rotate(18deg);
}

.new_price {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(180deg, #FFE092 0%, #E3A302 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.input {
    width: 100%;
    margin-bottom: 24px;
}

.input input {
    border-radius: 80px;
    color: #1D1D1D;
    border: 0;
    width: 100%;

    padding: 16px;
}

.input input:first-of-type {
    margin-bottom: 8px;
}

.form__btn {
    border-radius: 72px;
    border: 1px solid #F2A93D;
    background-color: #0B0A47;
    padding: 16px 30px;
    min-height: 72px;

}

.form__btn p {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(180deg, #FFE092 0%, #E3A302 44%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bottom_form {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    gap: 16px;
}

.sigur,
.package {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 12px;
}


.block_2 {
    background-image: url("../images/page2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: -1px;
    position: relative;
}

.inside_block_2 {
    position: relative;
    padding: 29px 70px;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.inside_block_2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0B0A47 30%, #F2A93D 44%);
    opacity: 0.4;
    z-index: 0;
}

.inside_block_2>* {
    position: relative;
    z-index: 1;
}

.top_block_2 {
    display: flex;
    width: 100%;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.title_block_2 {
    font-size: 64px;
    font-weight: 700;
    max-width: 253px;
    width: 100%;
    background: linear-gradient(180deg, #FFE092 0%, #E3A302 44%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-transform: uppercase;
}

.emotion3 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 304px;
    width: 100%;
}

.emotion3 p {
    font-size: 16px;
}

.emotion3 img {
    max-width: 117px;
}


.emotion3 span {
    font-weight: 700;
    background: linear-gradient(180deg, #FFE092 0%, #E3A302 44%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.emotion5 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 366px;
    width: 100%;
}

.emotion5 p {
    font-size: 16px;
}

.emotion5 img {
    max-width: 198px;
}


.emotion5 span {
    font-weight: 700;
    background: linear-gradient(180deg, #FFE092 0%, #E3A302 44%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.text_block_2 {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.text1 {
    max-width: 535px;

}

.text2 {
    max-width: 435px;
    font-weight: 700;
    background: linear-gradient(180deg, #FFE092 0%, #E3A302 44%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text3 {
    max-width: 782px;

}


.block2-3 {
    background: linear-gradient(90deg, #0B0A47 0%, #F2A93D 100%);
    height: 67px;
    width: 100%;
    position: absolute;
    z-index: 9999;
    top: 30px;

}


.block_3 {
    margin-top: -1px;
    position: relative;
    padding: 70px 16px 90px;
    display: flex;
    flex-direction: column;
    gap: 40px;

    background: linear-gradient(30deg, #0B0A47 40%, #F2A93D 100%);
}

.top_block_3 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(180deg, #FFE092 0%, #E3A302 44%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blocks_3 {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
}

.block1_3 {
    max-width: 272px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.block1_3image {
    display: inline-block;
    border-radius: 16px;
    padding: 2px;
    box-shadow: 0 0 22.8px 0 #E3A302;
    background: linear-gradient(180deg, #FFE092 0%, #E3A302 44%);
}

.block1_3 img {
    display: block;
    width: 100%;
    border-radius: 16px;
}

.block3_bottom {

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-radius: 176px;
    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow: 0 0 white,
        inset 0 1px 2px rgba(255, 255, 255, 0.2);

    max-width: 1135px;
    width: 100%;
    text-align: center;
    padding: 16px;
    margin: 0 auto;
}

.block_4 {
    margin-top: -1px;
    position: relative;
    padding: 89px 16px 43px;
    display: flex;
    flex-direction: column;
    gap: 70px;

    background: linear-gradient(180deg, #0B0A47 0%, #F2A93D 100%);
}

.block_4::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000;
    opacity: 0.2;
    z-index: 0;
}

.block_4>* {
    position: relative;
    z-index: 1;
}

.top_block_4 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    max-width: 722px;
    width: 100%;
    margin: 0 auto;
}


.top_block_4 p:first-of-type {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(90deg, #FFE092 0%, #E3A302 44%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.top_block_4 p:last-of-type {
    font-size: 36px;
}

.main_block_4 {
    display: flex;
    gap: 56px;
    margin: 0 auto;
    max-width: 100%;
}

.left_block_4 {
    max-width: 589px;
    background-color: #F2A93D;
    width: 100%;

    padding-bottom: 32px;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    gap: 16px;
}



.mozg {
    max-width: 417px;
    width: 100%;
    margin-left: auto;
    border-top-right-radius: 16px;
    margin-bottom: auto;
}

.left_block_4_title {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(171deg, #FFE092 0%, #e3a30200 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    padding: 0 24px;
    margin-bottom: 8px;
}


.points {
    padding: 0 24px;
    display: flex;

    font-size: 18px;
    font-weight: 500;
}

.points ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.points ul li {
    display: flex;
    align-items: center;
    gap: 24px;
}

.right_block_4 {
    background-color: #0B0A47;
    max-width: 589px;
    width: 100%;

    padding-bottom: 32px;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mozg1 {
    max-width: 417px;
    width: 100%;
    margin-right: auto;
    border-top-left-radius: 16px;
    margin-bottom: auto;
}

.right_block_4_title {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(262deg, #FFE092 0%, #E3A302 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    padding: 0 24px;
}

.bottom_block {
    background: linear-gradient(0deg, #F2A93D 6%, #0B0A47 96%);

    display: flex;
    align-items: center;
    padding: 50px 70px 140px;

    position: relative;
}

.photo_left_top {
    position: absolute;
    left: 0;
    top: 140px;
    z-index: 0;
}


.photo_right_top {
    position: absolute;
    right: 0;
    top: 140px;
    z-index: 0;
}

.block_5 {
    background: linear-gradient(0deg, #0B0A47 0%, #c68a31 100%);
    width: 100%;
    padding: 64px 70px 57px;
    margin-top: -1px;


}

.block_5_wrap {
    display: flex;
    justify-content: space-between;
    align-items: end;
    position: relative;
    margin-bottom: 40px;
}

.block_5_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .5;
    z-index: 5;
}

.block_5_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block_5_item {
    width: 50%;
    position: relative;
    z-index: 10;
    max-width: 640px;
    width: 100%;
    padding-bottom: 72px;
}

.block_5_title {
    font-size: 64px;
    font-weight: 700;
    color: #3E3D80;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.block_5_subtitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    max-width: 482px;
    width: 100%;
}

.block_5_text {
    font-weight: 500;
    font-size: 18px;
    max-width: 482px;
    width: 100%;
}


.block_5_list {
    width: 100%;
    max-width: 442px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 10;
    gap: 85px;
}

.block_5_list_item {
    display: flex;
    gap: 16px;

}

.block_5_item_img {
    width: 81px;
    aspect-ratio: 1 / 1;
    height: 83px;

}


.block_5_item_img img {
    width: 100%;
    height: 100%;
}

._item_text_title {
    font-weight: 700;
    background: linear-gradient(262deg, #FFE092 0%, #E3A302 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

._item_text {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}

.prod_wrap {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 341px;
    width: 100%;
    height: auto;
    z-index: 20;
}

.prod_wrap img {
    width: 100%;
    height: 100%;
}

.atantion_block {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px dashed #F2A93D;
    padding: 24px;
    gap: 16px;
}

.atantion_text {
    max-width: 459px;
    width: 100%;
    font-size: 18px;
    color: #F2A93D;
    font-weight: 500;
}

.atantion_text span {
    font-size: 22px;
}

.atantion_img {
    max-width: 90px;
    width: 100%;
    height: 77px;
    animation: scale 1s infinite;
}

.atantion_img img {
    width: 100%;
    height: 100%;

}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.block_6 {
    background: #0B0A47;
    position: relative;
    padding: 77px 72px;
    margin-top: -1px;
}

.block_6_wrap {
    border: 1px solid #F2A93D;
    border-radius: 40px;
    padding: 48px 16px;
    position: relative;
    z-index: 100;

}

.block_6_title {
    color: #F2A93D;
    font-size: 40px;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.block_6_list {
    display: flex;
    gap: 24px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.block_6_item {
    position: relative;
    width: 100%;
    max-width: 555px;
}

.block_6_item ._item_img {
    max-width: 480px;
    width: 100%;
    height: 100%;
}

.block_6_item ._item_img img {
    width: 100%;
}

.block_6_item ._item_title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
}

.block_6_item ._item_subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 700;
}

.block_6_item ._item_text {
    font-size: 16px;
    margin-bottom: 40px;
}

.block_6_item ._item_link {
    color: #1D1D1D;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    background: #F2A93D;
    border-radius: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 146px;
    width: 100%;
    height: 68px;
}

.block_6_item .prod {
    max-width: 206px;
    width: 100%;
    height: auto;
    position: absolute;
    bottom: -5%;
    right: -8%;
    z-index: 50;
}

.block_6_item .prod {
    width: 100%;
    height: auto;
}

.statistic_block {
    padding: 64px 28px 22px;
    margin-top: -1px;
    position: relative;
    background: #C28732;
    background: linear-gradient(180deg, rgba(194, 135, 50, 1) 0%, rgba(11, 10, 71, 1) 100%);
}

.statistic__title {
    font-weight: 700;
    background: linear-gradient(262deg, #FFE092 0%, #E3A302 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-size: 64px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 8px;
}

.statistic__subtitle {
    margin-bottom: 56px;
    font-size: 36px;
    text-align: center;

}

.statistic__list {
    display: flex;
    flex-wrap: wrap;
    max-width: 1102px;
    gap: 100px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}

.statistic__item {
    width: 100%;
    max-width: 287px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.statistic__item .statistic__num {
    font-weight: 700;
    background: linear-gradient(262deg, #FFE092 0%, #E3A302 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-size: 96px;
    text-align: center;
    font-weight: 700;

}

.statistic__item .__item__title {
    text-align: center;
}

.statistic__item .__item__text {
    font-size: 16px;
    text-align: center;
}

.comment__block {
    padding: 60px 35px 18px;
    margin-top: -1px;
    position: relative;
    background: #C28732;
    background: linear-gradient(0deg, rgba(194, 135, 50, 1) 0%, rgba(11, 10, 71, 1) 100%);
}

.comment__title {
    font-weight: 700;
    background: linear-gradient(262deg, #FFE092 0%, #E3A302 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-size: 64px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 48px;
}

.comment__list {
    display: flex;
    justify-content: space-between;
    max-width: 1203px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    gap: 24px;
    flex-wrap: wrap;
}

.comment__item {
    max-width: 328px;
    width: 100%;
    height: auto;
}

.comment__item img {
    width: 100%;
    height: 100%;

}

.step_block {
    padding: 170px 16px 117px;
    margin-top: -1px;
    position: relative;
    background: #C28732;
    background: linear-gradient(180deg, rgba(194, 135, 50, 1) 0%, rgba(11, 10, 71, 1) 100%);
}

.step_title_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px 0px 56px;
    margin-bottom: 50px;
}

.step_title_wrap .step_title {
    font-weight: 700;
    background: linear-gradient(262deg, #FFE092 0%, #E3A302 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 48px;
    max-width: 768px;
    width: 100%;
}

.step_line_img {
    max-width: 710px;
    width: 100%;
    height: 34px;
    transform: translateX(16px);
}

.step__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 20;
}

.step_item {
    display: flex;
    width: 100%;
    max-width: 367px;
    align-items: center;
}

.step_item .step_num {
    font-size: 168px;
    color: #976D1D;
    font-weight: 700;
    font-style: italic;
}

.step_item .step_text .step_text_title {
    font-size: 36px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.step_item .step_text {
    transform: translateX(-25px);

}

.step_item .step_text .step_text_text {
    font-size: 16px;
}

.bottom_block {
    padding: 0px 16px 60px;
    min-height: 100%;
    margin-top: -1px;
    position: relative;
    background: #C28732 !important;
    background: linear-gradient(0deg, rgba(194, 135, 50, 1) 0%, rgba(11, 10, 71, 1) 100%) !important;
}

@media screen and (max-width: 1440px) {
    .prod_wrap {
        display: none;
    }
}

@media screen and (max-width:1280px) {
    .block_5_wrap {
        flex-direction: column;
    }

    .block_5_list,
    .block_5_text,
    .block_5_item,
    .block_5_subtitle {
        max-width: 100%;
    }

    .comment__list {
        justify-content: center;
    }

    .step_title_wrap {
        flex-wrap: wrap;
    }

    .form_wrap {
        width: 50%;
    }

    .top_block {
        padding: 160px 70px 50px;
    }

    .main_top {
        flex-direction: column;
    }
}


@media screen and (max-width:1024px) {
    .header {
        flex-direction: column;
        align-items: normal;
        gap: 24px;
        padding: 20px 23px 12px;
    }

    .burger_wrap {
        display: flex;
    }

    .header_nav {
        display: none;
    }

    .timer_wrap {
        max-width: 100%;
    }

    .timer {
        font-size: 40px;
    }

    .timer_wrap span {
        font-size: 12px;
    }

    .left_part {
        width: 60%;
    }

    .product {
        width: 40%;
    }

    .top_block_2 {
        gap: 40px;
        flex-direction: column;
        align-items: start;
    }

    .title_block_2 {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .inside_block_2 {
        gap: 40px;
    }

    .text_block_2 {
        gap: 40px;
    }

    .main_block_4 {
        flex-wrap: wrap;
    }

    .left_block_4,
    .right_block_4 {
        max-width: 100%;
    }

    .block_6_list {
        flex-direction: column;
    }

    .left_part {
        order: 2;
    }

    .main_top .product {
        order: 1;
    }

    .main_top .form_wrap {
        order: 3;
    }

}


@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .main_top .form_wrap {
        width: 100%;
    }

    .top_block {
        padding: 10px 30px 50px;
    }

    .title span {
        font-size: 32px;
    }

    .left_part {
        gap: 31px;
    }


    .title {
        font-size: 16px;
        text-align: center;
    }

    .main_top {
        margin-top: 130px;
    }

    .bottom_tom {
        margin-top: 0px;
    }

    .left_part {
        width: 100%;
    }

    .product {
        width: 100%;
    }

    .component {
        max-width: 160px;
        align-items: flex-start;
        font-size: 16px;
        flex-direction: column;
    }

    .componente {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .title_block_2 {
        font-size: 36px;
    }

    .inside_block_2 {
        padding: 64px 16px 54px;
    }

    .block_3 {
        position: relative;
        padding: 16px;
    }

    .top_block_4 p:first-of-type {
        font-size: 36px;
    }

    .top_block_4 p:last-of-type {
        font-size: 16px;
    }

    .left_block_4_title,
    .right_block_4_title {
        font-size: 32px;
    }

    .block_5 {
        padding: 18px 16px 10px;
    }

    .block_5_title {
        font-size: 36px;
        text-align: center;
    }

    .block_5_subtitle {
        font-size: 24px;
        text-align: center;
    }

    .block_5_text {
        font-size: 16px;
        text-align: center;
    }

    .prod_wrap {
        display: block;
        position: relative;
        bottom: auto;
        left: auto;
        transform: translateX(0%);
        max-width: 341px;
        width: 100%;
        height: auto;
        z-index: 20;
        margin: 0 auto 24px;

    }

    .block_5_item {
        padding-bottom: 0px;
    }

    .block_5_list_item {
        flex-direction: column;
    }

    .block_5_list {
        gap: 40px;
    }

    .atantion_block {
        flex-direction: column;
    }

    .atantion_text {
        text-align: center;
        max-width: 100%;
    }

    .block_6 {
        padding: 77px 16px;
    }

    .block_6_wrap {
        border: none;
        border-radius: 0px;
        padding: 0px;
    }

    .block_6_title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .block_6_item .prod {
        max-width: 146px;
        right: 0%;
    }

    .block_6 .block_5_bg {
        display: none;
    }

    .block_6_item ._item_link {
        max-width: 100%;
    }

    .statistic__title {
        font-size: 40px;
    }

    .statistic_block {
        padding: 64px 28px 113px;
    }

    .statistic__subtitle {
        margin-bottom: 86px;
    }

    .statistic__item .statistic__num {
        font-size: 48px;
    }

    .statistic__list {
        gap: 45px;

    }

    .comment__title {
        font-size: 40px;
        margin-bottom: 32px;
    }

    .step_block {
        padding: 100px 16px 27px;
    }

    .step__list {
        justify-content: center;
    }

    .step_title_wrap .step_title {
        font-size: 40px;

        margin-bottom: 0px;
    }

    .step_title_wrap {
        flex-wrap: wrap;
        padding: 0px;
        margin-bottom: 24px;
    }

    .block_4 {
        padding: 40px 16px 43px;
    }

    .prod_wrap {
        max-width: 200px;
        margin: 0 auto;
    }

}

@media screen and (max-width:570px) {
    .product img {
        width: 100%;
        max-width: 200px;
    }
}