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

body {
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    background: #fff;
}
* {
    font-family: inherit;
    line-height: 150%; /* 24px */
    font-size: inherit;
    outline: none;
    box-sizing: border-box;
}

:root {
    --light-gray: #F5F5F5;
    --orange: #FF6B00;
    --light-black: #2D2D2D;
    --white: #FFF;
    --black: #1D1D1B;
}

.is_mobile {
    display: none !important;
}
.is_middle_desktop {
    display: none !important;
}

.container {
    margin: 0 auto;
    width: calc(100% - 73px*2);
    max-width: calc(100% - 73px*2);
    min-width: 1175px;
}

input {
    -webkit-appearance: none;
    border-radius: 0;
}

.btn {
    width: 425px;
    height: 63px;
    background: #030303;
    text-decoration: none;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: none;
    transition: 0.4s all;
    cursor: pointer;
}
.btn:hover {
    background: transparent;
    color: #030303;
    border: 1px solid #030303;
}
.btn.alt {
    border: 1px solid #030303;
    background: transparent;
    color: #030303;
    cursor: pointer;
}
.btn.alt.inverse {
    border: 1px solid #fff;
    color: #fff;
}
.btn.alt:hover {
    background: #030303;
    color: #FFF;
}

h3 {
    color: #030303;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
    margin: 0 0 45px 0;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type="number"] {
    -moz-appearance: textfield;
}

header {
    padding: 17px 0;
}
header:not(.home) {
    border-radius: 0 0 40px 40px;
    background: #F7F8FA;
}
header.home {
    background: #F7F8FA;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 73px*2);
    max-width: calc(100% - 73px*2);
}
header .mobile_menu {
    display: none;
}
header .menu {

}
header .menu ul {
    display: flex;
    gap: 32px;
    align-items: center;
}
header .menu ul li {
    padding: 16px 0;
}
header .menu ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #030303;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}
header .menu ul li a.btn.alt {
    height: 36px;
    width: auto;
    padding: 0 24px;
    border-radius: 10px;
}
header .menu ul li.has_childs {
    position: relative;
}
header .menu ul li.has_childs > a:after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: url(../images/menu_arrow.svg) no-repeat center center;
}
header .menu ul li.has_childs ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    border-radius: 20px;
    border: 1px solid #EDEDED;
    background: #FFF;
    flex-direction: column;
    gap: 16px;
    align-items: start;
    padding: 24px 24px;
    min-width: 187px;
    z-index: 9;
}
header .menu ul li.has_childs:hover > ul {
    display: flex;
}
header .menu ul li.has_childs ul > li {
    padding: 0;
}
header .menu ul li.has_childs ul > li a {
    
}

.hero {
    background: url(../images/hero_bg.png) no-repeat center right, #F7F8FA;
    border-radius: 0 0 40px 40px;
    height: 860px;
    display: flex;
    align-items: center;
}
.hero h1 {
    color: #030303;
    font-family: Gilroy;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px; /* 114.583% */
    margin: 0 0 64px 0;
}
.hero .hero__description {
    max-width: 704px;
    color: #030303;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 187.5% */
    margin: 0 0 64px 0;
}
.hero .hero__form {
    width: 753px;
    border-radius: 40px;
    border: 1px solid #EDEDED;
    background: #FFF;
    padding: 32px;
}
.hero .hero__form .form__title {
    display: flex;
    align-items: center;
    gap: 16px;

    color: #030303;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 136.364% */;
    margin: 0 0 16px 0;
}
.hero .hero__form .form__title .title__icon {

}
.hero .hero__form .form__title .title__icon svg {
    display: block;
}
.hero .hero__form .form__description {
    color: #35383F;

    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    margin: 0 0 27px 0;
}
.hero .hero__form .form__fields {

}
.hero .hero__form .form__fields .field {
    margin: 0 0 27px 0;
}
form .help-block {
    font-size: 12px;
    color: red;
    padding: 0 28px;
}
.hero .hero__form .form__fields .field input[type=text] {
    height: 63px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #EDEDED;
    outline: none;
    background: #FFF;
    padding: 0 28px;
}
.hero .hero__form .form__fields .submit {
    display: flex;
    align-items: center;
    gap: 64px;
}
.hero .hero__form .form__fields .submit button[type=submit] {
    padding: 0 24px;
}

