@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(asset/fonts/OpenSans-Light.woff2) format('wof2'),
        url(asset/fonts/OpenSans-Light.woff) format('woff'),
        url(asset/fonts/OpenSans-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(asset/fonts/OpenSans-Regular.woff2) format('woff2'),
        url(asset/fonts/OpenSans-Regular.woff) format('woff'),
        url(asset/fonts/OpenSans-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(asset/fonts/OpenSans-Medium.woff2) format('woff2'),
        url(asset/fonts/OpenSans-Medium.woff) format('woff'),
        url(asset/fonts/OpenSans-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(asset/fonts/OpenSans-SemiBold.woff2) format('woff2'),
        url(asset/fonts/OpenSans-SemiBold.woff) format('woff'),
        url(asset/fonts/OpenSans-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(asset/fonts/OpenSans-Bold.woff2) format('woff2'),
        url(asset/fonts/OpenSans-Bold.woff) format('woff'),
        url(asset/fonts/OpenSans-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(asset/fonts/SourceSansPro-Light.woff2) format('woff2'),
        url(asset/fonts/SourceSansPro-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(asset/fonts/SourceSansPro-Bold.woff2) format('woff2'),
        url(asset/fonts/SourceSansPro-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(asset/fonts/SourceSansPro-SemiBold.woff2) format('woff2'),
        url(asset/fonts/SourceSansPro-SemiBold.ttf) format('truetype');
}



:root {
    --color-default_v1: #000;
    --color-default_v2: #343434;
    --color-v1: #27489D;
    --color-v2: #B11A23;
    --color-v3: #410917;
    --color-v1-opacity: rgba(39, 72, 157, 0.6);
    ;
}

* {
    box-sizing: border-box;
}

html, body {
    position: relative;
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    margin: 0;
    font-size: 16px;
    overflow-x: hidden !important;
    height: 100%;
    font-feature-settings: 'pnum'on, 'lnum'on;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    color: var(--color-default_v1);
}

ul li, ol li, ol, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--color-default_v1);
}

a:hover {
    color: var(--color-default_v1);
    text-decoration: none;
}

@media(min-width: 1196px) {
    .container {
        max-width: 1252px;
    }

}

.button {
    line-height: 54px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    width: 100%;
    max-width: 199px;
    border: none;
    outline: none;
    cursor: pointer;
    display: block;
}



.button.button_v1 {
    background: var(--color-v2);
}

.button.button_v1:hover {
    background: var(--color-v3);
    color: #FFFFFF;
}

.button.button_v2 {
    background: var(--color-v1);
    ;
    color: #FFFFFF;
}

.button.button_v2:hover {
    background: var(--color-v2);
    ;
}

.button.button_v3 {
    background: var(--color-v2);
}

.button.button_v3:hover {
    background: var(--color-v1);
    color: #FFFFFF;
}

.button.button_v4 {
    background: var(--color-v3);
}

.button.button_v4:hover {
    background: var(--color-v2);
    color: #FFFFFF;
}

.button.button_v5 {
    background: var(--color-v3);
}

.button.button_v5:hover {
    background: var(--color-v1);
    color: #FFFFFF;
}


.button_more {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--color-v2);
    display: flex;
    align-items: center;
}

.button_more::after {
    content: '';
    width: 26px;
    height: 26px;
    background: url(asset/images/more_arrow.svg) center no-repeat;
    margin-left: 5px;
    transition: 0.4s;
}

.button_more:hover::after {
    margin-left: 15px;
}

/*header*/
.header_top_box {
    padding: 20px 0 12px
}

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

.header_phone_block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header_mail_block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.header_phone_block a {
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
}

.time_work {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
}

.header_mail_block a {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
}

.social_container {
    margin-top: 13px;
}

.social_container a {
    display: inline-block;
    margin-left: 19px;
}

.social_container a:first-child {
    margin-left: 0px;
}

.social_container svg:hover path {
    fill: var(--color-v3);
}

.header_bottom_box {
    background-color: var(--color-v1);
}

.header_bottom_container {
    display: flex;
}

.menu_search_container {
    display: flex;
    flex-grow: 1;
    position: relative;
}

.header_search_container {
    display: flex;
    align-items: center;

    margin-left: auto;
}

.header_search_button {
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 2px;
}

.header_search_button svg {
    margin-right: 11px;
}

.button.button_header {
    margin-left: 16px;
    max-width: 210px;
    line-height: 65px;
}

.mobile_menu .slicknav_btn {
    border-radius: 0;
}

@media(max-width: 768px) {
    .header_logo {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
}

@media(max-width: 576px) {
    .header_phone_block {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .header_mail_block {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .header_search_button {
        display: none;
    }

    .header_search_container {
        margin-left: 0;
    }

    .header_bottom_container {
        flex-direction: column;
        padding: 10px 0;
        align-items: center;
    }

    .button_header {
        margin-left: 0;
        margin-top: 15px;
    }
}

/*end header*/

.title_page {
    font-family: 'Source Sans Pro';
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 45px;
}

.dots_container.swiper-pagination-horizontal.swiper-pagination-bullets {
    width: fit-content;
}

.dots_container.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 34px;
    height: 4px;
    background: var(--color-v1-opacity);
    border-radius: unset;
    margin: 0 5px;
    opacity: unset;
}

.dots_container.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-v1);
}

.swiper_next,
.swiper_prev {
    width: 48px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.swiper_next {
    transform: rotate(180deg);
}

.swiper_next::after,
.swiper_prev::after {
    width: 19.62px;
    height: 33.33px;
    content: '';
    display: block;
    background: url(asset/images/arrow_button.svg) no-repeat center;
    cursor: pointer;
}

.swiper_next:hover,
.swiper_prev:hover {
    background-color: var(--color-v1);
}

.swiper_next:hover::after,
.swiper_prev:hover::after {
    filter: invert(97%) sepia(8%) saturate(128%) hue-rotate(177deg) brightness(215%) contrast(100%);

}

.wrapper ol li {
    counter-increment: step;
}

.wrapper ul li::before {
    content: '';
    display: inline-block;
    background: var(--color-v2);
    width: 18px;
    height: 3px;
    margin-right: 20px;
    position: relative;
    top: -5px;
}

.wrapper ol li::before {
    content: counter(step);
    display: inline-block;
    color: var(--color-v2);
    font-weight: 700;
    width: 18px;
    height: 3px;
    margin-right: 17px;

}

.wrapper .table {
    overflow: auto;
}

.wrapper table {
    width: 100%;
    overflow-x: auto;
}

.wrapper table tr th {
    background: var(--color-v1);
    text-align: center;
    padding: 28px;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    color: #FFFFFF;

}

.wrapper table tr td {
    text-align: center;
    padding: 19px;
}

.wrapper table tr:nth-child(2n+1) {
    background: #F5EEE3;
}


section {
    margin-bottom: 70px;
}


/*footer*/
.footer {
    margin-top: 95px;
}

.footer_top_container {
    background: var(--color-default_v2);
    padding: 47px 0 62px;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    color: #FFFFFF;
    flex-wrap: wrap;
}

.footer_top a {
    color: #FFFFFF;
}

.footer_phone {
    margin: 30px 0 6px;
}

.footer_phone a {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
}

.name_footer_menu {
    font-family: 'Source Sans Pro';
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer_logo img {
    max-width: 250px;
}

.footer_top_column_four {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.banks_container {
    margin-top: 60px;
}

.banks_container img {
    margin-left: 14px;
}

.banks_container {
    display: flex;
    align-items: center;
}

.footer_bottom_container {
    background: #DFDFDF;
}

.footer_bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer_bottom div {
    padding: 13px 0;
    color: #000000;
}

.footer_bottom div a {

    color: #000000;
}

@media(max-width: 991px) {
    .footer_top_column {
        width: 50%;
    }

    .footer_top_column_two {
        order: 5;
        margin-top: 25px;
    }

    .footer_top_column_three {
        order: 6;
        margin-top: 25px;
    }
}

@media(max-width: 576px) {
    .footer_top_column {
        width: 100%;
    }

    .footer_top {
        flex-direction: column;
        text-align: center;
    }

    .footer_top_column_four {
        align-items: center;
    }

    .banks_container {
        justify-content: space-between;
        margin-top: 24px;
    }

    .name_footer_menu {
        margin-bottom: 15px;
    }

}

/*end footer*/

/* form */
.form {
    overflow-y: auto;
    width: 100%;
    max-width: 814px;
    background: #FFFFFF;
    padding: 45px 54px;
}

.form_container {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form input[type='text'],
.form textarea {
    width: 100%;
    border: 2px solid #DFDFDF !important;
    outline: none;
    padding: 18px;
    margin-bottom: 10px;
    font-family: 'Open Sans';
    font-feature-settings: 'pnum'on, 'lnum'on;
}

.form input[type='text'].er,
.form textarea.er {
    border: 2px solid #f83030 !important;
}

.form textarea {
    height: 106px;
    resize: none;
}

.form_close {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 5px;
    right: 0;
    cursor: pointer;
}

.form_close::after,
.form_close::before {
    content: '';
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: #CCCCCC;
    position: absolute;
    top: 50%;
}

.form_close::before {
    transform: rotate(45deg);
}

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

.title_page.form_title {
    text-align: center;
}

.button.button_form_submit {
    margin: 34px auto 0;
}

.form_box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -999;
    background: rgba(52, 52, 52, 0.7);

    transition: 0.2s;
    user-select: none;
    pointer-events: none;
    opacity: 0;

}

.form_box.form_box_active {
    z-index: 999;
    user-select: unset;
    pointer-events: unset;
    opacity: 1;
}

.form {
    position: relative;

    margin: 30px auto 0;
}

.form_succes_container {
    max-width: 615px;
}

.form_succes {
    display: none;
    position: absolute;
    z-index: 1000;
    background: white;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    align-items: center;
    justify-content: center;
    font-size: 25px;
    flex-direction: column;
}

.form_succes_visible {
    display: flex;
}

.button_close_window {
    margin-top: 15px;
}

@media(max-width: 1400px) {
    .form {
        margin: 10px auto 0;
        overflow-y: auto;
        max-height: 575px;
    }

    .title_page.form_title {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .form input[type='text'], .form textarea {

        padding: 10px;
        margin-bottom: 5px;

    }
}

@media(max-width: 768px) {
    .title_page {
        font-size: 26px;
        line-height: 29px;
    }

    .form {
        padding: 25px 7px;
        max-height: 580px;
        overflow-y: auto;
    }

    .title_page.form_title {
        font-size: 23px;
        margin-bottom: 20px;
    }
}

/* end form */

.cookies {
    background: var(--color-v1);
    padding: 23px 0 30px 0;
    position: fixed;
    bottom: -50%;
    z-index: 999;
    width: 100%;
    transition: 0.8s;
}

.cookies .container {
    position: relative;
}

.cookies_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    max-width: 884px;
    margin: 0 auto 17px auto;
}

.cookies_text a {
    color: #FFFFFF;
    text-decoration: underline;
}

.cookies_ok {
    height: 25px;
    font-weight: 800;
    font-size: 13px;
    line-height: 25px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-v2);
    border-bottom: 1px solid var(--color-v2);
    width: fit-content;
    margin: 0 auto;
    cursor: pointer;
}

.cookies_ok:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}

@media(max-width:576px) {
    .coockies_box {
        padding: 0 40px;
    }

    .cookies_close {
        right: 15px;
    }
}