/* For old browsers */
@supports (not(--css: variables))
{
    .supports_error
    {
        display: flex !important;
    }
}

/* For IE */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none)
{
    .supports_error
    {
        display: flex !important;
    }
}



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

    scroll-margin-top: 24px;
}

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

html
{
    -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: #f7f7f7;
    --scroll_width: 17px;
    --text_color: #404040;
    --font_size: 16px;
    --font_size_title: 40px;
    --font_family: 'Montserrat', 'Arial', sans-serif;
}


::selection
{
    color: #fff;

    background: #314c55;
}

::-moz-selection
{
    color: #fff;

    background: #314c55;
}


.clear
{
    clear: both;
}

.left
{
    float: left;
}

.right
{
    float: right;
}



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

html.custom_scroll ::-webkit-scrollbar
{
    width: 10px;
    height: 10px;

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

html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: #dd703c;
}

html.custom_scroll
{
    scrollbar-color: #dd703c var(--bg);
    scrollbar-width: thin;
}


body
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

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

body.menu_open
{
    position: fixed;
    top: 0;
    left: 0;

    overflow: hidden;

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


button
{
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    display: inline-block;

    cursor: pointer;
    vertical-align: top;

    border: none;
    background: none;
}


.wrap
{
    position: relative;
    z-index: 9;

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

    min-width: 375px;
    min-height: 100%;

    background: var(--bg);
}


.main
{
    display: flex;
    flex-direction: column;

    flex: 1 0 auto;
}


.cont
{
    width: 100%;
    max-width: 1226px;
    margin: 0 auto;
    padding: 0 24px;
}


.lazyload,
.swiper-lazy
{
    transition: opacity .5s linear;

    opacity: 0;
}

.lazyload.loaded,
.swiper-lazy-loaded
{
    opacity: 1;
}


.row
{
    display: flex;

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



.block
{
    margin-bottom: 64px;
}

.block.no_margin
{
    margin-bottom: 0 !important;
}



.overlay
{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    opacity: .65;
    background: #000;
}



.supports_error
{
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    line-height: 30px;

    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;
    padding: 20px;

    text-align: center;

    background: #fff;

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

.supports_error.show
{
    display: flex;
}



/*--------------
    Fancybox
--------------*/
.fancybox__backdrop
{
    background: rgba(0, 0, 0, .6);
}


.fancybox__slide
{
    padding: 40px;
}



.fancybox__content > .carousel__button.is-close
{
    color: #000;

    top: 24px;
    right: 24px;

    width: 16px;
    height: 16px;
}

.modal.fancybox__content > .carousel__button.is-close svg
{
    display: block;

    width: 16px;
    height: 16px;

    filter: none;
    stroke: none;
    stroke-width: 0;
}



/*--------------
    All link
--------------*/
.all_link
{
    display: flex;

    margin-top: 24px;

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

.all_link > * + *
{
    margin-left: 16px;
}


.all_link .btn
{
    color: #fff;
    font-size: 14px;
    line-height: 25px;

    display: inline-block;

    padding: 7px 16px 8px;

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

    border-radius: 3px;
    background: #dd703c;
    box-shadow: 0 5px 25px rgba(221, 112, 60, .31);
}

.all_link .btn:hover
{
    background: #d35519;
}


.all_link .btn.dark
{
    background: #314c55;
    box-shadow: 0 5px 25px rgba(48, 75, 84, .53);
}



/*---------------
    Accordion
---------------*/
.accordion_item
{
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 64px rgba(59, 96, 107, .3);
}

.accordion_item + .accordion_item
{
    margin-top: 24px;
}


.accordion_item .head
{
    position: relative;

    padding: 21px 64px 22px 24px;

    cursor: pointer;
}


.accordion_item .head .icon
{
    font-weight: 700;
    line-height: 21px;

    position: absolute;
    top: 0;
    right: 22px;
    bottom: 0;

    width: 10px;
    height: 21px;
    margin: auto;

    text-align: center;
}

.accordion_item .head .icon:before
{
    display: block;

    content: '+';
}


.accordion_item .head .title
{
    font-weight: 700;
    line-height: 21px;
}


.accordion_item .data
{
    display: none;

    padding: 0 24px 24px;
}


.accordion_item.active .head .icon:before
{
    content: '-';
}



/*------------
    Header
------------*/
header
{
    position: relative;
    z-index: 9;
    top: 0;
    left: 0;

    width: 100%;
    padding: 15px 0 17px;
}



header .mob_close_btn
{
    position: absolute;
    top: 0;
    left: 100%;

    display: none;

    width: 50px;
    height: 50px;

    cursor: pointer;

    border: none;
    background: none;
}

header .mob_close_btn:before,
header .mob_close_btn:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 50%;
    height: 2px;
    margin: auto;

    content: '';
    transform: rotate(45deg);

    background: #fff;
}

header .mob_close_btn:after
{
    transform: rotate(-45deg);
}

header.show .mob_close_btn
{
    display: block;
}


header .cont
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}



header .logo
{
    color: currentColor;

    display: block;

    margin-right: auto;

    text-decoration: none;
}

header .logo img
{
    display: block;

    mix-blend-mode: multiply;
}



header .menu_item + .menu_item
{
    margin-left: 30px;
}


header .menu_item > a
{
    color: #8f8f8f;
    font-size: 14px;
    line-height: 25px;

    display: block;
}

header .menu_item > a:hover,
header .menu_item > a.active
{
    text-decoration: none;
}



header .contacts
{
    margin-left: 37px;
}


header .contacts .phone
{
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
}

header .contacts .phone a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}


header .contacts .time
{
    color: #8f8f8f;
    font-size: 12px;
    line-height: 25px;

    margin-top: 2px;
}



header .consult_btn
{
    color: #fff;
    font-size: 14px;
    line-height: 25px;

    margin-left: 33px;
    padding: 7px 16px 8px;

    transition: background .2s linear;

    border-radius: 3px;
    background: #dd703c;
    box-shadow: 0 5px 25px rgba(221, 112, 60, .31);
}

header .consult_btn:hover
{
    background: #d35519;
}



/*-----------------
    Mob. header
-----------------*/
.mob_header
{
    position: relative;
    z-index: 9;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    padding: 16px 0;
}


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



.mob_header .logo
{
    color: currentColor;

    display: block;

    margin-right: auto;

    text-decoration: none;
}

.mob_header .logo img
{
    display: block;
}



.mob_header .contacts
{
    margin-left: auto;
}


.mob_header .contacts .phone
{
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}

.mob_header .contacts .phone a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}