.checkbox {

}
.checkbox input {
    display: none;
}
.checkbox label {
    display: block;
    background: url(../images/checkbox_off.svg) no-repeat center left;
    color: #35383F;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    padding: 0 0 0 42px;
    cursor: pointer;
}
.checkbox input:checked + label {
    background: url(../images/checkbox_on.svg) no-repeat center left;
}
.checkbox label a {
    color: #030303;
    text-decoration-line: underline;
}

.why {
    padding: 200px 0;
}
.why .why__items {

}
.why .why__items ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.why .why__items ul li {
    display: flex;
    align-items: end;
    position: relative;
    width: calc(100%/3 - 25px*2/3);
    height: 260px;
    background: #F7F8FA;
    border-radius: 20px;
    padding: 40px;
    color: #030303;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px; /* 138.889% */
}
.why .why__items ul li .icon {
    position: absolute;
    top: 25px;
    right: 25px;
}

.production {
    padding: 0 0 200px 0;
}
.production .production__items {

}
.production .production__items ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.production .production__items ul li {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    width: calc(100% / 2 - 25px / 2);
    height: 487px;
    background-image: var(--background);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-color: #F7F8FA;
    border-radius: 40px;
    padding: 40px;
}
.production .production__items ul li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.production .production__items ul li span.item__name {
    color: #030303;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 136.364% */
}
.production .production__items ul li span.item__name .name__description {
    display: block;
    color: #35383F;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
    margin: 16px 0 0 0;
}
.production .production__items ul li span.item__more {
    color: #030303;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    gap: 13px;
    align-items: center;
}
.production .production__items ul li span.item__more svg {
    transition: all 0.4s;
}
.production .production__items ul li:hover span.item__more svg {
    transform: translateX(10px);
}

.about {
    padding: 0 0 200px 0;
}
.about .container {
    max-width: 1175px;
}
.about .video {
    margin: 0 0 46px 0;
}
.about .video ul {
    position: relative;
    margin:  0 0 35px 0;
}
.about .video ul li {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}
.about .video ul li video {
    display: block;
    aspect-ratio: 1175/756;
    width: 100%;
    object-fit: cover;
}
.about .video ul li img {
    display: block;
    aspect-ratio: 1175/756;
    width: 100%;
    object-fit: cover;
}
.about .video ul li .item__name {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #FFF;
    display: flex;
    align-items: end;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    z-index: 1;
    cursor: pointer;
    width: 100%;
    height: 100%;
    padding: 0 0 64px 64px;
}
.about .video ul li.image .item__name {
    flex-direction: column;
    align-items: start;
    justify-content: end;
    gap: 16px;
}
.about .video ul li.image .item__name .name__title {
    
}
.about .video ul li.image .item__name .name__description {
    font-size: 16px;
    font-weight: 400;
}
.about .video ul li .item__name .name_flexbox {
    display: flex;
    align-items: center;
    gap: 32px;
}
.about .video ul li .item__name .pause {
    display: none;
}
.about .video ul .slick-prev {
    position: absolute;
    width: 71px;
    height: 69px;
    border-radius: 20px;
    background: url(../images/slide_arrow_left.svg) no-repeat center center, #019AA8;
    left: 32px;
    top: calc(50% - 69px/2);
    z-index: 1;
    text-indent: -9999px;
    border: none;
    outline: none;
    cursor: pointer;
}
.about .video ul .slick-next {
    position: absolute;
    width: 71px;
    height: 69px;
    border-radius: 20px;
    background: url(../images/slide_arrow_right.svg) no-repeat center center, #019AA8;
    right: 32px;
    top: calc(50% - 69px/2);
    z-index: 1;
    text-indent: -9999px;
    border: none;
    outline: none;
    cursor: pointer;
}
.about .video ul .slick-disabled {
    opacity: 0.5;
}
.about .video .previews {
    display: flex;
    flex-wrap: unset;
    gap: 15px;
    white-space: nowrap;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.about .video .previews .preview {
    position: relative;
    cursor: pointer;
    height: 119px;
    border-radius: 20px;
    overflow: hidden;
    width: calc(100%/6 - 15px*5/6);
    min-width: calc(100% / 6 - 15px * 5 / 6);

    background-image: var(--background);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: cover;
}
.about .video .previews .preview.image.active:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    border: 5px solid #019AA8;
    width: calc(100% - 2 * 5px);
    height: calc(100% - 2 * 5px);
    pointer-events: none;
}
.about .video .previews .preview .hover {
    opacity: 0;
    transition: all 0.4s;
    background: rgba(53, 56, 63, 0.78);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about .video .previews .preview:hover .hover,
.about .video .previews .preview.active .hover {
    opacity: 1;
}
.about .video .previews .preview .hover svg {
    width: 34px;
}
.about .grid__title {
    font-size: 32px;
    margin: 0 0 50px 0;
}
.about .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.about .grid .grid__item {
    width: calc(100%/3 - 30px*2/3);
    height: 222px;
    border-radius: 20px;
    border: 1px solid #EDEDED;
    padding: 35px;
    display: flex;
    justify-content: end;
    flex-direction: column;
}
.about .grid .grid__item.x2 {
    width: calc((100% / 3 - 30px * 2 / 3) * 2 + 30px);
}
.about .grid .grid__item .item__title {
    color: #030303;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 85px; /* 212.5% */
}
.about .grid .grid__item .item__description {
    color: #35383F;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
}
.about .grid .grid__item.link {
    border-color: #019AA8;
}
.about .grid .grid__item.link a {
    display: flex;
    justify-content: space-between;
    align-items: end;
    text-decoration: none;
}
.about .grid .grid__item.link a span {
    color: #030303;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.about .grid .grid__item.link a svg {
    transition: all 0.4s;
}
.about .grid .grid__item.link:hover a svg {
    transform: translateX(10px);
}
.about .grid .grid__item.link a svg path {
    fill: #019AA8;
}

.partners {
    padding: 100px 0;
    background: #F7F8FA;
}
.partners .items {

}
.partners .items ul {
    display: flex;
    flex-wrap: wrap;
    gap: 38px;
}
.partners .items ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 246px;
    width: calc(100%/5 - 38px*4/5);
    border-radius: 20px;
    background: #FFF;
}
.partners .items ul li img {
    transition: all 0.4s;
}
.partners .items ul li:hover img {
    transform: scale(1.1);
}

