@charset "UTF-8";

/***** #Montserrat fonts *****/
@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/opensans/opensans_variable.ttf') format('truetype'),
        url('../fonts/opensans/opensans_italic_variable.ttf') format('truetype');
    font-weight: 300 900;
    font-stretch: 1% 100%;
    font-style: normal, italic;
    font-display: swap;
}
/* 
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/manrope_variable.ttf') format('truetype');
    font-weight: 300 900;
    font-stretch: 1% 100%;
    font-style: normal;
    font-display: swap;
} */

html {height: 100%;}
body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: normal;
    font-family: 'OpenSans';
    line-height: 1.6;
    color: #002338;
    background-color: #FEFEFE;
    min-width: 320px;
    margin: unset;
}

h1,.h1,
h2,.h2,
h3,.h3,
h4,.h4,
h5,.h5,
h6,.h6{
    display: block;
    position: relative;
    font-family: inherit;
    color: var(--body-text);
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}
h1,.h1{font-size: 60px; margin-bottom: 40px;}
h2,.h2{font-size: 55px; margin-bottom: 50px;}
h3,.h3{font-size: 45px; margin-bottom: 30px;}
h4,.h4{font-size: 22px;}
h5,.h5{font-size: 20px;}
h6,.h6{font-size: 18px;}
input:focus-visible {outline: unset;}
a {
    color: inherit;
    text-decoration: unset;
    transition: all .3s ease;
}
p {
    margin: unset;
    margin-bottom: 16px;
}
p:last-child {margin-bottom: unset;}
.to_top {
    position: fixed;
    bottom: 100px;
    right: 85px;
    width: 50px;
    height: 50px;
    border: 1px solid #007BC1;
    border-radius: 5px;
    opacity: 0;
    z-index: -99;
    transition: .5s;
    overflow: hidden;
    cursor: pointer;
}

.to_top.show {
    opacity: 1;
    z-index: 10;
}

.to_top svg {
    transition: .3s;
}

