/*-----------
    Fonts
-----------*/
@font-face
{
    font-family: 'NeusaNextPro';
    font-weight: 300;
    font-style: normal;

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

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

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

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

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



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

    scroll-margin-top: 24px;
}

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

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

body
{
    margin: 0;

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

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

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

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

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

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

    -webkit-appearance: none;
}

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

:focus
{
    outline: 0;
}

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


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



/*-------------------
    Global styles
-------------------*/
:root
{
    --bg: #fff;
    --sidebar_width: 300px;
    --scroll_width: 17px;
    --text_color: #333;
    --font_size: 16px;
    --font_size_title: 50px;
    --font_size_title_small: 40px;
    --font_family: 'Roboto', 'Arial', sans-serif;
    --font_family2: 'NeusaNextPro', 'Arial', sans-serif;
}


::selection
{
    color: #fff;
    background: #ea5703;
}

::-moz-selection
{
    color: #fff;
    background: #ea5703;
}


.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: #ea5703;
}


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

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

    color: var(--text_color);
}

body.menu_open
{
    overflow: hidden;
}


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

    display: inline-block;

    cursor: pointer;
    vertical-align: top;

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


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

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

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

    background: var(--bg);
}


.main
{
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
}


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


.row
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
}



.block
{
    position: relative;

    margin-bottom: 70px;
}


.block.border
{
    padding-bottom: 70px;

    border-bottom: 1px solid #edeef1;
}


.block.bg
{
    padding: 70px 0;

    background: #f4f5f7;
}



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


.content_flex .content
{
    position: relative;

    order: 2;

    width: calc(100% - var(--sidebar_width) - 30px);
}


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

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



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



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

    display: none;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .6);
}



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


.fancybox__slide
{
    padding: 40px;
}


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

    opacity: 1;

    --f-button-width: 27px;
    --f-button-height: 27px;
    --f-button-border-radius: 0;
    --f-button-color: #ea5703;
    --f-button-hover-color: #999;
    --f-button-svg-width: 17px;
    --f-button-svg-height: 17px;
    --f-button-bg: transparent;
    --f-button-hover-bg: transparent;
    --f-button-active-bg: transparent;
}


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



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

    margin-top: 50px;
}


.all_link a
{
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;

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

    padding-bottom: 10px;

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

    color: #ea5703;
}


.all_link a span
{
    position: relative;
}


.all_link a .icon
{
    position: relative;
    top: -1px;

    display: block;

    width: 12px;
    height: 10px;
    margin-left: 8px;
}


.all_link a span:after
{
    position: absolute;
    bottom: -10px;
    left: 0;

    display: block;

    width: 100%;
    height: 1px;

    content: '';

    background: currentColor;
}


.all_link a:hover
{
    color: #999;
}



/*----------------
    Pagination
----------------*/
.pagination
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    margin-top: 50px;
}


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


.pagination a
{
    font-size: 20px;
    font-weight: 300;
    line-height: 42px;

    display: inline-block;

    width: 40px;
    height: 44px;

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

    color: currentColor;
    border: 1px solid transparent;
    border-radius: 3px;
}


.pagination .sep
{
    font-size: 20px;
    font-weight: 300;
    line-height: 44px;
}


.pagination a:hover
{
    color: #ea5703;
    border-color: #ea5703;
}


.pagination a.active
{
    border-color: var(--text_color);
}


.pagination .prev,
.pagination .next
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    color: #999;
    border: none;
}


.pagination .prev .icon,
.pagination .next .icon
{
    display: block;

    width: 14px;
    height: 20px;
}


.pagination .prev .icon
{
    transform: rotate(180deg);
}



/*---------------
    Accordion
---------------*/
.accordion_item
{
    padding-bottom: 30px;

    border-bottom: 1px solid #edeef1;
}


.accordion_item + .accordion_item
{
    padding-top: 60px;
}


.accordion_item .head
{
    position: relative;

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

    cursor: pointer;
}


.accordion_item .head > * + *
{
    margin-left: 28px;
}


.accordion_item .head .title
{
    font-size: var(--font_size_title_small);
    font-weight: 300;
    line-height: calc(100% + 10px);
}


.accordion_item .head .icon
{
    position: relative;
    top: 2px;

    width: 30px;
    min-width: 30px;
    height: 30px;

    transition: .2s linear;

    color: #ea5703;
    border: 1px solid;
}


.accordion_item .head .icon:before,
.accordion_item .head .icon:after
{
    position: absolute;

    display: block;

    width: 14px;
    height: 2px;
    margin: auto;

    content: '';

    background: currentColor;

    inset: 0;
}


.accordion_item .head .icon:after
{
    width: 2px;
    height: 14px;

    transition: opacity .2s linear;
}


.accordion_item .data
{
    display: none;

    padding-top: 20px;
    padding-bottom: 10px;
}


.accordion_item .head:hover .icon
{
    color: #999;
}


.accordion_item.active .head .icon:after
{
    opacity: 0;
}



/*----------------
    Mini modal
----------------*/
.modal_cont
{
    position: relative;
}


.mini_modal
{
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;

    visibility: hidden;

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

    opacity: 0;
}


.mini_modal.active
{
    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}



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

    width: 100%;
    padding: 40px 0;

    background: var(--bg);
}


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

    max-width: 1920px;
    padding: 0 100px;
}



header .logo
{
    display: block;

    text-decoration: none;

    color: currentColor;
}


header .logo img
{
    display: block;
}



header .menu
{
    margin-right: auto;
    margin-left: 98px;
}


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


header .menu_item > a
{
    font-family: var(--font_family2);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;

    position: relative;

    display: block;

    padding: 4px 0;

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

    color: currentColor;
}