.reviews {
    padding: 100px 0;
    background: #F7F8FA;
}
.reviews h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.reviews .items {

}
.reviews .items ul {
    display: flex;
    gap: 25px;
    white-space: nowrap;
    overflow-x: scroll;

    -ms-overflow-style: none;
    scrollbar-width: none;
}
.reviews .items ul li,
.modal .review {
    position: relative;
    background: #fff;
    border: 1px solid #EDEDED;
    border-radius: 20px;
    width: calc(100%/4 - 25px*3/4);
    /*min-width: calc(100% / 4 - 25px * 3 / 4);*/
    min-width: 425px;
    white-space: normal;
    padding: 25px 40px;
}
.reviews .items ul li .item__name,
.modal .review .review__name {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0 0 20px 0;
}
.reviews .items ul li .item__name .name__avatar,
.modal .review .review__name .name__avatar {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: #AED6EF;
}
.reviews .items ul li .item__name .name__avatar img,
.modal .review .review__name .name__avatar img {
    max-width: 100%;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    object-fit: cover;
}
.reviews .items ul li .item__name .name__title,
.modal .review .review__name .name__title {
    color: #030303;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.reviews .items ul li .item__meta,
.modal .review .review__meta {
    display: flex;
    align-items: center;
    gap: 17px;
    margin: 0 0 20px 0;
}
.reviews .items ul li .item__meta .meta__mark,
.modal .review .review__meta .meta__mark {
    display: flex;
    gap: 3px;
}
.reviews .items ul li .item__meta .meta__date,
.modal .review .review__meta .meta__date {
    color: #030303;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.modal .review .review__meta .meta__label {

}
.modal .review .review__meta .meta__label svg {
    width: 88px;
    height: auto;
}
.modal .modal__close {
    position: absolute;
    top: 30px;
    right: 30px;
}
.modal .modal__close svg {
    width: 33px;
    height: 33px;
}
.reviews .items ul li .item__text,
.modal .review .review__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    
    color: #35383F;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
    margin: 0 0 40px 0;
}
.reviews .items ul li .item__more {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #030303;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
}
.items_scrollbar {
    width: 725px;
    height: 1px;
    background: #35383F;
    margin: 70px auto 0 auto;
}
.items_scrollbar span {
    width: 300px;
    height: 3px;
    background: #030303;
    display: block;
    top: -1px;
    position: relative;
}

