/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    scroll-margin-top: var(--cont_padding);
}

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

html
{
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body
{
    margin: 0;

    overscroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    margin: 0;

    -webkit-appearance: none;
}

input[type=number]
{
    -moz-appearance: textfield;
}

:focus
{
    outline: 0;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*-------------------
    Global styles
-------------------*/
:root
{
    --bg: #f9f8f8;
    --bg_light: #fff;
    --bg_dark: 20 19 19;
    --content_width: 1320px;
    --content_width_s: 1096px;
    --cont_padding: 24px;
    --cont_padding_double: calc(var(--cont_padding) * 2);
    --cont_padding_half: calc(var(--cont_padding) * .5);
    --scroll_width: 17px;
    --custom_scroll_width: 10px;
    --custom_scroll_height: 10px;
    --primary_color: #7b0404;
    --primary_color_h: #680c0c;
    --secondary_color: #e0bd69;
    --dark_color: #141313;
    --light_color: #fff;
    --font_size: 17px;
    --font_size_s: 14px;
    --font_size_title: 60px;
    --font_size_title_m: 40px;
    --font_size_title_s: 24px;
    --font_family: 'Golos Text', 'Arial', sans-serif;
    --font_family2: 'STIX Two Text', 'Arial', sans-serif;
    --block_head_offset: 60px;
    --block_head_offset_s: 40px;
    --outside_gap: 100px;
    --inner_gap: 30px;
    --inner_gap_s: 12px;
    --border_radius: 20px;
    --border_radius_s: 10px;
}


::selection
{
    color: var(--light_color);
    background: var(--primary_color);
}

::-moz-selection
{
    color: var(--light_color);
    background: var(--primary_color);
}



html
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}


html.custom_scroll ::-webkit-scrollbar
{
    width: var(--custom_scroll_width);
    height: var(--custom_scroll_height);

    background-color: var(--bg);
}


html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: var(--primary_color);
}


body
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;

    font-family: var(--font_family);
    font-size: var(--font_size);
    font-weight: 400;
    line-height: normal;

    color: var(--dark_color);
}


body.lock
{
    overflow: hidden;
}


button
{
    display: inline-block;

    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    cursor: pointer;
    vertical-align: top;

    color: inherit;
    border: none;
    background: none;
}


.wrap
{
    position: relative;

    display: flex;
    overflow: clip;
    flex-direction: column;

    min-height: 100%;

    z-index: 9;

    background: var(--bg);
}


.wrap > .main
{
    position: relative;

    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
}


.cont
{
    width: 100%;
    max-width: calc(var(--content_width) + var(--cont_padding_double));
    margin-inline: auto;
    padding-inline: var(--cont_padding);
}


.cont.small
{
    max-width: calc(var(--content_width_s) + var(--cont_padding_double));
}



.block
{
    margin-bottom: var(--outside_gap);
}



.modal_btn > *
{
    pointer-events: none;
}



img.cover
{
    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}



/*--------------
    Fancybox
--------------*/
.fancybox__backdrop
{
    background: rgba(249, 248, 248, .8);
}


.fancybox__slide
{
    padding: var(--cont_padding);
}


.fancybox__content > .f-button.is-close-btn,
.is-compact .fancybox__content > .f-button.is-close-btn
{
    top: 0;
    right: -76px;

    transition: .2s linear;

    opacity: 1;
    border: 1px solid rgba(123, 4, 4, .30);

    --f-button-width: 52px;
    --f-button-height: 52px;
    --f-button-border-radius: 6px;
    --f-button-color: var(--primary_color);
    --f-button-hover-color: var(--light_color);
    --f-button-svg-width: 16px;
    --f-button-svg-height: 16px;
    --f-button-bg: transparent;
    --f-button-hover-bg: var(--primary_color);
    --f-button-active-bg: var(--primary_color);
}


.fancybox__content > .f-button.is-close-btn svg
{
    stroke: none;
}



/*--------------
    ButtonUp
--------------*/
.buttonUp
{
    position: fixed;
    right: var(--cont_padding);
    bottom: var(--cont_padding);

    display: none;

    z-index: 90;
}


.buttonUp .btn
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 62px;
    height: 62px;

    transition: background .2s linear;

    color: #fff;
    border-radius: 50%;
    background: #ae0b05;
}


.buttonUp .btn .icon
{
    display: block;

    width: 24px;
    height: 24px;
}


.buttonUp .btn:hover
{
    background: #d3241d;
}



/*--------------
    Grid row
--------------*/
.grid_row
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-bottom: calc(var(--offset_v) * -1);
    margin-left: calc(var(--offset_h) * -1);

    --count_per_line: 3;
    --offset_h: var(--inner_gap);
    --offset_v: var(--inner_gap);
}


.grid_row > *
{
    width: calc(100% / var(--count_per_line) - var(--offset_h));
    margin-bottom: var(--offset_v);
    margin-left: var(--offset_h);
}



/*---------------
    Accordion
---------------*/
.accordion
{
    display: flex;
    flex-direction: column;

    gap: var(--inner_gap_s);
}


.accordion_item
{
    transition: border-color .2s linear;

    border: 1px solid transparent;
    border-radius: var(--border_radius_s);
    background: var(--bg_light);
    box-shadow: 0 24px 24px 0 rgba(0, 0, 0, .01);
}


.accordion_item .head
{
    position: relative;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    padding-block: 24px;
    padding-inline: var(--inner_gap);

    cursor: pointer;
}


.accordion_item .head .title
{
    width: 840px;
    max-width: calc(100% - 38px);

    font-weight: 600;
    line-height: 135%;
}