header .menu_item > a:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 0;
    height: 1px;
    margin: auto;

    content: '';
    transition: width .3s linear;

    background: currentColor;
}


header .menu_item:hover > a,
header .menu_item > a.active
{
    color: #ea5703;
}


header .menu_item > a:hover:after,
header .menu_item > a.active:after
{
    width: 100%;
}



header .socials
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}


header .socials a
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

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

    color: #999;
}

header .socials a + a
{
    margin-left: 35px;
}


header .socials .icon
{
    display: block;
}


header .socials .ic_phone
{
    width: 21px;
    height: 22px;
}

header .socials .ic_telegram
{
    width: 26px;
    height: 22px;
}

header .socials .ic_whatsapp
{
    width: 22px;
    height: 22px;
}

header .socials .ic_email
{
    width: 24px;
    height: 18px;
}


header .socials a:hover,
header .socials a.active
{
    color: #ea5703;
}



header .search
{
    margin-left: 35px;
}


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

    width: 54px;
    height: 40px;

    border-radius: 3px;
    background-color: rgb(245, 245, 245);
}


header .search .btn .icon
{
    display: block;

    width: 22px;
    height: 22px;

    transition: color .2s linear;

    color: #ea5703;
}


header .search .btn:hover .icon
{
    color: #a0a0a0;
}


header .search .mini_modal
{
    top: -4px;
    right: -4px;
    left: auto;
}


header .search .mini_modal form
{
    position: relative;

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


header .search .mini_modal .icon
{
    position: absolute;
    z-index: 3;
    top: 0;
    right: 4px;
    bottom: 0;

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

    width: 54px;
    height: 40px;
    margin: auto 0;

    pointer-events: none;

    color: #ea5703;
    border-radius: 3px;
    background-color: rgb(245, 245, 245);
}


header .search .mini_modal .icon svg
{
    display: block;

    width: 22px;
    height: 22px;
}


header .search .mini_modal .clear_btn
{
    position: absolute;
    z-index: 3;
    top: 0;
    right: 2px;
    bottom: 0;

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

    width: 54px;
    height: 40px;
    margin: auto 0;

    transition: color .2s linear;

    color: #ea5703;
}


header .search .mini_modal .clear_btn svg
{
    display: block;

    width: 18px;
    height: 18px;
}


header .search .mini_modal .clear_btn:hover
{
    color: #999;
}


header .search .mini_modal .input.active ~ .icon
{
    display: none;
}

header .search .mini_modal .input.active ~ .clear_btn
{
    display: flex;
}



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

    width: 48px;
    height: 40px;
    margin-left: 10px;

    border-radius: 3px;
    background-color: rgb(245, 245, 245);
}


header .mob_menu_btn span
{
    position: relative;

    display: block;

    width: 20px;
    height: 1px;

    transition: background .2s linear;

    background: currentColor;
}


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

    display: block;

    width: 100%;
    height: 100%;

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

    background: currentColor;
}

header .mob_menu_btn span:after
{
    top: 6px;
}


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


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

    transform: rotate(45deg);
}

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

    transform: rotate(-45deg);
}



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

    order: 1;

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



/*------------
    Filter
------------*/
.mob_filter_btn
{
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;

    display: none;

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

    transition: background .2s linear;
    text-align: center;
    text-transform: uppercase;

    color: #fff;
    border-radius: 3px;
    background: #ea5703;
}


.mob_filter_btn:hover
{
    background: #d64e00;
}


.mob_filter_btn:active
{
    background: #c14600;
}



.filter
{
    border: 1px solid #edeef1;
    border-radius: 3px;
}


.filter .item
{
    padding: 20px;
}


.filter .item + .item
{
    border-top: 1px solid #edeef1;
}


.filter .item .name
{
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;

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

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


.filter .item .name span
{
    width: calc(100% - 20px);
}


.filter .item .name .icon
{
    position: relative;

    width: 10px;
    height: 10px;
    margin: 7px 0 7px auto;

    transition: color .2s linear;

    color: #ea5703;
}


.filter .item .name .icon:before,
.filter .item .name .icon:after
{
    position: absolute;

    display: block;

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

    content: '';

    background: currentColor;

    inset: 0;
}


.filter .item .name .icon:after
{
    width: 2px;
    height: 100%;

    transition: opacity .2s linear;
}


.filter .item .name:hover,
.filter .item .name:hover .icon
{
    color: #999;
}


.filter .item .name.active .icon:after
{
    opacity: 0;
}


.filter .item .data
{
    display: none;

    padding-top: 15px;
}


.filter .item .hide
{
    display: none;
}


.filter .item .hide,
.filter .item .field + .field
{
    margin-top: 15px;
}


.filter .item .range .fields
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}


.filter .item .range .field
{
    width: calc(50% - 19px);
}


.filter .item .range .sep
{
    width: 20px;
    height: 1px;

    background: #dadada;
}


.filter .item .range .input
{
    text-align: center;
}


.filter .item .spoler_btn
{
    font-size: 13px;
    line-height: 20px;

    margin-top: 10px;

    transition: color .2s linear;

    color: #999;
}


.filter .item .spoler_btn span + span,
.filter .item .spoler_btn.active span
{
    display: none;
}


.filter .item .spoler_btn:hover
{
    color: #ea5703;
}


.filter .item .spoler_btn.active span + span
{
    display: inline;
}


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


.filter .form .submit_btn
{
    width: calc(50% - 10px);
    padding: 0;
}


.filter .form .reset_btn
{
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;

    display: block;

    width: calc(50% - 10px);
    height: 48px;

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

    color: #ea5703;
    border: 1px solid;
    border-radius: 3px;
}


.filter .form .reset_btn:hover
{
    color: #999;
}


