


/*------------------
    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::-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: #fff;
    --scroll_width: 17px;
    --text_color: #1a1a1a;
    --font_size: 16px;
    --font_size_title: 30px;
    --font_family: 'Stolzl', 'Arial', sans-serif;
}


::selection
{
    color: #fff;

    background: #6f2f2f;
}

::-moz-selection
{
    color: #fff;

    background: #6f2f2f;
}


.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: #6f2f2f;
}

html.custom_scroll
{
    scrollbar-color: #6f2f2f 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
{
    overflow: hidden;
}


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: 1488px;
    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;
}



.overlay
{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    opacity: .65;
    background: #000;
}



/*--------------
    Fancybox
--------------*/
.fancybox__backdrop
{
    background: rgba(0, 0, 0, .7);
}


.fancybox__slide
{
    padding: 40px;
}


.modal.fancybox__content > .carousel__button.is-close
{
    color: currentColor;

    top: 0;
    right: 0;

    width: 60px;
    height: 60px;

    transition: color .2s linear;
}

.modal.fancybox__content > .carousel__button.is-close svg
{
    display: block;

    width: 24px;
    height: 24px;

    filter: none;
    stroke: none;
    stroke-width: 0;
}

.modal.fancybox__content > .carousel__button.is-close:hover
{
    color: #6f2f2f;
}



/*--------------
    ButtonUp
--------------*/
.buttonUp
{
    position: fixed;
    z-index: 90;
    right: 40px;
    bottom: 40px;

    display: none;
}


.buttonUp .btn
{
    color: #fff;

    display: flex;

    width: 62px;
    height: 62px;

    transition: background .2s linear;

    border-radius: 50%;
    background: #ae0b05;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.buttonUp .btn .icon
{
    display: block;

    width: 22px;
    height: 24px;
}


.buttonUp .btn:hover
{
    background: #d3241d;
}



/*------------
    Header
------------*/
header
{
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    box-shadow: 0 5px 20px rgb(0 0 0 / 4%);
    width: 100%;
    transition: .2s ease;
}

header:before
{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 100px;

    display: block;

    width: 100%;
    height: 100%;

    content: '';
    transition: .2s ease;
    background: #fff;
}

header:after
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100px;
    height: 100%;

    content: '';
    transition: .2s ease;
    background: #6f2f2f;
}


header.absolute
{
    top: 40px;
}



header .close_btn
{
    position: absolute;
    top: 0;
    left: 100%;

    display: none;

    width: 50px;
    height: 50px;

    cursor: pointer;

    border: none;
    background: none;
}


header .close_btn:before,
header .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 .close_btn:after
{
    transform: rotate(-45deg);
}


header.show .close_btn
{
    display: block;
}



header .cont
{
    position: relative;
    z-index: 3;

    max-width: 100%;
    padding-right: 235px;
    padding-left: 100px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
}



header .logo a{
    color: currentColor;
    display: flex;
    width: 258px;
    height: 100px;
    padding: 10px;
    text-decoration: none;
    background: #6f2f2f;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    transition: .2s ease;
}

header .logo img
{
    position: relative;
    top: 8px;

    display: block;

    max-width: 100%;
    max-height: 100%;
}



header .menu
{
    margin-right: auto;
    margin-left: auto;
    gap: 70px;
    list-style: none;
}


header .menu-item
{
    position: relative;
}



header .menu-item > a
{
    color: currentColor;
    font-size: 18px;
    font-weight: 450;
    line-height: normal;
    height: 50px;
    position: relative;

    display: flex;

    transition: color .2s linear;
    text-decoration: none;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .menu-item.current-menu-item > a{
    color: rgb(111 47 47);
}
header .sub-menu .menu-item.current-menu-item > a{
    background: #521d1d;
    color: #fff;
}

header .menu-item > li:not(.menu-item-has-children) a:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 0;
    height: 1px;
    margin: auto;

    content: '';
    transition: width .3s linear;

    background: #6f2f2f;
}


header .menu-item:hover > a,
header .menu-item > a.active
{
    color: #6f2f2f;
}

header .menu-item:hover > a:after,
header .menu-item > a.active:after
{
    width: 100%;
}


header .sub-menu
{
    color: #fff;
    position: absolute;
    z-index: 9;
    top: calc(100% + 30px);
    left: 50%;
    visibility: hidden;
    width: 348px;
    min-width: 100%;
    transition: .2s linear;
    transform: translateX(-50%);
    text-align: center;
    pointer-events: none;
    list-style: none;
    opacity: 0;
    background: #6f2f2f;
}
header .sub-menu li a{
    height: auto;
    text-transform: none;
}
header .sub-menu li a:hover{
    color: #fff;
}


header .sub-menu:before
{
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;

    display: block;

    width: 26px;
    height: 13px;
    margin: auto;

    content: '';

    border-right: 13px solid transparent;
    border-bottom: 13px solid #6f2f2f;
    border-left: 13px solid transparent;
}


header .menu-item:hover > a.touch_link + .sub-menu
{
    top: calc(100% + 30px);

    visibility: hidden;

    pointer-events: none;

    opacity: 0;
}

header .menu-item:hover .sub-menu,
header .menu-item > a.touch_link + .sub-menu.show
{
    top: 100%;

    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}


header .sub-menu > * + *
{
    border-top: 1px solid #521d1d;
}


header .sub-menu a
{
    color: currentColor;
    font-size: 14px;
    font-weight: 450;

    display: block;

    padding: 15px 20px;

    transition: background .2s linear;
    text-decoration: none;
}

header .sub-menu a:hover,
header .sub-menu a.active
{
    background: #521d1d;
}



header .contacts
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}