.accordion_item .head .icon
{
    display: block;

    width: 14px;
    height: 13px;

    color: var(--secondary_color);
}


.accordion_item .data
{
    display: none;

    padding-block: 0 28px;
    padding-inline: var(--inner_gap);
}


.accordion_item:hover,
.accordion_item.active
{
    border-color: var(--secondary_color);
}



/*------------
    Header
------------*/
header
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    padding-block: 15px;

    z-index: 9;

    background: rgb(var(--bg_dark) / .8);
}


header .cont
{
    position: relative;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    padding-left: calc(var(--cont_padding) + 284px);
}



header .logo
{
    position: absolute;
    top: -15px;
    left: var(--cont_padding);

    display: flex;
    flex-direction: column;

    width: 268px;
    max-width: 100%;
    padding-block: var(--inner_gap);
    padding-inline: var(--inner_gap) 28px;

    font-size: 12px;
    line-height: 135%;

    text-decoration: none;

    color: var(--light_color);
    border-radius: 0 0 var(--border_radius_s) var(--border_radius_s);
    background: var(--primary_color);

    gap: var(--inner_gap_s);
}


header .logo img
{
    display: block;

    width: 204px;
    max-width: 100%;

    aspect-ratio: 204 / 56;
}


header .logo div
{
    opacity: .7;
}



header .rating
{
    display: flex;
    flex-direction: column;
    justify-content: center;

    height: 70px;
    padding-inline: 20px;

    color: var(--light_color);
    border-radius: var(--border_radius_s);
    background: rgba(255, 255, 255, .10);

    gap: 5px;
    text-decoration: none;
}


header .rating .ya_logo img
{
    display: block;

    width: 56px;
    height: 16px;
}


header .rating .bottom
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 6px;
}


header .rating .stars
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    color: #fc0;

    gap: 2px;
}


header .rating .stars .icon
{
    display: block;

    width: 13px;
    height: 11px;
}


header .rating .val
{
    font-size: var(--font_size_s);
    font-weight: 600;
    line-height: 135%;

    white-space: nowrap;
}



header .phone
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 10px;
}


header .phone .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 20px;
    height: 20px;
    margin-block: 1px;

    color: var(--secondary_color);
}


header .phone .icon svg
{
    display: block;

    width: 100%;
    height: 100%;
}


header .phone .icon + *
{
    display: flex;
    flex-direction: column;

    gap: 7px;
}


header .phone a
{
    display: inline-block;

    font-weight: 600;
    line-height: 135%;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;

    color: var(--light_color);
}


header .phone .callback_btn
{
    width: fit-content;

    font-size: var(--font_size_s);
    font-weight: 600;
    line-height: 135%;

    color: var(--secondary_color);
}



header .location
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 10px;
}


header .location .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 20px;
    height: 20px;
    margin-block: 1px;

    color: var(--secondary_color);
}


header .location .icon svg
{
    display: block;

    width: 100%;
    height: 100%;
}


header .location .icon + *
{
    display: flex;
    flex-direction: column;

    max-width: calc(100% - 30px);

    gap: 9px;
}


header .location .address
{
    font-size: var(--font_size_s);
    font-weight: 600;
    line-height: 135%;

    color: var(--light_color);
}


header .location .metro
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    font-size: var(--font_size_s);
    font-weight: 600;
    line-height: 135%;

    color: #3d87f5;

    gap: 6px;
}


header .location .metro svg
{
    display: block;

    width: 18px;
    height: 13px;

    color: #eb4122;
}



header .feddback_btn
{
    height: 70px;
    padding-inline: 40px;

    font-weight: 600;
    line-height: 135%;

    transition: background .2s linear;

    color: var(--light_color);
    border-radius: var(--border_radius_s);
    background: rgba(255, 255, 255, .10);
}


header .feddback_btn:hover
{
    background: rgba(255, 255, 255, .15);
}



/*-----------------
    Mob. header
-----------------*/
.mob_header
{
    position: absolute;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    padding-block: 15px;

    z-index: 10;

    background: rgb(var(--bg_dark) / .8);
}


.mob_header .cont
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}



.mob_header .logo
{
    display: block;

    margin-right: auto;

    text-decoration: none;

    color: currentColor;
}


.mob_header .logo img
{
    display: block;

    width: 175px;

    aspect-ratio: 204 / 56;
}



.mob_header .phone
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 48px;
    height: 48px;
    margin-left: var(--inner_gap);

    color: var(--light_color);
    border-radius: var(--border_radius_s);
    background: var(--primary_color);
}


.mob_header .phone .icon
{
    display: block;

    width: 24px;
    height: 24px;
}



.mob_header .mob_menu_btn
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 48px;
    height: 48px;
    margin-left: var(--cont_padding);

    transition: .2s linear;

    color: var(--light_color);
    border-radius: var(--border_radius_s);
    background: rgba(255, 255, 255, .10);
}


.mob_header .mob_menu_btn span
{
    position: relative;

    display: block;

    width: 24px;
    height: 2px;

    transition: background .2s linear;

    background: currentColor;
}


.mob_header .mob_menu_btn span:before,
.mob_header .mob_menu_btn span:after
{
    position: absolute;
    top: -8px;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';
    transition: .2s linear;

    background: currentColor;
}


.mob_header .mob_menu_btn span:after
{
    top: 8px;
}


.mob_header .mob_menu_btn.active
{
    color: var(--primary_color);
    background: var(--bg);
}


.mob_header .mob_menu_btn.active span
{
    background: transparent;
}