.filter .form .reset_btn:active
{
    color: var(--text_color);
}



/*---------------
    Page head
---------------*/
.page_head
{
    padding: 32px 0 40px;

    border-top: 1px solid #edeef1;
}



.breadcrumbs
{
    font-size: 14px;
    line-height: 26px;

    color: #999;
}


.breadcrumbs a
{
    transition: color .2s linear;
    text-decoration: none;

    color: currentColor;
}


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

    display: inline-block;

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

    vertical-align: middle;

    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #dadada;
}


.breadcrumbs a:hover
{
    color: #ea5703;
}



.page_title
{
    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 300;
    line-height: 100%;

    display: block;

    margin-top: 32px;
}



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


.block_head .title
{
    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 300;
    line-height: calc(100% + 10px);

    display: block;
}


.block_head .title.small
{
    font-size: var(--font_size_title_small);
}



/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: #dedfe3;
    --form_focus_color: #ea5703;
    --form_error_color: #fb3b3b;
    --form_border_radius: 3px;
    --form_bg_color: #fff;
    --form_placeholder_color: #999;
}


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

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

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

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


.form .cols
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}


.form .cols .col
{
    width: calc(50% - 20px);
}


.form .columns
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;

    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 > *.width1of3
{
    width: calc(33.333% - var(--form_columns_offset));
}

.form .columns > *.width2of3
{
    width: calc(66.666% - var(--form_columns_offset));
}

.form .columns > *.width3of3
{
    width: calc(100% - var(--form_columns_offset));
}


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


.form .field
{
    position: relative;
}


