/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: 0.35em 0.75em 0.625em
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}


@font-face {
    font-family: 'Neumann';
    src: url('../fonts/Neumann.woff2') format('woff2'),
        url('../fonts/Neumann.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'RG-StandardBook';
    src: url('../fonts/RG-StandardBook.woff2') format('woff2'),
        url('../fonts/RG-StandardBook.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RG-StandardBook';
    src: url('../fonts/RG-StandardMedium.woff2') format('woff2'),
        url('../fonts/RG-StandardMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    outline: none;
}

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

body {
    overflow-x: hidden;
    font-family: 'RG-StandardBook';
    background-color: #1B1C1B;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1630px;
    margin: 0 auto;
    padding: 0 15px;
}

.scroll {
    border-radius: 50%;
    background-color: #D1B47A;
    width: 46px;
    height: 46px;
    z-index: 8;
    position: fixed;
    padding: 6px;
    bottom: 50px;
    right: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    transform: scale(0);
}

.scroll.fixed {
    transform: scale(1);

}

.header.fixed .header_wrapper {
    padding: 20px 0;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #1B1C1B;
    right: 0;
    z-index: 10;
}

/* .header::before{
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    height: 45px;
    pointer-events: none;
    right: 0;
    background-image: url(../img/header_top.png);
} */
.header_wrapper {
    display: flex;
    padding: 30px 0 40px;
    justify-content: space-between;
    transition: all 0.3s;
    align-items: center;
    border-bottom: 1px solid #404040;
}

.header_logo {
    display: flex;
    align-items: center;
}

.header_logo-img {
    display: flex;
    margin-right: 20px;
}

.header_logo-title {
    font-size: 18px;
    line-height: 120%;
    color: #929292;
    padding-left: 20px;
    border-left: 1px solid #404040;
    padding: 8px 0 8px 20px;
}

.menu {
    display: flex;
}

.menu a {
    display: flex;
    font-size: 18px;
    line-height: 120%;
    margin: 0 20px;
    color: #929292;
    transition: all 0.3s;
}

.menu a:hover {
    color: #E1E1E1;
}

.header_links {
    display: flex;
    align-items: center;
}

.header_messages {
    display: flex;
    margin-right: 50px;
    align-items: center;
}

.header_message {
    display: flex;
    margin: 0 10px;
    width: 22px;
}

.header_message img {
    width: 100%;
    height: auto;
}

.header_order {
    color: #929292;
    line-height: 120%;
    font-size: 16px;
    display: flex;
    margin-right: 60px;
    align-items: center;
}

.header_order svg {
    margin-left: 10px;
    display: flex;
}

.header_phone {
    display: block;
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    color: #929292;
    padding-left: 28px;
    position: relative;
}

.header_phone::before {
    position: absolute;
    content: "";
    background-image: url(../img/phone.svg);
    background-size: cover;
    width: 13px;
    height: 17px;
    top: 55%;
    transform: translateY(-50%);
    left: 0;
}

.main {
    margin: 175px 0 140px;
}

.main_wrapper {
    display: flex;
    justify-content: space-between;
}

.main_info {
    width: 600px;
}

.main_title {
    font-size: 50px;
    line-height: 140%;
    text-transform: uppercase;
    font-family: 'Neumann';
    color: #E1E1E1;
    margin-bottom: 10px;
}

.main_text {
    line-height: 130%;
    margin-bottom: 70px;
    color: #E1E1E1;
    font-size: 26px;
}

.main_items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 430px;
    margin-bottom: 40px;
}

.main_item {
    width: 48%;
    margin-bottom: 30px;
    font-size: 20px;
    padding-left: 35px;
    position: relative;
    line-height: 130%;
    color: #E1E1E1;
}

.main_item::before {
    position: absolute;
    content: "";
    background-image: url(../img/option.svg);
    background-size: cover;
    width: 18px;
    height: 17px;
    left: 0;
    top: 0;
}

.main_links {
    display: flex;
    align-items: center;
}

.main_btn {
    margin-right: 50px;
}

.main_img {
    width: 935px;
    display: flex;
    position: relative;
}

.main_img>img {
    width: calc(100% + 160px);
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.main_video {
    width: 180px;
    overflow: hidden;
    position: absolute;
    bottom: 40px;
    right: 0;
    border: 1px solid #D1B47A;
    background: #1B1C1B;
    border-radius: 5px;
}

.main_video-title {
    text-align: center;
    font-size: 18px;
    line-height: 120%;
    padding: 12px 24px;
    color: #E1E1E1;
}

.main_video-img {
    display: flex;
}

.link {
    color: #D1B47A;
    font-size: 20px;
    line-height: 120%;
    padding-right: 25px;
    font-weight: 500;
    display: inline-flex;
    padding: 3px 25px 5px 0;
    border-bottom: 1px solid #D1B47A;
    position: relative;
    transition: all 0.3s;
}

.link:hover {
    border-bottom: 1px solid #E1E1E1;
    color: #E1E1E1;
}

.link:hover svg {
    width: 14px;
    top: 6px;

}

.link svg {
    position: absolute;
    right: 0;
    transition: all 0.3s;
    top: 12px;
    height: auto;
    width: 10px;
}

.link:hover svg path {
    stroke: #E1E1E1;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    padding: 22px 50px 22px 50px;
    font-weight: 500;
    width: fit-content;
    font-size: 20px;
    color: #000;
    background: #D1B47A;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #000;
    color: #D1B47A;
}

.title {
    color: #E1E1E1;
    line-height: 150%;
    font-family: 'Neumann';
    text-transform: uppercase;
    font-size: 45px;
}

.title span {
    color: #D1B47A;
}

.structure {
    margin: 140px 0;
}

.structure_title {
    margin-bottom: 50px;
}

.structure_wrapper {
    display: flex;
    padding-top: 25px;
    border-top: 1px solid #404040;
    justify-content: space-between;
    position: relative;
}

.structure_img {
    left: -225px;
    top: 40px;
    display: flex;
    width: 890px;
    position: absolute;
}

.structure_img svg {
    width: 100%;
    height: auto;
}

.structure_info {
    width: 730px;
    margin-left: auto;
}

.structure_items {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    justify-content: space-between;
}

.structure_item {
    width: 48%;
    margin-bottom: 50px;
    padding-right: 60px;
    position: relative;
}

.structure_item::before {
    position: absolute;
    content: "";
    background-image: url(../img/option.svg);
    background-size: cover;
    width: 18px;
    height: 17px;
    top: 8px;
    left: -40px;
}

.structure_item:last-child {
    width: 100%;
    margin-bottom: 0;
}

.structure_item-title {
    line-height: 130%;
    font-size: 26px;
    margin-bottom: 10px;
    color: #E1E1E1;
}

.structure_item-text {
    font-size: 18px;
    line-height: 120%;
    color: #929292;
}

.why {
    margin-bottom: 100px;
    position: relative;
}

.why_warpper {
    padding-top: 25px;
    border-top: 1px solid #404040;
    display: flex;
    justify-content: space-between;
}

.why_title {
    width: 700px;
}

.why_info {
    width: 720px;
}

.why_item {
    display: flex;
    align-items: center;
    margin-bottom: 38px;

}

.why_item-img {
    margin-right: 40px;
}

.why_item:last-child {
    margin-bottom: 0;
}

.why_item-title {
    color: #E1E1E1;
    font-size: 24px;
    line-height: 130%;
}

.why_form {
    padding: 50px 0;
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.why_form::before {
    position: absolute;
    content: "";
    width: 100vw;
    height: 100%;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    z-index: -1;
    border-radius: 5px;
    background: #252525;
}

.why_form-wrapper {
    width: 478px;
    margin-left: auto;
    margin-right: 120px;
}

.why_form-title {
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 30px;
    font-size: 30px;
    color: #E1E1E1;
}

.why_form-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    background-color: #D1B47A;
    color: #000;
    margin-bottom: 20px;
}

.why_form-inp {
    display: flex;
    border-radius: 5px;
    margin-bottom: 15px;
    background: #FAF7F0;
    padding-left: 40px;
    width: 100%;
    height: 73px;
    border: none;
    font-weight: 500;
    font-size: 20px;
}

.why_form-ok {
    font-size: 13px;
    line-height: 120%;
    color: #929292;
}

.why_form-ok a {
    color: #929292;
    text-decoration: underline;
}

.why_img {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}







.order {
    margin-bottom: 170px;
}

.order_top {
    padding-top: 20px;
    border-top: 1px solid #D2C9B5;
    border-bottom: 1px solid #D2C9B5;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.order_title {
    width: 1200px;

}

.order_btn {
    margin-top: 10px;
}

.order_img {
    height: 612px;
    display: flex;
    width: 100%;
}

.order_img picture,
.order_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.health {
    margin: 100px 0 140px;
}

.health_title {
    display: flex;
    margin-bottom: 60px;
}

.health_info {
    width: 760px;
}

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

.health_img {
    display: flex;
}

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

.health_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.health_item {
    width: 48%;
    font-size: 24px;
    line-height: 130%;
    color: #E1E1E1;
    padding-left: 42px;
    position: relative;
    margin-bottom: 40px;
}

.health_item::before {
    position: absolute;
    content: '';
    background-image: url(../img/option.svg);
    background-size: cover;
    width: 18px;
    height: 17px;
    top: 7px;
    left: 0;
}

.video_block {
    margin-bottom: 140px;
}

.video_block-wrapper {
    width: 1249px;
    display: block;
    margin: 0 auto;
    height: 702px;
    padding: 80px 75px;
    border-radius: 10px;
    background-image: url(../img/video_block.jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.video_block-img {
    display: flex;
    margin-bottom: 55px;
}

.video_block-title {
    margin-bottom: 20px;
}

.video_block-text {
    line-height: 130%;
    font-size: 24px;
    color: #E1E1E1;
}

.quiz {
    margin-bottom: 140px;
}

.quiz_title {
    margin-bottom: 40px;
    text-align: center;
}

.size {
    margin-bottom: 140px;
}

.size_title {
    margin-bottom: 60px;
    text-align: center;
}

.size_items {
    display: flex;
    justify-content: space-between;
}

.size_item {
    width: 32%;

    background: #252525;
    border-radius: 5px;
    overflow: hidden;
}

.size_item-info {
    display: flex;
    justify-content: space-between;
    padding: 50px 50px 24px;
}

.size_item-img {
    display: flex;
}

.size_item-img img {
    width: 100%;
    height: auto;
}

.size_item-title {
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 30px;
    color: #E1E1E1;
}

.size_item-option {
    font-size: 18px;
    line-height: 120%;
    color: #929292;
}

.size_item-options {
    margin-bottom: 40px;
}

.size_item-max {
    background-image: url(../img/size_item-max.svg);
    height: 124px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 100%;
    color: #E1E1E1;
    flex-direction: column;
    width: 124px;
}

.size_item-max span {
    margin: 6px 0;
    display: block;
    font-size: 32px;
}


.options {
    margin-bottom: 100px;
}

.options_wrapper {
    padding-top: 25px;
    border-top: 1px solid #404040;
}

.options_title {
    margin-bottom: 40px;
}

.options_items {
    width: calc(100% + 32px);
    margin-left: -16px;
}

.options_item {
    margin: 0 16px;
}

.options_item-img {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E1E1E1;
    border-radius: 5px;
    overflow: hidden;
    height: 240px;
    margin-bottom: 20px;
}

.quiz_item {
    border-radius: 15px;
    overflow: hidden;
}

.options_item-img img {
    max-width: 100%;
    max-height: 100%;
    mix-blend-mode: darken;
}

.options_item-title {
    font-size: 18px;
    line-height: 120%;
    color: #E1E1E1;
}

.options_items .slick-arrow {
    position: absolute;
    top: -111px;
    height: 45px;
    background-color: #D1B47A;
    border-radius: 5px;
    width: 45px;
    font-size: 0;
    border: none;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.options_items .slick-arrow.slick-disabled {
    background-color: #252525;
}

.options_items .slick-next.slick-disabled {
    background-image: url(../img/arrow_right.svg);
}

.options_items .slick-prev.slick-disabled {
    background-image: url(../img/arrow_left.svg);
}

.options_items .slick-next {
    background-image: url(../img/arrow_right2.svg);
    right: 16px;
}

.options_items .slick-prev {
    background-image: url(../img/arrow_left2.svg);
    right: 88px;
}

.cost {
    margin-bottom: 100px;
}

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

.cost_info {
    width: 435px;
}

.cost_img {
    width: 1100px;
}

.cost_img img {
    width: 100%;
    height: auto;
}

.cost_title {
    margin-bottom: 20px;
}

.cost_text {
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 40px;
    font-size: 30px;
    color: #E1E1E1;
}

.cost_form {
    width: 320px;
}

.cost_form-text {
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 20px;
    color: #929292;
}

.cost_form-inp {
    border-radius: 5px;
    background: var(--Beige_2, #FAF7F0);
    margin-bottom: 20px;
    display: block;
    padding-left: 20px;
    width: 100%;
    height: 73px;
    border: none;
    font-weight: 500;
    font-size: 20px;
}

.cost_form-btn {
    margin-bottom: 20px;
    height: 73px;
    width: 100%;
    cursor: pointer;
    border: none;
}

.cost_form-ok {
    font-size: 13px;
    line-height: 120%;
    color: #929292;
}

.cost_form-ok a {
    color: #929292;
    text-decoration: underline;
}





.gallery {
    margin-bottom: 140px;
}

.gallery_wrapper {
    border-top: 1px solid #404040;
    padding-top: 25px;
}

.gallery_title {
    margin-bottom: 40px;
}

.gallery_inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.gallery_inner:nth-child(2n + 1) {
    flex-direction: row-reverse;
}

.gallery_imgs {
    width: calc(50% - 10px);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

.gallery_img {
    display: flex;
    width: calc(50% - 10px);
    border-radius: 5px;
    overflow: hidden;
    height: calc(50% - 10px);
}

.gallery_imgs .gallery_img:nth-child(1),
.gallery_imgs .gallery_img:nth-child(2) {
    margin-bottom: 20px;
}

.gallery_img.big {
    width: calc(50% - 10px);
    height: 714px;
    margin-bottom: 0;
}

.gallery_link {
    margin: 40px auto 0;
    display: flex;
    width: fit-content;
}

.reviews {
    margin-bottom: 170px;
}

.reviews_warpper {
    border-top: 1px solid #404040;
    padding-top: 25px;
}

.reviews_title {
    margin-bottom: 40px;
}

.reviews_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.reviews_videos {
    display: flex;
    justify-content: space-between;
}

.reviews_video {
    width: calc(50% - 10px);
    position: relative;
    display: flex;
    border-radius: 5px;
    height: 445px;
    overflow: hidden;
}

.reviews_video iframe,
.reviews_video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews_slider {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-bottom: 20px;
}

.reviews_slide {
    background-color: #252525;
    padding: 40px;
    margin: 0 10px;
}

.reviews_slide-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 40px;
    line-height: 120%;
    color: #E1E1E1;
}

.reviews_slide-title img {
    margin-right: 20px;
}

.reviews_slide-text {
    font-size: 18px;
    line-height: 120%;
    color: #929292;
}

.reviews_slide {
    height: inherit;
}

.reviews_slider .slick-track {
    display: flex;
}

.reviews_slider .slick-arrow {
    position: absolute;
    top: -95px;
    height: 45px;
    background-color: #D1B47A;
    width: 45px;
    font-size: 0;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.reviews_slider .slick-arrow.slick-disabled {
    background-color: #252525;
}

.reviews_slider .slick-next.slick-disabled {
    background-image: url(../img/arrow_right.svg);
}

.reviews_slider .slick-prev.slick-disabled {
    background-image: url(../img/arrow_left.svg);
}

.reviews_slider .slick-next {
    background-image: url(../img/arrow_right2.svg);

    right: 10px;
}

.reviews_slider .slick-prev {
    background-image: url(../img/arrow_left2.svg);
    right: 95px;
}

.production {
    margin-bottom: 140px;
}

.production_wrapper {
    padding-top: 25px;
    border-top: 1px solid #404040;

}

.production_inner {
    display: flex;
    justify-content: space-between;
}

.production_title {
    margin-bottom: 40px;
}

.production_imgs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: calc(50% - 10px);
}

.production_img {
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    width: calc(50% - 10px);
    height: 347px;
    margin-bottom: 20px;
}

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

.production_img.big {
    width: calc(50% - 10px);
    height: 714px;
    margin-bottom: 0;
}

.steps {
    margin-bottom: 100px;
}

.steps_wrapper {
    padding-top: 25px;
    border-top: 1px solid #404040;
}

.steps_title {
    margin-bottom: 40px;
}

.steps_items {
    display: flex;
    justify-content: space-between;
}

.steps_item {
    width: 15%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.steps_item::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    background-color: #D1B47A;
    bottom: 23px;
    left: 45px;
}

.steps_item:last-child:before {
    left: 0;
}

.steps_item-title {
    line-height: 130%;
    margin-bottom: 10px;
    font-size: 26px;
    color: #E1E1E1;
}

.steps_item-text {
    font-size: 18px;
    line-height: 120%;
    color: #929292;
    margin-bottom: 30px;
}

.steps_item-text a {
    color: #929292;
    display: inline-block;
    text-decoration: underline;
}

.steps_item-number {
    margin-top: auto;
    width: 48px;
    position: relative;
    z-index: 1;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D1B47A;
    border-radius: 50%;
    line-height: 110%;
    font-size: 18px;
}





.delivery {
    margin-bottom: 120px;
}

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

.delivery_info {
    width: 660px;
}

.delivery_img {
    display: flex;
    justify-content: flex-end;
    width: 890px;
}

.delivery_title {
    margin-bottom: 40px;
}

.delivery_text {
    line-height: 120%;
    margin-bottom: 20px;
    color: #929292;
    font-size: 18px;
}

.delivery_options {
    margin-top: 50px;
}

.delivery_option {
    line-height: 130%;
    font-size: 24px;
    color: #E1E1E1;
    margin-bottom: 30px;
    position: relative;
}

.delivery_option::before {
    position: absolute;
    content: '';
    background-image: url(../img/option.svg);
    background-size: cover;
    width: 18px;
    height: 17px;
    top: 9px;
    left: -42px;
}

.delivery_option:last-child {
    margin-bottom: 0;
}

.question {
    padding: 60px 0;
    background: #252525;
    border-radius: 5px;
    margin-bottom: 60px;
}

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

.question_left {
    width: 490px;
}

.question_title {
    margin-bottom: 40px;
}

.question_text {
    font-weight: 500;
    line-height: 120%;
    color: #E1E1E1;
    font-size: 30px;
    margin-bottom: 30px;
}

.question_form-inp {
    display: block;
    width: 478px;
    height: 73px;
    margin-bottom: 15px;
    padding-left: 40px;
    border: none;
    font-weight: 500;
    font-size: 20px;
}

.question_form-btn {
    width: 478px;
    height: 73px;
    cursor: pointer;
    border: none;
    margin-bottom: 20px;
}

.question_form-ok {
    font-size: 13px;
    line-height: 120%;
    color: #929292;
}

.question_form-ok a {
    color: #929292;
    text-decoration: underline;
}

.question_map {
    width: 967px;
    height: 696px;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
}

.question_map iframe {
    width: 100%;
    height: 100%;
    display: block;
}








.footer {
    padding-bottom: 80px;
}

.footer_wrapper {
    display: flex;
    border-top: 1px solid #404040;
    padding-top: 30px;
    justify-content: space-between;
}

.footer_info {
    width: 265px;
}

.footer_logo {
    display: flex;
    margin-bottom: 56px;
}

.footer_item-text {
    color: #929292;
}

.footer_text {
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 20px;
    color: #929292;
}

.footer_polit {
    font-size: 16px;
    line-height: 120%;
    color: #929292;
}

.footer_links {
    display: flex;
}

.footer_item {
    margin-right: 70px;
}

.footer_item-title {
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 20px;
    color: #E1E1E1;
}

.footer_menu a {
    font-size: 18px;
    line-height: 120%;
    display: block;
    margin-bottom: 10px;
    color: #929292;
}

.footer_menu li:last-child a {
    margin-bottom: 0;
}

.footer_number {
    display: block;
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    color: #E1E1E1;
    padding-left: 28px;
    position: relative;
    margin-bottom: 18px;
}

.footer_number::before {
    position: absolute;
    content: "";
    background-image: url(../img/phone.svg);
    background-size: cover;
    width: 13px;
    height: 17px;
    top: 55%;
    transform: translateY(-50%);
    left: 0;
}

.footer_right {
    display: flex;
    margin-left: 65px;
    flex-direction: column;
}

.footer_link {
    margin-bottom: 100px;
}

.footer_dev {
    display: flex;
    align-items: center;
    line-height: 120%;
    color: #929292;
}

.footer_dev img {
    margin-left: 9px;
}

.menu_burger {
    display: none;
}

.header_inner .header_btn {
    display: none;
}

.header_inner .header_phone,
.header_inner .header_order,
.header_inner .header_messages {
    display: none;
}

.footer_dev.mobile {
    display: none;
}

.popup_body {
    background: #404040;
    width: 1006px;
    position: relative;
    padding: 70px;
}

.fancybox-slide--html .fancybox-close-small {
    color: #E1E1E1;
}

.popup_body-title {
    line-height: 120%;
    margin-bottom: 40px;
    font-size: 40px;
    color: #E1E1E1;
}

.popup_body-inp {
    display: block;
    background: #FAF7F0;
    width: 380px;
    height: 73px;
    margin-bottom: 15px;
    border: none;
    padding-left: 40px;
    font-weight: 500;
    font-size: 20px;
}

.popup_body-btn {
    background: #D1B47A;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 380px;
    height: 73px;
    margin-bottom: 20px;
    cursor: pointer;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    text-align: center;
    transition: all 0.3s;
    border: none;
}

.popup_body-btn:hover {
    background: #000;
    color: #D1B47A;
}

.popup_body-ok {
    font-size: 13px;
    line-height: 120%;
    color: #929292;
    width: 360px;
}

.popup_body-ok a {
    color: #929292;
    text-decoration: underline;

}

.popup_order-img {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
}

.popup_question .popup_order-img {
    right: 38px;
}


.quiz_page {
    margin: 134px 0 100px;
}

.quiz_page-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.quiz_page-info {
    width: 742px;
    padding: 25px 0 40px;
    border-top: 1px solid #D2C9B5;
    border-bottom: 1px solid #D2C9B5;
}

.quiz_page-title {
    font-size: 90px;
    line-height: 90%;
    color: #000;
    margin-bottom: 33px;
}

.quiz_page-title span {
    color: #227644;
}

.quiz_page-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.quiz_page-text {
    line-height: 130%;
    width: 435px;
    font-size: 26px;
}

.quiz_page-img {
    width: 778px;
    height: 540px;
    display: flex;
}

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

.quiz_page-item {
    display: flex;
    margin-top: 60px;
}

.quiz_page-item img {
    width: 100%;
    height: auto;
}

.header_page .header_wrapper {
    border-bottom: none;
}

.size_popup {
    width: 1600px;
    background: #252525;
    padding: 50px;
}

.size_popup-wrapper {
    display: flex;
    padding-top: 30px;
    border-top: 1px solid #404040;
    justify-content: space-between;
}

.size_popup-info {
    width: 680px;
}

.size_popup-title {
    line-height: 120%;
    margin-bottom: 40px;
    font-size: 30px;
    color: #E1E1E1;
    font-family: 'Neumann';
}

.size_popup-subtitle {
    line-height: 130%;
    font-size: 26px;
    margin-bottom: 20px;
    color: #E1E1E1;
}

.size_popup-option {
    font-size: 18px;
    line-height: 120%;
    color: #929292;
}

.size_popup-item {
    margin-bottom: 40px;
}

.size_popup-links {
    display: flex;
    align-items: center;
}

.size_popup-btn {
    margin-right: 40px;
}

.size_popup-imgs {
    width: 690px;
}

.size_popup-img {
    width: 100%;
    display: flex;
    height: 506px;
    margin-bottom: 10px;
}

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

.size_popup-dots {
    display: flex;
    justify-content: space-between;
}

.size_popup-dot {
    height: 95px;
    width: 18%;
    display: flex;
    cursor: pointer;
}

.size_popup-dot.active {
    border: 2px solid #FFB527;
}

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

.structure_img-one {
    animation: structure_img1 1.5s ease-out infinite alternate;
    z-index: 2;
    position: relative;
    fill: #1B1C1B;
}

.structure_img-two {
    animation: structure_img2 1.5s ease-out infinite alternate;
    fill: #1B1C1B;
    z-index: 3;
    position: relative;
}

.structure_img-three {
    animation: structure_img3 1.5s ease-out infinite alternate;
}

.structure_img-four {
    position: relative;
    z-index: 1;
}

.structure_img-six {
    animation: structure_img4 1.5s ease-out infinite alternate;

}

.structure_img-seven {
    animation: structure_img5 1.5s ease-out infinite alternate;

}

.structure_img-eight {
    animation: structure_img6 1.5s ease-out infinite alternate;

}

.structure_img-four path:nth-child(1) {
    fill: #1B1C1B;
}

@keyframes structure_img1 {
    0% {
        opacity: 0;
        transform: translate(0%, 0%);
    }

    100% {
        opacity: 1;
        transform: translate(28%, -4%);
    }
}

@keyframes structure_img2 {
    0% {
        opacity: 0;
        transform: translate(0%, 0%);
    }

    100% {
        opacity: 1;
        transform: translate(6%, 41%);
    }
}

@keyframes structure_img3 {
    0% {
        transform: translate(0%, 0%);
    }

    100% {
        transform: translate(-11%, 0%);
    }
}

@keyframes structure_img4 {
    0% {
        transform: translate(0%, 0%);
    }

    100% {
        transform: translateY(2%);
    }
}

@keyframes structure_img5 {
    0% {
        transform: translate(0%, 0%);
    }

    100% {
        transform: translateY(6%);
    }
}

@keyframes structure_img6 {
    0% {
        transform: translate(0%, 0%);
    }

    100% {
        transform: translateY(4%);
    }
}

.error_page .main_title {
    margin-bottom: 40px;
}

.error_page .main_text {
    margin-bottom: 264px;
}

.thanks_page-info {
    margin-bottom: 125px;
}

.thanks_page-text {
    line-height: 130%;
    color: #E1E1E1;
    margin-bottom: 20px;
    font-size: 26px;
}

.menu li:hover .header_nav-body {
    bottom: 0;
}

.header_nav-body {
    position: absolute;
    width: 840px;
    background-color: #1B1C1B;
    box-shadow: 0px 12px 18px 0px rgba(0, 0, 0, 0.2);
    left: 50%;
    transform: translate(-46%, 100%);
    z-index: -2;
    transition: all 0.6s;
    bottom: 400%;
    padding: 40px 24px;
    display: flex;
    justify-content: space-between;
}

.header_nav-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    padding-left: 20px;
    z-index: 3;
    position: relative;
    margin-bottom: 15px !important;
    transition: all 0.3s;
}

.header_nav-item {
    padding-left: 20px;
    display: block;
    font-size: 18px;
    color: #dedede;
    margin-bottom: 4px;
    transition: all 0.3s;
}

.menu>li:first-child::before {
    position: absolute;
    content: "";
    width: 80px;
    top: 0;
    height: calc(100% + 30px);
}

.header_nav-title::before {
    position: absolute;
    content: "";
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #D1B47A;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.header_inner {
    display: flex;
    align-items: center;
}

.header_adres {
    width: 140px;
    padding-left: 26px;
    position: relative;
    cursor: pointer;
    color: #fff;
    margin-left: 30px;
}

.header_adres span {
    display: block;
}

.header_adres-actual {
    position: relative;
}

.header_adres:hover .header_adres-list {
    opacity: 1;
    visibility: visible;
}

.header_adres-list {
    position: absolute;
    background-color: #252525;
    padding: 10px 20px;
    box-shadow: 0px 12px 18px 0px rgb(0 0 0 / 20%);
    bottom: 0;
    left: 0;
    transform: translate(-15%, 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.header_adres-list_item {
    margin-bottom: 5px;
    color: #fff;
    display: block;
    transition: all 0.3s;
}

.header_adres-list_item:hover {
    color: #D1B47A;
}

.header_adres::before {
    position: absolute;
    content: "";
    background-image: url(../img/map.png);
    background-size: cover;
    width: 16px;
    height: 24px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.present_link {
    position: fixed;
    bottom: 180px;
    z-index: 2;
    display: flex;
}

.present_link-wrapper .container {
    display: flex;
    justify-content: flex-end;
}

.popup_present-title {
    color: #D1B47A;
    font-family: 'Neumann';
    font-size: 45px;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 150%;
}

.popup_present-title span {
    color: #FFFFFF;
}

.popup_present-text {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 30px;
    color: #E1E1E1;
}

.popup_present .popup_order-img {

    right: 65px;
    bottom: 33px;
}










@media(max-width:1650px) {
    .container {
        max-width: 1300px;
    }

    .header_order {
        margin-right: 20px;
    }

    .menu a {
        margin: 0 10px;
        font-size: 16px;
    }

    .header_logo-img {
        width: 160px;
        margin-right: 10px;
    }

    .header_adres {
        width: 120px;
        margin-left: 16px;
    }

    .header_logo-title {
        padding-left: 10px;
    }

    .header_logo-img img {
        width: 100%;
        height: auto;
    }

    .header_phone {
        font-size: 18px;
    }

    .header_messages {
        margin-right: 20px;
    }

    .quiz_page-info {
        width: 660px;
    }

    .quiz_page-img {
        width: 590px;
        height: 490px;

    }

    .header_nav-body {
        transform: translate(-57%, 100%);
    }

    .structure_items {
        width: 630px;
    }

    .structure_img {
        left: -130px;
        width: 700px;
        top: 160px;
    }

    .structure_img svg {
        width: 100%;
        height: auto;
    }

    .why_img {
        width: 700px;
    }

    .why_img img {
        width: 100%;
        height: auto;
    }

    .why_info {
        width: 630px;
    }

    .why_title {
        width: 570px;
    }

    .why_item-title {
        font-size: 24px;
        width: 490px;
    }

    .order_title {
        width: 970px;
    }

    .order_img {
        height: 490px;
    }

    .health_img {
        width: 600px;
    }

    .health_info {
        width: 660px;
    }

    .size_item-info {
        padding: 24px;
    }

    .cost_img {
        width: 800px;
    }

    .quiz_item img {
        width: 100%;
        height: auto;
    }

    .options_item {
        margin: 0 20px;
    }

    .options_items {
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .options_items .slick-next {
        right: 20px;
    }

    .options_items .slick-prev {
        right: 95px;
    }

    .reviews_title {
        padding-right: 100px;
    }

    .footer_right {
        margin-left: 0;
    }

    .footer {
        padding-bottom: 120px;
    }

    .size_popup-imgs {
        width: 580px;
    }

    .size_popup-info {
        width: 570px;
    }

    .size_popup-img {
        height: 425px;
    }

    .size_popup {
        width: 1270px;
    }

    .main_info {
        width: 500px;
    }

    .main_img {
        width: 727px;
    }

    .main_btn {
        margin-right: 0;
    }

    .main_links {
        justify-content: space-between;
    }

    .gallery_img.big {
        height: 565px;
    }

    .production_img.big {
        height: 610px;
    }

    .production_img {
        height: 295px;
    }

    .steps_item-text br {
        display: none;
    }

    .delivery_img {
        width: 610px;
        height: 600px;
    }

    .delivery_img img {
        height: 100%;
        width: auto;
    }

    .delivery_info {
        width: 640px;
    }

    .question_map {
        width: 740px;
        height: 670px;
    }

    .reviews_video {
        height: 350px;
    }
}

@media(max-width:1350px) {
    .container {
        max-width: 988px;
    }

    .header_wrapper {
        padding: 20px 0;
    }

    .header_logo-img {
        width: 124px;
        margin-right: 8px;
    }

    .header_logo-img img {
        width: 100%;
        height: auto;
    }

    .header_phone {
        font-size: 16px;
    }

    .header_order {
        display: none;
    }

    .header_logo-title {
        line-height: 120%;
        margin-left: 9px;
        font-size: 15px;
    }

    .header_messages {
        display: none;
    }

    .btn {
        font-size: 18px;
    }

    .main {
        margin-top: 100px;
        margin-bottom: 80px;
    }

    .main_wrapper {
        flex-direction: column-reverse;
    }

    .main_img {
        width: 100%;
    }

    .main_img>img {
        width: 100%;
    }

    .main_video {
        right: 40px;
    }

    .main_info {
        width: 100%;
        padding-top: 10px;
        margin-top: 15px;
        border-top: 1px solid #404040;
    }

    .structure_img {
        left: 60px;
    }

    .why_form-wrapper {
        margin-right: 0;
    }

    .why_img {
        width: 508px;
    }

    .structure_wrapper {
        flex-direction: column;
    }

    .structure_items {
        width: 100%;
    }

    .why_warpper {
        flex-direction: column;
    }

    .why_info {
        width: 100%;
        margin-top: 35px;
    }

    .why_item {
        padding-left: 40px;
    }

    .why_item-title span {
        left: -40px;
    }

    .order_btn {
        position: absolute;
        top: 250px;
        right: 30px;
    }

    .order {
        position: relative;
    }

    .order_title {
        width: 100%;
    }

    .main_links {
        justify-content: flex-start;
    }

    .main_btn {
        margin-right: 50px;
    }

    .order_top {
        margin-bottom: 60px;
        position: relative;
    }

    .scroll {
        right: 15px;
    }

    .steps,
    .production,
    .delivery,
    .reviews,
    .gallery,
    .cost,
    .options,
    .size,
    .quiz,
    .video_block,
    .health,
    .order,
    .why,
    .structure {
        margin: 80px 0;
    }

    .structure_info {
        width: 100%;
    }

    .structure_wrapper {
        position: relative;
    }

    .structure_title {
        margin-bottom: 550px;
    }

    .health_warpper {
        flex-direction: column;
    }

    .health_info {
        width: 100%;
        margin-bottom: 0px;
    }

    .video_block-wrapper {
        width: 100%;
        height: 560px;
        padding: 60px;
    }

    .cost_img {
        width: 560px;
    }

    .cost_info {
        width: 380px;
    }

    .gallery_img.big {
        height: 424px;
    }

    .size_item-left {
        width: 150px;
    }

    .size_item-max {
        width: 96px;
        height: 96px;
        background-size: cover;
    }

    .size_item-options {
        margin-bottom: 20px;
    }

    .health_img {
        width: 400px;
    }

    .options_item-img {
        height: 270px;
    }

    .reviews_inner {
        flex-direction: column-reverse;
    }

    .reviews_videos {
        width: 100%;
        margin-right: 0;
        max-width: 100%;
    }

    .steps_items {
        flex-wrap: wrap;
    }

    .steps_item {
        width: 32%;
        margin-bottom: 30px;
    }

    .steps_item:last-child:before {
        left: 45px;
    }

    .production_img.big {
        height: 456px;
    }

    .production_img {
        height: 218px;
    }

    .steps_item-text {
        margin-bottom: 20px;
    }

    .reviews_video {
        height: auto;
    }

    .footer_wrapper {
        flex-wrap: wrap;
    }

    .footer_links {
        width: 100%;
        justify-content: space-between;
    }

    .footer_wrapper {
        position: relative;
        padding-bottom: 140px;
    }

    .footer {
        padding-bottom: 60px;
    }

    .footer_text {
        position: absolute;
        right: 50%;
        transform: translateX(50%);
        bottom: 40px;
        text-align: center;
        width: 260px;
        margin-bottom: 0;
    }

    .footer_polit {
        position: absolute;
        right: 50%;
        transform: translateX(50%);
        bottom: 0;
    }

    .quiz_page-wrapper {
        flex-direction: column;
    }

    .quiz_page-info {
        width: 100%;
        margin-bottom: 20px;
    }

    .quiz_page-img {
        width: 100%;
        height: auto;
    }

    .size_popup-wrapper {
        flex-direction: column;
    }

    .size_popup {
        width: 968px;
        padding: 50px 30px;
    }

    .size_popup-info {
        width: 100%;
    }

    .size_popup-imgs {
        width: 690px;
        margin-bottom: 20px;
    }

    .delivery_wrapper {
        flex-direction: column-reverse;
    }

    .delivery_info {
        width: 100%;
    }

    .delivery_options {
        padding-left: 40px;
    }

    .delivery_img {
        height: 725px;
    }

    .question_wrapper {
        flex-direction: column;
    }

    .question_left {
        margin: 0 auto 30px;
    }

    .question_map {
        width: 100%;
    }

    .thanks_page .main_wrapper,
    .error_page .main_wrapper {
        flex-direction: column;
        border-top: none;
        position: relative;
    }

    .thanks_page .main_info,
    .error_page .main_info {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }

    .thanks_page .main_img,
    .error_page .main_img {
        position: absolute;
        left: 0;
        bottom: 90px;
    }

    .thanks_page-info {
        margin-bottom: 440px;
    }

    .error_page .main_text {
        margin-bottom: 620px;
    }

    .thanks_page .main_text {
        margin-bottom: 20px;
    }

    .reviews_video {
        height: 265px;
    }
}

@media(max-width:998px) {
    .container {
        max-width: 768px;
    }

    .header {
        position: fixed;
        background-color: #1B1C1B;
    }

    .header_inner {
        position: fixed;
        flex-direction: column;
        align-items: center;
        opacity: 0;
        top: 74px;
        right: 0;
        padding-top: 20px;
        visibility: hidden;
        width: 100%;
        height: 100%;
        padding-bottom: 100px;
        transition: all 0.6s;
        overflow: auto;
        background: #1B1C1B;
    }

    .structure_title {
        margin-bottom: 390px;
    }

    .header_inner.active {
        opacity: 1;
        visibility: visible;
    }

    .menu {
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .menu a {
        margin: 0 0 20px;
    }

    .header_wrapper {
        border-bottom: none;
    }

    .structure_img {
        width: 500px;
    }

    .options_title {
        padding-right: 140px;
    }

    .footer_links {
        flex-wrap: wrap;
        position: relative;
    }

    .footer_item {
        margin-right: 0;
        width: 32%;
        margin-bottom: 24px;
    }

    .footer_right {
        width: 32%;
        align-items: flex-start;
    }

    .menu_burger {
        width: 25px;
        height: 16px;
        margin-left: 36px;
        display: block;
        position: relative;
    }

    .menu_burger::before {
        position: absolute;
        content: "";
        height: 2px;
        background-color: #D1B47A;
        width: 100%;
        top: 0;
        right: 0;
        transition: all 0.3s;
        border-radius: 2px;
    }

    .menu_burger.active::before {
        transform: rotate(45deg);
        top: 7px;
    }

    .menu_burger::after {
        position: absolute;
        content: "";
        height: 2px;
        background-color: #D1B47A;
        width: 100%;
        border-radius: 2px;
        bottom: 0;
        right: 0;
        transition: all 0.3s;
    }

    .menu_burger.active::after {
        transform: rotate(-45deg);
        bottom: 7px;
    }

    .menu_burger span {
        position: absolute;
        content: "";
        height: 2px;
        background-color: #D1B47A;
        width: 100%;
        border-radius: 2px;
        top: 7px;
        right: 0;
        transition: all 0.3s;
    }

    .menu_burger.active span {
        transform: scale(0);
    }

    .header_inner .header_phone {
        font-size: 20px;
        margin: 0 auto 30px;
        display: block;
        width: fit-content;
    }

    .header_inner .header_order {
        display: flex;
        width: fit-content;
        align-items: center;
        margin: 0 auto 30px;
    }

    .header_inner .header_messages {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        margin-right: 0;
    }

    .header_btn {
        display: flex;
        margin: 0 auto;
    }

    .header_inner .header_btn {
        display: flex;
    }

    .popup_body {
        padding: 60px 30px;
    }

    .popup_order-img {
        width: 300px;
    }

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

    .quiz_page {
        margin: 80px 0 60px;
    }

    .size_popup-imgs {
        width: 100%;
    }

    .size_popup {
        max-width: 738px;
    }

    .structure_item {
        padding-right: 0;
        padding-left: 45px;
    }

    .structure_item::before {
        left: 0;
    }

    .why_form-wrapper {
        margin: 0 auto;
    }

    .why_form {
        padding-bottom: 330px;
    }

    .health_img {
        width: 460px;
    }

    .video_block-img {
        width: 60px;
        margin-bottom: 20px;
    }

    .video_block-wrapper {
        height: auto;
    }

    .video_block-img img {
        width: 100%;
        height: auto;
    }

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

    .video_block-text {
        font-size: 20px;
    }

    .size_items {
        flex-wrap: wrap;
    }

    .size_item {
        width: 48%;
        margin-bottom: 25px;
    }

    .size_item:last-child {
        margin-bottom: 0;
    }

    .cost_wrapper {
        position: relative;
    }

    .cost_img {
        position: absolute;
        top: 140px;
    }

    .cost_info {
        width: 100%;
    }

    .cost_text {
        margin-bottom: 320px;
    }

    .gallery_inner {
        flex-direction: column;
    }

    .gallery_imgs {
        width: 100%;
        margin-bottom: 10px;
    }

    .gallery_imgs .gallery_img:nth-child(1),
    .gallery_imgs .gallery_img:nth-child(2) {
        margin-bottom: 10px;
    }

    .gallery_inner:nth-child(2n + 1) {
        flex-direction: column;
    }

    .gallery_img {
        height: auto;
        width: calc(50% - 5px);
    }

    .gallery_img.big {
        height: auto;
        width: 100%;
    }

    .production_inner {
        flex-direction: column;
    }

    .production_img.big {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .production_imgs {
        width: 100%;
    }

    .production_img {
        width: calc(50% - 5px);
        margin-bottom: 10px;
    }

    .delivery_img {
        height: 600px;
    }

    .error_page .main_text {
        margin-bottom: 490px;
    }

    .thanks_page-info {
        margin-bottom: 350px;
    }

    .header_adres {
        margin-left: 0;
        margin-top: 40px;
    }

    .header_adres-body {
        display: none;
        padding: 0;
        width: 100%;
        height: 100%;
        background: none;
    }

    .header_adres-list {
        position: relative;
        transform: none;
        bottom: auto;
        left: auto;
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%;
        opacity: 1;
        visibility: visible;
    }

    .header_adres-list_item {
        margin-bottom: 25px;
        font-size: 18px;
    }

    .menu>li:first-child::before {
        display: none;
    }

    .header_nav-body {
        transform: none;
        position: relative;
        bottom: auto;
        z-index: 2;
        left: auto;
        flex-direction: column;
        align-items: center;
        box-shadow: none;
        padding: 0;
    }

    .menu a {
        justify-content: center;
        text-align: center;
    }

    .header_nav-item {
        padding-left: 0;
    }

    .header_nav-title {
        font-size: 16px !important;
    }

    .header_nomenu .menu {
        display: none;
    }

    .reviews_video {
        height: 200px;
    }

    .present_link {
        width: 140px;
    }

    .present_link img {
        width: 100%;
        height: auto;
    }
}

@media(max-width:767px) {
    .container {
        max-width: 100%;
    }

    .header_phone {
        font-size: 0;
    }

    .header_links .header_phone {
        width: 15px;
        height: 19px;
        padding: 0;
    }

    .menu_burger {
        margin-left: 30px;
    }

    .header_logo-title {
        padding-left: 9px;
    }

    .header_logo-img {
        margin-right: 0;
    }

    .link {
        font-size: 18px;
        padding-right: 25px;
        padding: 3px 25px 3px 0;
    }

    .link svg {
        top: 10px;
    }

    .steps,
    .production,
    .delivery,
    .reviews,
    .gallery,
    .cost,
    .options,
    .size,
    .quiz,
    .video_block,
    .health,
    .order,
    .why,
    .structure {
        margin-bottom: 90px;
    }

    .structure {
        margin-top: 90px;
    }

    .title {
        font-size: 28px;
    }

    .structure_img {
        width: 335px;
        left: -30px;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .structure_items {
        flex-wrap: nowrap;
        overflow: auto;
        padding-bottom: 30px;
        width: calc(100% + 15px);
    }

    .structure_items::-webkit-scrollbar {
        background: #929292;
        border-radius: 10px;
        height: 3px;
    }

    .structure_items::-webkit-scrollbar-track {
        border-radius: 10px;
        height: 3px;
    }

    .structure_items::-webkit-scrollbar-thumb {
        border-radius: 10px;
        height: 3px;
        background-color: #D1B47A;
    }

    .structure_item {
        width: 224px;
        min-width: 224px;
        margin-right: 32px;
        padding-right: 0;
        margin-bottom: 0;
    }

    .structure_item-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .structure_item-text {
        font-size: 16px;
    }

    .why_title {
        width: 100%;
    }

    .why_img {
        width: 426.938px;
    }

    .why_item-title {
        font-size: 18px;
        width: calc(100% - 75px);
    }

    .why_item-img {
        width: 70px;
    }

    .why_item-img img {
        width: 100%;
        height: auto;
    }

    .order_img {
        height: 330px;
    }

    .order_btn {
        margin-top: 0;
    }

    .order_top {
        padding-top: 10px;
        padding-bottom: 0;
        margin-bottom: 70px;
        border-bottom: none;
    }

    .order_btn {
        top: 195px;
    }

    .order_wrapper {
        padding-bottom: 20px;
        border-bottom: 1px solid #D2C9B5;
    }

    .health_title {
        margin-bottom: 40px;
    }

    .health_item {
        width: 100%;
        font-size: 18px;
    }

    .quiz_title {
        margin-bottom: 40px;
    }

    .options_title {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .options_items {
        width: calc(100% + 15px);
        display: flex;
        overflow: auto;
        margin-left: 0;
    }

    .options_item-img {
        height: 334px;
        width: 100%;
        margin-bottom: 15px;
    }

    .options_item {
        min-width: 300px;
        width: 300px;
        margin: 0 15px 0 0;
    }

    .options_item-title {
        font-size: 16px;
    }

    .reviews_slider::-webkit-scrollbar,
    .options_items::-webkit-scrollbar {
        background: #929292;
        border-radius: 10px;
        height: 3px;
    }

    .reviews_slider::-webkit-scrollbar-track,
    .options_items::-webkit-scrollbar-track {
        border-radius: 10px;
        height: 3px;
    }

    .reviews_slider::-webkit-scrollbar-thumb,
    .options_items::-webkit-scrollbar-thumb {
        border-radius: 10px;
        height: 3px;
        background-color: #D1B47A;
    }

    .reviews_slider {
        display: flex;
        padding-bottom: 20px;
        width: calc(100% + 15px);
        overflow: auto;
        margin-left: 0;
    }

    .reviews_slide {
        width: 290px;
        margin-right: 20px;
        min-width: 290px;
        padding: 24px 20px;
    }

    .reviews_inner {
        align-items: flex-start;
    }

    .reviews_slide-title {
        margin-bottom: 12px;
    }

    .reviews_slide-text {
        font-size: 16px;
    }

    .reviews_videos {
        flex-direction: column;
        min-width: 0px;
    }

    .reviews_video {
        width: 100%;
        margin-bottom: 20px;
    }

    .reviews_video:last-child {
        margin-bottom: 0;
    }

    .reviews_slide-title {
        font-size: 22px;
    }

    .footer_info {
        width: 100%;
    }

    .footer_logo {
        justify-content: center;
        margin-bottom: 36px;
    }

    .footer_item {
        width: 48%;
        margin-bottom: 50px;
    }

    .footer_item:nth-child(1) {
        margin-right: 52%;
    }

    .footer_right {
        top: 0;
        right: 0;
        width: 48%;
        bottom: auto;
        position: absolute;
    }

    .footer_item:nth-child(3) {
        position: absolute;
        top: 93px;
        right: 0;
    }

    .footer_link {
        margin-bottom: 0;
    }

    .footer_item:nth-child(2) {
        order: 1;
    }

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

    .footer_wrapper {
        padding-bottom: 100px;
    }

    .footer_dev {
        display: none;
    }

    .footer_number {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .footer_item:nth-child(3) .footer_item-title {
        margin-bottom: 12px;
    }

    .footer_dev.mobile {
        display: flex;
        position: absolute;
        bottom: 0;
        bottom: 150px;
        right: 0;
    }

    .popup_body {
        padding: 50px 30px 250px;
        overflow: hidden;
    }

    .popup_body-title {
        text-align: center;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .popup_body-title br {
        display: none;
    }

    .popup_body-inp {
        width: 100%;
        height: 60px;
    }

    .popup_body-btn {
        width: 100%;
        margin-bottom: 10px;
        height: 60px;
    }

    .popup_body-ok {
        width: 270px;
        margin: 0 auto;
        text-align: center;
    }

    .popup_order .popup_order-img {
        width: 213px;
        right: 50%;
        transform: translateX(50%);
    }

    .popup_catalog .popup_order-img {
        width: 360px;
        bottom: -50px;
        max-height: 330px;
    }

    .popup_question .popup_order-img {
        width: 282px;
        height: 243px;
        right: 50%;
        transform: translateX(50%);
        left: auto;
    }

    .popup_question .popup_order-img img {
        object-position: top;
    }

    .quiz_page-title {
        font-size: 46px;
        margin-bottom: 30px;
        width: 100%;
    }

    .quiz_page-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .quiz_page-text {
        width: 100%;
        font-size: 26px;
        margin-bottom: 30px;
    }

    .quiz_page-info {
        padding: 10px 0 20px;
    }

    .quiz_page-wrapper {
        margin-bottom: 30px;
    }

    .quiz_page-item {
        margin-top: 30px;
    }

    .size_popup {
        width: 100%;
        padding: 50px 15px 40px;
    }

    .size_popup-img {
        height: 240px;
    }

    .size_popup-dot {
        height: 45px;
    }

    .size_popup-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .size_popup-subtitle {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .size_popup-option {
        font-size: 16px;
    }

    .size_popup-item {
        margin-bottom: 20px;
    }

    .size_popup-btn {
        margin-right: 0;
    }

    .size_popup-links {
        justify-content: space-between;
    }

    .size_popup-wrapper {
        padding-top: 20px;
    }

    .main_video {
        display: none;
    }

    .main {
        margin: 74px 0 70px;
    }

    .main_img {
        width: 100vw;
        margin-left: -15px;
        border-radius: 5px;
        overflow: hidden;
    }

    .main_title {
        font-size: 32px;
        width: 330px;
        margin-bottom: 20px;
    }

    .main_text {
        font-size: 22px;
        margin-bottom: 30px;
        width: calc(100% - 157px);
    }

    .main_info {
        display: flex;
        flex-direction: column;
        position: relative;
        align-items: flex-start;
    }

    .main_links {
        width: 100%;
    }

    .main_link {
        width: 86px;
        position: absolute;
        top: 212px;
        right: 0;
    }

    .main_link svg {
        top: 50%;
        transform: translateY(-50%);
    }

    .main_btn {
        width: 100%;
        height: 60px;
        padding: 0;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .main_items {
        margin-bottom: 0;
        width: 100%;
        order: 1;
    }

    .main_item {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .structure_wrapper {
        padding-top: 10px;
    }

    .structure_img {
        top: 100px;
    }

    .structure_title {
        margin-bottom: 270px;
    }

    .structure_items {
        padding-bottom: 10px;
    }

    .why_item {
        padding-left: 0;
    }

    .why_item-img {
        min-width: 70px;
        margin-right: 20px;
    }

    .why_item-title br {
        display: none;
    }

    .why_form {
        margin-top: 50px;
        padding-bottom: 290px;
    }

    .why_form-wrapper {
        width: 100%;
    }

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

    .why_form-inp {
        height: 60px;
    }

    .why_form-btn {
        height: 60px;
        padding: 0;
        line-height: 0;
    }

    .why_form-ok {
        text-align: center;
        width: 276px;
        margin: 0 auto;
    }

    .health_title br {
        display: none;
    }

    .health_item {
        margin-bottom: 30px;
    }

    .health_img {
        width: 295px;
        height: auto;
    }

    .video_block-wrapper {
        max-width: 100%;
        height: 493px;
        padding: 170px 50px 50px;
        background-image: url(../img/video_block2.jpg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        width: 330px;
    }

    .video_block-title {
        text-align: center;
        margin-bottom: 15px;
    }

    .video_block-text {
        text-align: center;
        font-size: 18px;
    }

    .size_title {
        margin-bottom: 36px;
    }

    .size_item {
        width: 100%;
        margin-bottom: 40px;
    }

    .size_item-title {
        font-size: 28px;
    }

    .size_item-max {
        margin-top: 68px;
    }

    .cost_img {
        width: 330px;
        right: 50%;
        top: 180px;
        transform: translateX(50%);
    }

    .cost_text {
        font-size: 24px;
        margin-bottom: 256px;
    }

    .cost_form-text {
        font-size: 16px;
    }

    .cost_form-inp {
        height: 60px;
    }

    .cost_form-btn {
        height: 60px;
        padding: 0;
        line-height: 1;
    }

    .gallery_link {
        margin-top: 30px;
    }

    .reviews_title {
        padding-right: 0;
    }

    .reviews_slide {
        margin-left: 0;
    }

    .steps_item {
        width: 100%;
        padding-left: 78px;
        position: relative;
    }

    .steps_item:last-child {
        margin-bottom: 0;
    }

    .steps_item-number {
        position: absolute;
        left: 0;
        top: 0;
    }

    .steps_item::before {
        width: 1px;
        height: calc(100% + 30px);
        top: 0;
        left: 24px;
        right: auto;
    }

    .steps_item:last-child:before {
        display: none;
    }

    .delivery_text {
        margin-bottom: 12px;
        font-size: 16px;
    }

    .delivery_options {
        margin-top: 30px;
    }

    .delivery_option {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .delivery_img {
        width: 100vw;
        margin-left: -15px;
        height: auto;
    }

    .delivery_img img {
        width: 100%;
        height: auto;
    }

    .question {
        padding: 0;
        background: none;
    }

    .question_left {
        border-radius: 5px;
        width: 100%;
        background: #252525;
        padding: 70px 20px;
    }

    .question_title {
        text-align: center;
        width: 200px;
        margin: 0 auto 20px;
    }

    .question_text {
        font-size: 24px;
        margin-bottom: 40px;
        text-align: center;
    }

    .question_form-btn,
    .question_form-inp {
        width: 100%;
        height: 60px;
    }

    .question_form-ok {
        text-align: center;
    }

    .question_map {
        height: 360px;
    }

    .scroll {
        bottom: 80px;
    }

    .error_page .main_title {
        margin-bottom: 10px;
    }

    .error_page .main_text {
        width: 100%;
        margin-bottom: 68vw;
    }

    .thanks_page .main_btn,
    .error_page .main_btn {
        margin-bottom: 0;
        height: 60px;
        line-height: 1;
    }

    .thanks_page .main_img {
        height: 58vw;
        width: 100%;
        margin-left: 0;
    }

    .error_page .main_img {
        width: 100%;
        margin-left: 0;
    }

    .thanks_page-info {
        margin-bottom: 72vw;
    }

    .thanks_page-text br {
        display: none;
    }

    .thanks_page .main_text {
        width: 100%;
    }

    .thanks_page-text {
        font-size: 22px;
    }

    .thanks_page,
    .error_page {
        margin-bottom: 30px;
    }

    .cost_form {
        width: 100%;
    }

    .size_popup-links {
        flex-direction: column;
    }

    .size_popup-btn {
        width: 100%;
        margin-bottom: 20px;
    }

    .quiz_title span:last-child {
        display: block;
    }

    .quiz_page .main_text {
        width: 100%;
    }

    .quiz_page {
        margin-bottom: 30px;
    }

    .quiz_page+.quiz {
        margin: 30px 0;
    }

    .reviews_video {
        height: 52vw;
    }

    .popup_present-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .popup_present-text {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .popup_present .popup_order-img {
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
    }

    .present_link {
        width: 90px;
        bottom: 90px;
    }
}


.form_btn {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    padding: 22px 50px 22px 50px;
    font-weight: 500;
    width: fit-content;
    font-size: 20px;
    color: #000;
    background: #D1B47A;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    margin-bottom: 14px;
}

.popup_body .contact-form {
    max-width: 410px;
}

.form_inp {
    display: block;
    border: none;
    width: 100%;
    background: none;
    font-size: 18px;
    height: 39px;
    color: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: 18px;
}

.form_inp::placeholder {
    color: #fff;
}

.form_ok {
    display: block;
    font-weight: 300;
    font-size: 12px;
    line-height: 110%;
    padding-left: 30px;
    position: relative;
    color: #fff;
    cursor: pointer;
    margin: 0 auto 10px;
}

.form_ok a {
    color: #fff;
    text-decoration: underline;
}

.form_ok span {
    border: 1px solid #C5C5C5;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
}

.form_ok input {
    position: absolute;
    opacity: 0;
}

.form_ok:last-child {
    margin-bottom: 0;
}

.form_ok input:checked+span::before {
    position: absolute;
    content: "";
    top: 50%;
    background: #fff;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    right: 50%;
    transform: translate(50%, -50%);
}


.whats_up {
    width: 60px;
    height: 60px;
    transform: translateX(25%);
    border-radius: 50%;
    overflow: hidden;
    z-index: 8;
    position: fixed;
    bottom: 110px;
    right: 10%;
    animation: btnAnim2 1s ease infinite;
}

@keyframes btnAnim2 {

    0% {
        box-shadow: 0 0 0 0 rgb(73 153 249 / 80%);
    }

    100% {
        box-shadow: 0 0 0 15px rgb(73 153 249 / 0%);
    }
}

.whats_up svg,
.whats_up img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

@media (max-width: 475px) {
    .whats_up {
        bottom: 130px;
        right: 12px;
        width: 40px;
        height: 40px;
        transform: none;
    }
}