.mob_header .mob_menu_btn.active span:before
{
    top: 0;

    transform: rotate(45deg);
}


.mob_header .mob_menu_btn.active span:after
{
    top: 0;

    transform: rotate(-45deg);
}



/*----------------
    Block head
----------------*/
.block_head
{
    margin-bottom: var(--block_head_offset);
}


.block_head.small_m
{
    margin-bottom: var(--block_head_offset_s);
}


.block_head.center
{
    text-align: center;
}


.block_head .title
{
    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: 110%;
}


.block_head .desc
{
    margin-top: 20px;

    font-family: var(--font_family2);
    font-size: var(--font_size_title_s);
    font-weight: 600;
    line-height: 110%;
}



/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: #ededed;
    --form_focus_color: var(--secondary_color);
    --form_error_color: red;
    --form_border_radius: var(--border_radius_s);
    --form_bg_color: #f9f8f8;
    --form_placeholder_color: rgba(20, 19, 19, .4);
    --form_line_offset: var(--inner_gap_s);
    --form_input_height: 70px;
    --form_input_padding_inline: 59px 19px;
}


.form ::-webkit-input-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-moz-placeholder
{
    color: var(--form_placeholder_color);
}

.form ::-moz-placeholder
{
    opacity: 1;
    color: var(--form_placeholder_color);
}

.form :-ms-input-placeholder
{
    color: var(--form_placeholder_color);
}


.form .line
{
    margin-bottom: var(--form_line_offset);
}


.form .field
{
    position: relative;
}


.form .field > .icon
{
    position: absolute;
    top: calc(var(--form_input_height) * .5);
    left: 24px;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 24px;
    height: 24px;

    z-index: 2;
    transform: translateY(-50%);
    pointer-events: none;

    color: var(--secondary_color);
}


.form .field > .icon svg
{
    display: block;

    width: 100%;
    height: 100%;
}


.form .input
{
    display: block;

    width: 100%;
    height: var(--form_input_height);
    padding-inline: var(--form_input_padding_inline);

    font-family: var(--font_family);
    font-size: var(--font_size);

    transition: border-color .2s linear;

    color: var(--dark_color);
    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}

.form .input:-webkit-autofill
{
    -webkit-box-shadow: inset 0 0 0 50px var(--form_bg_color) !important;
}


.form .input:hover,
.form .input:focus
{
    border-color: var(--form_focus_color);
}


.form .error
{
    border-color: var(--form_error_color);
}


.form .captcha img
{
    display: block;

    width: 100%;
}


.form .submit
{
    padding-top: 18px;
}


.form .submit_btn
{
    width: 100%;
    height: var(--form_input_height);

    font-weight: 600;
    line-height: 135%;

    transition: background .2s linear;

    color: var(--light_color);
    border-radius: var(--border_radius_s);
    background: var(--primary_color);
}


.form .submit_btn:hover
{
    background: var(--primary_color_h);
}


.form .agree
{
    margin-top: var(--form_line_offset);

    font-size: 12px;
    line-height: 135%;

    text-align: center;

    color: #d9d9d9;
}


.form .agree a
{
    transition: .2s linear;
    white-space: nowrap;

    color: currentColor;

    text-decoration-thickness: 1px;
}


.form .agree a:hover
{
    color: var(--primary_color);
}



/*----------------
    Typography
----------------*/
.text_block
{
    line-height: 135%;
}


.text_block > *
{
    margin-bottom: 20px;
}


.text_block > :last-child
{
    margin-bottom: 0 !important;
}

.text_block > :first-child
{
    margin-top: 0 !important;
}


.text_block h2
{
    margin-bottom: 20px !important;

    font-family: var(--font_family2);
    font-size: var(--font_size_title_s);
    font-weight: 600;
    line-height: 120%;
}


.text_block * + h2
{
    margin-top: var(--inner_gap);
}

.text_block h2 + *
{
    margin-top: 0 !important;
}


.text_block ul
{
    display: flex;
    flex-direction: column;

    gap: var(--inner_gap_s);
}


.text_block ul li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 12px;

    list-style-type: none;
}


.text_block ul li:before
{
    position: absolute;
    top: .5lh;
    left: 0;

    display: block;

    width: 6px;
    height: 6px;

    content: '';
    transform: translateY(-50%);

    border-radius: 50%;
    background: var(--primary_color);
}


.text_block .message
{
    margin-block: var(--inner_gap);
    padding-block: var(--inner_gap);
    padding-inline: 40px;

    border-radius: var(--border_radius_s);
    background: #f9f8f8;
    box-shadow: 0 24px 24px 0 rgba(0, 0, 0, .01);
}



/*-------------------
    First section
-------------------*/
.first_section
{
    position: relative;

    background: var(--dark_color);
}



.first_section .person
{
    position: absolute;
    right: 50%;
    bottom: 0;

    width: 613px;
    max-width: 100%;
    margin-right: calc(var(--content_width) / -2);
    padding-right: 66px;

    z-index: 2;
    pointer-events: none;
}


.first_section .person .image
{
    display: block;
}


.first_section .person .image img
{
    display: block;

    width: 100%;
}


.first_section .person .info
{
    position: absolute;
    right: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;

    min-height: 220px;
    padding: var(--inner_gap);

    color: var(--light_color);
    border-radius: var(--border_radius_s) var(--border_radius_s) 0 0;
    background: rgb(var(--bg_dark) / .8);

    gap: var(--inner_gap_s);
}


.first_section .person .name
{
    width: 180px;
    max-width: 100%;

    font-family: var(--font_family2);
    font-size: var(--font_size_title_s);
    font-weight: 600;
    line-height: 110%;
}