.form .input
{
    font-family: var(--font_family);
    font-size: var(--font_size);

    display: block;

    width: 100%;
    height: 48px;
    padding: 0 15px;

    transition: border-color .2s linear;

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

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


.form textarea
{
    font-family: var(--font_family);
    font-size: var(--font_size);
    line-height: 22px;

    display: block;

    width: 100%;
    height: 96px;
    padding: 12px 15px;

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

    color: var(--text_color);
    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 .error_text
{
    font-size: 13px;
    line-height: 22px;

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

    margin-top: 6px;

    color: var(--form_error_color);
}


.form .error_text .icon
{
    display: block;

    width: 18px;
    height: 18px;
    margin: 2px 0;
}


.form .error_text span
{
    align-self: center;

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


.form .file
{
    margin-top: -15px;
    margin-bottom: 24px;
}


.form .file input
{
    display: none;
}


.form .file label
{
    font-family: var(--font_family2);
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;

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

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

    color: #ea5703;
}


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

    width: 19px;
    height: 22px;
}


.form .file label span
{
    overflow: hidden;

    width: calc(100% - 28px);

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


.form .file label:hover
{
    color: #999;
}


.form .checkbox
{
    font-size: 14px;
    line-height: 22px;

    position: relative;

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

    min-height: 22px;
    padding-left: 29px;

    cursor: pointer;
}


.form .checkbox input
{
    display: none;
}


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

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

    width: 20px;
    height: 20px;

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


.form .checkbox .check svg
{
    display: block;

    width: 14px;
    height: 7px;

    transition: opacity .2s linear;

    opacity: 0;
}


.form .checkbox a
{
    transition: color .2s linear;
    text-decoration: none;

    color: #ea5703;
}


.form .checkbox a:hover
{
    color: #999;
}


.form .checkbox:hover .check svg
{
    opacity: .3;
}


.form .checkbox input:checked ~ .check svg
{
    opacity: 1;
}


.form .submit_btn
{
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;

    display: block;

    height: 48px;
    padding: 0 20px;

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

    color: #fff;
    border-radius: 3px;
    background: #ea5703;
}


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


.form .submit_btn:active
{
    background: #c14600;
}



/*----------------
    Typography
----------------*/
.text_block
{
    font-size: var(--font_size);
    line-height: calc(100% + 10px);
}


.text_block > *,
.text_block .cols .col > *
{
    margin-bottom: 26px;
}


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

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


.text_block h2
{
    font-size: var(--font_size_title_small);
    font-weight: 300;
    line-height: calc(100% + 10px);
}


.text_block h3
{
    font-size: 30px;
    font-weight: 300;
    line-height: calc(100% + 10px);
}


.text_block * + h2,
.text_block * + h3,
.text_block * + h4,
.text_block * + h5,
.text_block * + h6
{
    margin-top: 48px;
}


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


.text_block img
{
    display: block;

    max-width: 100%;
}


.text_block blockquote,
.text_block q
{
    font-size: 28px;
    font-weight: 300;
    line-height: calc(100% + 10px);

    display: block;

    margin-top: 48px;
    margin-bottom: 48px;
    margin-left: 60px;
    padding-left: 49px;

    border-left: 1px solid #ea5703;
}


.text_block a
{
    text-decoration: none;

    color: #ea5703;
}


.text_block .slider
{
    width: calc(100vw - var(--scroll_width));
    margin-top: 48px;
    margin-right: calc((100vw - 1280px) / -2 + 5px);
    margin-bottom: 48px;
    margin-left: calc((100vw - 1280px) / -2 + 5px);
}


.text_block .slider .swiper-horizontal > .swiper-pagination-bullets,
.text_block .slider .swiper-pagination-bullets.swiper-pagination-horizontal,
.text_block .slider .swiper-pagination-custom,
.text_block .slider .swiper-pagination-fraction
{
    left: 0;

    justify-content: center;

    width: 100%;
    margin: 0;
}


.text_block .slider .image
{
    position: relative;

    overflow: hidden;

    min-height: 220px;
    padding-bottom: 36.458%;

    background: #ddd;
}


.text_block .slider .image img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.text_block .cols
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

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


.text_block .cols .col
{
    width: calc(50% - 20px);
}


.text_block ul li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 28px;

    list-style-type: none;
}


.text_block ul li + li
{
    margin-top: 10px;
}


.text_block ul li:before
{
    position: absolute;
    top: 7px;
    left: 2px;

    display: block;

    width: 9px;
    height: 10px;

    content: '';

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


.text_block ol
{
    counter-reset: li;
}


.text_block ol li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 28px;

    list-style-type: none;
}

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


.text_block ol li:before
{
    font-weight: 700;

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

    content: counter(li);
    counter-increment: li;

    color: #ea5703;
}


.text_block hr
{
    width: calc(100vw - var(--scroll_width));
    height: 1px;
    margin-top: 70px;
    margin-right: calc((100vw - 1280px) / -2 + 5px);
    margin-bottom: 70px;
    margin-left: calc((100vw - 1280px) / -2 + 5px);

    border: none;
    background: #edeef1;
}


.text_block table
{
    width: 100%;

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


.text_block table th
{
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;

    padding: 0 15px 10px;

    text-align: left;
    vertical-align: middle;
    text-transform: uppercase;
}


.text_block table td
{
    font-size: 14px;
    line-height: 16px;

    padding: 10px 15px;

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


.text_block table tbody tr:nth-child(2n+1) td
{
    background: #f4f5f7;
}



/*-----------------
    Main slider
-----------------*/
.main_slider
{
    background: #e7e9ed;
}


.main_slider .swiper-slide
{
    position: relative;

    overflow: hidden;
}


.main_slider .img
{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-position: 100% 50%;
    object-fit: cover;
}


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

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

    min-height: 700px;
    padding-top: 60px;
    padding-bottom: 60px;
}


.main_slider .data
{
    width: 692px;
    max-width: 100%;
}


.main_slider .title
{
    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    font-weight: 300;
    line-height: calc(100% + 10px);
}


.main_slider .desc
{
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;

    position: relative;

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

    margin-top: 40px;
    margin-left: -19px;
    padding-top: 44px;

    border-top: 1px solid #ea5703;
}


.main_slider .desc:before
{
    position: absolute;
    top: -1px;
    right: 100%;

    display: block;

    width: 100vw;
    height: 1px;

    content: '';

    background: #ea5703;
}


.main_slider .desc > *
{
    margin-left: 19px;
}


.main_slider .desc .sep
{
    width: 2px;
    height: 14px;

    background: #ea5703;
}

.main_slider .desc .sep.hide
{
    display: none;
}


.main_slider .link
{
    display: flex;

    margin-top: 40px;
}


.main_slider .link a
{
    font-family: var(--font_family2);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;

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

    height: 54px;
    padding: 0 20px;

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

    color: #fff;
    border-radius: 3px;
    background: #ea5703;
}


.main_slider .link .icon
{
    display: block;

    width: 12px;
    height: 10px;
    margin-left: 15px;
}


.main_slider .link a:hover
{
    background: #d64e00;
}

.main_slider .link a:active
{
    background: #c14600;
}



/*----------------
    About info
----------------*/
.about_info .row
{
    align-content: stretch;
    align-items: stretch;
}


.about_info .image
{
    position: relative;

    width: calc(50% - 20px);
    padding-right: 120px;
    padding-bottom: 82px;
}


.about_info .image img
{
    position: relative;
    z-index: 3;

    display: block;

    width: 100%;
}


.about_info .image:after
{
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;

    display: block;

    width: 290px;
    max-width: 100%;
    height: 330px;
    max-height: 100%;

    content: '';

    background: #f4f5f7;
}


.about_info .text_block
{
    position: relative;

    width: calc(50% - 20px);
    margin-left: auto;
    padding-bottom: 40px;
}


.about_info .text_block:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 100vw;
    height: 1px;

    content: '';

    background: #ea5703;
}



/*--------------
    Products
--------------*/
.products .swiper
{
    overflow: visible !important;
}


.products .swiper-slide
{
    position: relative;

    visibility: hidden;

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

    opacity: 0;
}

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

    pointer-events: auto;

    opacity: 1;
}


.products .swiper-button-next,
.products .swiper-button-prev
{
    margin-top: -23px;
}


.products .row
{
    align-content: stretch;
    align-items: stretch;

    margin-bottom: -40px;
    margin-left: -40px;
}


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


.content .products .row > *
{
    width: calc(33.333% - 40px);
}


.products .product
{
    position: relative;

    display: block;

    text-decoration: none;

    color: currentColor;
}


.products .product:before
{
    position: absolute;
    z-index: 1;
    top: -10px;
    left: -10px;

    display: block;

    width: calc(100% + 20px);
    height: calc(100% + 20px);

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

    opacity: 0;
    background: #f4f5f7;
}


.products .product > *
{
    position: relative;
    z-index: 2;
}


.products .product .stickers
{
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;

    display: flex;
    flex-direction: column;
}


.products .product .sticker
{
    font-size: 10px;
    font-weight: 500;
    line-height: 17px;

    display: inline-block;

    padding: 0 4px;

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

    color: #ea5703;
    border: 1px solid;
    border-radius: 3px;
    background-color: rgb(255, 255, 255);
}


.products .product .sticker.dark
{
    color: #fff;
    border-color: #333;
    background: #333;
}


.products .product .thumb
{
    position: relative;

    overflow: hidden;

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

    background: #fff;
}


.products .product .thumb img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


.products .product .name
{
    font-weight: 500;
    line-height: calc(100% + 10px);

    transition: color .2s linear;
}


.products .product .status
{
    font-size: 14px;
    line-height: 26px;

    margin-top: 16px;

    color: #999;
}


.products .product:hover:before
{
    opacity: 1;
}

.products .product:hover .name
{
    color: #ea5703;
}



/*------------------
    Areas of use
------------------*/
.areas_of_use .cont
{
    position: relative;
    z-index: 3;
}


.areas_of_use .bg
{
    position: absolute;
    z-index: 1;
    top: -207px;
    right: 50%;

    display: block;

    width: 761px;
    height: 439px;
    margin-right: -960px;

    pointer-events: none;
}


.areas_of_use .row
{
    align-content: stretch;
    align-items: stretch;

    margin-bottom: -10px;
    margin-left: -10px;
}


.areas_of_use .row > *
{
    width: calc(16.666% - 10px);
    margin-bottom: 10px;
    margin-left: 10px;
}


.areas_of_use .item
{
    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    color: currentColor;
    background: #f4f5f7;
}


.areas_of_use .item .thumb
{
    position: relative;

    overflow: hidden;

    padding-bottom: 100%;

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


.areas_of_use .item .thumb:before
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

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

    opacity: 0;
    background: rgba(51,51,51,.7);
}


.areas_of_use .item .thumb .icon
{
    position: absolute;
    z-index: 3;

    display: block;

    width: 22px;
    height: 26px;
    margin: auto;

    transition: opacity .2s linear;

    opacity: 0;
    color: #fff;

    inset: 0;
}


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

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.areas_of_use .item .name
{
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;

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

    min-height: 95px;
    padding: 20px;
}


.areas_of_use .row.big
{
    align-content: stretch;
    align-items: stretch;

    margin-bottom: -40px;
    margin-left: -40px;
}


.areas_of_use .row.big > *
{
    width: calc(33.333% - 40px);
    margin-bottom: 40px;
    margin-left: 40px;
}


.areas_of_use .row.big .item
{
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;

    border-radius: 3px;
}


.areas_of_use .row.big .item .thumb
{
    width: 50%;
    margin: 0;
    padding-bottom: 50%;
}


.areas_of_use .row.big .item .name
{
    width: 50%;
}


.areas_of_use .item:hover
{
    color: #fff;
    background: #ea5703;
}


.areas_of_use .item:hover .thumb:before,
.areas_of_use .item:hover .thumb .icon
{
    opacity: 1;
}



/*------------
    Videos
------------*/
.videos .cont
{
    position: relative;
    z-index: 3;
}


.videos .bg
{
    position: absolute;
    z-index: 1;
    bottom: -260px;
    left: 50%;

    display: block;

    width: 761px;
    height: 439px;
    margin-left: -1288px;

    pointer-events: none;
}


.videos .swiper
{
    overflow: visible !important;
}


.videos .swiper-slide
{
    position: relative;

    visibility: hidden;

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

    opacity: 0;
}

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

    pointer-events: auto;

    opacity: 1;
}