.lazy {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-loaded {
    opacity: 1;
}

.placeholder {
    opacity: 1;
}

/* HS Header */

.hs_header {
    position: sticky;
    top: 0;
    background-color: #FEFEFE;
    box-shadow: 0px 5px 24px 0px rgba(0, 33, 81, 0.06);
    z-index: 99;
}
.hs_header_container {background-color: #FEFEFE;}
.hs_header_right_section {gap: 60px;}
.header_contact_item {gap: 7px;}
.header_contact_item_inner {gap: 2px;justify-content: space-between;}
.header_contact_item svg {transition: .3s;color: #007BC1;}
.header_contact_item_ttl {font-size: 14px;}
.header_contact_item_link {font-weight: 600;font-size: 18px;}

/* HS Header */

/* HS Btns */

.hs_read_more {
    gap: 10px;
    color: #007BC1;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: .5s;
}

.hs_btn {
    width: 250px;
    height: 50px;
    cursor: pointer;
    border: 1px solid;
    box-sizing: border-box;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 400;
    text-decoration: unset;
    text-align: center;
}

.hs_main_btn {
    color: #FEFEFE;
    background-color: var(--basic-company);
    border-color: var(--basic-company);
}

.hs_transparent_btn {
    border-color: #FEFEFE;
    color: #FEFEFE;
    background-color: #00051273;
}
.hs_border_btn {
    border-color: var(--basic-company);
    color: var(--basic-company);
    background-color: transparent;
}
.hs_download_btn {
    color: #FEFEFE;
    background-color: #3E7F00;
    border-color: #3E7F00;
    gap: 3px;
    padding: 0 22px;
    width: unset;
}

.hs_btn_alt {
    border-color: #007BC1;
    color: #007BC1;
}
/* HS Btns */


/* Advantages */
.advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 10;
    border: 1px solid #DADADA;
    border-radius: 10px;
    padding: 50px 0;
}

.advantages__preview {
    text-align: center;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.advantages__item:not(:last-child) .advantages__preview{
    border-right: 1px solid;
    border-color: #DADADA;
}
.banner_advantages__preview.d-flex.align-items-center {flex-direction: column;}
.banner_advantages__title {
    font-size: 60px;
    font-weight: 600;
    color: var(--body-text);
}
.banner_advantages__description {
    font-size: 20px;
    font-weight: 400;
}
/* Advantages */


/* HS Search */
.search_input {
    width: 100%;
    height: 50px;
    padding: 0 50px 0 20px;
    border: unset;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.active_search .search_input {
    border-bottom: unset;
    border-radius: 5px 5px 0 0;
}

.search_input::placeholder {
    color: #A5A5A5;
}

.hs_search_btn {
    position: absolute;
    right: 15px;
    top: 0;
    height: 100%;
    color: var(--border-color-dark);
    background-color: transparent;
    border: none;
}

.search_form_inner {
    width: 100%;
    border-radius: 5px;
    background: #FEFEFE;
    border: 1px solid var(--border-color-light);
    box-shadow: var(--shadow-color);
    transition: .3s;
    position: relative;
    height: 50px;
    min-width: 310px;
}

.search_form_inner.active_search {
    border-bottom: unset;
    border-radius: 5px 5px 0 0;
}

.autocomplete-suggestions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100% !important;
    padding: 15px 20px 20px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0px 10px 25px 0px #00304C2B;
    border: 1px solid #E7ECF1;
    border-top: unset;
    border-radius: 0px 0px 5px 5px;
    z-index: 1 !important;
    left: 0px;
    overflow: auto;
    top: 100%;
}
.autocomplete-suggestion:nth-child(10){display: none;}
.search__button_autocomlete {
    border: none;
    background: transparent;
    width: max-content;
    padding: 0;
    color: var(--basic-company);
    border-bottom: 1px solid var(--basic-company);
    cursor: pointer;
    transition: all .5s ease;
    font-size: 16px;
}
.search__button_autocomlete:hover{border-bottom: 1px solid transparent;}

.autocomplete-suggestions:after {
    content: '';
    width: calc(100% - 20px);
    height: 1px;
    left: 10px;
    background: #BCC6D1;
    position: absolute;
    top: 0;
}

.autocomplete-suggestion {
    color: #A5A5A5;
}

.autocomplete-suggestion strong {
    color: #002338;
    font-weight: 600;
}

.i_active_search {
    display: none;
}

.active_search .i_active_search {
    display: block;
}

.active_search .i_close_search {
    display: none;
}

/* HS Search */

/* HS Main menu */

.header_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: unset;
    margin: unset;
    list-style: none;
}

.header_menu_eventer {
    gap: 7px;
    cursor: pointer;
}

.header_menu_level_1>.header_menu_eventer {height: 110px;}
.header_menu_item_link {
    font-size: 16px;
    text-decoration: unset;
    color: var(--body-text);
    -webkit-text-stroke: 0px #007BC1;
    transition: .3s;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 25px;
}
.header_menu_item_1 {flex-grow: 1;}
.header_menu_item_link_wrapper{height: 100%;}
.header_menu_item_3  .header_menu_item_link{padding: 0;}
.header_menu_item_link svg{
    display: inline-block;
    transition: transform .3s ease;
    position: absolute;
    color: var(--basic-company);
    right: 0;
    top: 39%;
}
.header_menu_eventer_dropdown {transition: .3s;}
.header_menu_level_2 {
    display: flex;
    position: absolute;
    align-items: flex-start;
    row-gap: 40px;
    top: 50%;
    left: 0;
    width: 100%;
    max-height: calc(100dvh - 120px);
    padding: 30px calc((100% - 1650px) / 2);
    box-sizing: border-box;
    background-color: #FEFEFE;
    border-bottom: 1px solid #E7ECF1;
    box-shadow: 0px 12px 28px 0px #00304C1F;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: 0.5s;
    will-change: transform;
}

.header_menu_level_2:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #BCC6D1;
    /* width: 1650px; */
}

.header_menu_item_2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.header_menu_item_2>.header_menu_item_link_wrapper>.header_menu_item_link {
    font-weight: 600;
    padding: 0;
}

.header_menu_level_3.header_menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.header_menu_level_2.header_menu_cat {
    /* flex-wrap: wrap;
    flex-direction: column; */
    justify-content: flex-start;
    height: 618px;
}

.header_menu_grid {
    width: max-content;
}

/* HS Main menu */

/* HS header_informers */

.header_informers.d-flex.align-items-center {
    display: flex;
    gap: 50px;
}
.header_informer_wrapper{
    gap: 40px;
}
.header_informers__item{
    border: 1px solid var(--border-color-light);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    color: #4A5A63;
}
.header_informers__item.active{
    color: var(--basic-company);   
    border: 1px solid var(--basic-company);
}
.header_informers__item a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_informers__item svg{
    transition: color .3s ease;
}
.header_informers__item .compare_counter, .header_informers__item .wishlist_counter, .header_informers__item .cart_counter {
    background: var(--basic-company);
    border: 3px solid #ffffff;
    border-radius: 50%;
    color: #fff;
    padding: 1px 0px 0 1px;
    position: absolute;
    right: -16px;
    top: -16px;
    width: 20px;
    height: 20px;
    font-size: 11px;
    text-align: center;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}
.counter_wrp {
    position: relative;
}
/* HS Languages */



/* HS header_informers */

footer {
    background-color: #00091F;
    color: #FEFEFE;
}

.footer_inner {
    padding: 70px 0;
    gap: 40px;
}

.footer_copyright_wrapper {
    padding: 20px 0;
    border-top: 1px solid #FFFFFF33;
}

.hs_footer_dev {
    color: #FEFEFE99;
}

.hs_footer_dev a {
    color: #FEFEFE;
}

.footer_desc {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;

}

.footer_social {
    margin: 20px 0px 0px 0;
    gap: 30px;
}

.footer_social_item svg {
    border-radius: 7px;
}

.social_item_bg {
    transition: .3s;
}

.hs_footer_contacts .hs_btn {
    margin-top: 50px;
    width: 298px;
    max-width: 100%;
}

.hs_footer_menus {
    gap: 40px;
    width: 1140px;
    max-width: 100%;
}
.hs_footer_menus_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;;
}
.hs_menu_footer {gap: 25px;}
.hs_online_shop_link{
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #FEFEFE;
    padding: 12px 40px;
    text-align: center;
    border-radius: 5px;
    margin-top: 40px;
}
.hs_online_shop_link:hover{
    background-color: var(--basic-company);
    box-shadow: 0px 3px 17px 0px #006CA9A8;
    border: 1px solid var(--basic-company);
}
.hs_footer_menu_ttl {font-size: 25px;font-weight: 600;}
.hs_menu_footer .menu_group__list {
    margin: unset;
    padding: unset;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}