.first_section .person .post
{
    width: 180px;
    max-width: 100%;

    font-size: var(--font_size_s);
    line-height: 135%;

    opacity: .7;
}



.first_section .bg
{
    position: absolute;
    inset: 0;

    display: block;

    z-index: 1;
    pointer-events: none;
}


.first_section .bg:after
{
    position: absolute;
    inset: 0;

    display: block;

    content: '';
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(180deg, rgba(20, 19, 19, .30) 0%, rgba(20, 19, 19, .90) 100%);
}



.first_section .cont
{
    position: relative;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    min-height: 900px;
    padding-block: 215px 115px;

    z-index: 3;
}


.first_section .data
{
    display: flex;
    flex-direction: column;

    width: 652px;
    max-width: 100%;

    color: var(--light_color);

    gap: 40px;
}


.first_section .title
{
    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: 120%;

    text-transform: uppercase;
}


.first_section .items
{
    display: flex;
    flex-direction: column;

    line-height: 135%;

    gap: 15px;
}


.first_section .items > *
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    gap: 12px;
}


.first_section .items .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 30px;
    height: 30px;
}


.first_section .items .icon img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.first_section .items .icon + *
{
    align-self: center;

    width: calc(100% - 42px);
}


.first_section .btns
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-top: 26px;

    gap: var(--cont_padding);
}


.first_section .btns .btn
{
    width: calc(50% - var(--cont_padding_half));
    min-height: 110px;
    padding: 24px 40px;

    font-weight: 600;
    line-height: 135%;

    transition: background .2s linear;

    border-radius: var(--border_radius_s);
    background: rgba(255, 255, 255, .10);
}


.first_section .btns .btn:hover
{
    background: rgba(255, 255, 255, .15);
}


.first_section .btns .primary_btn
{
    background: var(--primary_color);
}


.first_section .btns .primary_btn:hover
{
    background: var(--primary_color_h);
}



/*--------------
    Services
--------------*/
.services .list
{
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    height: 674px;
    padding-block: 50px;
    padding-inline: 112px;

    border-radius: var(--border_radius);
    background: var(--bg_light);
    box-shadow: 0 24px 24px 0 rgba(0, 0, 0, .01);
}


.services .list:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100px;

    content: '';
    z-index: 3;
    pointer-events: none;

    background: linear-gradient(180deg, rgba(249, 248, 248, .00) 0%, #f9f8f8 100%);
}


.services .list.show_all
{
    height: auto;
}


.services .list.show_all:after
{
    display: none;
}


.services .service
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    padding-block: 20px;

    gap: 24px;
}


.services .service + .service
{
    border-top: 1px solid #ededed;
}


.services .service .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 30px;
    height: 30px;
}


.services .service .icon img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.services .service .name
{
    width: 600px;
    max-width: calc(100% - 272px);

    line-height: 135%;
}


.services .service .price
{
    width: 194px;
    max-width: 100%;
    margin-left: auto;

    font-weight: 600;
    line-height: 135%;

    text-align: right;
}



.services .spoler_btn
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    height: 70px;
    margin-inline: auto;
    margin-top: var(--cont_padding);
    padding-inline: 39px;

    font-weight: 600;
    line-height: 135%;

    transition: .2s linear;

    color: var(--primary_color);
    border: 1px solid;
    border-radius: var(--border_radius_s);

    gap: var(--inner_gap_s);
}


.services .spoler_btn span + span
{
    display: none;
}


.services .spoler_btn .icon
{
    display: block;

    width: 13px;
    height: 13px;

    transition: .2s linear;
}


.services .spoler_btn:hover
{
    color: var(--light_color);
    border-color: var(--primary_color);
    background: var(--primary_color);
}


.services .spoler_btn.active span
{
    display: none;
}

.services .spoler_btn.active span + span
{
    display: block;
}


.services .spoler_btn.active .icon
{
    transform: rotate(-180deg);
}



/*------------------
    Action block
------------------*/
.action_block .data
{
    position: relative;

    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    padding: 20px;

    border-radius: var(--border_radius);
    background: rgb(var(--bg_dark));
}



.action_block .bg
{
    position: absolute;
    inset: 0;

    display: block;

    z-index: 1;
    pointer-events: none;

    border-radius: var(--border_radius);
}


.action_block .bg:after
{
    position: absolute;
    inset: 0;

    display: block;

    content: '';
    z-index: 2;
    pointer-events: none;

    border-radius: var(--border_radius);
    background: linear-gradient(180deg, rgba(20, 19, 19, .30) 0%, rgba(20, 19, 19, .90) 100%);
}



.action_block .data > .info
{
    position: relative;

    display: flex;
    flex-direction: column;

    max-width: 100%;
    padding-block: 60px;
    padding-left: 92px;

    z-index: 3;

    color: var(--light_color);

    gap: var(--inner_gap_s);
}


.action_block .data > .info .title
{
    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: 110%;

    text-transform: uppercase;

    color: var(--secondary_color);
}


.action_block .data > .info .desc
{
    font-family: var(--font_family2);
    font-size: var(--font_size_title_s);
    font-weight: 600;
    line-height: 110%;
}


.action_block .data > .info .items
{
    display: flex;
    flex-direction: column;

    width: 294px;
    max-width: 100%;
    margin-top: var(--cont_padding_double);

    line-height: 135%;

    gap: var(--inner_gap);
}


.action_block .data > .info .items.big
{
    width: 421px;
}


.action_block .data > .info .items > *
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    gap: 12px;
}


.action_block .data > .info .items .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 30px;
    height: 30px;
}