header .phone
{
    font-size: 20px;
    font-weight: 450;
    line-height: 22px;
}

header .phone a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}



header .callback_btn
{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    width: 135px;
    height: 100px;
    margin-left: 30px;
    transition: .2s ease;
    text-align: center;
    letter-spacing: .05em;
    text-transform: uppercase;

    background: #6f2f2f;
}

header .callback_btn:hover
{
    background: #521d1d;
}



header .socials
{
    display: flex;

    margin-left: 30px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


header .socials a
{
    color: #6e2e2e;

    display: block;

    transition: color .2s linear;
    text-decoration: none;
}

header .socials a + a
{
    margin-left: 30px;
}


header .socials .icon
{
    display: block;

    width: 20px;
    height: 20px;
}


header .socials a:hover
{
    color: #c5c5c5;
}



/*-----------------
    Mob. header
-----------------*/
.mob_header
{
    color: #fff;

    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    padding: 20px 0;
    transition: .2s ease;
    background: #6f2f2f;
}


.mob_header .cont
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.mob_header.lides{
    padding: 12px 0;
}

.mob_header .logo
{
    color: currentColor;

    display: block;

    margin-right: auto;

    text-decoration: none;
}

.mob_header .logo img
{
    position: relative;
    top: 4px;

    display: block;

    height: 52px;
}



.mob_header .phone
{
    font-size: 19px;
    font-weight: 450;
    line-height: 21px;
}

.mob_header .phone a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}



.mob_header .mob_menu_btn
{
    display: flex;

    width: 44px;
    height: 34px;
    margin-right: -8px;
    margin-left: 32px;
    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;
}

.header_fixeds.lides{
    top: 0;
    box-shadow: 0 5px 20px rgb(0 0 0 / 4%);
}
.header_fixeds.lides .logo a {
    height: 80px;
}
.header_fixeds.lides .callback_btn {
    height: 80px;
}

.header_space{
    height: 100px;
}
/*---------------
    Page head
---------------*/
.page_head
{
    margin-bottom: 64px;
    padding-top: 32px;

    border-top: 1px solid #d8d8d8;
}



.breadcrumbs
{
    color: #6f2f2f;
    font-size: 13px;
    font-weight: 450;
    line-height: 23px;
}


.breadcrumbs a
{
    color: #838383;

    transition: color .2s linear;
    text-decoration: none;
}

.breadcrumbs a:hover
{
    color: #6f2f2f;
}


.breadcrumbs .sep
{
    position: relative;
    top: -1px;

    display: inline-block;

    width: 15px;
    height: 1px;
    margin: 0 5px;

    vertical-align: middle;

    background: #d8d8d8;
}


input{
    outline: none!important;
}
.page_title
{
    font-size: 60px;
    font-weight: 400;
    line-height: calc(100% + 15px);

    display: block;

    margin-top: 32px;
}

.form-check-input {
    width: 1.5em;
    height: 1.5em;
    vertical-align: top;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #747474;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    float: left;
    border-radius: 0;
    outline: none;
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-color: #6f2f2f;
    border-color: #6f2f2f;
}
/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: #d8d8d8;
    --form_focus_color: #1a1a1a;
    --form_error_color: #c86363;
    --form_border_radius: 0;
    --form_bg_color: #fff;
    --form_placeholder_color: #ccc;
}


.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 .columns > *.width1of4
{
    width: calc(25% - var(--form_columns_offset));
}

.form .columns > *.width3of4
{
    width: calc(75% - var(--form_columns_offset));
}


.form .line
{
    margin-bottom: 30px;
}


.form .label
{
    font-size: 13px;
    font-weight: 500;
    line-height: 23px;

    margin-bottom: 4px;
}


.form .field
{
    position: relative;
}