.footer_contact_item {
    width: max-content;
    gap: 12px;
    transition: .3s;
}
.footer_contact_item svg {
    width: 40px;
    height: 40px;
    transition: .3s;
    color: var(--basic-company)
}
.footer_contact_item_ttl{
    opacity: .6;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 400;
}
.footer_contact_item .main_contact_item_link{
    font-size: 16px;
    font-weight: 400;
}
.footer_contact_item .main_contact_item_inner{gap: 2px;}
/* HS Footer */

/* Inputs element */

:focus {
    outline: unset;
}

.form_group {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 15px;
}

.form_input {
    font-family: 'Open Sans', sans-serif;
    height: 50px;
    box-sizing: border-box;
    padding: 23px 15px 5px;
}

.form_input::placeholder,
.form_textarea::placeholder {
    color: #A5A5A5;
    font-family: 'Open Sans', sans-serif;
}

.form_input_transparent {
    border-radius: unset;
    border: unset;
    border-bottom: 1px solid #BCC6D1;
    background-color: transparent;
}

.form_input_transparent:focus {
    border-bottom: 1px solid #002338
}

.form_textarea {
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #BCC6D1;
    border-radius: 5px;
    padding: 10px 15px;
    resize: vertical;
    background-color: transparent;
}

.form_textarea:focus {
    outline: unset;
    border: 1px solid #002338
}

select.error+.error,
.form_input+.error,
.form_textarea+.error {
    padding: 0 15px;
    font-size: 11px;
    font-weight: 400;
    color: #EA4545;
    margin-top: 1px;
    position: absolute;
    bottom: -1px;
}

.form_input.error,
.form_textarea.error {
    border-color: #EA4545;
}

select.error+label+.select2-container--default .select2-selection--single {
    border-color: #EA4545;
}

.message_error {
    background-color: #EA4545;
    border: 1px solid #BCC6D1;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
}

/* Inputs element */

/* select2 */

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    right: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: block;
    width: 11px;
    height: 11px;
    border: 3px solid #007BC1;
    border-radius: 2px;
    border-left: unset;
    border-bottom: unset;
    transform: rotate(135deg);
    margin-bottom: 6px;
    position: relative;
    left: unset;
    top: unset;
    margin-left: unset;
    margin-top: unset;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: #007BC1;
    border-width: 3px;
    transform: rotate(-45deg);
    margin-bottom: -6px;
}

.select2-dropdown {
    border-radius: 5px;
    border: 1px solid #E7ECF1;
}

.select2-results__option {
    padding-left: 15px;
    cursor: pointer;
}

.select2-results__option--highlighted {
    background: #f4f7f9;
}

.select2_wrapper {
    position: relative;
}

/* select2 */

/* Page header */

.hs_page_header {
    position: relative;
    background-attachment: fixed;
}

.hs_page_header>* {
    position: relative;
    z-index: 2;
}

.hs_page_header:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #000512CC;
}

.hs_page_header_inner {
    min-height: 330px;
    width: 100%;
    padding: 60px 0;
    box-sizing: border-box;
}

.hs_page_header_h1 {
    font-family: Manrope;
    font-size: 70px;
    font-weight: 700;
    text-align: center;
    color: #FEFEFE;
}

.breadcrumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin: unset;
    padding: 24px 0;
    font-size: 14px;
    white-space: nowrap;
    overflow: auto;
    width: 100%;
    box-sizing: border-box;
}

.breadcrumbs li+li:before {
    content: "—";
    line-height: 1;
    font-weight: 900;
    margin-right: 15px;
    height: 16px;
}
.breadcrumbs li > span {color: #C1C1C1;}

/* Page header */

/* Callback form */
.hs_callback_wrapper {
    padding: 70px 180px;
    background-color: #F2F7FA;
    margin-bottom: 160px;
    border-radius: 10px;
}
.hs_callback_inner {
    margin: 0 auto;
    gap: 165px;
    position: relative;
}
.hs_callback_form_wrapper {
    position: absolute;
    right: 0;
    top: -130px;
    width: 100%;
    max-width: 538px;
}
.hs_callback_desc_ttl {
    font-size: 55px;
    font-weight: 600;
    text-align: left;
    line-height: 100%;
    margin-bottom: 24px;
}

.hs_callback_desc_title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
}
.hs_callback_form {
    background-color: #FEFEFE;
    box-shadow: 0px 4px 30px 0px #003A7C29;
    padding: 40px;
    border-radius: 10px;
}
.hs_callback_form .main_form_inputs {gap: 15px}
.hs_callback_form_footer {margin-top: 15px;}
.hs_callback_form .hs_btn {width: 100%;}
.callback_form_success {
    gap: 15px;
    height: 100%;
    font-size: 18px;
    font-weight: 600;
}
/* Callback form */