.videos .swiper-button-next,
.videos .swiper-button-prev
{
    margin-top: -23px;
}


.videos .item
{
    position: relative;

    display: block;

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

    color: currentColor;
}


.videos .item > *
{
    position: relative;
    z-index: 2;
}


.videos .item:before
{
    position: absolute;
    z-index: 1;
    top: -10px;
    left: -10px;

    display: block;

    width: calc(100% + 20px);
    height: calc(100% + 20px);

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

    opacity: 0;
    background: #fff;
}


.videos .item .thumb
{
    position: relative;

    overflow: hidden;

    padding-bottom: 75%;

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


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

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.videos .item .thumb .icon
{
    position: absolute;
    z-index: 3;

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

    width: 70px;
    height: 70px;
    margin: auto;
    padding-left: 4px;

    transition: .2s linear;

    color: #ea5703;
    border-radius: 50%;
    background: #fff;

    inset: 0;
}


.videos .item .thumb .icon svg
{
    display: block;

    width: 21px;
    height: 20px;
}


.videos .item .name
{
    font-weight: 500;
    line-height: calc(100% + 10px);

    margin-top: 16px;
}


.videos .item:hover
{
    color: #ea5703;
}


.videos .item:hover:before
{
    opacity: 1;
}


.videos .item:hover .thumb .icon
{
    color: #fff;
    background: #ea5703;
}



/*--------------
    Articles
--------------*/
.articles .row
{
    align-content: stretch;
    align-items: stretch;

    margin-bottom: -40px;
    margin-left: -40px;
}


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


.articles .article
{
    position: relative;

    display: block;

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

    color: currentColor;
}


.articles .article > *
{
    position: relative;
    z-index: 2;
}


.articles .article:before
{
    position: absolute;
    z-index: 1;
    top: -10px;
    left: -10px;

    display: block;

    width: calc(100% + 20px);
    height: calc(100% + 20px);

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

    opacity: 0;
    background: #f4f5f7;
}


.articles .article .thumb
{
    position: relative;

    overflow: hidden;

    margin-bottom: 12px;
    padding-bottom: 82.758%;

    background: #ddd;
}


.articles .article .thumb img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.articles .article .date
{
    font-size: 12px;
    line-height: 26px;

    margin-bottom: 8px;

    color: #999;
}


.articles .article .name
{
    font-weight: 500;
    line-height: calc(100% + 10px);
}



.articles .article:hover
{
    color: #ea5703;
}


.articles .article:hover:before
{
    opacity: 1;
}



/*-----------------
    Bottom btns
-----------------*/
.bottom_btns .row
{
    align-content: stretch;
    align-items: stretch;

    margin-bottom: -40px;
    margin-left: -40px;
}


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


.bottom_btns .btn
{
    font-family: var(--font_family2);
    font-size: 20px;
    line-height: 28px;

    position: relative;

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

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

    transition: .2s linear;
    text-align: left;

    border-radius: 3px;
    background-color: #f4f5f7;
    background-repeat: no-repeat;
    background-position: 0 100%;
}


.bottom_btns .btn.callback_btn
{
    background-image: url(../images/bg_callback_btn.png);
}

.bottom_btns .btn.order_btn
{
    background-image: url(../images/bg_order_btn.png);
    background-position: 100% 0;
    background-size: auto 100%;
}

.bottom_btns .btn.consult_btn
{
    background-image: url(../images/bg_consult_btn.png);
    background-position: 100% 100%;
}


.bottom_btns .btn.callback_btn:hover
{
    background-image: url(../images/bg_callback_btn_h.png);
}

.bottom_btns .btn.order_btn:hover
{
    background-image: url(../images/bg_order_btn_h.png);
}

.bottom_btns .btn.consult_btn:hover
{
    background-image: url(../images/bg_consult_btn_h.png);
}


.bottom_btns .btn .icon
{
    position: absolute;
    bottom: 20px;
    left: 0;

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

    min-width: 70px;
    height: 50px;
    padding-left: 16px;

    color: #ea5703;
    border-radius: 0 25px 25px 0;
    background: #fff;
}


.bottom_btns .btn .icon svg
{
    display: block;
}


.bottom_btns .btn .ic_callback svg
{
    width: 25px;
    height: 26px;
}

.bottom_btns .btn .ic_order svg
{
    width: 26px;
    height: 27px;
}

.bottom_btns .btn .ic_consult svg
{
    width: 26px;
    height: 26px;
}


.bottom_btns .btn:hover
{
    color: #fff;
    background-color: #ea5703;
}



/*--------------------
    Sub categories
--------------------*/
.sub_categories
{
    margin-bottom: 40px;
}


.sub_categories .row
{
    margin-bottom: -10px;
    margin-left: -10px;
}


.sub_categories .row > *
{
    margin-bottom: 10px;
    margin-left: 10px;
}


.sub_categories a
{
    font-size: 14px;
    line-height: 22px;

    display: block;

    padding: 8px 13px;

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

    color: #999;
    border: 1px solid #f4f5f7;
    border-radius: 3px;
    background: #f4f5f7;
}


.sub_categories a:hover,
.sub_categories a.active
{
    color: #ea5703;
    border-color: #ea5703;
    background: none;
}



/*-------------
    Catalog
-------------*/
.catalog .row
{
    align-content: stretch;
    align-items: stretch;

    margin-bottom: -40px;
    margin-left: -40px;
}


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


.catalog .category
{
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;

    display: block;

    padding-top: 96px;

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

    color: currentColor;
}


.catalog .category .thumb
{
    position: relative;

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

    transition: background .2s linear;

    border-radius: 3px;
    background: #f4f5f7;
}


.catalog .category .thumb img
{
    position: absolute;
    bottom: 30px;
    left: 50%;

    display: block;

    max-width: 90%;
    max-height: calc(100% + 96px);

    transition: transform .2s linear;
    transform: translateX(-50%);
}


.catalog .category:hover
{
    color: #ea5703;
}


.catalog .category:hover .thumb
{
    background: #e6e7e9;
}


.catalog .category:hover .thumb img
{
    transform: translate(-50%, -20px);
}



/*-------------------
    Products head
-------------------*/
.products_head
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-bottom: 24px;
}