.mob_header .contacts .time
{
    color: #8f8f8f;
    font-size: 12px;
    line-height: 18px;

    margin-top: 2px;
}



.mob_header .consult_btn
{
    color: #fff;
    font-size: 13px;
    line-height: 19px;

    margin-left: 32px;
    padding: 8px 16px;

    transition: background .2s linear;

    border-radius: 3px;
    background: #dd703c;
    box-shadow: 0 5px 25px rgba(221, 112, 60, .31);
}

.mob_header .consult_btn:hover
{
    background: #d35519;
}



.mob_header .mob_menu_btn
{
    color: currentColor;

    display: flex;

    width: 44px;
    height: 34px;
    margin-right: -8px;
    margin-left: 24px;
    padding: 8px;

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


.mob_header .mob_menu_btn span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    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: '';

    background: currentColor;
}

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



/*---------------
    Page head
---------------*/
.page_head
{
    margin-bottom: 24px;
    padding-top: 15px;
}



.breadcrumbs
{
    color: #8f8f8f;
    font-size: 11px;
    line-height: 25px;
}


.breadcrumbs a
{
    color: currentColor;
}

.breadcrumbs a:hover
{
    text-decoration: none;
}


.breadcrumbs .sep
{
    display: inline-block;

    margin: 0 4px;

    vertical-align: top;
}



.page_title
{
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: calc(var(--font_size_title) + 9px);

    position: relative;

    display: block;
}

.page_title:before
{
    position: absolute;
    top: 22px;
    right: 100%;

    display: block;

    width: 50vw;
    height: 5px;
    margin-right: 30px;

    content: '';

    background: #315866;
}



/*----------------
    Block head
----------------*/
.block_head
{
    margin-bottom: 32px;

    text-align: center;
}


.block_head .title
{
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: calc(100% + 9px);

    position: relative;

    display: inline-block;

    vertical-align: top;
}

.block_head .title:not(.no_lines):before,
.block_head .title:not(.no_lines):after
{
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;

    display: block;

    width: 206px;
    height: 7px;
    margin: auto;
    margin-right: 18px;

    content: '';
    pointer-events: none;

    background: url(../images/bg_block_head.svg) 0 0/100% 100% no-repeat;
}

.block_head .title:not(.no_lines):after
{
    right: auto;
    left: 100%;

    margin-right: 0;
    margin-left: 18px;

    transform: rotate(180deg);
}


.block_head .desc
{
    font-size: 24px;
    line-height: 33px;

    margin-top: 12px;
}



/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: #fff;
    --form_focus_color: #fff;
    --form_error_color: red;
    --form_border_radius: 3px;
    --form_bg_color: #fff;
    --form_placeholder_color: #8f8f8f;
}


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

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

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

    opacity: 1;
}

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


.form .columns
{
    margin-left: calc(var(--form_columns_offset) * -1);

    --form_columns_offset: 30px;
}

.form .columns > *
{
    width: calc(50% - var(--form_columns_offset));
    margin-left: var(--form_columns_offset);
}


.form .line
{
    margin-bottom: 20px;
}


.form .label
{
    font-size: 14px;
    line-height: 17px;

    margin-bottom: 8px;
}


.form .field
{
    position: relative;
}


.form .unit
{
    font-size: 14px;
    line-height: 41px;

    position: absolute;
    z-index: 10;
    right: 8px;

    display: block;

    white-space: nowrap;
    pointer-events: none;
}


