:root{
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    --black: #000;
    --black_bg: #282830;
    --white: #fff;
    --gray: #5F5F5F;
    --red: #C12026;
    --ultra_red: #F21414;
    --orange: #e07a22;
    --yellow: #e9bf13;
    --green: #25aa5c;
    --cyan: #3392cd;
    --blue: #26537c;
    --magenta: #7c4068;

    --page_width: 1440px;
    --inner_width: 1156px;
    --main_background: #fff;
    --main_color: #000;

    --input_background: #fff;
    --input_radius: 8px;

    --link_color: #282830;
    --link_hover: #282830;

    --error: #ff2c2c;

    --no_gradient: rgba(128, 128, 128, 0.5);

    --button_radius: 8px;
    --window_radius: 8px;

    --border: 1px solid #282830;
}

@font-face{
    font-family: 'Montserrat';
    src: local('Montserrat'),
    url('/fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face{
    font-family: 'Montserrat';
    src: local('Montserrat'),
    url('/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: 'Montserrat';
    src: local('Montserrat'),
    url('/fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face{
    font-family: 'Montserrat';
    src: local('Montserrat'),
    url('/fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

*{
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    border: 0;
    outline: none;
    font-weight: 400;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    border: 0;
}

html {
    position: relative;
    min-height: 100vh;
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    position: relative;
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--black);
    scroll-behavior: smooth;
}

img{
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: inherit;
}

img{
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: inherit;
}

button, .button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    white-space: nowrap;
    word-break: keep-all;
    padding: 1rem 1.5rem;
    min-width: 230px;
    border-radius: var(--button_radius);
    font-weight: 500;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    transition: filter 150ms ease;
}

button:hover, .button:hover{
    filter: brightness(1.1);
}

form{
    position: relative;
}

input[type="text"], input[type="password"], input[type="number"], input[type="email"], select{
    line-height: 2.5rem;
    height: 2.5rem;
    max-width: 100%;
    background-color: var(--input_background);
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: var(--input_radius);
    margin: 1rem 0;
    padding: 0 0.6rem;
    outline: none;
    font-size: 16px;
}

input[type="text"].margin0, input[type="number"].margin0, input[type="number"].margin0, input[type="email"].margin0, select.margin0{
    margin: 0;
}

input[type="checkbox"]{
    cursor: pointer;
}

label{
    font-size: 13px;
    cursor: pointer;
}

h1, .h1{
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    margin: 2rem 0;
}
h1{
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

h2, .h2{
    font-size: 2rem;
    line-height: 1.2;
}

a{
    color: var(--link_color);
    text-decoration: none;
    transition: color 0.1s ease;
    cursor: pointer;
    font-weight: 500;
}
a:active{
    color: var(--link_hover);
}
a:visited{
    color: var(--link_color);
}
a:hover{
    color: var(--link_hover);
    text-decoration: underline;
}

.btn_white{
    background-color: var(--white);
    border: 1px solid var(--black);
}

.btn_blue{
    background-color: var(--blue);
    color: var(--white);
}

.btn_yellow{
    background-color: var(--yellow);
    color: var(--black);
}

.btn_red{
    background-color: var(--red);
    color: var(--white);
}

.btn_gray{
    background-color: #5A5A5A;
    color: var(--white);
}

.btn_wide{
    min-width: 220px;
}

.width100{
    width: 100%;
}

.w100{
    width: 100%;
}

.width50{
    width: 50%;
}

.relative{
    position: relative;
}

.margin0auto{
    margin: 0 auto;
}

.center_text{
    text-align: center;
}

.padding_vert2rem{
    padding: 2rem 0;
}

.padding_vert4rem{
    padding: 4rem 0;
}

/* flex */

.flex{
    display: flex;
}

.flex_row{
    flex-direction: row;
}

.flex_column{
    flex-direction: column;
}

.justify_content_center{
    justify-content: center;
}

.align_items_center{
    align-items: center;
}

/* flex end */

.breadcrumbs {
    margin: 1.5rem 0 4.5rem;
    padding-left: 5rem;
}

.breadcrumbs__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs__item {
    display: inline;
}

.breadcrumbs__item:not(:last-child)::after {
    display: inline-block;
    width: .6rem;
    height: 1rem;
    margin: 0 .7em;
    background-image: url(/img/breadcrumbs_arrow.svg);
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.breadcrumbs__link {
    padding: 1.5rem 0;
    font-weight: 600;
    font-size: 1.4rem;
}

.breadcrumbs__link--current, .breadcrumbs__link:active {
    opacity: .55;
}

.breadcrumbs__name{
    margin: 0;
}

/* checkbox + label */

.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #000000;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

/* стили при наведении курсора на checkbox */
.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
    border-color: #000000;
}

/* стили для активного чекбокса (при нажатии на него) */
.custom-checkbox:not(:disabled):active+label::before {
    background-color: rgba(255, 255, 255, 0);
    border-color: #000000;
}

/* стили для чекбокса, находящегося в фокусе */
.custom-checkbox:focus+label::before {
    /*box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);*/
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox:focus:not(:checked)+label::before {
    border-color: #000000;
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-checkbox:checked+label::before {
    border-color: #000000;
    background-color: rgba(11, 118, 239, 0);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox:disabled+label::before {
    background-color: #5c5c5c;
}

/* div в котором чекбокс и label */
.checkbox{
    margin: 1rem 0;
}

/* end checkbox + label */

.mobile_menu_block{
    position: fixed;
    right: -260px;
    top: 0;
    bottom: 0;
    max-width: 260px;
    width: 100%;
}

/* modal */

.hidden_div{
    margin: 0;
    padding: 0;
    outline: none;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden;
}

.overlay_div{
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.43);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    /*cursor: pointer;*/
    z-index: 9999;
}

.modal_div{
    position: relative;
    max-width: 420px;
    width: 100%;
    max-height: 100vh;
    /*min-height: 400px;*/
    overflow-y: auto;
    padding: 2rem;
    margin: 0.5rem;
    background-color: var(--white);
    border: var(--border);
    border-radius: var(--window_radius);
    /*box-shadow: 0 5px 15px #aaa;*/
    transform: translateY(100%);
    transform-origin: left top;
    -webkit-transform: translateY(100%);
    -webkit-transform-origin: left top;
    opacity: 0;
    /*transition: 200ms ease;*/
    will-change: transform, opacity;
    cursor: initial;
    color: var(--black);
}

.modal_active{
    transform-origin: left top;
    -webkit-transform-origin: left top;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
    animation: 0.3s ease show_popup;
}

.modal_hide{
    animation: 0.3s ease hide_popup;
}

.spinner_div{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.7);
}

.spinner_img{
    width: 120px;
}

.modal_title, .thanks_title{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.thanks_title{
    text-align: center;
    margin: 2rem 0;
}

.thanks_text{
    font-size: 1.2rem;
    margin: 0 0 2rem 0;
    text-align: center;
}

.modal_form{
    position: relative;
    width: 100%;
}

.close_btn{
    position: absolute;
    right: 10px;
    top: 10px;
    width: 18px;
    height: 18px;
}

.close_button{
    display: block;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.error_div{
    color: #fff;
    background-color: var(--error);
    padding: 1rem;
}

.error{
    background-color: #ffdada !important;
}

.label_error{
    color: #fda6a6 !important;
}

.landing_image{
    display: block;
    width: 100%;
    margin: 2rem 0;
}

@keyframes show_popup {
    from {
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}

@keyframes hide_popup {
    from {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes show_menu {
    from {
        right: -260px;
    }
    to {
        right: 0px;
    }
}

/* end modal */

.phone{
    white-space: nowrap;
    word-break: keep-all;
}

/* OTHER STYLES */

.app{
    position: relative;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.header {
    width: 100%;
    position: relative;
    display: flex;
    min-height: 38px;
}

/*.header {*/
/*    width: 100%;*/
/*    position: -webkit-sticky;*/
/*    position: sticky;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    display: flex;*/
/*    min-height: 38px;*/
/*    z-index: 15;*/
/*    align-self: flex-start;*/
/*}*/

.header_inner{
    position: relative;
    max-width: var(--inner_width);
    width: 100%;
    margin: 1.5rem auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    flex: 1;
}

.footer {
    width: 100%;
    position: relative;
    display: flex;
    min-height: 38px;
}

.footer_inner{
    position: relative;
    max-width: var(--inner_width);
    width: 100%;
    margin: 1.5rem auto 4rem;
    font-size: 13px;
    color: var(--black_bg);
}

section{
    position: relative;
    width: 100%;
}

.section_inner{
    position: relative;
    max-width: var(--inner_width);
    width: 100%;
    margin: 0 auto;
}

.content_background_and_color{
    background-color: var(--main_background);
    color: var(--main_color);
}

.footer_background_and_color{
    background-color: var(--white);
    color: var(--black);
}

.header_background_and_color{
    background-color: var(--white);
    color: var(--black);
}

.background_and_color_dark{
    background-color: var(--black);
    color: var(--white);
}

.background_and_color_light{
    background-color: var(--white);
    color: var(--black);
}

/* our works swiper */
.swiper.works{
    position: relative;
    margin-top: 2rem;
    width: 100%;
    min-height: 400px;
    overflow-x: hidden;
}
.swiper-button-prev{
    color: #fff;
    width: 40px;
    height: 40px;
    background-image: url(/img/arrow_left.png);
}
.swiper-button-next{
    color: #fff;
    width: 40px;
    height: 40px;
    background-image: url(/img/arrow_right.png);
}
.swiper-button-next::after, .swiper-button-prev::after{
    content: "";
}
.swiper-pagination-bullet{
    background: #fff;
    opacity: .6;
}
.swiper-pagination-bullet-active{
    background: #fff;
    opacity: 1;
    transform: scale(1.3);
}
/* our works swiper end */

/* swiper partners */
.swiper.partners{
    position: relative;
    margin-top: 2rem;
    width: 100%;
    /*overflow-x: hidden;*/
}
.swiper-button-prev.partners, .swiper-button-next.partners{
    position: initial;
    margin: 0;
}
/* swiper partners end */

.landing_text{
    font-weight: 400;
    font-size: 21px;
}

.logo_img{
    display: block;
    width: 188px;
}

.header_container{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
}

.header_right_container{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site_nav{
    flex: 1;
    position: relative;
}

.site_nav > ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.site_nav > ul > li{
    padding: 0.5rem 1.5rem;
    border-right: 1px solid #C2C2C2;
}
.site_nav > ul > li:last-child{
    border-right: none;
}

.header_address{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 14px;
}

.header_checkin{
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.header_checkin:hover{
    text-decoration: underline;
}

.contacts_container{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 3rem;
    flex-wrap: nowrap;
}

.contacts_left{
    display: flex;
    gap: 3rem;
    flex-direction: column;
    width: 380px;
}

.yandex_map{
    flex: 1;
    width: 100%;
    background-color: #f7f7f7;
    border-radius: var(--window_radius);
}

.advantages_container{
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.advantage_item{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: calc((100% - 1rem) / 2);
    padding: 0.2rem 2.4rem;
    font-size: 15px;
    font-weight: 500;
    height: 88px;
}

.box_shadow{
    -webkit-box-shadow: 0px 4px 11px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 4px 11px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 4px 11px 0px rgba(34, 60, 80, 0.2);
}

.steps_container{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.step_item{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 30%;
    padding: 0.2rem 2.4rem;
    font-size: 15px;
    font-weight: 500;
    height: 88px;
}

.back_call_div{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.contacts_block{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contacts_header{
    font-weight: 400;
    font-size: 24px;
}

.schedule{
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}

.gray{
    color: var(--black_bg) !important;
}

.link_anchor{
    height: 0;
}

.promo_block{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 2rem;
}

.promo_block_text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.promo_block_image{
    aspect-ratio: 1.41834;
}

.line_block{
    width: 100%;
    height: 1px;
    background-color: #BEC6CC;
    margin: 3rem 0;
}

.promo_button{
    margin: 0;
    width: max-content;
    border-radius: var(--button_radius);
}

/* полная переделка 14.02.2025 */

.site_nav_link{
    font-size: 16px;
    font-weight: 400;
}

.header_phone{
    font-size: 24px;
    font-weight: 600;
    white-space: nowrap;
    word-break: keep-all;
    margin: 0 auto;
}

.top_promo_container{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 600px;
    width: 100%;
    min-height: 380px;
    z-index: 20;
}

.top_promo_car_image{
    position: absolute;
    right: -140px;
    bottom: -20px;
    z-index: 10;
}

.top_promo_header{
    font-size: 35px;
    font-weight: 600;
    line-height: 1.6;
}

.red_span{
    color: var(--ultra_red);
    font-weight: inherit;
    font-size: inherit;
}

.top_promo_text{
    font-size: 19px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.6;
}

.fix_button{

}
.fix_button:hover{
    color: var(--white);
    text-decoration: none;
}

.top_promo_buttons_container{
    display: flex;
    gap: 2rem;
}

.decor_container_top{
    max-width: var(--page_width);
    width: 100%;
    margin: 4rem auto 2rem;
    height: 58px;
    background: url("/img/tcev/decor_top.png") no-repeat 50% 50%;
}

.decor_container_bottom{
    max-width: var(--page_width);
    width: 100%;
    margin: 2rem auto 2rem;
    height: 58px;
    background: url("/img/tcev/decor_bottom.png") no-repeat 50% 50%;
}

.middle_promo_wrapper{
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.middle_promo_car_image{
    position: absolute;
    left: -140px;
    z-index: 10;
}

.middle_promo_container{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 560px;
    width: 100%;
    min-height: 440px;
    z-index: 20;
}

.middle_promo_header{
    font-size: 42px;
    font-weight: 600;
    text-align: right;
    line-height: 1.6;
}

.middle_promo_text{
    width: 100%;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.6;
    text-align: right;
}

.bold_span{
    font-size: inherit;
    font-weight: 600;
}

.middle_promo_buttons_container{
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}

.big_button{
    max-width: 378px;
    width: 100%;
    padding: 2.3rem 1.5rem;
}

.section_header{
    font-weight: 600;
    font-size: 30px;
    color: var(--gray);
    margin: 0 auto 4rem auto;
    text-align: center;
    text-transform: uppercase;
}

.actions_container{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2rem;
}

.action{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 300px;
    width: 100%;
    padding: 1rem;
    border-radius: var(--window_radius);
    -webkit-box-shadow: 0px 0px 30px 4px rgba(189, 189, 189, 0.95);
    -moz-box-shadow: 0px 0px 30px 4px rgba(189, 189, 189, 0.95);
    box-shadow: 0px 0px 30px 4px rgba(189, 189, 189, 0.95);
}

.action_inner{
    width: 100%;
}

.action_title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    width: 100%;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
}

.action_img{
    display: block;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.345;
    margin: 0.5rem 0 1rem 0;
}

.action_text{
    font-size: 14px;
    line-height: 1.4;
}

.action_button{
    display: block;
    margin: 1rem auto 0 auto;
}

.services_block{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 4rem;
    flex-wrap: nowrap;
    width: 100%;
}

.services_container{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: stretch;
    flex: 1;
}

.service_title{
    font-size: 16px;
}

.service_price{
    font-size: 16px;
    white-space: nowrap;
}

.service_item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-bottom: 0.5rem;
}
.service_item:last-child{
    margin-bottom: 0;
}

.services_right{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
}

.services_block_img_container{
    position: relative;
    border-radius: var(--button_radius);
    aspect-ratio: 1.5;
    overflow: hidden;
}

.services_block_img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.about_service_block{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 4rem;
    flex-wrap: nowrap;
    width: 100%;
}

.about_service_left{
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1rem;
}

.about_service_right{
    max-width: 500px;
    width: 100%;
}

.about_service_head{
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.about_service_ul{
    padding-left: 1rem;
    list-style-type: none;
    margin: 1rem 0 0 0;
}

.about_service_ul > li{
    font-size: 16px;
    /*text-transform: uppercase;*/
    font-weight: 300;
    text-indent: -5px;
    margin-bottom: 0.4rem;
}
.about_service_ul > li:before{
    content: "-";
    text-indent: -5px;
}
.about_service_ul > li:last-child{
    margin-bottom: 0;
}

.about_service_big_image_container{
    position: relative;
    width: 100%;
    border-radius: var(--button_radius);
    overflow: hidden;
    aspect-ratio: 1.78;
}

.about_service_big_image{
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.about_service_small_images_block{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: nowrap;
    width: 100%;
}

.about_service_small_image_container{
    position: relative;
    aspect-ratio: 1.3;
    border-radius: var(--button_radius);
    overflow: hidden;
    cursor: pointer;
}

.about_service_small_image{
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.okami_vostok{
    font-weight: 600;
    font-size: 29px;
    color: #616161;
}

.yandex_otzivi_block{
    max-width: 760px;
    width: 100%;
    height: 800px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.mobile_menu_button{
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #888888;
    padding: 10px;
    cursor: pointer;
}

.mobile_menu_button_svg{
    width: 100%;
    height: 100%;
    filter: invert(100%);
}

.cb_widget{
    margin: 0;
}

@media (max-width: 1200px){
    .content, .header, .footer{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .promo_block{
        flex-direction: column;
    }
    .promo_block_text{
        order: 2;
        gap: 2rem;
    }
    .app{
        overflow-x: hidden;
    }
}

@media (max-width: 1000px){
    .header_inner{
        align-items: flex-start;
    }
    .header_container{
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .contacts_container{
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .contacts_left{
        max-width: 100%;
    }
    .yandex_map{
        height: 400px;
        flex: initial;
    }
    .about_service_block{
        flex-direction: column;
        align-items: center;
    }
    .about_service_left{
        max-width: 600px;
        width: 100%;
    }
    .about_service_right{
        max-width: 600px;
        width: 100%;
    }
    .services_block{
        flex-direction: column;
        align-items: center;
    }
    .top_promo_text, .middle_promo_header, .middle_promo_text{
        background-color: #ffffffad;
        border-radius: var(--window_radius);
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 700px){
    .steps_container{
        flex-direction: column;
        gap: 1rem;
    }
    .step_item{
        width: 100%;
    }
    .step_arrow{
        transform: rotate(90deg);
    }
    .advantage_item{
        width: 100%;
    }
    h1, .h1{
        font-size: 32px;
    }
    .top_promo_header, .middle_promo_header{
        font-size: 32px;
        line-height: 1.2;
    }
    .header{
        display: none;
    }
    .content_background_and_color{
        margin-top: 1rem;
    }
    .mobile_menu_button{
        display: block;
        z-index: 25;
    }
    .mobile_menu_block{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.5rem;
        background-color: #888888;
        padding: 2.5rem 0 0 0;
        z-index: 24;
        /*animation: 0.2s ease-in-out show_menu;*/
        transition: right 0.2s ease-in-out;
    }
    .mobile_menu_item{
        padding: 0.5rem 2rem;
        width: 100%;
        font-size: 24px;
        color: var(--white) !important;
    }
}

@media (max-width: 550px){
    .header_inner{
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .header_container{
        align-items: center;
    }
    .top_promo_buttons_container{
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
    .schedule_block{
        max-width: 200px;
        width: 100%;
    }
}

@media (max-width: 410px) {
    .action{
        max-width: 100%;
    }
}