/* Category item */
.hs_subcategory {
    border: 1px solid #E7ECF1;
    background-color: #F2F7FA;
    border-radius: 5px;
    padding: 30px 24px;
    gap: 10px;
    justify-content: space-between;
    transition: .3s;
}

.hs_subcategory_name {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transition: .3s;
}

.hs_subcategory_image {
    width: 240px;
    height: 240px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    transition: transform .3s ease ;
    transform-origin: center center;
}
.hs_subcategory_image::after{
    content: '';
    position: absolute;
    width: 120%;
    height: 100%;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(30px);
    transform: scale(0);
    transition: transform .3s ease ;
    transform-origin: center center;
}
.hs_subcategory_image img {
    transition: .3s;
    z-index: 2;
}

.hs_subcategory_image img.loaded {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hs_subcategory:hover .hs_subcategory_image::after{
    transform: translate(-50%, -50%) scale(1);
}

/* Category item */
.sidebar {position: relative;}
.hs_cat_page .sidebar{position: sticky;top: 130px;height: max-content;}
.sidebar__boxed {
    display: block;
    z-index: 1;
    border-radius: 10px;
    background-color: #F4F4F4;
    padding: 24px 16px;
}
.sidebar__boxed--subscribe {
    background: #1b84ec;
    color: #fff;
    padding: 30px 15px 30px;
    position: relative;
}
.sidebar__boxed--subscribe:before {
    content: "";
    opacity: 0.15;
    position: absolute;
    top: -6px;
    left: 15%;
    width: 180px;
    height: 180px;
    background-size: contain;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIj48ZyB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSA1MTIgMCkiPjxnPgoJPGc+CgkJPHBhdGggZD0iTTUwNi45NTUsMS4zMTRjLTMuMTE5LTEuNzgtNi45NTUtMS43NS0xMC4wNDUsMC4wNzhMMzEzLjY1NiwxMDkuNzU2Yy00Ljc1NCwyLjgxMS02LjMyOSw4Ljk0My0zLjUxOCwxMy42OTcgICAgYzIuODEsNC43NTMsOC45NDIsNi4zMjgsMTMuNjk3LDMuNTE4bDEzMS40ODItNzcuNzQ5TDIxMC40MTEsMzAzLjMzNUw4OC42MDMsMjY2LjA2OWwxNTguOTY1LTk0ICAgIGM0Ljc1NC0yLjgxMiw2LjMyOS04Ljk0NCwzLjUxOC0xMy42OThjLTIuODEtNC43NTMtOC45NDMtNi4zMy0xMy42OTctMy41MThMNTguOTEsMjYwLjM5MmMtMy40MSwyLjAxNy01LjMwOSw1Ljg1Ni00Ljg0LDkuNzkxICAgIHMzLjIxNiw3LjIyMSw3LjAwNCw4LjM4bDE0NS40NjksNDQuNTA0TDI3MC43Miw0MzkuODhjMC4wNjcsMC4xMjEsMC4xMzYsMC4yMjMsMC4yMDcsMC4zMTRjMS4wNzEsMS43ODYsMi42NzYsMy4yNDUsNC42NzgsNC4wODcgICAgYzEuMjUzLDAuNTI3LDIuNTcsMC43ODQsMy44NzgsMC43ODRjMi41NjMsMCw1LjA4Ni0wLjk4Niw2Ljk5MS0yLjg0OWw3My43OTQtNzIuMTJsMTM4LjgwNiw0Mi40NjYgICAgYzAuOTYsMC4yOTMsMS45NDUsMC40MzgsMi45MjUsMC40MzhjMi4xMTYsMCw0LjIwNi0wLjY3Miw1Ljk0OC0xLjk2MUM1MTAuNDk2LDQwOS4xNTMsNTEyLDQwNi4xNyw1MTIsNDAzVjEwICAgIEM1MTIsNi40MDksNTEwLjA3NCwzLjA5Myw1MDYuOTU1LDEuMzE0eiBNMjcxLjI2NSwzMjkuMjNjLTEuMTU4LDEuNjczLTEuNzc5LDMuNjU5LTEuNzc5LDUuNjk0djYxLjE3MWwtNDMuODIzLTc5Ljc2NSAgICBsMTkzLjkyMS0yMDEuMjFMMjcxLjI2NSwzMjkuMjN6IE0yODkuNDg2LDQxMS4zMDl2LTYyLjg2N2w0OC45OSwxNC45ODhMMjg5LjQ4Niw0MTEuMzA5eiBNNDkyLDM4OS40ODNsLTE5Ni40OTktNjAuMTE2ICAgIEw0OTIsNDUuNzA0VjM4OS40ODN6IiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIHN0eWxlPSJmaWxsOiNGRkZGRkYiIGRhdGEtb2xkX2NvbG9yPSIjMDAwMDAwIj48L3BhdGg+Cgk8L2c+CjwvZz48Zz4KCTxnPgoJCTxwYXRoIGQ9Ik0xNjQuNDIzLDM0Ny41NzdjLTMuOTA2LTMuOTA1LTEwLjIzNi0zLjkwNS0xNC4xNDMsMGwtOTMuMzUyLDkzLjM1MmMtMy45MDUsMy45MDUtMy45MDUsMTAuMjM3LDAsMTQuMTQzICAgIEM1OC44ODIsNDU3LjAyNCw2MS40NDEsNDU4LDY0LDQ1OHM1LjExOC0wLjk3Niw3LjA3MS0yLjkyOWw5My4zNTItOTMuMzUyQzE2OC4zMjgsMzU3LjgxNSwxNjguMzI4LDM1MS40ODMsMTY0LjQyMywzNDcuNTc3eiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojRkZGRkZGIiBkYXRhLW9sZF9jb2xvcj0iIzAwMDAwMCI+PC9wYXRoPgoJPC9nPgo8L2c+PGc+Cgk8Zz4KCQk8cGF0aCBkPSJNNDAuMDcxLDQ3MS45MjhjLTMuOTA2LTMuOTAzLTEwLjIzNi0zLjkwMy0xNC4xNDIsMC4wMDFsLTIzLDIzYy0zLjkwNSwzLjkwNS0zLjkwNSwxMC4yMzcsMCwxNC4xNDMgICAgQzQuODgyLDUxMS4wMjQsNy40NDEsNTEyLDEwLDUxMnM1LjExOC0wLjk3Nyw3LjA3MS0yLjkyOWwyMy0yM0M0My45NzYsNDgyLjE2Niw0My45NzYsNDc1LjgzNCw0MC4wNzEsNDcxLjkyOHoiIGRhdGEtb3JpZ2luYWw9IiMwMDAwMDAiIGNsYXNzPSJhY3RpdmUtcGF0aCIgc3R5bGU9ImZpbGw6I0ZGRkZGRiIgZGF0YS1vbGRfY29sb3I9IiMwMDAwMDAiPjwvcGF0aD4KCTwvZz4KPC9nPjxnPgoJPGc+CgkJPHBhdGggZD0iTTE0Mi42NDksNDk0LjM0Yy0xLjg1OS0xLjg2LTQuNDM5LTIuOTMtNy4wNjktMi45M2MtMi42NDEsMC01LjIxLDEuMDctNy4wNywyLjkzYy0xLjg2LDEuODYtMi45Myw0LjQzLTIuOTMsNy4wNyAgICBjMCwyLjYzLDEuMDY5LDUuMjEsMi45Myw3LjA3YzEuODYsMS44Niw0LjQ0LDIuOTMsNy4wNywyLjkzczUuMjEtMS4wNyw3LjA2OS0yLjkzYzEuODYtMS44NiwyLjkzMS00LjQ0LDIuOTMxLTcuMDcgICAgQzE0NS41OCw0OTguNzcsMTQ0LjUxLDQ5Ni4yLDE0Mi42NDksNDk0LjM0eiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojRkZGRkZGIiBkYXRhLW9sZF9jb2xvcj0iIzAwMDAwMCI+PC9wYXRoPgoJPC9nPgo8L2c+PGc+Cgk8Zz4KCQk8cGF0aCBkPSJNMjE3LjA1MSw0MTkuOTM1Yy0zLjkwMy0zLjkwNS0xMC4yMzMtMy45MDUtMTQuMTQyLDBsLTQ5LjQ0Niw0OS40NDVjLTMuOTA1LDMuOTA1LTMuOTA1LDEwLjIzNywwLDE0LjE0MiAgICBjMS45NTMsMS45NTMsNC41MTIsMi45MjksNy4wNzEsMi45MjlzNS4xMTgtMC45NzcsNy4wNzEtMi45MjlsNDkuNDQ2LTQ5LjQ0NUMyMjAuOTU2LDQzMC4xNzIsMjIwLjk1Niw0MjMuODQsMjE3LjA1MSw0MTkuOTM1eiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojRkZGRkZGIiBkYXRhLW9sZF9jb2xvcj0iIzAwMDAwMCI+PC9wYXRoPgoJPC9nPgo8L2c+PGc+Cgk8Zz4KCQk8cGF0aCBkPSJNMzg3LjcwNCw0MTYuMTM5Yy0zLjkwNi0zLjkwNC0xMC4yMzYtMy45MDQtMTQuMTQyLDBsLTQ5LjU4LDQ5LjU4Yy0zLjkwNSwzLjkwNS0zLjkwNSwxMC4yMzcsMCwxNC4xNDMgICAgYzEuOTUzLDEuOTUyLDQuNTEyLDIuOTI5LDcuMDcxLDIuOTI5czUuMTE4LTAuOTc3LDcuMDcxLTIuOTI5bDQ5LjU4LTQ5LjU4QzM5MS42MDksNDI2LjM3NywzOTEuNjA5LDQyMC4wNDUsMzg3LjcwNCw0MTYuMTM5eiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojRkZGRkZGIiBkYXRhLW9sZF9jb2xvcj0iIzAwMDAwMCI+PC9wYXRoPgoJPC9nPgo8L2c+PGc+Cgk8Zz4KCQk8cGF0aCBkPSJNMjgzLjUsMTM2LjMxYy0xLjg2LTEuODYtNC40NC0yLjkzLTcuMDctMi45M3MtNS4yMSwxLjA3LTcuMDcsMi45M2MtMS44NTksMS44Ni0yLjkzLDQuNDQtMi45Myw3LjA4ICAgIGMwLDIuNjMsMS4wNyw1LjIsMi45Myw3LjA2YzEuODYsMS44Nyw0LjQ0LDIuOTMsNy4wNywyLjkzczUuMjEtMS4wNiw3LjA3LTIuOTNjMS44NTktMS44NiwyLjkzLTQuNDMsMi45My03LjA2ICAgIEMyODYuNDMsMTQwLjc1LDI4NS4zNiwxMzguMTcsMjgzLjUsMTM2LjMxeiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBzdHlsZT0iZmlsbDojRkZGRkZGIiBkYXRhLW9sZF9jb2xvcj0iIzAwMDAwMCI+PC9wYXRoPgoJPC9nPgo8L2c+PC9nPiA8L3N2Zz4=);
}