.products_head > * + *
{
    margin-left: 56px;
}


.products_head select
{
    display: none;
}


.products_head .nice-select
{
    position: relative;

    display: block;

    cursor: pointer;
}


.products_head .nice-select:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    display: block;

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

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

    border-top: 5px solid #ea5703;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}


.products_head .nice-select.open:after
{
    transform: rotate(180deg);
}


.products_head .nice-select .current
{
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;

    display: block;
    overflow: hidden;

    padding-right: 16px;

    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.products_head .nice-select-dropdown
{
    position: absolute;
    z-index: 9;
    top: 100%;
    left: 0;

    visibility: hidden;
    overflow: hidden;

    width: 100%;
    width: 234px;
    margin-top: 8px;

    transition: .2s linear;
    transform: none;

    opacity: 0;
    border: 1px solid rgb(153, 153, 153);
    border-radius: 3px;
    background: #fff;
}

.products_head .nice-select.open .nice-select-dropdown
{
    visibility: visible;

    transform: none;

    opacity: 1;
}


.products_head .nice-select .list
{
    overflow: auto;
    overflow: hidden;

    border-radius: 0;
}


.products_head .nice-select .list .option
{
    font-size: 14px;
    line-height: 22px;

    display: block;

    padding: 9px 14px;

    list-style-type: none;

    cursor: pointer;
    transition: .2s linear;
    white-space: nowrap;

    background: none;
}

.products_head .nice-select .list .option:hover
{
    background: #f4f5f7;
}

.products_head .nice-select .list .option.selected
{
    color: #ea5703;
    background: none;
}

.products_head .nice-select .list .option:empty
{
    display: none;
}



/*------------------
    Product info
------------------*/
.product_info .images
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;

    width: calc(50% - 20px);
}


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


.product_info .images .thumbs .swiper
{
    overflow: visible !important;

    height: 454px;
    padding: 77px 0;
}


.product_info .images .thumbs .swiper-slide
{
    position: relative;

    visibility: hidden;

    height: 100px;

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

    opacity: 0;
}


.product_info .images .thumbs .swiper-slide.visible
{
    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}


.product_info .images .thumbs .swiper-button-next,
.product_info .images .thumbs .swiper-button-prev
{
    width: 100%;
    height: 77px;
    margin: 0;
}


.product_info .images .thumbs .swiper-button-prev
{
    left: 0;
}

.product_info .images .thumbs .swiper-button-next
{
    top: auto;
    right: 0;
    bottom: 0;
}


