@font-face
{
    font-family: 'Electrolize';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/Electrolize.woff') format('woff'),
    url('../fonts/Electrolize.ttf') format('truetype');
}



*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

img
{
    border: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active
{
    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

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

input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset]
{
    -webkit-border-radius: 0;

    -webkit-appearance: none;
}

:focus
{
    outline: none;
}

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


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



/*---------------
    Main styles
---------------*/
:root
{
    --bg: #fff;
    --aside_width: 257px;
    --aside_big_width: 300px;
    --scroll_width: 17px;
    --text_color: #000;
    --font_size: 16px;
    --font_size_title: 36px;
    --font_family: 'Electrolize', 'Arial', sans-serif;
}



.clear
{
    clear: both;
}


.left
{
    float: left;
}


.right
{
    float: right;
}



html
{
    height: 100%;

    background: var(--bg);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}


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

    height: 100%;

    transition: opacity .2s linear;

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

body.show
{
    opacity: 1 !important;
}

body.lock
{
    overflow: hidden;
}


.wrap
{
    position: relative;

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

    min-height: 100%;
}


.main
{
    flex: 1 0 auto;
}


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


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

    width: 100%;
    height: 100vh;

    opacity: .65;
    background: #000;
}


.compensate-for-scrollbar header.absolute,
.compensate-for-scrollbar header.fixed
{
    padding-right: var(--scroll_width) !important;
}


.lozad
{
    transition: .5s linear;

    opacity: 0;
}

.lozad.loaded
{
    opacity: 1;
}