/* HS Product item */
.hs_product_item {
    padding: 70px 15px 15px 15px;
    border-radius: 5px;
    border: 1px solid #F3F3F3;
    box-shadow: 0px 4px 18px 0px #003D8212;
    transition: .3s;
    gap: 30px;
    flex-direction: column;
    position: relative;
}

.hs_product_item_name {
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hs_product_item_content {
    flex: 1;
    gap: 16px;
}

.hs_product_item_annotation {
    font-size: 14px;
    line-height: 1.5;
}

.hs_product_item_annotation p {
    margin: unset;
    margin-bottom: 15px;
}

.hs_product_item_annotation p:last-child {
    margin-bottom: unset;
}

.hs_product_item_image {
    position: relative;
    width: 210px;
    height: 210px;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    margin: 0 auto;
}

.hs_product_item_image img.loaded {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hs_product_item_code {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 12px;
    font-weight: 400;
    color: #636363;
}
.product-page__sku {
    background: #F2F3F4;
    padding: 8px 12px;
    border-radius: 4px;
    width: max-content;
    font-size: 14px;
    color: #6C6C6C;
    font-weight: 400;
    position: absolute;
    top: 12px;
    left: 12px;
}
/* HS Product item */

/* Swiper custom */
.swiper_shadow {
    margin: -20px;
}

.product_swiper .swiper_shadow {
    padding: 20px;
}

.swiper_arrow_wrapper {
    gap: 20px;
    display: flex;
    align-items: center;
    position: absolute;
    gap: 20px;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
}

.swiper_arrow_wrapper .swiper-button-next,
.swiper_arrow_wrapper .swiper-button-prev {
    position: relative;
    right: unset;
    left: unset;
    top: unset;
    width: unset;
    height: unset;
    margin-top: unset;
}

.swiper_custom_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color-light);
    background-color: #fff;
    border-radius: 5px;
    transition: .3s;
    color: #007BC1;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: 0px 0px 10px 0px #00507F14;

}