.product_info .images .thumbs .swiper-button-next .icon,
.product_info .images .thumbs .swiper-button-prev .icon
{
    display: block;

    width: 13px;
    height: 20px;
}

.product_info .images .thumbs .swiper-button-prev .icon
{
    transform: rotate(-90deg);
}

.product_info .images .thumbs .swiper-button-next .icon
{
    transform: rotate(90deg);
}


.product_info .images .thumbs .image
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    height: 100px;
    padding: 9px;

    cursor: pointer;
    transition: .2s linear;

    opacity: .3;
    border: 1px solid transparent;
    border-radius: 3px;
}


.product_info .images .thumbs .image img
{
    display: block;

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


.product_info .images .thumbs .image:hover
{
    opacity: 1;
}


.product_info .images .thumbs .swiper-slide-thumb-active .image
{
    opacity: 1;
    border-color: var(--text_color);
}


.product_info .images .big
{
    position: relative;

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


.product_info .images .swiper-horizontal > .swiper-pagination-bullets,
.product_info .images .swiper-pagination-bullets.swiper-pagination-horizontal,
.product_info .images .swiper-pagination-custom,
.product_info .images .swiper-pagination-fraction
{
    bottom: 0;
    left: 0;

    display: none;
    justify-content: center;

    width: 100%;
}


.product_info .images .swiper-pagination-bullet
{
    background: #ececec;
}

.product_info .images .swiper-pagination-bullet:hover
{
    background: #ea5703;
}

.product_info .images .swiper-pagination-bullet.active
{
    background: #333;
}


.product_info .images .big .image
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    height: 470px;
}


.product_info .images .big .image img
{
    display: block;

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


.product_info .stickers
{
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;

    display: flex;
    flex-direction: column;
}


.product_info .sticker
{
    font-size: 10px;
    font-weight: 500;
    line-height: 17px;

    display: inline-block;

    padding: 0 4px;

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

    color: #ea5703;
    border: 1px solid;
    border-radius: 3px;
    background-color: rgb(255, 255, 255);
}


.product_info .sticker.dark
{
    color: #fff;
    border-color: #333;
    background: #333;
}


.product_info .data
{
    width: calc(50% - 20px);
    margin-left: auto;
}


.product_info .articul
{
    font-size: 14px;
    line-height: 26px;

    color: #999;
}


.product_info .desc
{
    margin-top: 20px;
}


.product_info .buy
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-top: 36px;
    padding: 30px 0;

    border-top: 1px solid #edeef1;
    border-bottom: 1px solid #edeef1;
}


.product_info .price
{
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;

    white-space: nowrap;
}


.product_info .status
{
    font-size: 14px;
    line-height: 22px;

    margin-left: 20px;
    padding-left: 19px;

    color: #999;
    border-left: 1px solid #edeef1;
}


.product_info .buy_btn
{
    font-family: var(--font_family2);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;

    height: 48px;
    margin-left: 36px;
    padding: 0 20px;

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

    color: #fff;
    border-radius: 3px;
    background: #ea5703;
}


.product_info .buy_btn:hover
{
    background: #d64e00;
}


.product_info .buy_btn:active
{
    background: #c14600;
}



/*----------------------
    Product features
----------------------*/
.product_features
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}


.product_features .col
{
    width: calc(50% - 20px);
}


.product_features .col > *
{
    font-size: 14px;
    line-height: 18px;

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

    padding: 9px 15px;

    border-radius: 3px;
}


.product_features .col > *:nth-child(2n+1)
{
    background: #f4f5f7;
}


.product_features .label
{
    width: 280px;
    max-width: 100%;
}


.product_features .val
{
    width: calc(100% - 300px);
}



/*-----------
    Files
-----------*/
.files .section + .section
{
    margin-top: 30px;
}


.files .title
{
    font-weight: 600;
    line-height: 22px;

    margin-bottom: 10px;
}


.files .row
{
    align-content: stretch;
    align-items: stretch;

    margin-bottom: -20px;
    margin-left: -20px;
}


.files .row > *
{
    margin-bottom: 20px;
    margin-left: 20px;
}


.files .file
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    padding: 10px 15px;

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

    color: currentColor;
    border: 1px solid #f4f5f7;
    border-radius: 3px;
    background: #f4f5f7;
}


.files .file .icon
{
    width: 30px;
    height: 38px;
    margin-right: 13px;
}


.files .file .icon img
{
    display: block;

    width: 30px;
    height: 38px;
}


.files .file .icon img + img
{
    display: none;
}


.files .file .icon + *
{
    align-self: center;

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

    white-space: nowrap;
}


.files .file .name
{
    font-size: 14px;
    line-height: 22px;
}


.files .file .info
{
    font-size: 13px;
    line-height: 20px;

    color: #999;
}


.files .file:hover
{
    border-color: #ea5703;
    background: none;
}


.files .file:hover .icon img
{
    display: none;
}

.files .file:hover .icon img + img
{
    display: block;
}



/*------------
    Stats
------------*/
.stats .row
{
    margin-bottom: -40px;
    margin-left: -40px;
}


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


.stats .item
{
    font-family: var(--font_family2);
    font-size: 20px;
    line-height: 30px;

    text-align: center;
}


.stats .item .val
{
    font-size: 80px;
    font-weight: 300;
    line-height: 60px;

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

    white-space: nowrap;
}


.stats .item .val small
{
    font-size: var(--font_size_title_small);
    font-weight: 400;
}



/*---------
    FAQ
---------*/
.FAQ .accordion_item
{
    padding: 0;

    border-top: 1px solid #edeef1;
    border-bottom: 1px solid #edeef1;
}