.action_block .data > .info .items .icon img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.action_block .data > .info .items .icon + *
{
    align-self: center;

    width: calc(100% - 42px);
}



.action_block .form
{
    position: relative;

    width: 400px;
    max-width: 100%;
    padding: 40px 40px 37px;

    z-index: 3;

    border-radius: var(--border_radius_s);
    background: var(--bg_light);
}


.action_block .form  .title
{
    margin-bottom: 6px;

    font-family: var(--font_family2);
    font-size: var(--font_size_title_m);
    font-weight: 600;
    line-height: 110%;

    text-align: center;
}


.action_block .form  .desc
{
    margin-bottom: var(--inner_gap);

    line-height: 135%;

    text-align: center;
}



.action_block .success
{
    position: absolute;
    inset: 0;

    display: none;
    flex-direction: column;
    justify-content: center;

    padding: 40px;

    z-index: 10;
    text-align: center;

    border-radius: var(--border_radius_s);
    background: var(--bg_light);

    gap: 40px;
}


.action_block .success.show
{
    display: flex;
}


.action_block .success .info
{
    display: flex;
    flex-direction: column;

    margin-top: auto;

    gap: var(--cont_padding_half);
}


.action_block .success .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 60px;
    height: 60px;
    margin-inline: auto;
    margin-bottom: 12px;

    transform: rotate(45deg);

    color: var(--light_color);
    border-radius: var(--border_radius_s);
    background: var(--secondary_color);
}


.action_block .success .icon svg
{
    display: block;

    width: 30px;
    height: 19px;

    transform: rotate(-45deg);
}


.action_block .success .title
{
    font-family: var(--font_family2);
    font-size: var(--font_size_title_m);
    font-weight: 600;
    line-height: 110%;
}


.action_block .success .desc
{
    line-height: 135%;
}


.action_block .success .close_btn
{
    width: 100%;
    height: 70px;
    margin-top: auto;

    font-weight: 600;
    line-height: 135%;

    transition: background .2s linear;

    color: var(--light_color);
    border-radius: var(--border_radius_s);
    background: var(--primary_color);
}


.action_block .success .close_btn:hover
{
    background: var(--primary_color_h);
}



.action_block .person
{
    position: absolute;
    right: 442px;
    bottom: 0;

    display: block;

    width: 407px;
    max-width: 100%;

    z-index: 2;
}


.action_block .person.big
{
    right: 388px;

    width: 448px;
}


.action_block .person img
{
    display: block;

    width: 100%;
}



/*----------
    Team
----------*/
.team .swiper
{
    overflow: visible !important;
}


.team .swiper-slide
{
    visibility: hidden;

    transition: opacity .2s linear, visibility .2s linear;
    pointer-events: none;

    opacity: 0;
}


.team .swiper .swiper-slide.visible
{
    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}


.team .person
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    padding-block: 70px 65px;
    padding-inline: 70px 112px;

    border-radius: var(--border_radius);
    background: var(--bg_light);
}


.team .person .info
{
    display: flex;
    flex-direction: column;

    width: 260px;
    max-width: 100%;
}


.team .person .photo
{
    display: block;

    margin-bottom: var(--cont_padding);

    border-radius: var(--border_radius_s);
}


.team .person .photo img
{
    display: block;

    width: 100%;

    border-radius: inherit;
}


.team .person .name
{
    font-family: var(--font_family2);
    font-size: var(--font_size_title_s);
    font-weight: 600;
    line-height: 120%;
}


.team .person .post
{
    margin-top: 6px;

    font-size: var(--font_size_s);
    line-height: 135%;

    opacity: .7;
}


.team .person .data
{
    position: relative;

    display: flex;
    flex-direction: column;

    width: calc(100% - 328px);

    gap: 40px;
}


.team .person .quote
{
    position: absolute;
    right: -79px;
    bottom: 100%;

    display: block;

    width: 81px;
    height: 60px;
    margin-bottom: 20px;

    z-index: 3;
    pointer-events: none;

    color: var(--secondary_color);
}


.team .person .phone
{
    display: block;

    width: fit-content;
    padding-block: 24px 28px;
    padding-inline: 40px;

    font-weight: 600;
    line-height: 135%;

    transition: background .2s linear;
    text-align: center;
    text-decoration: none;

    color: var(--light_color);
    border-radius: var(--border_radius_s);
    background: var(--primary_color);
}


.team .person .phone:hover
{
    background: var(--primary_color_h);
}



/*-----------
    Steps
-----------*/
.steps
{
    position: relative;

    padding-block: var(--outside_gap) 114px;

    color: var(--light_color);
    background: rgb(var(--bg_dark));
}



.steps .bg
{
    position: absolute;
    inset: 0;

    display: block;

    z-index: 1;
    pointer-events: none;
}


.steps .bg:before
{
    position: absolute;
    inset: 0;

    display: block;

    content: '';
    z-index: 1;
    pointer-events: none;

    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
}


.steps .bg:after
{
    position: absolute;
    inset: 0;

    display: block;

    content: '';
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(180deg, rgba(20, 19, 19, .70) 0%, rgba(20, 19, 19, .99) 50%);
}



.steps .cont
{
    position: relative;

    z-index: 3;
}



.steps .block_head .desc
{
    color: var(--secondary_color);
}



.steps .grid_row
{
    justify-content: center;

    --count_per_line: 4;
    --offset_h: var(--cont_padding);
    --offset_v: var(--cont_padding);
}