.benefites {
    padding: 100px 0;
    background: #F7F8FA;
}
.benefites .items {

}
.benefites .items ul {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}
.benefites .items ul li {
    width: calc(100%/3 - 36px*2/3);
    display: flex;
    gap: 68px;
}
.benefites .items ul li .item__number {
    color: #030303;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 75% */
}
.benefites .items ul li .item__text {

}
.benefites .items ul li .item__text .text__title {
    color: #030303;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 136.364% */
    margin: 0 0 22px 0;
}
.benefites .items ul li .item__text .text__text {
    color: #35383F;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
}
.benefites .banner {
    position: relative;
    margin: 200px 0 0 0;
}
.benefites .banner .logo {
    position: absolute;
    top: 50px;
    right: 68px;
}
.benefites .banner img {
    display: block;
    max-width: 100%;
    width: 100%;
    border-radius: 40px;
}

.excursion {
    padding: 0 0 200px 0;
    background: #F7F8FA;
}
.excursion .container {
    display: flex;
    align-items: center;
    gap: 100px;
}
.excursion .form {
    width: 40%;
}
.excursion .form h3 {
    margin: 0 0 20px 0;
}
.excursion .form .form__description {
    color: #35383F;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
    margin: 0 0 40px 0;
}
.excursion .form .form__form {

}
.excursion .form .form__form .field {
    margin: 0 0 35px 0;
}
.excursion .form .form__form .field input {
    height: 63px;
    width: 425px;
    border-radius: 20px;
    border: 1px solid #EDEDED;
    outline: none;
    background: #FFF;
    padding: 0 28px;
}
.excursion .form .form__form .form__submit {
    margin: 0 0 35px 0;
}
.excursion .form .form__form .form__checkbox {
    width: 425px;
}
.excursion .banner {

}
.excursion .banner img {
    max-width: 100%;
    border-radius: 40px;
}