.FAQ .accordion_item + .accordion_item
{
    margin-top: -1px;
    padding: 0;
}


.FAQ .accordion_item .head
{
    padding: 20px 0;
}


.FAQ .accordion_item .head > * + *
{
    margin-left: 22px;
}


.FAQ .accordion_item .head .title
{
    font-size: var(--font_size);
    font-weight: 500;
    line-height: calc(100% + 10px);

    transition: color .2s linear;
}


.FAQ .accordion_item .head .icon
{
    top: 0;
}


.FAQ .accordion_item .data
{
    padding-top: 0;
    padding-bottom: 24px;
    padding-left: 52px;
}


.FAQ .accordion_item .head:hover .title
{
    color: #999;
}


.FAQ .accordion_item.active .head .title
{
    font-weight: 700;
}



/*-------------------
    Contacts info
-------------------*/
.contacts_info
{
    padding: 108px 0;

    background: #ddd;
}


.contacts_info .cont
{
    position: relative;
    z-index: 3;

    pointer-events: none;
}


.contacts_info .map
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

            filter: grayscale(1);
    -webkit-filter: grayscale(1);
}


.contacts_info .data
{
    width: 480px;
    max-width: 100%;
    padding: 40px;

    text-align: center;
    pointer-events: auto;

    border-radius: 3px;
    background: #fff;
}


.contacts_info .title
{
    font-family: var(--font_family2);
    font-size: 30px;
    font-weight: 300;
    line-height: calc(100% + 10px);

    margin-bottom: 20px;
}


.contacts_info .phones
{
    font-size: 18px;
    line-height: 30px;

    position: relative;

    margin-top: 20px;
}


.contacts_info .phones .icon
{
    display: block;

    width: 22px;
    height: 29px;
    margin: 0 auto 20px;

    color: #ea5703;
}


.contacts_info .phones .row
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}


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

    color: currentColor;
}


.contacts_info .phones .sep
{
    width: 1px;
    height: 20px;
    margin: 0 20px;

    background: #edeef1;
}


.contacts_info .phones .ic_whatsapp
{
    display: block;

    width: 22px;
    height: 22px;
    margin-left: 8px;

    color: #999;
}


.contacts_info .location
{
    font-size: 18px;
    line-height: 30px;

    position: relative;

    margin-top: 20px;
}


.contacts_info .location .icon
{
    display: block;

    width: 22px;
    height: 29px;
    margin: 0 auto 20px;

    color: #ea5703;
}


.contacts_info .time
{
    position: relative;

    margin-top: 20px;
    padding-top: 25px;
}


.contacts_info .time:before
{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    display: block;

    width: 100px;
    height: 1px;
    margin: 0 auto;

    content: '';

    background: #edeef1;
}



/*------------
    Footer
------------*/
footer
{
    padding: 50px 0 60px;

    color: #d9d9d9;
    background: #333;
}


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



footer .logo img
{
    display: block;

    max-width: 100%;
}



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

    margin-top: 30px;

    color: #999;
}



footer .privacy_policy
{
    font-size: 13px;
    line-height: 22px;

    margin-top: 20px;

    color: #ea5703;
}


footer .privacy_policy a
{
    transition: color .2s linear;
    text-decoration: none;

    color: currentColor;
}


footer .privacy_policy a:hover
{
    color: #d9d9d9;
}



footer .socials
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-top: 30px;
}


footer .socials a
{
    display: block;

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

    color: #747474;
}

footer .socials a + a
{
    margin-left: 40px;
}


footer .socials .icon
{
    display: block;
}


footer .socials .ic_youtube
{
    width: 24px;
    height: 17px;
}

footer .socials .ic_telegram
{
    width: 20px;
    height: 17px;
}

footer .socials .ic_whatsapp
{
    width: 20px;
    height: 20px;
}


footer .socials a:hover
{
    color: #ea5703;
}



footer .title
{
    font-weight: 500;
    line-height: 24px;

    margin-bottom: 20px;

    text-transform: uppercase;

    color: #ea5703;
}



footer .links .items
{
    font-size: 14px;
    line-height: 22px;
}


footer .links .items > * + *
{
    margin-top: 8px;
}


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

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

    color: currentColor;
}


footer .links .items a:hover,
footer .links .items a.active
{
    color: #ea5703;
}



footer .contacts
{
    display: flex;
    flex-direction: column;

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


footer .contacts > * + *
{
    margin-top: 8px;
}

footer .contacts > *.title + *
{
    margin-top: 0;
}


footer .contacts .phone,
footer .contacts .email,
footer .contacts .location
{
    font-size: 14px;
    line-height: 22px;

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


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

    width: 18px;
    height: 18px;

    color: #ea5703;
}


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


footer .contacts .phone .icon
{
    width: 15px;
    height: 16px;
}

footer .contacts .email .icon
{
    width: 16px;
    height: 13px;
}

footer .contacts .location .icon
{
    width: 14px;
    height: 18px;
}


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


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

    color: currentColor;
}



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

    margin-top: auto;

    color: #999;
}


footer .creator a
{
    text-decoration: none;

    color: currentColor;
}


footer .creator span
{
    transition: color .2s linear;

    color: #ea5703;
}


footer .creator a:hover span
{
    color: #d9d9d9;
}



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

    width: 600px;
    max-width: 100%;
    padding: 40px 100px 45px;

    color: var(--text_color);
    border-radius: 3px;
    background: #fff;
}


.modal_title
{
    font-size: 28px;
    font-weight: 300;
    line-height: calc(100% + 10px);

    margin-bottom: 30px;

    text-align: center;
}


.modal .form .agree
{
    margin-top: -10px;
}


.modal .form .submit_btn
{
    margin-right: auto;
    margin-left: auto;
}