.form .input
{
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: var(--font_size);

    display: block;

    width: 100%;
    height: 50px;
    padding: 0 19px;

    transition: border-color .2s linear;

    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 textarea
{
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: var(--font_size);

    display: block;

    width: 100%;
    height: 100px;
    padding: 14px 19px;

    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
{
    border-color: var(--form_focus_color);
}


.form select
{
    display: none;
}


.form .nice-select
{
    position: relative;

    display: block;

    cursor: pointer;
}


.form .nice-select .current
{
    color: #838383;
    font-size: 13px;
    line-height: 48px;

    position: relative;

    display: block;
    overflow: hidden;

    height: 50px;
    padding-right: 47px;
    padding-left: 15px;

    cursor: pointer;
    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: 100%;
    right: 0;

    visibility: hidden;
    overflow: hidden;

    min-width: 100%;
    margin-top: -1px;
    padding: 4px 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
{
    visibility: visible;

    opacity: 1;
}


.form .nice-select .list .option
{
    font-size: 13px;

    padding: 8px 15px;

    cursor: pointer;
    transition: background .2s linear;
}

.form .nice-select .list .option:hover
{
    background: #f1f1f1;
}

.form .nice-select .list .option:empty,
.form .nice-select .list .option.selected
{
    display: none;
}


.form .nice-select + .arr
{
    position: absolute;
    z-index: 5;
    top: 0;
    right: 20px;
    bottom: 0;

    display: block;

    width: 6px;
    height: 10px;
    margin: auto;

    transform: rotate(90deg);
    pointer-events: none;
}


.form .error
{
    border-color: var(--form_error_color);
}


.form .error_text
{
    color: var(--form_error_color);
    font-size: 12px;
    line-height: 22px;

    margin-top: 4px;
}


.form .file
{
    margin-top: -15px;
}


.form .file input
{
    display: none;
}


.form .file label
{
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;

    display: flex;

    min-height: 24px;

    cursor: pointer;
    transition: color .2s linear;
    letter-spacing: .05em;
    text-transform: uppercase;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.form .file label .icon
{
    display: block;

    width: 20px;
    height: 24px;
    margin-right: 10px;
}

.form .file label span
{
    width: calc(100% - 30px);
}

.form .file label:hover
{
    color: #6f2f2f;
}


.form .agree
{
    margin-top: -10px;
}


.form .checkbox
{
    font-size: 12px;
    font-weight: 450;
    line-height: 22px;
    position: relative;
    display: flex;
    min-height: 20px;
    cursor: pointer;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 10px;
}


.form .checkbox .check .icon
{
    display: block;

    width: 10px;
    height: 8px;

    transition: opacity .2s linear;

    opacity: 0;
}




.form .checkbox a
{
    color: currentColor;

    transition: color .2s linear;
}

.form .checkbox a:hover
{
    color: #6f2f2f;
}


.form .submit_btn
{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;

    display: block;

    height: 50px;
    padding: 0 20px;

    transition: background .2s linear;
    letter-spacing: .05em;
    text-transform: uppercase;

    background: #6f2f2f;
}

.form .submit_btn:hover
{
    background: #521d1d;
}



/*----------------
    Typography
----------------*/
.text_block
{
    font-size: 14px;
    font-weight: 450;
    line-height: 24px;
}


.text_block > *,
.text_block .image_block .info > *
{
    margin-bottom: 20px;
}


.text_block > :last-child,
.text_block .image_block .info > :last-child
{
    margin-bottom: 0 !important;
}

.text_block > :first-child,
.text_block .image_block .info > :first-child
{
    margin-top: 0 !important;
}


.text_block h2
{
    font-size: 36px;
    font-weight: 400;
    line-height: 55px;

    margin-bottom: 24px !important;
}

.text_block h3
{
    font-size: 30px;
    font-weight: 400;
    line-height: 45px;
}

.text_block h4
{
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
}


.text_block * + h2,
.text_block * + h3,
.text_block * + h4
{
    margin-top: 48px;
}

.text_block h2 + *,
.text_block h3 + *,
.text_block h4 + *
{
    margin-top: 0 !important;
}


.text_block img
{
    display: block;

    max-width: 100%;
}

.text_block img.loaded
{
    height: auto !important;
}


.text_block .image_block
{
    display: flex;

    margin-top: 92px;
    margin-bottom: 92px;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.text_block .image_block .image
{
    position: relative;

    max-width: 50%;
}

.text_block .image_block .image.square:after
{
    position: absolute;
    right: 0;
    bottom: 0;

    display: block;

    width: 240px;
    height: 240px;

    content: '';

    background: var(--bg);
}

.text_block .image_block .image img
{
    display: block;

    width: 100%;
}


.text_block .image_block .info
{
    width: calc(50% - 52px);
}


.text_block .table_wrap
{
    overflow: auto;

    max-width: 100%;
}


.text_block table
{
    width: 100%;

    border-spacing: 0;
    border-collapse: collapse;
}


.text_block table th
{
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;

    padding: 10px 18px;

    text-align: left;
    vertical-align: middle;

    border-top: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
}

.text_block table th:first-child
{
    border-left: 2px solid #1a1a1a;
}

.text_block table th:last-child
{
    border-right: 2px solid #1a1a1a;
}


.text_block table td
{
    padding: 12px 20px;

    text-align: left;
    vertical-align: middle;

    border-bottom: 1px solid #d8d8d8;
}


.text_block blockquote
{
    font-size: 28px;
    font-weight: 300;
    line-height: 45px;

    display: block;

    margin-top: 76px;
    margin-right: 120px;
    margin-bottom: 76px;
    margin-left: 120px;
    padding: 44px 72px;

    border-left: 3px solid #6f2f2f;
    background: #f9f9f9;
}


.text_block .columns
{
    column-gap: 76px;
    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: 20px;
}


.text_block ul li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 24px;

    list-style-type: none;
}

.text_block ul li + li
{
    margin-top: 20px;
}

.text_block ul li:before
{
    position: absolute;
    top: 9px;
    left: 0;

    display: block;

    width: 6px;
    height: 6px;

    content: '';

    background: #6f2f2f;
}


.text_block ol
{
    counter-reset: li;
}

.text_block ol li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 24px;

    list-style-type: none;
}

.text_block ol li + li
{
    margin-top: 20px;
}

.text_block ol li:before
{
    color: #6f2f2f;
    font-weight: 500;

    position: absolute;
    top: 0;
    left: 0;

    content: counter(li) '.';
    counter-increment: li;
}


.text_block .bg_title
{
    position: relative;

    display: flex;

    height: 676px;
    margin-top: 72px;
    margin-bottom: 72px;
    padding: 72px 0;

    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
}

.text_block .bg_title:before
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;

    display: block;

    width: 100vw;
    height: 100%;

    content: '';
    transform: translateX(-50%);

    opacity: .43;
    background: #425569;
}


.text_block .bg_title img,
.text_block .bg_title img.loaded
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;

    display: block;

    width: 100vw;
    max-width: none;
    height: 100% !important;

    transform: translateX(-50%);

    object-fit: cover;
}


.text_block .bg_title .title
{
    color: #fff;
    font-size: 60px;
    font-weight: 500;
    line-height: 75px;

    position: relative;
    z-index: 3;

    width: 816px;
    max-width: 100%;
}


.text_block b,
.text_block strong
{
    font-weight: 500;
}


.text_block a
{
    color: var(--text_color);
}

.text_block a:hover
{
    text-decoration: none;
}



/*-----------------
    Main slider
-----------------*/
.main_slider
{
    background: #ddd;
    min-height: 100vh;
    margin-bottom: 124px;
}

.main_slider.margin2
{
    position: relative;
    margin-bottom: 96px;
}


.main_slider .swiper-slide
{
    position: relative;
    z-index: 3;

    overflow: hidden;
}

.main_slider .swiper-slide.dark_bg:before
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    opacity: .4;
    background: #000;
}