.steps .item
{
    display: flex;
    flex-direction: column;

    min-height: 224px;
    padding: var(--inner_gap);

    border-radius: var(--border_radius_s);
    background: rgba(255, 255, 255, .03);

    gap: 20px;
}


.steps .item .head
{
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;

    font-family: var(--font_family2);
    font-size: var(--font_size_title_s);
    font-weight: 600;
    line-height: 110%;

    color: var(--secondary_color);

    gap: 10px;
}


.steps .item .head .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 30px;
    height: 30px;
}


.steps .item .head .icon img
{
    display: block;

    width: 100%;
    height: 100%;
}


.steps .item .head .icon + *
{
    width: calc(100% - 40px);
}


.steps .item .name
{
    margin-top: auto;

    line-height: 135%;
}


.steps .item .phone
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    font-weight: 600;
    line-height: 135%;

    gap: 6px;
}


.steps .item .phone svg
{
    display: block;

    width: 20px;
    height: 20px;

    color: var(--secondary_color);
}


.steps .item .phone a
{
    white-space: nowrap;
    text-decoration: none;

    color: currentColor;
}



/*-----------
    Cases
-----------*/
.cases .head
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;

    margin-bottom: 40px;

    gap: var(--cont_padding);
}



.cases .rating
{
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 97px;
    padding-inline: var(--inner_gap);

    border-radius: var(--border_radius_s);
    background: #f2f1f1;

    gap: 7px;
    text-decoration: none;
    color: var(--dark_color);
}


.cases .rating .ya_logo img
{
    display: block;

    width: 83px;
    height: 23px;
}


.cases .rating .bottom
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 5px;
}


.cases .rating .stars
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    color: #fc0;

    gap: 2px;
}


.cases .rating .stars .icon
{
    display: block;

    width: 13px;
    height: 11px;
}


.cases .rating .val
{
    font-size: var(--font_size_s);
    font-weight: 600;
    line-height: 135%;

    white-space: nowrap;
}


.cases .rating .count
{
    margin-left: 7px;

    font-size: var(--font_size_s);
    line-height: 135%;

    white-space: nowrap;

    opacity: .4;
}



.cases .likes
{
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 264px;
    max-width: 100%;
    min-height: 97px;
    padding-inline: var(--inner_gap);

    border-radius: var(--border_radius_s);
    background: #f2f1f1;

    gap: 6px;
}


.cases .likes .top
{
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: flex-start;

    font-weight: 600;
    line-height: 135%;

    gap: 5px;
}


.cases .likes .green
{
    color: #3bb300;
}


.cases .likes .icon
{
    display: block;

    width: 20px;
    height: 20px;

    color: #3bb300;
}


.cases .likes .count
{
    font-size: var(--font_size_s);
    line-height: 135%;

    white-space: nowrap;

    opacity: .4;
}



.cases .grid_row
{
    --count_per_line: 2;
    --offset_h: var(--cont_padding);
    --offset_v: var(--cont_padding);
}


.cases .grid_row > *:nth-child(6) ~ *
{
    display: none;
}


.cases .grid_row.show_all > *:nth-child(6) ~ *
{
    display: flex;
}



.cases .case
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;

    padding: 40px;

    border-radius: var(--border_radius);
    background: var(--bg_light);
}


.cases .case .col_left
{
    display: flex;
    flex-direction: column;

    width: 160px;
    max-width: 100%;

    gap: var(--inner_gap_s);
}


.cases .case .number
{
    display: flex;
    flex-direction: column;

    text-align: center;

    gap: 3px;
}


.cases .case .number .label
{
    font-size: 12px;
    line-height: 135%;

    opacity: .7;
}


.cases .case .number .val
{
    font-size: var(--font_size_s);
    font-weight: 600;
    line-height: 135%;
}


.cases .case .thumb
{
    display: block;

    border: 1px solid #ededed;
    border-radius: var(--border_radius_s);
}


.cases .case .thumb img
{
    display: block;

    width: 100%;

    border-radius: inherit;
}


.cases .case .fancy_btn
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 100%;
    height: 52px;
    margin-top: var(--inner_gap_s);
    padding-inline: 39px;

    font-weight: 600;
    line-height: 135%;

    transition: background .2s linear;
    text-decoration: none;

    color: var(--light_color);
    border-radius: var(--border_radius_s);
    background: var(--primary_color);
}


.cases .case .fancy_btn:hover
{
    background: var(--primary_color_h);
}


.cases .case .data
{
    display: flex;
    flex-direction: column;

    width: calc(100% - 210px);

    gap: var(--cont_padding);
}


.cases .case .name
{
    margin-bottom: auto;

    font-family: var(--font_family2);
    font-size: var(--font_size_title_s);
    font-weight: 600;
    line-height: 120%;
}


.cases .case .text
{
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;

    font-size: var(--font_size_s);
    line-height: 135%;

    text-overflow: ellipsis;

    -webkit-line-clamp: 5;
}


.cases .case .read_btn
{
    width: fit-content;
    height: 52px;
    padding-inline: 39px;

    font-weight: 600;
    line-height: 135%;

    transition: .2s linear;

    color: var(--primary_color);
    border: 1px solid;
    border-radius: var(--border_radius_s);
}


.cases .case .read_btn:hover
{
    color: var(--light_color);
    border-color: var(--primary_color);
    background: var(--primary_color);
}



.cases .spoler_btn
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    height: 70px;
    margin-inline: auto;
    margin-top: 40px;
    padding-inline: 39px;

    font-weight: 600;
    line-height: 135%;

    transition: .2s linear;

    color: var(--primary_color);
    border: 1px solid;
    border-radius: var(--border_radius_s);

    gap: var(--inner_gap_s);
}