.swiper-button-next svg {
    transform: rotate(180deg);
}

.swiper_container {
    position: relative;
}

/* Swiper custom */

/* Blog item */
.hs_article_preview {
    border: 1px solid #E7ECF1;
    border-radius: 5px;
    padding: 10px 10px 20px;
    background-color: #F2F7FA;
    transition: .3s;
}
.hs_article_preview:hover{border: 1px solid #007BC1;}
.hs_article_preview .hs_read_more {margin-top: auto;}
.hs_article_preview_image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background-color: #fff;
    height: 330px;
    margin-bottom: 15px;
    border: 1px solid #BCC6D1;
}
.hs_article_preview_image:before {
    background-image: inherit;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transform: scale(1.2);
    filter: blur(10px) brightness(0.93);
}

.hs_article_preview_image img.loaded:not(.no_image) {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}

.hs_article_preview_date {
    gap: 8px;
    font-size: 14px;
    line-height: 1.2;
    color: #A5A5A5;
    margin-bottom: 10px;
}

.hs_article_preview_name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 49px;
    transition: .3s;
    display: -webkit-box;
    -Webkit-box-orient: vertical;
    overflow: hidden;
    -Webkit-line-clamp: 2;
}

.hs_article_preview_annotation {
    margin-bottom: 15px;
    display: -webkit-box;
    -Webkit-box-orient: vertical;
    overflow: hidden;
    -Webkit-line-clamp: 2;
}