footer {
    border-radius: 40px 40px 0 0;
    background: #35383F;
    padding: 60px 0 20px 0;
}
footer .columns {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 0 0 130px 0;
}
footer .columns .col-2 {
    width: calc(100%/6 - 32px*5/6);
}
footer .columns .col_wrapped {
    width: calc((100% / 6 - 32px * 5 / 6) * 2);
    display: flex;
}
footer .columns .col_wrapped .col-2 {
    width: 50%;
}
footer .columns .col-2 .site_name {
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px; /* 178.571% */
}
footer .columns .col-2 .contacts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
footer .columns .col-2 .contacts a {
    color: #FFF;

    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 17px; /* 178.571% */
    text-decoration: none;
}
footer .columns .col-2 .contacts a svg {
    display: block;
    margin: 8px 0 0 0;
}
footer .columns .col-2 .contacts a svg path {
    fill: #fff;
}
footer .columns .col-2 .menu {

}
footer .columns .col-2 > .menu:not(:first-child) {
    margin: 36px 0 0 0;
}
footer .columns .col-2 .menu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
footer .columns .col-2 .menu ul li {

}
footer .columns .col-2 .menu ul li a {
    color: #F7F8FA;

    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 250% */
    opacity: 0.7;
    text-decoration: none;
}
footer .columns .col-2 .menu ul li a.main_link {
    color: #FFF;
    opacity: 1;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
footer .logo {
    margin: 0 0 40px 0;
}
footer .logo svg {
    max-width: 100%;
}
footer .copyright {
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.main_breadcrumbs {

}
.main_breadcrumbs .breadcrumbs {
    padding: 36px 0;
}
.main_breadcrumbs .breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 8px;
}
.main_breadcrumbs .breadcrumbs ul li {
    color: #030303;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 250% */
}
.main_breadcrumbs .breadcrumbs ul li.active {

}
.main_breadcrumbs .breadcrumbs ul li a {
    text-decoration: none;
    color: inherit;
}
.main_breadcrumbs .breadcrumbs ul > li + li:before {
    content: '/';
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px 0 0;
}

.not_found {
    padding: 0 0 130px 0;
}
.not_found .container {
    display: flex;
    align-items: center;
}
.not_found .text {
    width: 50%;
}
.not_found .text h1 {
    color: #030303;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
}
.not_found .text .text__subtitle {
    color: #030303;
    font-family: Montserrat;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 192.308% */
    margin: 0 0 32px 0;
}
.not_found .text .text__description {
    color: #030303;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
    margin: 0 0 50px 0;
}
.not_found .text .text__button {

}
.not_found .code {
    width: 50%;
    text-align: right;
}
.not_found .code .code__big {
    color: #F7F8FA;
    text-align: right;
    font-family: Montserrat;
    font-size: 378px;
    font-style: normal;
    font-weight: 700;
    line-height: 378px; /* 13.228% */
}

.catalog {

}
.catalog h1 {
    color: #030303;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
    margin: 0 0 28px 0;
}
.catalog .catalog__description {
    position: relative;
    color: #030303;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px; /* 194.444% */
    width: 70%;
    margin: 0 0 47px 0;
}
.catalog .catalog__description a.description__toggle {
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all 0.4s;
}
.catalog .catalog__description a.description__toggle.openned {
    transform: rotate(180deg);
}
.catalog .catalog__content {
    display: none;
    color: #030303;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    width: 70%;
    margin: 0 0 47px 0;
}
.catalog .catalog__content p {
    margin: 0 0 16px 0;
}
.catalog .catalog__content * {
    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
}
.catalog .catalog__filters {

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

}
.catalog .catalog__filters ul li a {
    display: block;
    color: #030303;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 13px 11px;
    border: 1px solid #030303;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.4s;
}
.catalog .catalog__filters ul li a.active,
.catalog .catalog__filters ul li a:hover {
    background: #019AA8;
    border-color: #019AA8;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.catalog .catalog__list {
    margin: 50px 0 50px 0;
}
.catalog .catalog__more {
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.products {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
ul.products li {
    width: calc(100%/4 - 25px*3/4);
}
ul.products li .product__image {
    width: 100%;
    aspect-ratio: 425 / 478;
    border-radius: 40px;
    background: #f7f8fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
ul.products li .product__image img {
    max-width: 100%;
    object-fit: cover;
}
ul.products li .product__name {
    padding: 26px;
}
ul.products li .product__name a {
    color: #030303;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.request {
    margin: 200px 0 0 0;
}
.request .request__form {
    border-radius: 40px;
    background: url(../images/hero_bg.png) no-repeat center right -64px, #F7F8FA;
    background-size: auto 100%;
    width: 1175px;
    margin: 0 auto;
    padding: 91px 43px;
}
.request .request__form .form__description {
    width: 50%;
    color: #35383F;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
    margin: 0 0 32px 0;
}


.loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    justify-content: center;
    align-items: center;
}
.loader svg {
    width: 48px;
}

.steps {
    padding: 120px 0;
}
.steps .items {

}
.steps .items ul {
    display: flex;
    gap: 25px;
    white-space: nowrap;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.steps .items ul li {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: calc(25% - 25px*3/4);
    min-width: 340px;;
    padding: 102px 64px;
    border: 1px solid #EDEDED;
    border-radius: 20px;
    white-space: normal;
}
.steps .items ul li .item__number {
    position: absolute;
    top: 44px;
    right: 26px;
    color: #030303;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 75% */
}
.steps .items ul li .item__title {
    color: #030303;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 136.364% */
    margin: 0 0 35px 0;
}
.steps .items ul li .item__description {
    color: #35383F;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
}

.catalog__detail {
    display: flex;
    gap: 80px;
}
.catalog__detail .detail__image {
    width: 750px;
    min-width: 750px;
}
.catalog__detail .detail__image .image__image {
    margin: 0 0 35px 0;
    border-radius: 40px;
    background: #F7F8FA;
    aspect-ratio: 750 / 511;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}
.catalog__detail .detail__image .image__image.sticky {
    position: sticky;
    top: 10px;
}
.catalog__detail .detail__image .image__image img {
    /* max-width: 100%; */
    /* width: 100%; */
    /* border-radius: 40px; */
    /* background: #F7F8FA; */
    /* aspect-ratio: 750 / 511; */
    /* object-fit: cover; */
    max-height: 100%;
    height: 100%;
    /* object-fit: contain; */
    /* aspect-ratio: auto; */
    /* width: auto; */
    /* flex-shrink: 0; */
    /* align-self: flex-start; */
}
.catalog__detail .detail__image .image__video {
    position: relative;
    overflow: hidden;
}
.catalog__detail .detail__image .image__video video {
    display: block;
    width: 100%;
    aspect-ratio: 750 / 511;
    object-fit: cover;
    border-radius: 40px;
    overflow: hidden;
}
.catalog__detail .detail__image .image__video .video__button {
    position: absolute;
    left: 0;
    bottom: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    padding: 0 0 36px 43px;
}
.catalog__detail .detail__image .image__video .video__button .pause {
    display: none;
}
.catalog__detail .detail__info {

}
.catalog__detail .detail__info .info__main {
    display: flex;
    gap: 60px;
    margin: 0 0 50px 0;
}
.catalog__detail .detail__info .info__main .info__title {
    width: calc(50% - 60px/2);
}
.catalog__detail .detail__info .info__main .info__title h1 {
    color: #030303;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
}
.catalog__detail .detail__info .info__main .info__title .title__short_description {
    color: #35383F;

    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
    margin: 0 0 35px 0;
}
.catalog__detail .detail__info .info__main .info__title .title__form {
    border-radius: 20px;
    background: #F7F8FA;
    padding: 33px 23px;
}
.catalog__detail .detail__info .info__main .info__title .title__form .form__title {
    color: #030303;

    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 24px 0;
}
.catalog__detail .detail__info .info__main .info__title .title__form .form__field {
    margin: 0 0 26px 0;
}
.catalog__detail .detail__info .info__main .info__title .title__form .form__field input {
    height: 63px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #EDEDED;
    outline: none;
    background: #FFF;
    padding: 0 28px;
}
.catalog__detail .detail__info .info__main .info__title .title__form .form__submit {
    margin: 0 0 26px 0;
}
.catalog__detail .detail__info .info__main .info__title .title__form .form__submit button {
    width: 100%;
}
.catalog__detail .detail__info .info__main .info__title .title__form .form__checkbox {

}
.catalog__detail .detail__info .info__main .info__cost {
    width: calc(50% - 60px/2);
}
.catalog__detail .detail__info .info__main .info__cost .cost__party {
    display: flex;
    gap: 17px;
    align-items: center;
    color: #030303;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 26px 0;
}
.catalog__detail .detail__info .info__main .info__cost .cost__party svg {

}
.catalog__detail .detail__info .info__main .info__cost .cost__cost {
    color: #030303;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 26px 0;
}
.catalog__detail .detail__info .info__main .info__cost .cost__cost span {
    color: #019AA8;
}
.catalog__detail .detail__info .info__main .info__cost .cost__description {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #35383F;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
    margin: 0 0 64px 0;
}
.catalog__detail .detail__info .info__main .info__cost .cost__volumes {

}
.catalog__detail .detail__info .info__main .info__cost .cost__volumes .volumes__title {
    color: #030303;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 6px 0;
}
.catalog__detail .detail__info .info__main .info__cost .cost__volumes .volumes__value {
    color: #35383F;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}
.catalog__detail .detail__info .info__description {
    color: #35383F;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
    max-width: 600px;
}
.catalog__detail .detail__info .info__description * {
    font-size: inherit !important;
}
.catalog__detail .detail__info .info__description p {
    margin: 0 0 16px 0;
}
.catalog__detail .detail__info .info__description .description__title {
    color: #030303;
    font-family: Montserrat;
    font-size: 20px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 250% */
    margin: 0 0 19px 0;
}

.about_video .container {
    width: calc(100% - 73px * 2);
    max-width: calc(100% - 73px * 2);
}
.about_video h1 {
    color: #030303;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
    margin: 0 0 60px 0;
}
.about_video .video__video {
    position: relative;
}
.about_video .video__video video {
    display: block;
    aspect-ratio: 1774/618;
    width: 100%;
    border-radius: 40px;
    object-fit: cover;
}
.about_video .video__video .video__name {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #FFF;
    display: flex;
    align-items: end;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    z-index: 1;
    cursor: pointer;
    width: 100%;
    height: 100%;
    padding: 0 0 64px 64px;
}
.about_video .video__video .video__name .name__flexbox {
    display: flex;
    align-items: center;
    gap: 32px;
}
.about_video .video__video .video__name .play,
.about_video .video__video .video__name .pause {

}
.about_video .video__video .video__name .play svg,
.about_video .video__video .video__name .pause svg {

}
.about_video .video__video .video__name .name__text {

}

.mission {
    margin: 115px 0 0 0;
}
.mission .mission_text {
    color: #35383F;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
    margin: 0 0 30px 0;
}
.mission .mission_banner {

}
.mission .mission_banner img {
    aspect-ratio: 1174/618;
    width: 100%;
    border-radius: 40px;
    object-fit: cover;
}

.principles {
    padding: 115px 0;
}
.principles .items {

}
.principles .items ul {
    display: flex;
    flex-direction: column;
    gap: 77px;
}
.principles .items ul li {
    display: flex;
    gap: 68px;
}
.principles .items ul li .item__number {
    color: #030303;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 75% */
}
.principles .items ul li .item__text {

}
.principles .items ul li .item__text .text__title {
    color: #030303;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 136.364% */
    margin: 0 0 20px 0;
}
.principles .items ul li .item__text .text__text {
    color: #35383F;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
}

.worth {
    padding: 100px 0 200px 0;
}
.worth .items {

}
.worth .items ul {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
}
.worth .items ul li {
    width: calc(50% - 34px/2);
    aspect-ratio: 570/332;
    border-radius: 40px;
    background-image: var(--icon);
    background-position: bottom 37px right 37px;
    background-repeat: no-repeat;
    background-color: var(--bg);

    color: var(--color);
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 136.364% */

    padding: 43px 51px;
}

.fit_container {
    max-width: 1175px !important;
}

.faq {
    padding: 100px 0 200px 0;
}
.faq .items {

}
.faq .items ul {
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.faq .items ul li {
    border-radius: 40px;
    background: #F7F8FA;
    padding: 20px 43px;
    cursor: pointer;
    border: 1px solid #F7F8FA;
}
.faq .items ul li .item__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #030303;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 136.364% */
}
.faq .items ul li .item__title .title__icon {

}
.faq .items ul li .item__title .title__icon svg {
    transition: all 0.4s;
}
.faq .items ul li.openned .item__title .title__icon svg {
    transform: rotate(180deg);
}
.faq .items ul li .item__answer {
    display: none;
    color: #35383F;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
    padding: 35px 0 0 0;
}
.faq .items ul li.openned {
    background: #fff;
    border: 1px solid #EDEDED;
}

.question {
    padding: 0 0 200px 0;
}
.question .container {
    border-radius: 40px;
    background: #F7F8FA;
    padding: 57px 43px;
    display: flex;
    gap: 89px;
}
.question .question__form {
    max-width: 575px;
}
.question .question__form .form__description {
    color: #35383F;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
    margin: 0 0 15px 0;
}
.question .question__form .form__form {

}
.question .question__form .form__form .form__field {
    margin: 0 0 26px 0;
}
.question .question__form .form__form .form__field textarea {
    display: block;
    height: 148px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #EDEDED;
    outline: none;
    background: #FFF;
    padding: 26px 28px;
    resize: none;
}
.question .question__form .form__form .form__field input {
    height: 63px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #EDEDED;
    outline: none;
    background: #FFF;
    padding: 0 28px;
}
.question .question__form .form__form .form__submit {
    margin: 0 0 35px 0;
}
.question .question__form .form__form .form__submit button {
    width: 100%;
}
.question .question__image {
    width: 417px;

}
.question .question__image img {
    width: 100%;
    aspect-ratio: 417/444;
    border-radius: 40px;
}

.thanks {
    padding: 100px 0;
}
.thanks h1 {
    color: #030303;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
    margin: 0 0 40px 0;
}
.thanks p {
    color: #35383F;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
}

.blank_page {
    padding: 30px 0;
}
.blank_page h1 {
    color: #030303;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
    margin: 0 0 40px 0;
}
.blank_page .content {
    color: #35383F;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}
.blank_page .content p {
    margin: 0 0 16px 0;
}

.contacts {
    margin: 0 0 100px 0;
}
.contacts h1 {
    color: #030303;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 125% */
    margin: 0 0 60px 0;
}
.contacts .contacts__flexbox {
    display: flex;
    gap: 150px;
}
.contacts .contacts__map {

}
.contacts .contacts__map #map {
    width: 750px;
    aspect-ratio: 750/742;
    border-radius: 40px;
    overflow: hidden;
    filter: grayscale(100);
}
.contacts .contacts__text {

}
.contacts .contacts__text .text__title {
    color: #030303;
    font-family: Montserrat;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 192.308% */
    margin: 0 0 58px 0;
}
.contacts .contacts__text .field {
    color: #030303;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 45px 0;
}
.contacts .contacts__text .field.half {
    display: flex;
    gap: 150px;
}
.contacts .contacts__text .field .field__column {
    width: 50%;
}
.contacts .contacts__text .field .field__column .column__title {
    color: #030303;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 250% */
    margin: 0 0 30px 0;
}
.contacts .contacts__text .field .field__column .column__text {
    color: #030303;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
}
.contacts .contacts__text .field .field__title {
    color: #030303;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 250% */
}
.contacts .contacts__text .field .field__text {
    color: #030303;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
    white-space: pre-wrap;
    max-width: 575px;;
}

body.fixed {
    overflow: hidden;
}
.modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(53, 56, 63, 0.75);
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.modal .modal__content {

}

.modal .review {
    width: auto;
    max-width: 713px;
    border-radius: 40px;
    background: #FFF;
}

.base_form {
    position: relative;
    border-radius: 40px;
    background: #FFF;
    padding: 89px 66px;
    max-width: 625px;
}
.base_form .base_form__h1 {
    color: #030303;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px; /* 87.5% */
    margin: 0 0 35px 0;
}
.base_form .base_form__description {
    color: #35383F;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
    margin: 0 0 35px 0;
}
.base_form .base_form__form {

}
.base_form .base_form__form .form__field {
    margin: 0 0 35px 0;
}
.base_form .base_form__form .form__field input {
    height: 63px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #EDEDED;
    outline: none;
    background: #FFF;
    padding: 0 28px;
}
.base_form .base_form__form .form__field textarea {
    height: 148px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #EDEDED;
    outline: none;
    background: #FFF;
    padding: 26px 28px;
    resize: none;
}
.base_form .base_form__form .form__submit {
    margin: 0 0 35px 0;
}
.base_form .base_form__form .form__submit button {
    width: 100%;
}

.cookie_panel {
    width: 925px;
    height: auto;
    background: #35383F;
    border-radius: 40px 40px 0 0;
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: end;
    padding: 40px 50px 40px 73px;
    gap: 100px;
    z-index: 99999;
}
.cookie_panel span {
    color: #FFF;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
}
.cookie_panel span a {
    color: inherit;
}
.cookie_panel a#accept_cookies {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.iti--separate-dial-code .iti__selected-flag {
    border-radius: 20px 0 0 20px;
}

.masked {
    position: relative;
}
.masked .masked__list {
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 63px;
    border: 1px solid #EDEDED;
    border-radius: 20px 0 0 20px;
}
.masked .masked__list .list__current {
    background: var(--flag), #f7f8f9;
    width: 100%;
    height: 100%;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px 0 0 20px;
    cursor: pointer;
}
.masked .masked__list ul {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    border-radius: 20px;
    border: 1px solid #EDEDED;
    background: #FFF;
    align-items: start;
    padding: 12px 0;
    min-width: 187px;
    z-index: 9;
}
.masked .masked__list ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 3px 16px;
}
.masked .masked__list ul li:hover {
    background: #f7f8f9;
}
.masked .masked__list ul > li:not(:last-child) {
    /*margin: 0 0 4px 0;*/
}
.masked .masked__list ul li .item__flag {

}
.masked .masked__list ul li .item__flag img {
    width: 24px;
    display: block;
}
.masked .masked__list ul li .item__name {
    font-size: 14px;
}
.masked input {
    padding: 0 28px 0 80px !important;
}

body.fixed_header {
    padding-top: 68px;
}
header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    padding: 0;
}

.related ul.products {
    white-space: nowrap;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-wrap: unset;
}
.related ul.products li {
    white-space: normal;
    min-width: 425px;
}


header .mobile_menu {
    position: absolute;
    top: -20px;
    width: 100%;
    height: calc(100vh + 20px);
    left: 0;
    z-index: 99;
    padding: 94px 16px 110px 16px;
    background: #35383F;
}
header .mobile_menu .close {
    position: absolute;
    top: 17px;
    right: 27px;
}
header .mobile_menu .close svg {
    width: 18px;
    height: 18px;
}
header .mobile_menu .close svg path {
    fill: #fff;
}
header .mobile_menu ul {
    /* display: block; */
    /* flex-direction: column; */
    gap: 16px;
    /* column-count: 2; */
    display: flex;
    flex-flow: wrap column;
    max-height: 360px;
}
header .mobile_menu > ul:not(:last-child) {
    margin: 0 0 16px 0;
}
header .mobile_menu ul li {
    text-align: left;
    /* margin: 0 0 20px 0; */
    /* break-inside: avoid; */
}
header .mobile_menu ul li .btn {
    display: none;
}
header .mobile_menu ul li ul {
    margin: 10px 0 0 0;
    column-count: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
header .mobile_menu ul li ul li {
    margin: 0;
}
header .mobile_menu ul li ul a {
    color: #F5F5F5;
    font-weight: 400;
    opacity: 0.7;
}
header .mobile_menu ul li a {
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}
header .mobile_menu .mobile_menu__button a {
    width: auto;
    display: inline-block;
    line-height: 45px;
    padding: 0 32px;
    height: auto;
}
header .mobile_menu .mobile_menu__logo {
    position: absolute;
    left: 16px;
    width: calc(100% - 16px * 2);
    bottom: 30px;
}
header .mobile_menu .mobile_menu__logo svg {
    display: block;
    max-width: 100%;
    height: auto;
}