.cases .spoler_btn span + span
{
    display: none;
}


.cases .spoler_btn .icon
{
    display: block;

    width: 13px;
    height: 13px;

    transition: .2s linear;
}


.cases .spoler_btn:hover
{
    color: var(--light_color);
    border-color: var(--primary_color);
    background: var(--primary_color);
}


.cases .spoler_btn.active span
{
    display: none;
}

.cases .spoler_btn.active span + span
{
    display: block;
}


.cases .spoler_btn.active .icon
{
    transform: rotate(-180deg);
}



/*-----------
    About
-----------*/
.about .data
{
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    height: 775px;
    padding-block: 50px;
    padding-inline: 112px;

    border-radius: var(--border_radius);
    background: var(--bg_light);
    box-shadow: 0 24px 24px 0 rgba(0, 0, 0, .01);
}


.about .data:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: var(--outside_gap);

    content: '';
    z-index: 3;
    pointer-events: none;

    background: linear-gradient(180deg, rgba(249, 248, 248, .00) 0%, #f9f8f8 100%);
}


.about .data.show_all
{
    height: auto;
}


.about .data.show_all:after
{
    display: none;
}



.about .spoler_btn
{
    position: relative;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    height: 70px;
    margin-inline: auto;
    margin-top: var(--cont_padding);
    padding-inline: 39px;

    font-weight: 600;
    line-height: 135%;

    z-index: 5;
    transition: .2s linear;

    color: var(--primary_color);
    border: 1px solid;
    border-radius: var(--border_radius_s);

    gap: var(--inner_gap_s);
}

.about .spoler_btn span + span
{
    display: none;
}


.about .spoler_btn .icon
{
    display: block;

    width: 13px;
    height: 13px;

    transition: .2s linear;
}


.about .spoler_btn:hover
{
    color: var(--light_color);
    border-color: var(--primary_color);
    background: var(--primary_color);
}


.about .spoler_btn.active span
{
    display: none;
}

.about .spoler_btn.active span + span
{
    display: block;
}


.about .spoler_btn.active .icon
{
    transform: rotate(-180deg);
}



/*-------------------
    Contacts info
-------------------*/
.contacts_info .data
{
    position: relative;

    margin-bottom: calc(var(--cont_padding_double) * -1);

    z-index: 3;
}


.contacts_info .grid_row
{
    --offset_h: var(--cont_padding);
    --offset_v: var(--cont_padding);
}


.contacts_info .item
{
    display: flex;
    flex-direction: column;

    min-height: 134px;
    padding-block: var(--cont_padding);
    padding-inline: var(--inner_gap);

    border-radius: var(--border_radius_s);
    background: var(--bg_light);
    box-shadow: 0 24px 24px 0 rgba(0, 0, 0, .01);

    gap: 20px;
}


.contacts_info .item .label
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    font-size: var(--font_size_s);
    font-weight: 500;
    line-height: 135%;

    color: rgba(20, 19, 19, .7);

    gap: 6px;
}


.contacts_info .item .label .icon
{
    display: block;

    width: 20px;
    height: 20px;

    color: var(--secondary_color);
}


.contacts_info .item .label span
{
    align-self: center;

    width: calc(100% - 26px);
}


.contacts_info .item .val
{
    margin-top: auto;

    font-weight: 600;
    line-height: 135%;
}


.contacts_info .item .val a
{
    white-space: nowrap;
    text-decoration: none;

    color: currentColor;
}



.contacts_info .map
{
    position: relative;

    overflow: hidden;

    height: 660px;

    border: 1px solid #ededed;
    border-radius: var(--border_radius);
}



/*----------------
    Requisites
----------------*/
.requisites .data
{
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    height: 565px;
    padding-block: 50px;
    padding-inline: 112px;

    border-radius: var(--border_radius);
    background: var(--bg_light);
    box-shadow: 0 24px 24px 0 rgba(0, 0, 0, .01);
}


.requisites .data:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100px;

    content: '';
    z-index: 3;
    pointer-events: none;

    background: linear-gradient(180deg, rgba(249, 248, 248, .00) 0%, #f9f8f8 100%);
}


.requisites .data.show_all
{
    height: auto;
}


.requisites .data.show_all:after
{
    display: none;
}


.requisites .data .item
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    padding-block: 20px 24px;

    line-height: 135%;
}


.requisites .data .item + .item
{
    border-top: 1px solid #ededed;
}


.requisites .data .item .label
{
    width: calc(100% - 424px);
}


.requisites .data .item .val
{
    width: 400px;
    max-width: 100%;

    font-weight: 600;

    text-align: right;
}



.requisites .btns
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;

    margin-top: var(--cont_padding);

    gap: var(--cont_padding);
}


.requisites .btns .btn
{
    position: relative;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    height: 70px;
    padding-inline: 39px;

    font-weight: 600;
    line-height: 135%;

    z-index: 5;
    transition: .2s linear;
    text-decoration: none;

    color: var(--primary_color);
    border: 1px solid;
    border-radius: var(--border_radius_s);

    gap: var(--inner_gap_s);
}

.requisites .btns .btn span + span
{
    display: none;
}


.requisites .btns .btn .icon
{
    display: block;

    width: 13px;
    height: 13px;

    transition: .2s linear;
}


.requisites .btns .btn:hover
{
    color: var(--light_color);
    border-color: var(--primary_color);
    background: var(--primary_color);
}


.requisites .btns .btn.download_btn
{
    color: var(--light_color);
    border-color: var(--primary_color);
    background: var(--primary_color);
}