.flex
{
    display: flex;

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



.page_head
{
    margin-bottom: 30px;
}

.page_head .head
{
    position: relative;

    display: flex;

    min-height: 224px;
    margin-bottom: 18px;
    padding: 40px 0;

    background: #eee;

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

.page_head .head:before
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    background: url(../images/sh_main_slider.png) 0 0/auto 100% no-repeat;
}

.page_head .head .bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

.page_head .head .cont
{
    position: relative;
    z-index: 9;
}

.page_head .head .title
{
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
}



.breadcrumbs
{
    color: #999;
    font-size: 11px;

    margin-bottom: 20px;
    padding-bottom: 15px;

    text-transform: uppercase;

    border-bottom: 1px solid #bababa;
}

.breadcrumbs a
{
    color: #999;

    transition: .2s linear;
    white-space: nowrap;
    text-decoration: none;
}

.breadcrumbs a:hover
{
    color: var(--text_color);
}

.breadcrumbs .sep
{
    position: relative;
    top: -1px;

    display: inline-block;

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

    vertical-align: middle;

    border-radius: 50%;
    background: #1d539f;
}



.page_title
{
    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: 40px;
}



.content_flex.flex,
.content_flex > .cont.flex
{
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

.content_flex .content
{
    position: relative;

    width: calc(100% - var(--aside_width) - 73px);
}

.content_flex aside.big + .content
{
    position: relative;

    width: calc(100% - var(--aside_big_width) - 57px);
}

.content_flex .content > :first-child
{
    margin-top: 0;
}

.content_flex .content > :last-child
{
    margin-bottom: 0;
}


.content .block_title
{
    font-size: 28px;
    font-weight: normal;
    line-height: 32px;

    margin-bottom: 30px;
}



.block
{
    margin-bottom: 45px;
}


.block_head
{
    display: flex;

    margin-bottom: 30px;

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

.block_head .title
{
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: 40px;
}


.block_head .all_link
{
    color: var(--text_color);
    font-weight: 600;
    line-height: 39px;

    position: relative;

    display: inline-block;

    padding-right: 50px;

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

.block_head .all_link:after
{
    position: absolute;
    top: 0;
    right: 0;

    display: block;

    width: 39px;
    height: 39px;

    content: '';

    border-radius: 50%;
    background: #62aadc url(../images/ic_burger.svg) 50%/17px no-repeat;
}



.form
{
    --form_border_color: #f2f2f2;
    --form_focus_color: #62aadc;
    --form_error_color: red;
    --form_success_color: green;
    --form_border_radius: 10px;
    --form_bg_color: #f2f2f2;
    --form_placeholder_color: rgba(0,0,0,.4);
}


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

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

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


.form .columns
{
    margin-left: -30px;

    --columns_offset: 30px;
}

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


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

.form .field
{
    position: relative;
}


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

    display: block;

    width: 100%;
    height: 50px;
    padding: 0 22px;

    transition: .2s linear;
    text-transform: uppercase;

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

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

    display: block;

    width: 100%;
    height: 80px;
    padding: 15px 22px;

    resize: none;
    transition: .2s linear;
    text-transform: uppercase;

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


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

.form .success
{
    border-color: var(--form_success_color);
}

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


.form .input:disabled,
.form textarea:disabled,
.form input[type=checkbox]:disabled + label,
{
    cursor: default;
    pointer-events: none;

    opacity: .5;
}


.form .error_text
{
    color: var(--form_error_color);
    font-size: 14px;
    line-height: 21px;

    margin-top: 5px;
}


.form input[type=checkbox]
{
    display: none;
}

.form input[type=checkbox] + label
{
    font-size: 12px;
    line-height: 16px;

    position: relative;

    display: table-cell;

    height: 21px;
    padding-left: 38px;

    cursor: pointer;
    text-align: left;
    vertical-align: middle;
}

.form input[type=checkbox] + label:before
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 20px;
    height: 20px;

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

    border-radius: 3px;
    background: var(--form_bg_color);
}

.form input[type=checkbox] + label:after
{
    position: absolute;
    top: 6px;
    left: 5px;

    display: block;

    width: 12px;
    height: 6px;

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

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

.form input[type=checkbox]:checked + label:after
{
    opacity: 1;
}


.form .bottom
{
    display: flex;

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

.form .bottom .agree
{
    width: calc(100% - 330px);
}

.form .bottom .submit
{
    width: 300px;
    max-width: 100%;
}


.form .submit_btn
{
    color: var(--text_color);
    font: 700 var(--font_size) var(--font_family);

    display: inline-block;

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

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    text-transform: uppercase;

    border: 2px solid #1d539f;
    border-radius: 30px;
    background: #fff;
}

.form .submit_btn:hover
{
    background: #1d539f;
}



.text_block
{
    font-size: 14px;
    line-height: 21px;
}

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

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


.text_block h1
{
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: 40px;

    margin-bottom: 30px;
}

.text_block * + h2,
.text_block * + h3
{
    margin-top: 40px;
}

.text_block .clear + h2,
.text_block .clear + h3
{
    margin-top: 30px;
}


.text_block h2
{
    font-size: 28px;
    font-weight: 600;
    line-height: 32px;

    margin-bottom: 20px;
}

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


.text_block h3
{
    font-size: 20px;
    font-weight: normal;
    line-height: 24px;

    margin-bottom: 20px;
}

.text_block h1 + h3,
.text_block h2 + h3
{
    margin-top: 0 !important;
}


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


.text_block p,
.text_block img,
.text_block ol
{
    margin-bottom: 21px;
}


.text_block img
{
    display: block;

    max-width: 100%;
}

.text_block img.left
{
    max-width: calc(50% - 40px);
    margin-top: 4px;
    margin-right: 40px;
}

.text_block img.right
{
    max-width: calc(50% - 40px);
    margin-top: 4px;
    margin-left: 40px;
}

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


.text_block .bg
{
    margin: 35px 0;
    padding: 30px 35px;

    background: #f1f1f1;
}


.text_block .table_wrap
{
    overflow: auto;

    max-width: 100%;
}

.text_block table
{
    width: 100%;

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

    border-top: 1px solid #e7e7e7;
}

.text_block table td
{
    padding: 10px 15px;

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

    border-bottom: 1px solid #e7e7e7;
}

.text_block table td:first-child
{
    padding-left: 0;
}

.text_block table td:last-child
{
    padding-right: 0;
}


.text_block ol
{
    counter-reset: li;
}

.text_block ol li
{
    position: relative;

    display: block;

    padding-left: 20px;

    list-style-type: none;
}

.text_block ol li + li
{
    margin-top: 15px;
}

.text_block ol li:before
{
    color: #1d539f;
    font-weight: 700;

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

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


.text_block .slider_in_text
{
    margin: 40px 0;
}

.text_block .slider_in_text .img
{
    position: relative;

    padding-bottom: 42%;

    background-color: #eee;
}

.text_block .slider_in_text .img img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100% !important;
    margin: 0;

    object-fit: cover;
}


.text_block a
{
    color: var(--text_color);

    transition: background-size .3s;
    text-decoration: none;

    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
}

.text_block a:hover
{
    background-size: 100% 2px;
}



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

    width: 100%;
    margin: 0;
}

header.fixed
{
    position: fixed;

    margin: 0;

    -webkit-animation: moveDown .5s;
            animation: moveDown .5s;
}



header .info
{
    padding: 31px 0 27px;
}

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



header .logo a,
header .logo img
{
    display: block;

    max-width: 100%;
    margin: 0 auto;
}



header .slogan
{
    color: #0b0b0b;
    font-size: 14px;
    line-height: 24px;

    display: flex;

    min-height: 53px;
    padding-left: 79px;

    text-transform: uppercase;

    background: url(../images/ic_slogan.png) 0 50% no-repeat;

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



header .cert
{
    color: #0b0b0b;
    font-size: 14px;
    line-height: 24px;

    display: flex;

    min-height: 59px;
    padding-left: 71px;

    text-transform: uppercase;

    background: url(../images/ic_cert.png) 0 50% no-repeat;

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



header .contacts
{
    color: #0b0b0b;
    font-size: 14px;
    line-height: 24px;

    position: relative;

    display: flex;

    min-height: 82px;
    padding-top: 38px;
    padding-left: 60px;

    text-transform: uppercase;

    background: url(../images/ic_contacts.png) 0 36px no-repeat;

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

header .contacts .callback_link
{
    color: #0b0b0b;
    line-height: 25px;

    position: absolute;
    top: 0;
    left: 28px;

    display: inline-block;

    padding-left: 33px;

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

    background: url(../images/ic_callback_link.png) 0 50% no-repeat;
}

header .contacts .phone
{
    font-size: 24px;
    font-weight: 600;
}

header .contacts .phone a
{
    color: #0b0b0b;

    display: inline-block;

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



header .mob_menu_link
{
    display: none;

    width: 60px;
    height: 38px;
    margin-left: -15px;
    padding: 10px 15px;
}

header .mob_menu_link span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: .2s linear;

    background: #000;
}

header .mob_menu_link span + span
{
    margin-top: 6px;
}

header .mob_menu_link.active span:nth-child(2)
{
    opacity: 0;
}

header .mob_menu_link.active span:nth-child(1)
{
    top: 8px;

    transform: rotate(45deg);
}

header .mob_menu_link.active span:nth-child(3)
{
    top: -8px;

    transform: rotate(-45deg);
}



header .bottom
{
    background: #1d539f;
}

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



header .menu
{
    position: relative;

    width: calc(100% - 342px);
    /*padding-left: 88px;*/

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

/*
header .menu:before
{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 100%;

    display: block;

    width: 1000px;
    height: 100%;
    margin-right: -75px;

    content: '';

    border-right: 1px solid #3e8ec1;
    background: #3e8ec1;
}

header .menu:after
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 75px;
    height: 100%;

    content: '';

    background: url(../images/ic_burger.svg) 50% no-repeat;
}
*/

header .menu .item
{
    position: relative;
}

header .menu .item > a
{
    color: #fff;
    font-size: var(--font_size);
    line-height: normal;

    position: relative;

    display: flex;

    min-height: 72px;
    padding: 0 30px;

    transition: .2s linear;
    text-decoration: none;
    text-transform: uppercase;

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


header .menu .sub_menu
{
    position: absolute;
    z-index: 99;
    top: calc(100% + 30px);
    left: -13px;

    visibility: hidden;

    width: 320px;

    transition: .2s linear;

    opacity: 0;
    background: #f5f5f5;
}

header .menu .item:hover > .sub_menu
{
    top: 100%;

    visibility: visible;

    opacity: 1;
}

header .menu .sub_menu > * + *
{
    border-top: 1px solid #d1d1d1;
}

header .menu .sub_menu > * > a
{
    color: #000;
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;

    position: relative;

    display: flex;

    min-height: 59px;
    padding: 10px 49px;

    transition: .2s linear;
    text-decoration: none;
    text-transform: uppercase;

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

header .menu .sub_menu > * > a:after
{
    position: absolute;
    top: 50%;
    right: 20px;

    display: block;

    width: 10px;
    height: 10px;
    margin-top: -5px;

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

    border-right: 3px solid #1d539f;
    border-bottom: 3px solid #1d539f;
}

header .menu .sub_menu > *:hover > a,
header .menu .sub_menu > * > a.active
{
    background: #fff;
}


header .menu .sub_menu.level3
{
    top: 0;
    left: calc(100% + 30px);

    width: 790px;
    min-height: 100%;
    padding: 30px;

    background: #fff;
    box-shadow: 0 5px 32px 0 rgba(0, 0, 0, .21);
}

header .menu .sub_menu.level3:before,
header .menu .sub_menu.level3:after
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 33.333%;

    display: block;

    width: 100px;
    height: 100%;

    content: '';
    pointer-events: none;

    background: url(../images/sh_sub_menu.png) 0 0 repeat-y;
}

header .menu .sub_menu.level3:after
{
    left: 66.666%;
}

header .menu .sub_menu > *:hover .sub_menu,
header .menu .sub_menu > * > a.touch_link + .sub_menu.show
{
    top: 0;
    left: 100%;

    visibility: visible;

    opacity: 1;
}


header .menu .sub_menu .columns
{
    font-size: 14px;
    line-height: 16px;

    margin-bottom: -19px;

    column-count: 3;
    column-gap: 70px;
}

header .menu .sub_menu .columns > *
{
    padding-bottom: 19px;

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

header .menu .sub_menu.level3 a
{
    color: var(--text_color);

    transition: background-size .3s;
    text-decoration: none;

    background-image: linear-gradient(#1d539f, #1d539f);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 2px;
}

header .menu .sub_menu.level3 a:hover
{
    background-size: 100% 2px;
}



header .search
{
    width: 310px;
    max-width: 100%;
}

header .search form
{
    display: flex;

    padding: 10px 0;

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

header .search form ::-webkit-input-placeholder
{
    color: #fff;
}

header .search form :-moz-placeholder
{
    color: #fff;
}

header .search form :-ms-input-placeholder
{
    color: #fff;
}

header .search .input
{
    color: #fff;
    font-family: var(--font_family);
    font-size: 13px;

    display: block;

    width: 100%;
    height: 43px;
    padding: 2px 49px 0 23px;

    text-transform: uppercase;

    border: none;
    border-radius: 25px;
    background: #62aadc;
}

header .search .submit_btn
{
    position: relative;

    width: 49px;
    height: 43px;
    margin-left: -49px;

    cursor: pointer;
    transition: .2s linear;

    opacity: .3;
    border: none;
    background: url(../images/ic_search.svg) 50% no-repeat;
}

header .search .submit_btn:hover
{
    opacity: 1;
}



@-webkit-keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-77px);
                transform: translateY(-77px);
    }
}
@-moz-keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-77px);
                transform: translateY(-77px);
    }
}
@keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-77px);
                transform: translateY(-77px);
    }
}



/*---------------
   Sidebar
---------------*/
aside
{
    position: relative;

    width: var(--aside_width);
    max-width: 100%;
}

aside:after
{
    position: absolute;
    top: 0;
    right: 0;

    display: block;

    width: 1px;
    height: 310px;
    max-height: 100%;

    content: '';

    background: #e8e8e8;
}


aside.big
{
    width: var(--aside_big_width);
}

aside.big:after
{
    display: none;
}



aside .mob_links_link,
aside .mob_cats_link
{
    color: #000;
    font-weight: 600;
    line-height: 36px;

    display: none;

    height: 40px;
    padding: 0 40px;

    transition: .2s linear;
    text-align: center;
    vertical-align: top;
    text-decoration: none;
    text-transform: uppercase;

    border: 2px solid #1d539f;
    border-radius: 30px;
}



aside .links > * + *
{
    margin-top: 25px;
}

aside .links a
{
    color: #000;
    font-size: 14px;

    position: relative;

    display: inline-block;

    padding-bottom: 5px;

    transition: background-size .3s;
    vertical-align: top;
    text-decoration: none;
    text-transform: uppercase;

    background-image: linear-gradient(#1d539f, #1d539f);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 2px;
}

aside .links a:hover,
aside .links a.active
{
    background-size: 100% 2px;
}



aside .cats
{
    border: 1px solid #e7e7e7;
    border-top: 2px solid #1d539f;
}

aside .cats > * + *
{
    border-top: 1px solid #e7e7e7;
}

aside .cats a
{
    color: #000;
    font-size: 14px;

    display: block;

    padding: 14px 20px;

    text-decoration: none;
    text-transform: uppercase;
}



/*---------------
   Main section
---------------*/
.owl-carousel,
.owl-carousel .slide:first-child
{
    display: block;
}

.owl-carousel .slide
{
    display: none;
}

.owl-carousel .owl-stage
{
    white-space: nowrap;
}

.owl-carousel .owl-item
{
    display: inline-block;
    float: none;

    vertical-align: top;
    white-space: normal;
}

.owl-carousel .slide .lozad
{
    transition: .2s linear;
}



.main_slider
{
    background-color: #eee;
}

.main_slider .slide
{
    position: relative;

    overflow: hidden;
}

.main_slider .slide:before
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    background: url(../images/sh_main_slider.png) 0 0/auto 100% no-repeat;
}


.main_slider .slide .bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}


.main_slider .slide .cont
{
    position: relative;
    z-index: 5;

    display: flex;

    min-height: 300px;
    padding-top: 50px;
    padding-bottom: 50px;

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


.main_slider .slide .info
{
    color: #fff;
    font-size: 18px;
    line-height: 34px;

    width: 650px;
    max-width: 100%;
    padding: 0 75px;
}

.main_slider .slide .title
{
    font-size: 60px;
    line-height: 60px;

    margin-bottom: 10px;
}

.main_slider .slide .link
{
    color: #0b0b0b;
    font-size: 13px;
    line-height: 45px;

    display: inline-block;

    height: 45px;
    margin-top: 35px;
    padding: 0 44px;

    transition: .2s linear;
    text-align: center;
    vertical-align: top;
    text-decoration: none;
    text-transform: uppercase;

    border-radius: 25px;
    background: #3e8ec1;
}



.promo .flex
{
    margin-bottom: calc(var(--promo_offset) * -1);
    margin-left: calc(var(--promo_offset) * -1);

    --promo_count: 3;
    --promo_offset: 50px;
}

.promo .flex > *
{
    width: calc((100% / var(--promo_count)) - var(--promo_offset));
    margin-bottom: var(--promo_offset);
    margin-left: var(--promo_offset);
}


.promo .text_block
{
    font-size: 16px;
    line-height: 30px;
}

.promo .text_block p,
.promo .text_block img,
.promo .text_block ol
{
    margin-bottom: 25px;
}



.advantages .flex
{
    margin-bottom: calc(var(--advantages_offset) * -1);
    margin-left: calc(var(--advantages_offset) * -1);

    --advantages_count: 3;
    --advantages_offset: 30px;
}

.advantages .flex > *
{
    width: calc((100% / var(--advantages_count)) - var(--advantages_offset));
    margin-bottom: var(--advantages_offset);
    margin-left: var(--advantages_offset);
}

.advantages .flex .item + .item
{
    margin-top: 0;
}

.advantages .flex .item .desc
{
    width: calc(100% - 85px);
}


.advantages .item
{
    line-height: 30px;

    display: flex;

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

.advantages .item + .item
{
    margin-top: 20px;
}

.advantages .item .icon
{
    display: flex;

    width: 72px;
    height: 68px;

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

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

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

.advantages .item .desc
{
    width: calc(100% - 95px);

    align-self: center;
}



.cats_wall
{
    position: relative;

    padding: 60px 0 70px;

    background: #f1f1f1;
}


.cats_wall .bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}


.cats_wall .cont
{
    position: relative;
    z-index: 5;
}


.cats_wall .block_title
{
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;

    margin-bottom: 50px;

    text-align: center;
}


.cats_wall .flex
{
    margin-bottom: calc(var(--cats_offset) * -1);
    margin-left: calc(var(--cats_offset) * -1);

    --cats_count: 5;
    --cats_offset: 30px;
}

.cats_wall .flex > *
{
    width: calc((100% / var(--cats_count)) - var(--cats_offset));
    margin-bottom: var(--cats_offset);
    margin-left: var(--cats_offset);
}

.cats_wall .item
{
    color: var(--text_color);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;

    display: block;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.cats_wall .item .thumb
{
    position: relative;
    z-index: 5;

    display: flex;

    width: 196px;
    height: 196px;
    margin: 0 auto 30px;
    padding: 20px;

    border-radius: 50%;

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

.cats_wall .item .thumb:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 0;
    height: 0;
    margin: auto;

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

    border-radius: 50%;
    background: #62aadc;
}

.cats_wall .item .thumb:after
{
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

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

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

.cats_wall .item .thumb img
{
    display: block;

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

.cats_wall .item:hover .thumb:before
{
    width: 100%;
    height: 100%;
}

.cats_wall .item:hover .thumb:after
{
    top: -14px;
    left: -14px;

    width: calc(100% + 28px);
    height: calc(100% + 28px);
}



.articles .flex
{
    margin-bottom: calc(var(--articles_offset) * -1);
    margin-left: calc(var(--articles_offset) * -1);

    --articles_count: 3;
    --articles_offset: 50px;
}

.articles .flex > *
{
    width: calc((100% / var(--articles_count)) - var(--articles_offset));
    margin-bottom: var(--articles_offset);
    margin-left: var(--articles_offset);
}

.articles .flex .item
{
    color: var(--text_color);
    line-height: 30px;

    display: block;

    text-decoration: none;
}

.articles .flex .item .date
{
    color: rgba(0,0,0,.5);

    margin-bottom: 15px;
    padding-bottom: 12px;

    border-bottom: 2px solid #62aadc;
}



.articles .masonry
{
    width: calc(100% + 15px);
    margin-right: -15px;

    --articles_count: 4;
}

.articles .masonry > *
{
    width: calc(25% - 15px);
}

.articles .masonry .item
{
    color: var(--text_color);
    font-size: 13px;
    line-height: 18px;

    display: block;

    margin-bottom: 15px;
    padding: 19px;

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

    border: 1px solid #cfcfcf;
    border-top: 2px solid #1d539f;
}

.articles .masonry .item > * + *
{
    margin-top: 3px;
}

.articles .masonry .item .thumb
{
    margin-bottom: 10px;

    background-color: #eee;
}

.articles .masonry .item .thumb img
{
    display: block;

    width: 100%;
}

.articles .masonry .item .date
{
    color: rgba(0,0,0,.5);
    font-size: 14px;
    line-height: 21px;

    margin-bottom: 5px;
}

.articles .masonry .item .name
{
    display: inline;

    transition: background-size .3s;

    background-image: linear-gradient(#1d539f, #1d539f);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 2px;
}

.articles .masonry .item:hover .name
{
    background-size: 100% 2px;
}



.dealers .item
{
    line-height: 24px;

    display: flex;

    padding: 30px 40px 25px;

    border: 1px solid #cfcfcf;
    border-top: 4px solid #1d539f;

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

.dealers .item + .item
{
    margin-top: 35px;
}

.dealers .item .name
{
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;

    width: 100%;
    margin-bottom: 15px;
}

.dealers .item a
{
    color: var(--text_color);

    text-decoration: none;
}

.dealers .item .adres
{
    width: 100%;
    margin-bottom: 15px;
    padding-left: 24px;

    background: url(../images/ic_adres.svg) 0 4px no-repeat;
}

.dealers .item .phones
{
    padding-left: 24px;
    margin-bottom: 15px;

    background: url(../images/ic_phone.svg) 0 5px no-repeat;
}

.dealers .item .emails
{
    padding-left: 24px;
    margin-bottom: 15px;

    background: url(../images/ic_email.svg) 0 7px no-repeat;
}

.dealers .item .requisites
{
    padding-left: 24px;
    margin-bottom: 15px;

    background: url(../images/ic_requisites.svg) 0 5px no-repeat;
}

.dealers .item .date
{
    padding-left: 24px;
    margin-bottom: 15px;

    background: url(../images/ic_date.png) 0 5px no-repeat;
}



.products .product
{
    position: relative;

    display: flex;

    transition: .2s linear;

    border: 1px solid #e5e5e5;
    background: #fff;

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

.products .product + .product
{
    margin-top: -1px;
}

.products .product .thumb
{
    display: flex;

    width: 260px;
    max-width: 100%;
    height: 160px;
    padding: 20px;

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

.products .product .thumb img
{
    display: block;

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

.products .product .info
{
    color: #565555;
    font-size: 14px;
    line-height: 21px;

    padding: 20px;
}

.products .product .thumb + .info
{
    width: calc(100% - 260px);
    padding-left: 0;
}

.products .product .info > * + *
{
    margin-top: 10px;
}

.products .product .name
{
    color: var(--text_color);
    font-size: 20px;
    line-height: 26px;
}

.products .product .name a
{
    color: var(--text_color);

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

    border-bottom: 1px dashed #1d539f;
}

.products .product .name a:hover
{
    border-color: transparent;
}


.products .product:hover
{
    z-index: 5;

    border-color: #fff;
    box-shadow: 0 1px 35px 0 rgba(0, 0, 0, .19);
}



.contacts_info .cont
{
    position: relative;

    display: flex;

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


.contacts_info .download
{
    color: var(--text_color);
    font-size: 14px;
    line-height: 21px;

    position: absolute;
    top: -56px;
    right: 20px;

    display: flex;

    min-height: 26px;
    padding-left: 35px;

    text-decoration: none;

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

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


.contacts_info .info
{
    font-weight: 500;
    line-height: 21px;

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

.contacts_info .info > * + *
{
    margin-top: 23px;
}

.contacts_info .info .name
{
    font-weight: 700;
}

.contacts_info .info .phone a
{
    color: var(--text_color);
    font-size: 20px;

    display: inline-block;

    margin-top: 3px;

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

.contacts_info .info .email a
{
    color: #1d539f;
    font-size: 20px;

    display: inline-block;

    margin-top: 3px;

    vertical-align: top;
    white-space: nowrap;
}


.contacts_info .feedback
{
    width: calc(100% - 375px);
}



.feedback
{
    position: relative;

    padding: 34px 105px 48px;

    border: 1px solid #cfcfcf;
    border-top: 2px solid #1d539f;
}

.feedback .title
{
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;

    margin-bottom: 30px;
}


.feedback .success
{
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;

    display: flex;
    visibility: hidden;

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

    transition: .3s linear;
    text-align: center;
    pointer-events: none;

    opacity: 0;
    background: #fff;

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

.feedback .success.show
{
    position: auto;

    visibility: visible;

    opacity: 1;
}

.feedback .success img
{
    display: block;

    max-width: 100%;
    margin: 0 0 20px;
}

.feedback .success .title
{
    width: 100%;
    margin-bottom: 15px;
}

.feedback .success .desc
{
    font-weight: 500;
    line-height: 21px;

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



.contacts_map .tabs
{
    display: flex;

    margin-bottom: 20px;

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

.contacts_map .tabs > * + *
{
    margin-left: 55px;
}

.contacts_map .tabs a
{
    color: var(--text_color);
    font-size: 24px;

    position: relative;

    display: flex;

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

    border-bottom: 1px dashed #1d539f;

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

.contacts_map .tabs a.active
{
    border-color: transparent;
}


.contacts_map .tab_content
{
    position: relative;

    visibility: hidden;

    height: 0;

    pointer-events: none;

    opacity: 0;
}

.contacts_map .tab_content.active
{
    visibility: visible;

    height: auto;

    transition: opacity .5s linear;
    pointer-events: auto;

    opacity: 1;
}

.contacts_map .map_wrap
{
    position: relative;

    padding-bottom: 31.5%;

    border-top: 2px solid #1d539f;
    background-color: #eee;
}

.contacts_map .map
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}



.contacts_path .title
{
    font-size: 28px;
    line-height: 32px;

    margin-bottom: 15px;
}

.contacts_path .tabs
{
    display: flex;

    margin-bottom: 20px;

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

.contacts_path .tabs > * + *
{
    margin-left: 55px;
}

.contacts_path .tabs a
{
    color: var(--text_color);
    font-size: 24px;

    position: relative;

    display: flex;

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

    border-bottom: 1px dashed #1d539f;

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

.contacts_path .tabs a:after
{
    position: absolute;
    z-index: 9;
    bottom: -22px;
    left: 50%;

    display: block;

    width: 25px;
    height: 14px;
    margin-left: -12px;

    content: '';
    transition: .2s linear;
    pointer-events: none;

    opacity: 0;
    background: url(../images/ic_tab_arr.png) 0 0 no-repeat;
}

.contacts_path .tabs a.active
{
    border-color: transparent;
}

.contacts_path .tabs a.active:after
{
    opacity: 1;
}


.contacts_path .tab_content
{
    position: relative;

    visibility: hidden;

    height: 0;

    pointer-events: none;

    opacity: 0;
}

.contacts_path .tab_content.active
{
    visibility: visible;

    height: auto;
    padding: 23px;

    transition: opacity .5s linear;
    pointer-events: auto;

    opacity: 1;
    border: 1px solid #cfcfcf;
}



.article_info .date
{
    color: rgba(0,0,0,.4);
    font-size: 14px;
    font-weight: 700;

    margin-top: -15px;
    margin-bottom: 30px;
}



.usage .head
{
    display: flex;

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

.usage .head .info
{
    width: calc(100% - 270px);
}

.usage .head .thumb
{
    display: flex;

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

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

.usage .head .thumb img
{
    display: block;

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

.usage .head .thumb img.loaded
{
    height: auto !important;
}


.usage .gallery + .gallery
{
    margin-top: 70px;
}

.usage .gallery .title
{
    font-size: 20px;
    line-height: 24px;

    margin-bottom: 15px;
}

.usage .gallery .img
{
    position: relative;

    padding-bottom: 42%;

    background-color: #eee;
}

.usage .gallery .img img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;
    margin: 0;

    object-fit: cover;
}

.usage .gallery .thumbs
{
    display: flex;

    margin-top: 20px;
    margin-bottom: calc(var(--gallery_thumbs_offset) * -1);
    margin-left: calc(var(--gallery_thumbs_offset) * -1);

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    --gallery_thumbs_count: 8;
    --gallery_thumbs_offset: 20px;
}

.usage .gallery .thumbs > *
{
    width: calc((100% / var(--gallery_thumbs_count)) - var(--gallery_thumbs_offset));
    margin-bottom: var(--gallery_thumbs_offset);
    margin-left: var(--gallery_thumbs_offset);
}

.usage .gallery .thumbs a
{
    position: relative;

    display: block;

    padding-bottom: 9.5%;

    background: #eee;
}

.usage .gallery .thumbs img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;
    margin: 0;

    object-fit: cover;
}


.product_info .data
{
    display: flex;

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


.product_info .description
{
    width: calc(100% - 385px);

    order: 2;
}


.product_info .images
{
    width: 326px;
    max-width: 100%;

    order: 5;
}

.product_info .images .slider
{
    border: 1px solid #eaeaea;
}

.product_info .images .slide a
{
    position: relative;

    display: block;

    padding-bottom: 100%;
}

.product_info .images .slide .img
{
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: calc(100% - 66px);
    padding: 5px;

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

.product_info .images .slide .img img
{
    display: block;

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


.product_info .images .thumbs
{
    display: flex;

    margin-top: 15px;
    margin-bottom: calc(var(--product_thumbs_offset) * -1);
    margin-left: calc(var(--product_thumbs_offset) * -1);

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    --product_thumbs_count: 3;
    --product_thumbs_offset: 15px;
}

.product_info .images .thumbs > *
{
    width: calc((100% / var(--product_thumbs_count)) - var(--product_thumbs_offset));
    margin-bottom: var(--product_thumbs_offset);
    margin-left: var(--product_thumbs_offset);
}

.product_info .images .thumbs a
{
    position: relative;

    display: block;

    padding-bottom: 25.5%;

    background: #eee;
}

.product_info .images .thumbs img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;
    margin: 0;

    object-fit: cover;
}


.product_info .links
{
    display: flex;

    margin-bottom: 15px;
    margin-left: -15px;

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

.product_info .links > *
{
    margin-bottom: 15px;
    margin-left: 15px;
}

.product_info .links a
{
    color: var(--text_color);
    font-size: 13px;
    font-weight: 600;
    line-height: 42px;

    position: relative;

    display: flex;

    min-width: 170px;
    height: 43px;
    padding: 1px 27px 0 19px;

    cursor: pointer;
    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    border: 2px solid #1d539f;
    border-radius: 25px;

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

.product_info .links a.modal_link
{
    color: #fff;
}

.product_info .links a .icon
{
    margin-right: 15px;
}

.product_info .links a .icon img
{
    display: block;

    max-height: 27px;
}


.product_info .links a.order_link
{
    border-color: #1d539f;
    background: #1d539f;
}


.product_info .tabs
{
    display: flex;

    margin-bottom: 15px;
    margin-left: 0 !important;

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

.product_info .tabs a
{
    margin-left: 15px;
}

.product_info .tab_content
{
    position: relative;

    visibility: hidden;

    height: 0;

    pointer-events: none;

    opacity: 0;
}

.product_info .tab_content.active
{
    visibility: visible;

    height: auto;

    transition: opacity .5s linear;
    pointer-events: auto;

    opacity: 1;
}



.videos .flex
{
    margin-bottom: calc(var(--videos_offset) * -1);
    margin-left: calc(var(--videos_offset) * -1);

    --videos_count: 4;
    --videos_offset: 30px;
}

.videos .flex > *
{
    width: calc((100% / var(--videos_count)) - var(--videos_offset));
    margin-bottom: var(--videos_offset);
    margin-left: var(--videos_offset);
}

.videos .item
{
    position: relative;

    display: block;

    padding-bottom: 14.5%;

    background: #eee;
}

.videos .item:after
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    background: rgba(0,0,0,.47) url(../images/ic_video_play.png) 50% no-repeat;
}

.videos .item img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}



.more
{
    margin-top: 25px;

    text-align: center;
}

.more a
{
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 38px;

    display: inline-block;

    width: 428px;
    max-width: 100%;
    height: 40px;
    padding: 0 20px;

    transition: .2s linear;
    text-align: center;
    vertical-align: top;
    text-decoration: none;
    text-transform: uppercase;

    border: 2px solid rgba(254,208,47,.3);
    border-radius: 30px;
}

.more a:hover
{
    border-color: #1d539f;
    background: #1d539f;
}



/*---------------
   Footer
---------------*/
footer
{
    flex: 0 0 auto;
}


footer .info
{
    color: #fff;
    line-height: 24px;

    padding: 15px 0;

    background: #444;
}

footer .info .cont.flex
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}



footer .creator
{
    line-height: 37px;
}

footer .creator a
{
    color: #fff;

    display: inline-block;

    padding-right: 47px;

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

    background: url(../images/creator_logo.png) 100% 50% no-repeat;
}



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

    width: 520px;
    max-width: 100%;
    padding: 40px 50px;

    border: 1px solid #cfcfcf;
    border-top: 2px solid #1d539f;
    background: #fff;
}

.modal_title
{
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;

    margin-bottom: 30px;
}


.modal .success
{
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;

    display: flex;
    visibility: hidden;

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

    transition: .3s linear;
    text-align: center;
    pointer-events: none;

    opacity: 0;
    background: #fff;

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

.modal .success.show
{
    position: auto;

    visibility: visible;

    opacity: 1;
}

.modal .success img
{
    display: block;

    max-width: 100%;
    margin: 0 0 20px;
}

.modal .success .title
{
    width: 100%;
    margin-bottom: 15px;
}

.modal .success .desc
{
    font-weight: 500;
    line-height: 21px;

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