.main_slider .img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.main_slider .img2
{
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;

    display: block;

    width: 480px;
    height: 560px;

    object-fit: cover;
}


.main_slider .cont
{
    position: relative;
    z-index: 3;

    display: flex;

    min-height: 100vh;
    padding-top: 72px;
    padding-bottom: 72px;

    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
}


.main_slider .data
{
    color: #fff;

    width: 856px;
    max-width: 100%;
}


.main_slider .title
{
    font-size: 60px;
    font-weight: 500;
    line-height: calc(100% + 15px);
}


.main_slider .desc
{
    font-size: 14px;
    line-height: 24px;

    margin-top: 24px;
}


.main_slider .controls
{
    position: absolute;
    z-index: 9;
    right: 0;
    bottom: 0;

    display: flex;

    width: 480px;
    height: 100px;
    padding: 50px 50px 0;

    background: var(--bg);

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}


.main_slider .controls .sep
{
    width: 100%;
    height: 1px;
    margin-right: 30px;
    margin-left: 30px;

    background: #c5c5c5;
}



/*--------------
    Services
--------------*/
.services
{
    position: relative;
    padding-bottom: 52px;
}


.services .all_link
{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;

    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 140px;
    left: 0;

    display: flex;

    width: 240px;
    height: 240px;
    margin: auto;

    transition: background .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;

    background: #6f2f2f;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.services .all_link:hover
{
    background: #521d1d;
}



/*-------------------
    Service block
-------------------*/
.service_block
{
    position: relative;
    z-index: 3;

    margin-bottom: 208px;
}


.service_block .cont
{
    position: relative;
}


.service_block .image
{
    position: absolute;
    z-index: 2;

    overflow: hidden;

    max-width: 100%;
    max-height: 100%;

    background: #ddd;
}

.service_block .image img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.service_block .title
{
    font-size: 40px;
    font-weight: 400;
    line-height: 55px;

    margin-bottom: 32px;
}


.service_block .desc
{
    font-size: 14px;
    font-weight: 450;
    line-height: 24px;
}


.service_block .desc ul li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 24px;

    list-style-type: none;
}

.service_block .desc ul li + li
{
    margin-top: 20px;
}

.service_block .desc ul li:before
{
    position: absolute;
    top: 9px;
    left: 0;

    display: block;

    width: 6px;
    height: 6px;

    content: '';

    background: #6f2f2f;
}