.requisites .btns .btn.download_btn:hover
{
    background: var(--primary_color_h);
}


.requisites .btns .btn.active span
{
    display: none;
}

.requisites .btns .btn.active span + span
{
    display: block;
}


.requisites .btns .btn.active .icon
{
    transform: rotate(-180deg);
}



/*------------
    Footer
------------*/
footer
{
    position: relative;

    background: rgb(var(--bg_dark));
}



footer .bg
{
    position: absolute;
    inset: 0;

    display: block;

    z-index: 1;
    pointer-events: none;
}


footer .bg:after
{
    position: absolute;
    inset: 0;

    display: block;

    content: '';
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(180deg, rgba(20, 19, 19, .70) 0%, rgba(20, 19, 19, .99) 50%);
}



footer .data
{
    position: relative;

    padding-block: 70px;

    z-index: 3;

    color: var(--light_color);
}


footer .data .cont
{
    position: relative;

    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-end;
}



footer .bottom
{
    position: relative;

    padding-block: var(--cont_padding);

    font-size: 12px;
    line-height: 135%;

    z-index: 3;

    color: var(--light_color);
    border-top: 1px solid rgba(255, 255, 255, .1);
}


footer .bottom .cont
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}



footer .logo
{
    position: absolute;
    top: -70px;
    left: var(--cont_padding);

    display: flex;
    flex-direction: column;

    width: 268px;
    max-width: 100%;
    padding-block: var(--inner_gap);
    padding-inline: var(--inner_gap) 28px;

    font-size: 12px;
    line-height: 135%;

    text-decoration: none;

    color: var(--light_color);
    border-radius: 0 0 var(--border_radius_s) var(--border_radius_s);
    background: var(--primary_color);

    gap: var(--inner_gap_s);
}


footer .logo img
{
    display: block;

    width: 204px;
    max-width: 100%;

    aspect-ratio: 204 / 56;
}


footer .logo div
{
    opacity: .7;
}



footer .title
{
    margin-bottom: var(--cont_padding);

    font-family: var(--font_family2);
    font-size: var(--font_size_title_s);
    font-weight: 600;
    line-height: 120%;
}



footer .info .items
{
    display: flex;
    flex-direction: column;

    font-size: var(--font_size_s);
    line-height: 135%;

    gap: var(--cont_padding_half);
}


footer .info .items > *
{
    width: fit-content;

    transition: color .2s linear;
}


footer .info .items > *:hover
{
    color: var(--secondary_color);
}



footer .links
{
    width: 232px;
    max-width: 100%;
    margin-left: 141px;
}


footer .links .items
{
    display: flex;
    flex-direction: column;

    font-size: var(--font_size_s);
    line-height: 135%;

    gap: var(--cont_padding_half);
}


footer .links .items a
{
    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;

    color: currentColor;
}


footer .links .items a:hover,
footer .links .items a.active
{
    color: var(--secondary_color);
}



footer .contacts
{
    width: 312px;
    max-width: 100%;
    margin-left: 103px;
}



footer .contacts .phone
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    font-weight: 600;
    line-height: 135%;
}


footer .contacts .phone .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 20px;
    height: 20px;

    color: var(--secondary_color);
}


footer .contacts .phone .icon svg
{
    display: block;

    width: 100%;
    height: 100%;
}


footer .contacts .phone .icon + *
{
    width: calc(100% - 30px);
}


footer .contacts .phone a
{
    white-space: nowrap;
    text-decoration: none;

    color: currentColor;
}



footer .contacts .location
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-top: var(--cont_padding);

    line-height: 135%;
}


footer .contacts .location .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    align-self: flex-start;
    flex-wrap: wrap;
    justify-content: center;

    width: 20px;
    height: 20px;

    color: var(--secondary_color);
}


footer .contacts .location .icon svg
{
    display: block;

    width: 100%;
    height: 100%;
}


footer .contacts .location .icon + *
{
    width: calc(100% - 30px);
}



footer .contacts .email
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-top: var(--cont_padding);

    line-height: 135%;
}


footer .contacts .email .icon
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 20px;
    height: 20px;

    color: var(--secondary_color);
}


footer .contacts .email .icon svg
{
    display: block;

    width: 100%;
    height: 100%;
}


footer .contacts .email .icon + *
{
    width: calc(100% - 30px);
}


footer .contacts .email a
{
    white-space: nowrap;
    text-decoration: none;

    color: currentColor;
}



footer .copyright
{
    margin-right: auto;

    opacity: .4;
}



footer .privacy_policy_link
{
    width: 232px;
    max-width: 100%;
}


footer .privacy_policy_link a
{
    transition: opacity .2s linear;
    text-decoration: none;

    opacity: .4;
    color: currentColor;
}


footer .privacy_policy_link a:hover
{
    opacity: 1;
}



footer .other
{
    width: 312px;
    max-width: 100%;
    margin-left: 103px;
}


footer .other a
{
    transition: opacity .2s linear;
    text-decoration: none;

    opacity: .4;
    color: currentColor;
}


footer .other a:hover
{
    opacity: 1;
}



/*-----------
    PopUp
-----------*/
.modal
{
    display: none;
    visibility: visible !important;

    width: var(--content_width);
    max-width: 100%;
    padding-block: 0;
    padding-inline: 0;

    color: var(--dark_color);
    border-radius: var(--border_radius);
    background: transparent;
}


.wpcf7 form .wpcf7-response-output{
    display: none !important;
}

.form .input.wpcf7-not-valid{
    border: 1px solid red !important;
}

.mt_200{
    margin-top: 200px;
}