.form .input
{
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: 14px;

    display: block;

    width: 100%;
    height: 41px;
    padding: 0 11px;

    transition: border-color .2s linear;

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

.form .unit + .input
{
    padding-right: 49px;
}

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


.form textarea
{
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: 14px;

    display: block;

    width: 100%;
    height: 103px;
    padding: 11px 11px;

    resize: none;
    transition: border-color .2s linear;

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

.form textarea::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
}


.form .input:focus,
.form textarea:focus,
.form .nice-select.open .current
{
    border-color: var(--form_focus_color);
}

.form .error,
.form .error + .nice-select .current
{
    border-color: var(--form_error_color);
}


.form select
{
    display: none;
}


.form .nice-select
{
    position: relative;

    display: block;
}


.form .nice-select .current
{
    color: var(--form_placeholder_color);
    font-size: 14px;
    line-height: 39px;

    position: relative;

    display: block;
    overflow: hidden;

    height: 41px;
    padding: 0 47px 0 11px;

    cursor: pointer;
    transition: border-color .2s linear;
    white-space: nowrap;
    text-overflow: ellipsis;

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

.form .nice-select .current.selected
{
    color: var(--text_color);
}


.form .nice-select .list
{
    position: absolute;
    z-index: 9;
    top: calc(100% + 30px);
    left: 0;

    visibility: hidden;
    overflow: hidden;

    min-width: 100%;
    padding: 8px 0;

    transition: .2s linear;

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

.form .nice-select.open .list
{
    top: calc(100% + 1px);

    visibility: visible;

    opacity: 1;
}


.form .nice-select .list .scrollbar
{
    overflow: auto;

    max-height: 240px;
}

.form .nice-select .list .scrollbar::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
}


.form .nice-select .list .list_item
{
    font-size: 14px;
    line-height: 17px;

    padding: 8px 20px;

    cursor: pointer;
}

.form .nice-select .list .list_item:empty
{
    display: none;
}


.form .nice-select + .arr
{
    position: absolute;
    z-index: 10;
    top: 0;
    right: 12px;
    bottom: 0;

    display: block;

    width: 10px;
    height: 6px;
    margin: auto;

    pointer-events: none;
}


.form .file input
{
    display: none;
}

.form .file label
{
    font-size: 14px;
    line-height: 17px;

    position: relative;

    display: flex;

    cursor: pointer;

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

.form .file label .icon
{
    display: block;

    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.form .file label span
{
    overflow: hidden;

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

    white-space: nowrap;
    text-overflow: ellipsis;

    border-bottom: 1px dashed;
}


.form .checks
{
    width: 552px;
    max-width: 100%;
}


.form .checks .row
{
    margin-bottom: -20px;
    margin-left: -40px;
}

.form .checks .row > *
{
    margin-bottom: 20px;
    margin-left: 40px;
}


.form .checkbox
{
    color: #404040;
    font-size: 14px;
    line-height: 17px;

    position: relative;

    display: flex;

    min-height: 17px;
    padding-left: 24px;

    cursor: pointer;

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

.form .checkbox input
{
    display: none;
}

.form .checkbox .check
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 16px;
    height: 16px;
    margin: auto;

    transition: .2s linear;

    border: 1px solid #d5d5d5;
    border-radius: 3px;
    background: #fff;
}

.form .checkbox .check:after
{
    position: absolute;
    top: -1px;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 8px;
    height: 5px;
    margin: auto;

    content: '';
    transition: opacity .2s linear;
    transform: rotate(-45deg);

    opacity: 0;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}


.form .checkbox input:checked + .check
{
    border-color: #000;
    background: #000;
}

.form .checkbox input:checked + .check:after
{
    opacity: 1;
}


.form .radios .row
{
    margin-bottom: -20px;
    margin-left: -40px;
}

.form .radios .row > *
{
    margin-bottom: 20px;
    margin-left: 40px;
}


.form .radio
{
    color: #404040;
    font-size: 14px;
    line-height: 17px;

    position: relative;

    min-height: 17px;
    padding-left: 24px;

    cursor: pointer;
}


.form .radio input
{
    display: none;
}


.form .radio .check
{
    position: absolute;
    top: 0;
    left: 0;

    width: 16px;
    height: 16px;

    border: 1px solid #d5d5d5;
    border-radius: 50%;
    background: #fff;
}

.form .radio .check:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 8px;
    height: 8px;
    margin: auto;

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

    opacity: 0;
    border-radius: 50%;
    background: #314c55;
}


.form .radio input:checked ~ .check:after
{
    opacity: 1;
}


.form .radio .sub_types
{
    display: flex;

    margin-top: 12px;
    margin-left: -8px;

    pointer-events: none;

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

.form .radio .sub_types.hide
{
    display: none;
}

.form .radio input:checked ~ .sub_types
{
    pointer-events: auto;
}


.form .radio .sub_types label
{
    display: block;

    width: 42px;
    height: 42px;
    margin-left: 8px;
    padding: 0;

    cursor: pointer;
}

.form .radio .sub_types input
{
    display: none;
}


.form .radio .sub_types img
{
    display: block;

    width: 100%;
    height: 100%;

    transition: opacity .2s linear;

    opacity: .5;
    border: 1px solid #d9d9d9;
    border-radius: 50%;

    object-fit: cover;
}

.form .radio .sub_types input:checked + img
{
    opacity: 1;
}


.form .radio .desc
{
    color: #8f8f8f;
    font-size: 12px;
    line-height: 15px;

    margin-top: 8px;
}


.form .balcony_design .row,
.form .window_design .row
{
    margin-bottom: -40px;
    margin-left: -40px;
}

.form .balcony_design .row > *,
.form .window_design .row > *
{
    width: calc(25% - 40px);
    margin-bottom: 40px;
    margin-left: 40px;
}


.form .balcony_design .radio,
.form .window_design .radio
{
    padding: 0;

    text-align: center;
}


.form .balcony_design .thumb,
.form .window_design .thumb
{
    display: flex;

    height: 71px;
    margin-bottom: 10px;

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

.form .balcony_design .thumb img,
.form .window_design .thumb img
{
    display: block;

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


.form .balcony_design .radio .check,
.form .window_design .radio .check
{
    position: relative;

    margin: 0 auto 6px;
}


.form .submit
{
    display: flex;

    padding-top: 4px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}


.form .submit_btn
{
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;

    padding: 11px 16px 12px;

    transition: background .2s linear;

    border-radius: 3px;
    background: #dd703c;
    box-shadow: 0 5px 25px rgba(221, 112, 60, .31);
}

.form .submit_btn:hover
{
    background: #d35519;
}


.form .agree
{
    font-size: 10px;
    line-height: 12px;
}

.form .agree a
{
    color: currentColor;
}

.form .agree a:hover
{
    text-decoration: none;
}

.form .submit .agree
{
    width: 292px;
    max-width: 100%;
    margin-left: 13px;
}



/*----------------
    Typography
----------------*/
.text_block
{
    font-size: var(--font_size);
    line-height: 30px;
}


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

.text_block > *.clear
{
    margin-bottom: 0;
}


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

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


.text_block h2
{
    font-size: 30px;
    font-weight: 700;
    line-height: 37px;

    margin-bottom: 32px !important;
}


.text_block * + h2
{
    margin-top: 32px;
}

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


.text_block img
{
    display: block;

    max-width: 100%;

    border-radius: 12px;
}

.text_block img.right
{
    width: calc(50% - 15px);
    margin-left: 30px;
}

.text_block img.left
{
    width: calc(50% - 15px);
    margin-right: 30px;
}

.text_block img.loaded
{
    height: auto !important;
}


.text_block .columns
{
    column-gap: 30px;
    column-count: 2;
}

.text_block .columns > *
{
    transform: translateZ(0);

    --webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

.text_block .columns > * + *
{
    margin-top: 24px;
}


.text_block ul li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 22px;

    list-style-type: none;
}

.text_block ul li:before
{
    position: absolute;
    top: 13px;
    left: 6px;

    display: block;

    width: 3px;
    height: 3px;

    content: '';

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


.text_block ol
{
    counter-reset: li;
}

.text_block ol li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 22px;

    list-style-type: none;
}

.text_block ol li:before
{
    color: var(--text_color);

    position: absolute;
    top: 0;
    left: 0;

    content: counter(li) '.';
    counter-increment: li;
}



/*-----------------
    Main slider
-----------------*/
.main_slider .swiper
{
    overflow: visible !important;
}


.main_slider .swiper-slide
{
    pointer-events: none;
}

.main_slider .swiper-slide.active
{
    pointer-events: auto;
}


.main_slider .cont
{
    position: relative;
    z-index: 3;
}


.main_slider .data
{
    color: #fff;

    position: relative;
    z-index: 3;

    width: 736px;
    max-width: 100%;
    height: 442px;
    padding: 70px 104px 80px 50px;

    border-radius: 12px;
}

.main_slider .data:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    border-radius: 12px 0 0 12px;
    background: url(../images/bg_main_slider_data.png) 100% 50%/cover no-repeat;
}


.main_slider .title
{
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: calc(var(--font_size_title) + 9px);
}


.main_slider .desc
{
    font-size: 13px;
    line-height: 25px;

    margin-top: 24px;
}


.main_slider .btns
{
    display: flex;

    margin-top: 30px;

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

.main_slider .btns > * + *
{
    margin-left: 12px;
}


.main_slider .order_btn
{
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;

    height: 40px;
    padding: 0 16px;

    transition: background .2s linear;

    border-radius: 3px;
    background: #dd703c;
    box-shadow: 0 5px 25px rgba(221, 112, 60, .31);
}

.main_slider .order_btn:hover
{
    background: #d35519;
}


.main_slider .calc_btn
{
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    display: flex;

    height: 40px;
    padding: 0 16px;

    border: 1px solid #fff;
    border-radius: 3px;
    box-shadow: 0 5px 25px rgba(30, 94, 0, .3);

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

.main_slider .calc_btn .icon
{
    display: block;

    width: 15px;
    height: 17px;
    margin-right: 6px;
}


.main_slider .image
{
    position: absolute;
    z-index: -1;
    top: 0;
    right: 24px;
    bottom: 0;

    overflow: hidden;

    width: 771px;
    max-width: calc(100% - 60px);
    height: calc(100% - 60px);
    margin: auto;

    border-radius: 0 20px 20px 0;
    background: #ddd;
    box-shadow: 0 14px 64px rgba(59, 96, 107, .3);
}

.main_slider .image img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}



/*----------------
    Directions
----------------*/
.directions .grid
{
    display: grid;

    grid-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
}

.directions .grid > *.big
{
    grid-row: 1 / 3;
    grid-column: 3 / 5;
}


.directions .direction
{
    color: #fff;

    position: relative;

    display: block;
    overflow: hidden;

    text-decoration: none;

    border-radius: 12px;
}


.directions .direction .thumb
{
    position: relative;
    z-index: 1;

    overflow: hidden;

    height: 165px;
    margin-bottom: -20px;

    border-radius: 12px;
    background: #ddd;
}

.directions .direction .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.directions .direction .info
{
    position: relative;
    z-index: 2;

    margin-bottom: -12px;
    padding: 24px 20px 23px;

    background: url(../images/bg_direction_info.svg) 50% 0/cover no-repeat;
}


.directions .direction .name
{
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}


.directions .direction .price
{
    font-size: 14px;
    line-height: 17px;
}

.directions .direction .price sup
{
    font-size: 8px;
    line-height: 10px;

    display: inline-block;

    vertical-align: top;
}


.directions .direction .btns
{
    position: relative;
    z-index: 3;

    display: flex;

    height: 59px;
    padding: 25px 20px 20px;

    background: url(../images/bg_direction_btns.svg) 50% 0/cover no-repeat;

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


.directions .direction .details
{
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
}


.directions .direction .calc_btn
{
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    display: flex;

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

.directions .direction .calc_btn .icon
{
    display: block;

    width: 15px;
    height: 18px;
    margin-right: 6px;
}


.directions .direction.big .thumb
{
    height: 485px;
}

.directions .direction.big .info
{
    display: flex;

    padding: 26px 20px;

    background: url(../images/bg_direction_info_big.svg) 50% 0/cover no-repeat;

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

.directions .direction.big .btns
{
    background: url(../images/bg_direction_btns_big.svg) 50% 0/cover no-repeat;
}



/*----------
    Calc
----------*/
.calc .form
{
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 64px rgba(59, 96, 107, .3);

    --form_border_color: #eee;
    --form_focus_color: #eee;
}


.calc .form .columns
{
    --form_columns_offset: 42px;
}

.calc .form .columns .line + .line
{
    margin-top: 0;
}


.calc .form .line
{
    margin-bottom: 0;
}


.calc .type
{
    padding: 24px 34px;

    border-radius: 12px 12px 0 0;
    background: rgba(53, 91, 104, .13);
}


.calc .type .row
{
    margin-bottom: -8px;
    margin-left: -66px;
}

.calc .type .row > *
{
    margin-bottom: 8px;
    margin-left: 66px;
}


.calc .type label
{
    color: #757575;
    line-height: 20px;

    position: relative;

    display: flex;

    padding-left: 26px;

    cursor: pointer;
    transition: color .2s linear;

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

.calc .type label > *
{
    pointer-events: none;
}


.calc .type label input
{
    display: none;
}


.calc .type label .check
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 16px;
    height: 16px;
    margin: auto;

    border: 1px solid #d5d5d5;
    border-radius: 50%;
    background: #fff;
}

.calc .type label .check:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 8px;
    height: 8px;
    margin: auto;

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

    opacity: 0;
    border-radius: 50%;
    background: #314c55;
}


.calc .type label input:checked ~ div
{
    color: var(--text_color);
}

.calc .type label input:checked + .check:after
{
    opacity: 1;
}


.calc .calc_info
{
    display: none;

    padding: 32px 52px 42px 32px;
}

.calc .calc_info > .row
{
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}


.calc .col_left
{
    width: calc(100% - 410px);
}

.calc .col_left > * + *
{
    margin-top: 32px;
}


.calc .col_right
{
    width: 352px;
    max-width: 100%;
    margin-left: auto;
}


.calc .label
{
    color: #000;
    font-size: var(--font_size);
    font-weight: 700;
    line-height: 20px;

    overflow: hidden;

    margin-bottom: 20px;
}

.calc .label.small
{
    color: #404040;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;

    margin-bottom: 8px;
}


.calc .label div
{
    position: relative;

    display: inline-block;

    vertical-align: top;
}

.calc .label div:after
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;

    display: block;

    width: 100vw;
    height: 1px;
    margin: auto;
    margin-left: 20px;

    content: '';

    background: #eee;
}


.calc .exp
{
    color: #8f8f8f;
    font-size: 12px;
    line-height: 25px;

    margin-top: -12px;
    margin-bottom: 12px;
}

.calc .col_right .exp
{
    line-height: 15px;

    margin-top: 12px;
    margin-bottom: 0;

    text-align: center;
}


.calc .image
{
    display: none;

    padding-top: 32px;

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

.calc .image.show
{
    display: flex;
}


.calc .image .item
{
    position: relative;
    z-index: 3;

    width: 88px;
    height: 162px;
}

.calc .image .item.full_w
{
    width: auto;
    max-width: 100%;
}

.calc .image .item.auto_h
{
    height: auto;
}

.calc .image .item.big_h
{
    height: 226px;
}

.calc .image .item:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 100%;

    display: block;

    width: 20px;
    height: 100%;

    content: '';

    border: 1px solid #d9d9d9;
    border-left: none;
}

.calc .image .item:after
{
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 100%;
    left: 0;

    display: block;

    width: 100%;
    height: 20px;

    content: '';

    border: 1px solid #e5e5e5;
    border-bottom: none;
}


.calc .image .item > *
{
    position: relative;

    display: none;
}

.calc .image .item > *.show
{
    display: block;
}


.calc .image img
{
    display: block;

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


.calc .image .change_leaf_type_btn
{
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;
}


.calc .image .width_input
{
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;

    display: block !important;

    width: 36px;
    height: 16px;
    margin: 0 auto 12px;
}

.calc .image .width_input input
{
    color: #fff;
    font-family: var(--font_family);
    font-size: 12px;

    display: block;

    width: 36px;
    height: 16px;

    text-align: center;

    border: none;
    border-radius: 3px;
    background: #dd703c;
    box-shadow: 0 5px 25px rgba(221, 112, 60, .31);
}


.calc .image .height_input
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;

    display: block !important;

    width: 36px;
    height: 16px;
    margin: auto 0 auto 2px;

    transform: rotate(90deg);
}

.calc .image .height_input input
{
    color: #fff;
    font-family: var(--font_family);
    font-size: 12px;

    display: block;

    width: 36px;
    height: 16px;

    text-align: center;

    border: none;
    border-radius: 3px;
    background: #dd703c;
    box-shadow: 0 5px 25px rgba(221, 112, 60, .31);
}


.calc .image .item.first:before
{
    right: 100%;
    left: auto;

    border: 1px solid #d9d9d9;
    border-right: none;
}

.calc .image .first .height_input
{
    right: 100%;
    left: auto;

    margin-right: 2px;
    margin-left: 0;

    transform: rotate(-90deg);
}


.calc .image .item .name
{
    color: #114555;
    font-size: 10px;
    font-weight: 700;
    line-height: 12px;

    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 12px;

    text-align: center;
    pointer-events: none;
}

.calc .image .item .name.center
{
    top: 50%;
    bottom: auto;

    transform: translateY(-50%);
}


.calc .finishing_images
{
    position: relative;

    border-radius: 17px;
    background: #f2f2f2;
}

.calc .finishing_images:after
{
    position: absolute;
    z-index: 90;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';
    pointer-events: none;

    box-shadow: inset 0 0 18px 20px #fff;
}


.calc .finishing_images img
{
    position: absolute;
    top: 0;
    left: 0;

    display: none;

    width: 100%;

    border-radius: inherit;
}

.calc .finishing_images img.show
{
    display: block;
}

.calc .finishing_images img.main
{
    position: relative;

    display: block;
}


.calc .total
{
    color: #000;
    font-size: 14px;
    line-height: 17px;

    width: 275px;
    max-width: 100%;
    margin: 48px auto 0;
    padding: 32px 24px;

    text-align: center;

    border-radius: 12px;
    background: #f7f7f7;
}


.calc .total .price
{
    color: #404040;
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: calc(100% + 9px);

    margin-top: 4px;
}


.calc .total .btn
{
    color: #fff;
    font-size: 14px;
    line-height: 25px;

    display: block;

    width: 100%;
    margin-top: 12px;
    padding: 7px 8px 8px;

    border-radius: 3px;
    background: #dd703c;
    box-shadow: 0 5px 25px rgba(221, 112, 60, .31);
}



/*--------------
    Projects
--------------*/
.projects .row
{
    margin-bottom: -30px;
    margin-left: -30px;
}

.projects .row > *
{
    width: calc(25% - 30px);
    margin-bottom: 30px;
    margin-left: 30px;
}

.projects .row.big > *
{
    width: calc(33.333% - 30px);
}


.projects .project
{
    color: #fff;

    position: relative;

    display: block;
    overflow: hidden;

    text-decoration: none;

    border-radius: 12px;
}


.projects .project .thumb
{
    position: relative;

    overflow: hidden;

    padding-bottom: 61.76%;

    border-radius: 12px;
    background: #ddd;
}

.projects .project .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.projects .project .info
{
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 20px 18px 18px;

    transition: transform .2s linear;
    transform: translateY(100%);

    background: url(../images/bg_project_info.svg) 50% 0/cover no-repeat;
}

.projects .big .project .info
{
    background-image: url(../images/bg_project_info_big.svg);
}


.projects .project .name
{
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}


.projects .project .desc
{
    font-size: 11px;
    line-height: 15px;

    margin-top: 8px;
}


.projects .project:hover .info
{
    transform: translateY(0%);
}



/*----------------
    Advantages
----------------*/
.advantages .row
{
    margin-bottom: -40px;
    margin-left: -24px;
    padding-top: 10px;

    justify-content: center;
}

.advantages .row > *
{
    width: calc(16.666% - 24px);
    margin-bottom: 40px;
    margin-left: 24px;
}


.advantages .item
{
    font-size: 12px;
    line-height: 15px;

    text-align: center;
    word-break: break-all;
}


.advantages .item .icon
{
    display: flex;

    height: 64px;
    margin-bottom: 24px;

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

.advantages .item .icon img
{
    display: block;

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



/*-------------
    Reviews
-------------*/
.reviews .row
{
    margin-bottom: -30px;
    margin-left: -30px;

    align-items: stretch;
    align-content: stretch;
}

.reviews .row > *
{
    width: calc(25% - 30px);
    margin-bottom: 30px;
    margin-left: 30px;
}


.reviews .review .images
{
    overflow: hidden;

    margin-bottom: 12px;

    border-radius: 12px;
}


.reviews .review .swiper-horizontal > .swiper-pagination-bullets,
.reviews .review .swiper-pagination-bullets.swiper-pagination-horizontal,
.reviews .review .swiper-pagination-custom,
.reviews .review .swiper-pagination-fraction
{
    bottom: 8px;

    width: 100%;
    padding: 0 20px;

    justify-content: center;
}


.reviews .review .thumb
{
    position: relative;

    overflow: hidden;

    height: 168px;

    border-radius: 12px;
    background: #ddd;
}

.reviews .review .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.reviews .review .text
{
    font-size: 11px;
    line-height: 15px;

    position: relative;

    padding: 16px;

    border-radius: 12px;
    background: #eee;
}

.reviews .review .text:after
{
    position: absolute;
    bottom: -7px;
    left: 19px;

    display: block;

    width: 15px;
    height: 15px;

    content: '';
    transform: rotate(45deg);

    background: #eee;
}


.reviews .review .info
{
    display: flex;

    margin-top: 10px;

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


.reviews .review .name
{
    font-weight: 700;
    line-height: 20px;
}


.reviews .review .date
{
    color: #8f8f8f;
    font-size: 12px;
    line-height: 15px;

    margin-left: auto;

    text-align: right;
}


.reviews .review .location
{
    color: #8f8f8f;
    font-size: 12px;
    line-height: 15px;

    width: 100%;
    margin-top: 2px;
}


.reviews .all_link
{
    margin-top: 42px;
}



/*------------------
    Consult form
------------------*/
.consult_form
{
    color: #fff;

    position: relative;
    z-index: 3;

    overflow: hidden;

    padding: 64px 0;

    background: linear-gradient(294.81deg, #2f4952 1.31%, #35525b 98.1%);
}

.consult_form:before,
.consult_form:after
{
    position: absolute;
    z-index: -1;
    bottom: -193px;
    left: -183px;

    display: block;

    width: 528px;
    height: 528px;

    content: '';

    background: radial-gradient(47.14% 47.14% at 50% 50%, rgba(84, 119, 115, .8) 0%, rgba(49, 75, 84, 0) 100%);
}

.consult_form:after
{
    top: -193px;
    right: -183px;
    bottom: auto;
    left: auto;

    transform: rotate(-180deg);
}


.consult_form .info
{
    width: 482px;
    max-width: 100%;
}


.consult_form .info .title
{
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: calc(100% + 9px);
}


.consult_form .info .desc
{
    font-size: 32px;
    line-height: 39px;

    margin-top: 12px;
}


.consult_form .call
{
    font-size: 24px;
    line-height: 29px;

    display: flex;

    margin-top: 77px;

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


.consult_form .call .icon
{
    display: block;

    width: 48px;
    height: 48px;
}

.consult_form .call .icon + *
{
    width: calc(100% - 64px);
}


.consult_form .call .phone
{
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;

    margin-top: 6px;
}

.consult_form .call .phone a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}


.consult_form .form
{
    width: 574px;
    max-width: 100%;
    margin-left: auto;
}



/*----------------
    Info block
----------------*/
.info_block
{
    color: #fff;

    position: relative;
    z-index: 3;

    overflow: hidden;

    padding: 64px 0;

    background: linear-gradient(294.81deg, #2f4952 1.31%, #35525b 98.1%);
}

.info_block:before,
.info_block:after
{
    position: absolute;
    z-index: -1;
    bottom: -193px;
    left: -183px;

    display: block;

    width: 528px;
    height: 528px;

    content: '';

    background: radial-gradient(47.14% 47.14% at 50% 50%, rgba(84, 119, 115, .8) 0%, rgba(49, 75, 84, 0) 100%);
}

.info_block:after
{
    top: -193px;
    right: -183px;
    bottom: auto;
    left: auto;

    transform: rotate(-180deg);
}


.info_block .block_head
{
    margin: 0;
}



/*-----------
    Steps
-----------*/
.steps .row
{
    margin-bottom: -40px;
    margin-left: -30px;

    justify-content: center;
}

.steps .row > *
{
    width: calc(16.66% - 30px);
    margin-bottom: 30px;
    margin-left: 30px;
}


.steps .step
{
    font-size: 11px;
    line-height: 21px;

    position: relative;
    z-index: 3;

    text-align: center;
}

.steps .step + .step:before
{
    position: absolute;
    z-index: -1;
    top: 48px;
    left: -87px;

    display: block;

    width: 134px;
    height: 11px;

    content: '';
    pointer-events: none;

    background: url(../images/steps_arrow.svg) 0 0 no-repeat;
}

.steps .step:nth-child(2n+1):before
{
    transform: scale(1, -1);
}


.steps .step .number
{
    display: flex;

    height: 131px;
    margin-bottom: -20px;

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

.steps .step .number img
{
    display: block;

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



/*-----------
    Quote
-----------*/
.quote .data
{
    width: calc(100% - 453px);
}


.quote .text
{
    color: #fff;
    font-weight: 500;
    font-style: italic;
    line-height: 30px;

    position: relative;

    padding: 32px;

    border-radius: 21px;
    background: #314b54;
}

.quote .text:after
{
    position: absolute;
    bottom: -18px;
    left: 52px;

    display: block;

    width: 41px;
    height: 41px;

    content: '';
    transform: rotate(45deg);

    background: #314b54;
}


.quote .author
{
    line-height: 21px;

    margin-top: 33px;
}


.quote .image
{
    width: 423px;
    max-width: 100%;
    margin-left: auto;
}


.quote .image .thumb
{
    position: relative;

    overflow: hidden;

    padding-bottom: 61.70%;

    border-radius: 12px;
    background: #ddd;
}

.quote .image .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.quote .image .caption
{
    font-size: 11px;
    line-height: 16px;

    margin-top: 12px;
    padding: 0 12px;

    text-align: center;
}



/*--------------
    Articles
--------------*/
.articles .row
{
    margin-bottom: -30px;
    margin-left: -30px;

    align-items: stretch;
    align-content: stretch;
}

.articles .row > *
{
    width: calc(33.333% - 30px);
    margin-bottom: 30px;
    margin-left: 30px;
}


.articles .article
{
    position: relative;

    overflow: hidden;

    border-radius: 12px;
}


.articles .article .thumb
{
    color: var(--text_color);

    position: relative;
    z-index: 1;

    display: block;
    overflow: hidden;

    margin-bottom: -20px;
    padding-bottom: 61.66%;

    text-decoration: none;

    background: #ddd;
}

.articles .article .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.articles .article .info
{
    color: #fff;

    position: relative;
    z-index: 2;

    padding: 20px 18px 24px;

    background: url(../images/bg_article_info.svg) 50% 0/cover no-repeat;
}


.articles .article .name
{
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}

.articles .article .name a
{
    color: currentColor;

    display: inline-block;

    vertical-align: top;
    text-decoration: none;
}


.articles .article .desc
{
    font-size: 11px;
    line-height: 15px;

    margin-top: 8px;
}


.articles .article .consult_btn
{
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;

    margin-top: 18px;
    padding: 10px 17px 11px;

    border: 1px solid #fff;
    border-radius: 3px;
    box-shadow: 0 5px 25px rgba(30, 94, 0, .3);
}



/*--------------
    Services
--------------*/
.services .table_wrap
{
    overflow: auto;

    max-width: 100%;
}


.services table
{
    width: 100%;

    border-spacing: 0;
    border-collapse: collapse;
}


.services table th
{
    color: #fff;
    font-weight: 700;
    line-height: 21px;

    padding: 21px 24px 22px;

    text-align: left;
    vertical-align: middle;

    background: #315866;
}

.services table th:first-child
{
    border-radius: 6px 0 0 6px;
}

.services table th:last-child
{
    border-radius: 0 6px 6px 0;
}


.services table td
{
    line-height: 21px;

    padding: 21px 24px 22px;

    text-align: left;
    vertical-align: middle;

    border-bottom: 1px solid #e8e8e8;
}


.services table td.nowrap
{
    white-space: nowrap;
}



/*--------------------
    Contacts block
--------------------*/
.contacts_block .data
{
    display: flex;

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


.contacts_block .phone
{
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
}

.contacts_block .phone a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}


.contacts_block .time
{
    font-size: 12px;
    line-height: 25px;

    margin-top: 2px;
}


.contacts_block .location
{
    line-height: 30px;
}


.contacts_block .messengers
{
    display: flex;

    min-height: 30px;

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

.contacts_block .messengers a
{
    color: currentColor;

    display: block;

    width: 18px;
    height: 18px;

    text-decoration: none;
}

.contacts_block .messengers a + a
{
    margin-left: 18px;
}

.contacts_block .messengers .icon
{
    display: block;

    width: 18px;
    height: 18px;
}


.contacts_block .consult_btn
{
    color: #fff;
    font-size: 14px;
    line-height: 25px;

    padding: 7px 16px 8px;

    transition: background .2s linear;

    border-radius: 3px;
    background: #dd703c;
    box-shadow: 0 5px 25px rgba(221, 112, 60, .31);
}

.contacts_block .consult_btn:hover
{
    background: #d35519;
}


.contacts_block .map
{
    position: relative;

    overflow: hidden;

    height: 530px;
    margin-top: 20px;

    background: #ddd;
}



/*------------
    Footer
------------*/
footer
{
    color: #fff;

    padding: 24px 0 35px;

    background: linear-gradient(294.81deg, #2f4952 1.31%, #35525b 98.1%);
}


footer .cont
{
    justify-content: space-between;
}



footer .col_left
{
    width: 170px;
    max-width: 100%;
}

footer .col_main
{
    display: flex;

    width: calc(100% - 207px);
    margin-left: auto;

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



footer .logo img
{
    display: block;
}



footer .copyright
{
    font-size: 11px;
    line-height: 13px;
}

footer * + .copyright
{
    margin-top: 26px;
}



footer .menu
{
    font-size: 14px;
    line-height: 25px;

    display: flex;

    width: 100%;
    margin-bottom: 24px;

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

footer .menu a
{
    color: currentColor;
}

footer .menu a:hover,
footer .menu a.active
{
    text-decoration: none;
}



footer .contacts
{
    margin-right: 83px;
}


footer .contacts .phone
{
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
}

footer .contacts .phone a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}


footer .contacts .time
{
    font-size: 12px;
    line-height: 25px;

    margin-top: 2px;
}



footer .location
{
    font-size: 12px;
    line-height: 15px;
}



footer .privacy_policy_link
{
    font-size: 10px;
    line-height: 12px;

    margin-top: 11px;
}

footer .privacy_policy_link a
{
    color: currentColor;
}

footer .privacy_policy_link a:hover
{
    text-decoration: none;
}



footer .col
{
    margin-left: auto;
}



footer .messengers
{
    display: flex;

    justify-content: flex-end;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

footer .messengers a
{
    color: currentColor;

    display: block;

    width: 18px;
    height: 18px;

    text-decoration: none;
}

footer .messengers a + a
{
    margin-left: 18px;
}

footer .messengers .icon
{
    display: block;

    width: 18px;
    height: 18px;
}



footer .creator
{
    font-size: 11px;
    line-height: 13px;

    margin-top: 10px;
}

footer .creator a
{
    color: currentColor;

    text-decoration: none;
}

footer .creator b
{
    text-decoration: underline;
}



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

    width: 622px;
    max-width: 100%;
    padding: 24px;

    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 64px rgba(59, 96, 107, .3);
}


.modal_title
{
    font-size: 30px;
    font-weight: 700;
    line-height: 37px;

    margin-bottom: 24px;
}



.modal .form
{
    --form_border_color: #c7c7c7;
    --form_focus_color: #c7c7c7;
}

.modal .form .agree
{
    color: #c6c6c6;
}