.service_block .btns
{
    display: flex;

    margin-top: 40px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.service_block .btns .btn
{
    color: currentColor;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;

    display: flex;

    transition: color .2s linear;
    text-decoration: none;
    letter-spacing: .05em;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.service_block .btns .btn .icon
{
    display: block;

    width: 24px;
    height: 30px;
    margin-right: 15px;
}


.service_block .btns .sep
{
    width: 1px;
    height: 30px;
    margin-right: 24px;
    margin-left: 24px;

    background: #c5c5c5;
}


.service_block .btns .link
{
    color: currentColor;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;

    display: block;

    transition: color .2s linear;
    text-decoration: none;
    letter-spacing: .05em;
}


.service_block .btns .btn:hover,
.service_block .btns .link:hover
{
    color: #6f2f2f;
}



.service1_block:after
{
    position: absolute;
    right: 0;
    bottom: 0;

    display: block;

    width: 83px;
    height: 3px;

    content: '';

    background: currentColor;
}

.service1_block .cont
{
    padding-bottom: 240px;
}

.service1_block .image
{
    bottom: 0;
    left: 24px;

    width: 960px;
    height: 586px;
}

.service1_block .data
{
    position: relative;
    z-index: 3;

    width: 840px;
    max-width: 100%;
    margin-left: auto;
    padding-bottom: 108px;
    padding-left: 120px;

    background: var(--bg);
}


.service2_block:after
{
    position: absolute;
    top: 148px;
    left: 0;

    display: block;

    width: 83px;
    height: 3px;

    content: '';

    background: currentColor;
}

.service2_block .data
{
    position: relative;
    z-index: 3;

    width: 616px;
    min-height: 480px;
}

.service2_block .image
{
    top: 0;
    right: 50%;

    width: 960px;
    height: 480px;
    margin-right: -960px;
}

.service2_block .image:after
{
    position: absolute;
    top: 0;
    right: 0;

    display: block;

    width: 240px;
    height: 240px;

    content: '';

    background: var(--bg);
}


.service3_block
{
    z-index: 1;
}

.service3_block:after
{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;

    display: block;

    width: 720px;
    height: 810px;
    margin-left: -240px;

    content: '';

    background: #f9f9f9;
}

.service3_block .cont
{
    position: relative;
    z-index: 3;
}

.service3_block .data
{
    position: relative;
    z-index: 3;

    width: 720px;
    min-height: 480px;
    margin-left: auto;
}

.service3_block .image
{
    top: 0;
    left: 50%;

    width: 840px;
    height: 480px;
    margin-left: -960px;

    background: none;
}


.service4_block:before
{
    position: absolute;
    bottom: 88px;
    left: 0;

    display: block;

    width: 83px;
    height: 3px;

    content: '';

    background: currentColor;
}

.service4_block .data
{
    position: relative;
    z-index: 3;

    width: 560px;
    min-height: 480px;
}

.service4_block .image
{
    top: 0;
    left: 50%;

    width: 720px;
    height: 480px;
}


.service5_block
{
    z-index: 1;
}

.service5_block:after
{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;

    display: block;

    width: 720px;
    height: 688px;
    margin-left: -240px;

    content: '';

    background: #f9f9f9;
}

.service5_block .data
{
    position: relative;
    z-index: 3;

    width: 720px;
    min-height: 480px;
    margin-left: auto;
}

.service5_block .image
{
    top: 0;
    left: 50%;

    width: 840px;
    height: 480px;
    margin-left: -960px;
}

.service5_block .image:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 240px;
    height: 240px;

    content: '';

    background: var(--bg);
}



/*----------
    Calc
----------*/
.calc
{
    margin-bottom: 140px;
}


.calc .block_title
{
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;

    margin-bottom: 48px;
}


.calc .form
{
    position: relative;
}


.calc .form .service_info
{
    display: none;
}


.calc .form .line
{
    margin-bottom: 30px;
}


.calc .form .hidden
{
    display: none;
}


.calc .form .service
{
    position: absolute;
    bottom: 100%;
    left: 25%;

    display: flex;

    margin-bottom: 48px;
    margin-left: 8px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.calc .form .service .sep
{
    width: 60px;
    height: 1px;
    margin-left: 26px;

    background: #d8d8d8;
}


.calc .form .service .field
{
    display: flex;

    margin-left: 28px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.calc .form .service input
{
    display: none;
}


.calc .form .service label
{
    position: relative;

    display: block;

    cursor: pointer;
}

.calc .form .service label div
{
    font-size: 14px;
    line-height: 24px;

    position: relative;

    min-width: 120px;
    padding: 11px;

    transition: .2s linear;
    text-align: center;

    border: 2px solid transparent;
    background: #f1f1f1;
}

.calc .form .service label div:after
{
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    display: block;

    width: 12px;
    height: 12px;
    margin: auto;
    margin-top: -5px;

    content: '';
    transition: opacity .2s linear;
    transform: rotate(45deg);

    opacity: 0;
    border-right: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    background: #fff;
}


.calc .form .service input:checked + div
{
    border-color: #1a1a1a;
    background: #fff;
}

.calc .form .service input:checked + div:after
{
    opacity: 1;
}


.calc .form .submit
{
    display: flex;

    margin-bottom: 26px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    align-self: flex-end;
    flex-wrap: wrap;
}


.calc .form .total_price
{
    font-size: 13px;
    line-height: 24px;

    margin-left: 28px;
}


.calc .form .total_price .val
{
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;

    text-transform: uppercase;
}

.calc .form .total_price .val span
{
    font-size: 30px;
}


.calc .exp
{
    font-size: 13px;
    font-weight: 450;
    line-height: 23px;

    display: flex;

    margin-top: 10px;
    padding: 15px 20px;

    background: #f0eaea;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}


.calc .exp .icon
{
    color: #6e2e2e;

    display: block;

    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 15px;
}

.calc .exp .icon + div
{
    max-width: 100%;
}


.calc .exp .write_btn
{
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;

    display: flex;

    margin-left: 32px;

    letter-spacing: .05em;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.calc .exp .write_btn .icon
{
    color: currentColor;

    display: block;

    width: 30px;
    height: 22px;
    margin-right: 14px;
}



/*----------------
    Advantages
----------------*/
.advantages
{
    color: #fff;

    position: relative;
    z-index: 3;
 
    margin-bottom: 80px;
    padding: 100px 0;

    background: #425569;
}


.advantages .cont
{
    position: relative;
    z-index: 3;
}


.advantages .row
{
    position: relative;
    z-index: 3;

    margin-bottom: -208px;
    margin-left: -40px;
}

.advantages .row:before
{
    position: absolute;
    top: 0;
    bottom: 208px;
    left: 40px;

    display: block;

    width: 100vw;
    height: 1px;
    margin: auto;

    content: '';
    pointer-events: none;

    opacity: .5;
    background: currentColor;
}


.advantages .row > *
{
    width: calc(33.333% - 40px);
    margin-bottom: 208px;
    margin-left: 40px;
}


.advantages .block_title
{
    font-size: 40px;
    font-weight: 400;
    line-height: 55px;
}


.advantages .item .val
{
    font-size: 60px;
    font-weight: 300;
    line-height: 75px;
}


.advantages .item .desc
{
    font-size: 20px;
    font-weight: 450;
}


.advantages .bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.advantages .bg.loaded
{
    opacity: .57;
}



/*-------------
    Reviews
-------------*/
.reviews
{
    position: relative;
    z-index: 3;

    margin-bottom: 170px;
}

.reviews:after
{
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;

    display: block;

    width: 213px;
    height: 100%;

    content: '';
    pointer-events: none;

    background:    -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background:         linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}


.reviews .col
{
    position: relative;
    z-index: 3;

    width: 448px;
    max-width: 100%;
}


.reviews .block_title
{
    font-size: 40px;
    font-weight: 400;
    line-height: 55px;
}


.reviews .all_link
{
    overflow: hidden;

    margin-top: 92px;
}


.reviews .all_link a
{
    color: currentColor;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;

    position: relative;

    transition: color .2s linear;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.reviews .all_link a:hover
{
    color: #6f2f2f;
}


.reviews .all_link a:after
{
    position: absolute;
    top: -1px;
    bottom: 0;
    left: 100%;

    display: block;

    width: 200px;
    height: 1px;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 28px;

    content: '';
    pointer-events: none;

    background: #c5c5c5;
}


.reviews .swiper
{
    position: relative;
    z-index: 1;
    overflow: visible !important;
    width: 100%;
}

.reviews .swiper:before
{
    position: absolute;
    z-index: 2;
    top: 0;
    right: 100%;

    display: block;

    width: 50vw;
    height: 100%;

    content: '';

    background: var(--bg);
}


.reviews .review
{
    color: currentColor;

    display: block;

    text-decoration: none;
}


.reviews .review .thumb
{
    position: relative;

    display: flex;

    height: 300px;
    margin-bottom: 16px;
    padding: 9px;

    border: 1px solid #c5c5c5;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.reviews .review .thumb:after
{
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';
    transition: opacity .2s linear;

    opacity: 0;
    background: #1a1a1a;
}


.reviews .review .thumb img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.reviews .review .thumb .icon
{
    color: #fff;

    position: absolute;
    z-index: 5;

    display: block;

    width: 32px;
    height: 32px;
    margin: auto;

    transition: opacity .2s linear;

    opacity: 0;

    inset: 0;
}


.reviews .review .name
{
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}


.reviews .review .post
{
    color: #838383;
    font-size: 12px;
    font-weight: 450;
    line-height: 20px;
}


.reviews .review:hover .thumb:after
{
    opacity: .6;
}

.reviews .review:hover .thumb .icon
{
    opacity: 1;
}



/*-----------------
    Action form
-----------------*/
.action_form
{
    margin-bottom: 180px;
}


.action_form .data
{
    position: relative;
    z-index: 3;

    width: 480px;
    max-width: 100%;
    padding-top: 80px;
}


.action_form .title
{
    font-size: 40px;
    font-weight: 400;
    line-height: 55px;
}


.action_form .desc
{
    font-size: 20px;
    line-height: 30px;

    margin-top: 20px;
}


.action_form .call
{
    font-size: 16px;
    line-height: 26px;

    margin-top: 40px;
}

.action_form .call > * + *
{
    margin-top: 4px;
}

.action_form .call a
{
    color: currentColor;
    font-size: 24px;
    font-weight: 450;
    line-height: 34px;

    display: inline-block;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}


.action_form .image
{
    position: relative;

    overflow: hidden;

    height: 240px;
    margin-top: 84px;

    background: #ddd;
}

.action_form .image img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.action_form .form
{
    position: relative;
    z-index: 1;

    width: 930px;
    max-width: calc(100% - 480px);
    margin-left: auto;
    padding: 60px 90px 75px;
}

.action_form .form:before
{
    position: absolute;
    top: 0;
    right: 0;

    display: block;

    width: calc(100% + 250px);
    height: 100%;

    content: '';
    pointer-events: none;

    border: 10px solid #f0eaea;
}



/*-----------------
    Bottom text
-----------------*/
.bottom_text
{
    margin-bottom: 200px;
    position: relative;
}


.bottom_text .data
{
    width: 676px;
    max-width: 100%;
}


.bottom_text .title
{
    font-size: 40px;
    font-weight: 400;
    line-height: 55px;
}


.bottom_text .desc
{
    font-size: 14px;
    font-weight: 450;
    line-height: 24px;

    margin-top: 36px;
}


.bottom_text .line
{
    width: 83px;
    height: 3px;
    margin-top: 76px;

    background: currentColor;
}


.bottom_text .image
{
    position: relative;

    overflow: hidden;

    width: 720px;
    max-width: 100%;
    height: 480px;
    margin-left: auto;

    background: #ddd;
}

.bottom_text .image img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.bottom_text .image:after
{
    position: absolute;
    right: 0;
    bottom: 0;

    display: block;

    width: 240px;
    height: 240px;

    content: '';

    background: var(--bg);
}



/*------------------
    Article info
------------------*/
.article_info
{
    margin-bottom: 140px;
}



/*--------------
    Articles
--------------*/
.articles
{
    margin-bottom: 140px;
}


.articles .list > * + *
{
    margin-top: 140px;
}


.articles .article
{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.articles .article .data
{
    width: calc(50% - 44px);
}


.articles .article .name
{
    font-size: 40px;
    font-weight: 400;
    line-height: 55px;
}

.articles .article .name a
{
    color: currentColor;

    display: inline-block;

    vertical-align: top;
    text-decoration: none;
}


.articles .article .date
{
    color: #6f2f2f;
    font-size: 12px;
    line-height: 22px;

    display: inline-block;

    margin-top: 20px;
    padding: 3px 11px;

    vertical-align: top;

    border: 1px solid #6f2f2f;
}


.articles .article .desc
{
    font-size: 14px;
    line-height: 24px;

    margin-top: 30px;
}


.articles .article .link
{
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;

    margin-top: 44px;

    letter-spacing: .05em;
}


.articles .article .link a
{
    color: currentColor;

    position: relative;

    display: inline-block;

    padding-left: 112px;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.articles .article .link a:before
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 83px;
    height: 3px;
    margin: auto;

    content: '';

    background: currentColor;
}


.articles .article .link a:hover
{
    color: #6f2f2f;
}


.articles .article .image
{
    position: relative;

    width: 50%;
    margin-left: auto;
}

.articles .article .image:after
{
    position: absolute;
    right: 0;
    bottom: 0;

    display: block;

    width: 240px;
    height: 240px;

    content: '';

    background: var(--bg);
}

.articles .article .image.top_right:after
{
    top: 0;
    bottom: auto;
}

.articles .article .image img
{
    display: block;

    width: 100%;
}



/*-------------------
    Contacts info
-------------------*/
.contacts_info
{
    position: relative;

    overflow: hidden;

    height: 676px;

    background: #ddd;
}


.contacts_info .cont
{
    position: relative;
    z-index: 3;

    pointer-events: none;
}


.contacts_info .data
{
    color: #fff;
    font-size: 14px;
    font-weight: 450;
    line-height: 20px;

    width: 480px;
    max-width: 100%;
    padding: 52px 60px;

    pointer-events: auto;

    background: #6f2f2f;
}

.contacts_info .data > * + *
{
    margin-top: 12px;
}


.contacts_info .title
{
    color: #c09b9b;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;

    margin-bottom: 20px;

    text-transform: uppercase;
}



.contacts_info .phone
{
    align-self: center;
}


.contacts_info .data a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}



.contacts_info .socials
{
    display: flex;

    margin-left: 16px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    align-self: center;
}


.contacts_info .socials a
{
    color: #9f6262;

    display: block;

    text-decoration: none;
}

.contacts_info .socials a + a
{
    margin-left: 16px;
}


.contacts_info .socials .icon
{
    display: block;

    width: 20px;
    height: 20px;
}


.contacts_info .map
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}



/*------------
    Footer
------------*/
footer
{
    color: #fff;

    padding: 60px 0 64px;

    background: #6f2f2f;
}


footer .cont
{
    justify-content: space-between;
}


footer .title
{
    color: #c09b9b;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;

    margin-bottom: 20px;

    text-transform: uppercase;
}



footer .logo img
{
    display: block;

    width: 150px;
}



footer .copyright
{
    color: #c09b9b;
    font-size: 12px;
    font-weight: 450;
    line-height: 22px;

    margin-top: 40px;
}



footer .privacy_policy_link
{
    font-size: 12px;
    font-weight: 450;
    line-height: 22px;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

footer .privacy_policy_link a
{
    color: currentColor;

    transition: color .2s linear;
    text-decoration: none;
}

footer .privacy_policy_link a:hover
{
    color: #c09b9b;
}



footer .links .items
{
    font-size: 14px;
    font-weight: 450;
    line-height: 20px;
    list-style: none;
}

footer .links .items > * + *
{
    margin-top: 16px;
}


footer .links .items a
{
    color: currentColor;

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

footer .links .items a:hover,
footer .links .items a.active
{
    color: #c09b9b;
}



footer .contacts
{
    font-size: 14px;
    font-weight: 450;
    line-height: 20px;
}

footer .contacts > * + *
{
    margin-top: 16px;
}


footer .contacts .phone
{
    align-self: center;
}


footer .contacts a
{
    color: currentColor;

    white-space: nowrap;
    text-decoration: none;
}



footer .socials
{
    display: flex;

    margin-left: 16px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    align-self: center;
}


footer .socials a
{
    color: #9f6262;

    display: block;

    text-decoration: none;
}

footer .socials a + a
{
    margin-left: 16px;
}


footer .socials .icon
{
    display: block;

    width: 20px;
    height: 20px;
}



footer .creator
{
    color: #c09b9b;
    font-size: 12px;
    line-height: 22px;

    margin-top: 52px;
}

footer .creator span
{
    color: #fff;

    transition: color .2s linear;
}

footer .creator a:hover span
{
    color: #c09b9b;
}



/*-----------
    PopUp
-----------*/
.modal
{
    color: var(--text_color);

    display: none;
    visibility: visible !important;

    width: 930px;
    max-width: 100%;
    padding: 60px 80px;

    border: 10px solid #f0eaea;
    background: #fff;
}


.modal_title
{
    font-size: 30px;
    font-weight: 400;
    line-height: 45px;

    margin-bottom: 24px;
}

header .menu-item > a
{
    text-transform: uppercase;
}

.text_block .col .image
{
    position: relative;
}

.text_block .col .image.square:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 240px;
    height: 240px;
    content: '';
    background: var(--bg);
}

.articles .article:nth-child(odd) + .article .image:after
{
    top: 0;
    bottom: auto;
}

.contacts_info .data .socials .icon
{
    width: 27px;
}

form span.error
{
    display: none;
    font-size: 12px;
    /* margin-left: 4px; */
    position: absolute;
    margin-top: -5px;
    color: #000;
    left: 0;
    bottom: -14px;
}

.success .modal_title
{
    text-align: center;
}

.modal_text
{
    font-size: 18px;
    text-align: center
}

.form .agree.inline br
{
    display: none;
}

.form .agree span.error
{
    bottom: -21px;
}


.text_block .columns .col .cont
{
    padding: 0px;
}



/*----------------
    Pagination
----------------*/
.pagination
{
    display: flex;

    margin-top: 50px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.pagination.center
{
    justify-content: center;
}

.pagination.alignright
{
    justify-content: flex-end;
}


.pagination > * + *
{
    margin-left: 10px;
}

.pagination a,
.pagination .sep
{
    color: #000;
    font-weight: 500;
    line-height: 48px;

    display: inline-block;

    width: 48px;
    height: 48px;
    transition: background .2s linear;
    text-align: center;
    vertical-align: top;
    text-decoration: none;
}

.pagination a:hover,
.pagination a.active
{
    font-weight: 700;
    color: #fff;
    background: #521d1d;
}


.pagination .prev,
.pagination .next
{
    color: #000;
    font-weight: 600;
    line-height: 17px;

    display: flex;

    width: auto;

    border-radius: 0;
    background: none;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.pagination .prev
{
    margin-right: 15px;
}

.pagination .next
{
    margin-left: 15px;
}


.pagination .prev span,
.pagination .next span
{
    position: relative;

    padding: 5px 0;
}

.pagination .prev:hover,
.pagination .next:hover
{
    font-weight: 600;
    color: #000;
    background: none;
}

.pagination .prev:hover span:after,
.pagination .next:hover span:after
{
    width: 100%;
}




@media print,
(max-width: 1899px)
{

}

@media print,
(max-width: 1439px)
{
    .text_block .col .image.square:after
    {
        width: 212px;
        height: 212px;
    }
}

@media print,
(max-width: 1279px)
{
    .text_block .col .image.square:after
    {
        width: 168px;
        height: 168px;
    }
}

@media print,
(max-width: 1023px)
{
    .text_block .col .image.square:after
    {
        /*width: 220px;*/
        /*height: 220px;*/
    }
}

@media print,
(max-width: 767px)
{
    .text_block .col .image.square:after
    {
        width: 148px;
        height: 148px;
    }
}
@media print,
(max-width: 479px)
{
    .text_block .col .image.square:after
    {
        width: 108px;
        height: 108px;
    }
}



header .menu-item > a
{
    text-transform: uppercase;
}

.text_block .col .image
{
    position: relative;
}

.text_block .col .image.square:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 240px;
    height: 240px;
    content: '';
    background: var(--bg);
}

.articles .article:nth-child(odd) + .article .image:after
{
    top: 0;
    bottom: auto;
}

.contacts_info .data .socials .icon
{
    width: 27px;
}

form span.error
{
	display: none;
    font-size: 12px;
    /* margin-left: 4px; */
    position: absolute;
    margin-top: -5px;
    color: #000;
	left: 0;
    bottom: -14px;
}

.success .modal_title
{
    text-align: center;
}

.modal_text
{
	font-size: 18px;
	text-align: center
}

.form .agree.inline br
{
    display: none;
}

.form .agree span.error
{
    bottom: -21px;
}

.constructor_block
{
    margin-bottom: 40px;
}

.constructor_block.block
{
    margin-bottom: 70px;
}

.constructor_block.contacts_info
{
    margin-bottom: 0px;
}

.constructor_block .text_block > p:last-child
{
    margin-bottom: 0px;
}

.text_block .columns .col .cont
{
    padding: 0px;
}

.block
{
    margin-bottom: 40px;
}

/*----------------
    Pagination
----------------*/
.pagination
{
    display: flex;

    margin-top: 50px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.pagination.center
{
    justify-content: center;
}

.pagination.alignright
{
    justify-content: flex-end;
}


.pagination > * + *
{
    margin-left: 10px;
}

.pagination a,
.pagination .sep
{
    color: #000;
    font-weight: 500;
    line-height: 48px;

    display: inline-block;

    width: 48px;
    height: 48px;
    transition: background .2s linear;
    text-align: center;
    vertical-align: top;
    text-decoration: none;
}

.pagination a:hover,
.pagination a.active
{
    font-weight: 700;
    color: #fff;
    background: #521d1d;
}


.pagination .prev,
.pagination .next
{
    color: #000;
    font-weight: 600;
    line-height: 17px;

    display: flex;

    width: auto;

    border-radius: 0;
    background: none;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.pagination .prev
{
    margin-right: 15px;
}

.pagination .next
{
    margin-left: 15px;
}


.pagination .prev span,
.pagination .next span
{
    position: relative;

    padding: 5px 0;
}

.pagination .prev:hover,
.pagination .next:hover
{
    font-weight: 600;
    color: #000;
    background: none;
}

.pagination .prev:hover span:after,
.pagination .next:hover span:after
{
    width: 100%;
}




@media print,
(max-width: 1899px)
{

}

@media print,
(max-width: 1439px)
{
    .text_block .col .image.square:after
    {
        width: 212px;
        height: 212px;
    }
}

@media print,
(max-width: 1279px)
{
    .text_block .col .image.square:after
    {
        width: 168px;
        height: 168px;
    }
}

@media print,
(max-width: 1023px)
{
    .text_block .col .image.square:after
    {
        /*width: 220px;*/
        /*height: 220px;*/
    }
}

@media print,
(max-width: 767px)
{
    .text_block .col .image.square:after
    {
        width: 148px;
        height: 148px;
    }
}
@media print,
(max-width: 479px)
{
    .text_block .col .image.square:after
    {
        width: 108px;
        height: 108px;
    }
}



.swiper-button-next,
.swiper-button-prev
{
    color: #1a1a1a;

    position: relative;
    z-index: 1;
    top: 0;
    bottom: 0;

    display: flex;

    width: 50px;
    min-width: 50px;
    height: 50px;
    margin: 0;

    transition: .2s linear;
    transform: none;

    border: 2px solid #1a1a1a;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.swiper-button-prev
{
    left: 0;

    margin-left: auto;
}

.swiper-button-next
{
    right: 0;

    margin-left: -2px;
}

.swiper-button-next:after,
.swiper-button-prev:after
{
    display: none;
}


.swiper-button-next .icon,
.swiper-button-prev .icon
{
    display: block;

    width: 10px;
    height: 17px;
}




.swiper-button-next:hover,
.swiper-button-prev:hover
{
    color: #fff;

    z-index: 3;

    border-color: #6f2f2f;
    background: #6f2f2f;
}
.swiper-button-next path{
    transition: .2s ease;
}
.swiper-button-next:hover path,
.swiper-button-prev:hover path
{
    fill: #fff;
}


.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet
{
    margin: 0;
}



.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction
{
    color: #c5c5c5;
    font-size: 20px;
    font-weight: 450;

    position: relative;
    bottom: 0;
    left: 0;

    display: flex;

    width: auto;
    height: auto;

    counter-reset: bulets;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}


.swiper-pagination-bullet
{
    display: block;

    width: auto;
    height: auto;

    transition: .2s linear;

    opacity: 1;
    background: none;
}

.swiper-pagination-bullet:before
{
    content: counter(bulets);
    counter-increment: bulets;
}

.swiper-pagination-bullet + .swiper-pagination-bullet
{
    margin-left: 30px !important;
}


.swiper-pagination-bullet:hover
{
    color: #1a1a1a;
}

.swiper-pagination-bullet.active
{
    color: #1a1a1a;
    font-weight: 700;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet
{
    margin: 0;
}