.hs_post_video_label {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 120px;
    height: 40px;
    background-color: #00091F;
    color: #fff;
    font-size: 16px;
    border-radius: 3px 0px 0px 3px;
}

/* Blog item */

/* Pagination */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: unset;
    padding: 0 16px;
    gap: 10px;
}

.pagination__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #007BC1;
    border-radius: 4px;
    background: transparent;
    transition: .3s;
    font-size: 16px;
    font-weight: 600;
    color: #007BC1;
    cursor: pointer;
}
.pagination__item a {display: flex;}
.pagination__item.active {
    background-color: #00639B;
    border-color: #00639B;
    color: #fff;
}

.pagination__link_next svg {transform: rotate(180deg);}

/* Pagination */

.hs_main_about_ttl {
    font-size: 70px;
    font-weight: 700;
    text-align: left;
}
.hs_main_about_ttl span:last-child {color: #007BC1;}
.hs_main_about_bg {
    background: #F4F4F4;
    border-radius: 10px;
    padding: 50px;
    overflow: hidden;
}
.hs_about_ttl {margin-bottom: 40px;}
.hs_main_about_info ul li, .hs_main_about_info ol li{margin-bottom: 8px;}
.hs_main_about_grid{
    display: grid;
    grid-template-columns: 57% 40%;
    gap: 3%;
}
.hs_main_about_image {position: relative;}
.hs_main_about_image_wrapper {position: absolute;}
.hs_main_about_image_wrapper img{
    border-radius: 50% 50% 0  50%;
}
.hs_main_about_inner {gap: 40px;}
.hs_main_about_desc {line-height: 1.6;}
.hs_main_about_inner:nth-child(5n),
.hs_main_about_inner:nth-child(5n + 1) {
    padding: 106px 135px 106px 0px;
}
.hs_main_about_inner:nth-child(4n) {
    padding: 106px 0px 106px 135px;
}
.hs_about_image {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.hs_about_image_1 {
    clip-path: polygon(0% 100%, 100% calc(100% - 75px), 100% 0%, 0% 0%);
}
.hs_about_image_2 {
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 75px);
}
.no_found_wrapper {
    padding: 100px 0;
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.no_found_wrapper::before{
    content: "";
    width: 100%;
    max-width: 630px;
    height: 630px;
    border-radius: 50rem;
    background: linear-gradient(163.14deg, rgba(236, 247, 250, 0.5) 12.12%, rgba(226, 233, 255, 0.5) 86.26%);
    position: absolute;
    z-index: -1;
}
.no_found_ttl {
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}
.no_found_desc {text-align: center;margin-bottom: 30px;}
.no_found_wrapper svg {max-width: 100%;}
.buttons_404{gap: 24px;width: 100%;align-items: center;justify-content: center;}
.buttons_404 .hs_btn{background-color: var(--basic-company);color: #FEFEFE;width: 100%;max-width: 280px;}
.buttons_404 .hs_btn:hover{box-shadow: 0px 3px 17px 0px #00639BA8;background-color: #00639B;}

/* HS configurator */
.hs_conf_form_wrapper {
    position: relative;
    padding: 40px;
    background-image: url("../images/conf_bg.jpg");
    border-radius: 16px;
}

.gradient_conf_bg:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #001C2CB2;
    background-position: center;
    background-repeat: repeat;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 16px;
}

.hs_conf_form_wrapper>* {
    z-index: 1;
    position: relative;
}

.hs_conf_form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    z-index: 10;
}

.hs_conf_form .hs_btn {
    height: 56px;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
}

.hs_conf_form_wrapper+label.error {
    display: block;
    color: red;
    position: relative;
    font-size: 20px;
    margin-top: 10px;
}

.hs_conf_form select.error+.error,
.form_input+.error,
.form_textarea+.error {
    font-size: 14px;
    bottom: -25px;
}

/* HS configurator */

.main {
    position: relative;
    /* padding-top: 30px; */
}

.configurator_wrapper {
    background-color: #E2EBF1;
    padding: 32px 0 39px;
}

.container_inner {
    max-width: 1330px;
    margin: 0 auto;
}

.hs_conf_cat_desc {
    margin-top: 0;
    background-color: #F4F4F4;
    border-radius: 10px;
    padding: 50px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.hs_conf_product_features {
    display: grid;
    grid-template-columns: repeat(2, auto);
    padding: unset;
    margin: unset;
    list-style: none;
    gap: 15px;
}

.hs_conf_product_feature {
    display: flex;
    flex-direction: column;
    letter-spacing: 0.02em;
}

.hs_conf_product_feature_name {
    color: #636363;
}
.download_link {
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
    color: #007BC1;
}
.switcher{
    position: relative;
    width: 80px;
    height: 60px;
}
.switcher__item {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    flex-direction: column;
    background: #fff;
    border-radius: 5px;
    border: 1px solid transparent;
    display: flex;
    align-items: self-start;
    padding: 10px;
}
.switcher__item.active{
    border: 1px solid #EFEFEF;
}
.switcher__name svg {
    content: "";
    display: inline-block;
    transition: transform .3s ease;
    position: relative;
    color: var(--basic-company);
    top: 6px;
}

.switcher__name {
    padding: 0;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
}
.switcher__visible .switcher__name {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    transition: color .3s ease;
}
.switcher__hidden {
    display: none;
    padding: 0;
    width: auto;
}

.switcher__language .switcher__hidden {
    left: 0;
}
.switcher__visible:hover .switcher__name{
    color: var(--basic-company);
}
.switcher__link {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #222;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    border: none;
    background: none;
}
.switcher__link:not(:last-child){
    padding-bottom: 12px;
}
.switcher__link.active {
    text-decoration: none;
    color: var(--basic-company);
}

.switcher__visible img,.switcher__link img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20px;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    max-width: 20px;
    margin-right: 4px;
}

.switcher__item.active .switcher__hidden{
    display: block;
    z-index: 1;
}

.hs_dropdown_mob{display: none;}

.switcher__item.active  .switcher__name svg{
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.switcher__item.active  .switcher__name:hover {
    color: var(--basic-company);
}

.main_banner_image {
    width: 100%;
    height: 670px;
    position: relative;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.main_banner_image::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 44.71%, rgba(0, 0, 0, 0.85) 100%);  
    background-position: center;
    background-repeat: repeat;
    top: 0;
    z-index: 0; 
    border-radius: 10px;
}

.main_banner_inner {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translate(0, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    max-width: 730px;
}
.main_banner-description{
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 50px;
}
.main_banner-ttl{
    color: #ffffff;
    line-height: 130%;
}
.fn_articles_slide:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.fn_products_slide:not(.swiper-initialized) .swiper-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.fn_articles_slide{padding: 0 0 90px;}
.fn_products_slide {padding: 24px 24px 90px;margin: -24px -20px 0;}
.fn_articles_slide:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(1n+4),
.menu_switcher {display: none;}
.block__header_wrapper { margin-bottom: 50px;}
.block__header_wrapper h2{ margin: 0;} 
.footer__title {
    font-size: 25px;
    font-weight: 600;
    color: #FEFEFE;
    opacity: .8;
}
.footer__content.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.feedback_page h1{margin-bottom: 24px;}
.feedback_page .main_contact_grid{margin-bottom: 50px;}
.feedback_description{
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    width: 100%;
    max-width: 890px;
    margin-bottom: 50px;
    display: block;
}
.breadcrumb_wrapper a:hover{color: var(--basic-company);}
.header_menu_level_4 {display: none;}

/* Wishlist page */
.wishlist_page {padding: 10px 0 100px;}
.wishlist_page .products_list{padding-top: 40px;display: grid;grid-template-columns: repeat(2, 1fr);gap: 24px;}
.wishlist_description{width: 100%;max-width: 1230px;}
.wishlist_page .product-page__sku{position: static;}
.wishlist_page .hs_product_item{flex-direction: row;padding: 20px;gap: 24px;border-radius: 8px;}
.wishlist_page .hs_product_item_image{width: 80px;height: 80px;aspect-ratio: auto;margin: 0;min-width: 80px;}
.wishlist_page .hs_product_item_name{padding-right: 45px;margin-bottom: 20px; overflow: hidden;text-overflow: ellipsis;position: relative;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 1;}
.wishlist_page .wishlist_button__remove{position: absolute;height: 35px;right: 16px;top: 16px;}
.wishlist_page .wishlist_button__remove:hover svg path{stroke: red;}
.print_version_link{
    border-radius: 5px;
    background-color: #3E7F00;
    width: 100%;
    max-width: 250px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #FEFEFE;
    font-size: 14px;
    font-weight: 400;
    transition: all .5s ease;
    border: 1px solid #3E7F00;
    cursor: pointer;
}
.print_version_link:hover{
    box-shadow: 0px 3px 17px 0px #1F3F0091;
    background-color: #2E5E00;
}
.print_version_form{width: 100%;max-width: 250px;}
.page_heading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.page_heading .wishlist_description{display: none;}
.page_heading h1{margin-bottom: 0;}
/* End Wishlist page */

/* POPUP WINDOW */
.popup {
    width: 100%;
    max-width: 690px!important;
    padding: 60px 80px!important;
    border-radius: 10px!important;
    box-shadow: 0px 4px 40px 0px #00193A80!important;
    background-color: #FEFEFE!important;
    justify-content: center;
    align-items: center;
}
.popup .form__title{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}
.form__sub_title{
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    display: block;
    margin-bottom: 24px;
}
.form__footer .fast_order_button, .popup .form__body, .popup .form__footer{width: 100%; max-width: 450px;}
.form__footer .fast_order_button{padding: 16px 0;margin-top: 16px;}
.fancybox__content>.f-button.is-close-btn{top: 16px!important;right: 16px!important;}
.fancybox__backdrop{background: rgba(0, 0, 0, 0.5)!important;}
.swiper-button-lock{display: none!important;}
.success_send_form{text-align: center;}