﻿@charset "UTF-8";

.accordionMenu {
    width: 300px;
    margin: 0 auto;
}

.accordionMenu input[type=radio] {
    display: none;
}

.accordionMenu label {
    display: block;
    height: 50px;
    line-height: 47px;
    padding: 0 25px 0 10px;
    background: #2f4c72;
    font-size: 18px;
    color: #fff;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #e6e6e6;
}

.accordionMenu label::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    right: 10px;
    top: 20px;
    z-index: 10;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.accordionMenu .content {
    max-height: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 2s ease-in-out;
    -moz-transition: all 2s ease-in-out;
    -o-transition: all 2s ease-in-out;
    transition: all 2s ease-in-out;
}

.accordionMenu .content .inner {
    font-size: 1.2rem;
    color: #2c97de;
    line-height: 1.5;
    background: white;
    padding: 20px 10px;
}

.accordionMenu input[type=radio]:checked + label:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.accordionMenu input[type=radio]:checked + label + .content {
    max-height: 2000px;
    height: auto;
}


.ic-hamburger {
    display: inline-block;
    overflow: visible;
    position: absolute;
    top: 50%;
    left: 20%;
    height: 2px;
    width: 60%;
}

.garantie {
    display: flex;
    justify-content: center;
}

.ic-hamburger > span {
    border-radius: 2px;
    background-color: #ffffff;
    position: absolute;
    top: -1px;
    left: 0;
    height: 2px;
    width: 100%;
    transition: opacity 0.3s ease;
}

.ic-hamburger:before,
.ic-hamburger:after {
    content: "";
    position: absolute;
    display: inline-block;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #ffffff;
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.ic-hamburger:before {
    top: -7px;
}

.ic-hamburger:after {
    bottom: -5px;
}

.menu-opened .ic-hamburger > span {
    opacity: 0;
}

.menu-opened .ic-hamburger:after {
    transform: translateY(-6px) rotate(-45deg);
}

.menu-opened .ic-hamburger:before {
    transform: translateY(6px) rotate(45deg);
}

@font-face {
    font-family: "Roboto";
    src: local("Roboto"), url("/a/site/fonts/Roboto/Roboto-Regular.woff2") format("woff2"), url("/a/site/fonts/Roboto/Roboto-Regular.woff") format("woff"), url("/a/site/fonts/Roboto/Roboto-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: auto;
}

@font-face {
    font-family: "Roboto";
    src: local("Roboto Italic"), local("Roboto-Italic"), url("/a/site/fonts/Roboto/Roboto-Italic.woff2") format("woff2"), url("/a/site/fonts/Roboto/Roboto-Italic.woff") format("woff"), url("/a/site/fonts/Roboto/Roboto-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: auto;
}

@font-face {
    font-family: "Roboto";
    src: local("Roboto Medium"), local("Roboto-Medium"), url("/a/site/fonts/Roboto/Roboto-Medium.woff2") format("woff2"), url("/a/site/fonts/Roboto/Roboto-Medium.woff") format("woff"), url("/a/site/fonts/Roboto/Roboto-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: auto;
}

@font-face {
    font-family: "Roboto";
    src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url("/a/site/fonts/Roboto/Roboto-MediumItalic.woff2") format("woff2"), url("/a/site/fonts/Roboto/Roboto-MediumItalic.woff") format("woff"), url("/a/site/fonts/Roboto/Roboto-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
    font-display: auto;
}

@font-face {
    font-family: "Roboto";
    src: local("Roboto Bold"), local("Roboto-Bold"), url("/a/site/fonts/Roboto/Roboto-Bold.woff2") format("woff2"), url("/a/site/fonts/Roboto/Roboto-Bold.woff") format("woff"), url("/a/site/fonts/Roboto/Roboto-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: auto;
}

@font-face {
    font-family: "Roboto";
    src: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url("/a/site/fonts/Roboto/Roboto-BoldItalic.woff2") format("woff2"), url("/a/site/fonts/Roboto/Roboto-BoldItalic.woff") format("woff"), url("/a/site/fonts/Roboto/Roboto-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: auto;
}

::-webkit-scrollbar {
    width: 0;
}
body::-webkit-scrollbar{
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8;
}

html {
    margin: 0 auto;
    font-size: 16px;
    word-wrap: break-word;
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

html,
body {
    min-width: 320px;
    min-height: 100vh;
}

body {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    font: 16px "Roboto", -apple-system, "Helvetica Neue", "Helvetica", sans-serif;
    line-height: 1.4;
    color: #353535;
    background-color: #ffffff;
    position: relative;
    overflow-x: hidden;
    overflow-y: scroll;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: 'Roboto', sans-serif !important;
    letter-spacing: normal;
    /*line-height: 22px!important;*/
}

.all-blogs {
    /*padding: 0.7em;*/
    background: #2f4c72;
    color: white;
    /*margin-top: 27px;*/
    padding-left: 1.5em;
    font-size: 17px !important;
}

.all-blogs-categories {
    /*padding: 0.7em;*/
    background: #2f4c72;
    color: white;
    margin-top: 27px;
    padding-left: 1.5em;
    font-size: 17px !important;
}

.forimg img {
    height: auto;
    width: 100%;
}

p:not(:first-child) {
    margin-top: 5px;
    color: #353535;
}

* {
    font-family: inherit;
    scrollbar-width: inherit;
    scrollbar-color: inherit;
}

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

input,
textarea {
    -webkit-appearance: none;
    border-radius: 0;
}

a img,
a img:focus,
a:focus,
:focus {
    outline: none;
}

a[href^="tel:"] {
    color: inherit;
}

button:focus {
    outline: none;
}

#page {
    display: flex;
    flex-direction: column;
    min-height: inherit;
    width: 100%;
    overflow: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.row.l-m {
    margin-left: -15px;
    margin-right: -15px;
}

.row.l-m > .col,
.row.l-m > .col-1,
.row.l-m > .col-10,
.row.l-m > .col-11,
.row.l-m > .col-12,
.row.l-m > .col-2,
.row.l-m > .col-3,
.row.l-m > .col-4,
.row.l-m > .col-5,
.row.l-m > .col-6,
.row.l-m > .col-7,
.row.l-m > .col-8,
.row.l-m > .col-9,
.row.l-m > .col-auto,
.row.l-m > .col-lg,
.row.l-m > .col-lg-1,
.row.l-m > .col-lg-10,
.row.l-m > .col-lg-11,
.row.l-m > .col-lg-12,
.row.l-m > .col-lg-2,
.row.l-m > .col-lg-3,
.row.l-m > .col-lg-4,
.row.l-m > .col-lg-5,
.row.l-m > .col-lg-6,
.row.l-m > .col-lg-7,
.row.l-m > .col-lg-8,
.row.l-m > .col-lg-9,
.row.l-m > .col-lg-auto,
.row.l-m > .col-md,
.row.l-m > .col-md-1,
.row.l-m > .col-md-10,
.row.l-m > .col-md-11,
.row.l-m > .col-md-12,
.row.l-m > .col-md-2,
.row.l-m > .col-md-3,
.row.l-m > .col-md-4,
.row.l-m > .col-md-5,
.row.l-m > .col-md-6,
.row.l-m > .col-md-7,
.row.l-m > .col-md-8,
.row.l-m > .col-md-9,
.row.l-m > .col-md-auto,
.row.l-m > .col-sm,
.row.l-m > .col-sm-1,
.row.l-m > .col-sm-10,
.row.l-m > .col-sm-11,
.row.l-m > .col-sm-12,
.row.l-m > .col-sm-2,
.row.l-m > .col-sm-3,
.row.l-m > .col-sm-4,
.row.l-m > .col-sm-5,
.row.l-m > .col-sm-6,
.row.l-m > .col-sm-7,
.row.l-m > .col-sm-8,
.row.l-m > .col-sm-9,
.row.l-m > .col-sm-auto,
.row.l-m > .col-xl,
.row.l-m > .col-xl-1,
.row.l-m > .col-xl-10,
.row.l-m > .col-xl-11,
.row.l-m > .col-xl-12,
.row.l-m > .col-xl-2,
.row.l-m > .col-xl-3,
.row.l-m > .col-xl-4,
.row.l-m > .col-xl-5,
.row.l-m > .col-xl-6,
.row.l-m > .col-xl-7,
.row.l-m > .col-xl-8,
.row.l-m > .col-xl-9,
.row.l-m > .col-xl-auto {
    padding-left: 15px;
    padding-right: 15px;
}

.row-grid:not(.l-m) {
    margin-top: -7.5px;
    margin-bottom: -7.5px;
}

.row-grid:not(.l-m) > * {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
}

.row-grid.l-m {
    margin-top: -15px;
    margin-bottom: -15px;
}

.row-grid.l-m > * {
    padding-top: 15px;
    padding-bottom: 15px;
}

.container {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1440px;
    padding: 0;
}

.container-sm {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 900px;
    padding: 0;
}

#main {
    position: relative;
}

#header-top {
    height: 103px;
}

.ht-container {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
}

.shadow-text {
    box-shadow: 1px 2px 8px -4px rgb(0 0 0 / 50%);
}

.shadow-text-blog {
    border-bottom: 1px solid #ddd;
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 50%);
    /*box-shadow: 2px 3px 8px -4px rgb(0 0 0 / 50%);*/
}

.a-blog {

}

.ht-brand {
    display: block;
}

.ht-brand > img {
    display: block;
    width: auto;

}

a.ht-tel {
    font-size: 27px;
    font-weight: 500;
    color: #005498;
    text-decoration: none;
}

.ht-sm .ht-auth {

    width: 100%;
    font-size: 11px;
    text-transform: uppercase;
    /*flex: 0 0 500px;*/
}

.ht-sm .ht-auth a {
    font-size: 11px;
    text-transform: uppercase;
    margin: 0 14px;
    color: white;
}

.ht-hamburger {
    display: none!important;
}

.ht-lg {
    flex: 1;
    margin: 0 15px;
    text-align: center;
}

a.ht-login-right {
    display: inline-block;
    font-size: 15px;
    color: #8D8D8D;
    padding-left: 6px;
}

.header-search-input {
    background-color: #2f4c72;
    border: none;
    width: 250px;
}

.header-search-input::placeholder {
    color: white;
}

.header-search-btn {
    color: #2f4c72;
    border: none;
    margin-left: -33px;
}

.header-search-btn > i {
    color: #777;
}

a.ht-login {
    display: inline-block;
    font-size: 15px;
    color: #8D8D8D;
    padding-right: 10px;
    border-right: 2px solid #ffffff;
}

a.ht-login.login:before {
    content: url("data:image/svg+xml;base64,PHN2ZyBpZD0iR3JvdXBfMzE3NCIgZGF0YS1uYW1lPSJHcm91cCAzMTc0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNi40MzciIGhlaWdodD0iMTYuNDc5IiB2aWV3Qm94PSIwIDAgMTYuNDM3IDE2LjQ3OSI+DQogIDxwYXRoIGlkPSJQYXRoXzEwNzgxIiBkYXRhLW5hbWU9IlBhdGggMTA3ODEiIGQ9Ik02Ljg0OCwzMS41NDZsNi43OTUtMy45MjNhLjM0NC4zNDQsMCwwLDAsMC0uNkw2Ljg0OCwyMy4xYS4zNDQuMzQ0LDAsMCwwLS41MTcuM3YxLjgyN0guNDY1YS4zNDUuMzQ1LDAsMCwwLS4zNDQuMzQ0djMuNWEuMzQ1LjM0NSwwLDAsMCwuMzQ0LjM0NEg2LjMzMXYxLjgyN2EuMzQ1LjM0NSwwLDAsMCwuNTE3LjNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMC4xMjEgLTE5LjA4NSkiIGZpbGw9IiM4ZDhkOGQiLz4NCiAgPHBhdGggaWQ9IlBhdGhfMTA3ODIiIGRhdGEtbmFtZT0iUGF0aCAxMDc4MiIgZD0iTTQ1LjM4OSwwSDM4LjM3YS4zNDUuMzQ1LDAsMCwwLS4zNDUuMzQ0VjEuMzc4YS4zNDUuMzQ1LDAsMCwwLC4zNDUuMzQ0aDcuMDE5YS44MjMuODIzLDAsMCwxLC44MjIuODIydjExLjM5YS44MjMuODIzLDAsMCwxLS44MjIuODIySDM4LjM3YS4zNDUuMzQ1LDAsMCwwLS4zNDUuMzQ0djEuMDMzYS4zNDUuMzQ1LDAsMCwwLC4zNDUuMzQ0aDcuMDE5YTIuNTQ3LDIuNTQ3LDAsMCwwLDIuNTQ0LTIuNTQ0VjIuNTQ0QTIuNTQ3LDIuNTQ3LDAsMCwwLDQ1LjM4OSwwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMxLjQ5NykiIGZpbGw9IiM4ZDhkOGQiLz4NCjwvc3ZnPg0K");
    display: inline-block;
    width: 17px;
    height: 17px;
    vertical-align: -3px;
    margin-right: 5px;
}

#header-menu {
    background-color: #777;
    height: 51px;

}

#header-menu1 {
    background-color: #2f4c72;
    height: 35px;

}

#header-menu2 {
    background-color: #2f4c72;
    height: 35px;

}

.header-menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

#menu {
    height: 51px;
    display: flex;
}

a.header-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    position: relative;
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    background-color: #2f4c72;
    /*border: 1px solid #005498;*/
}
.select2-results__options::-webkit-scrollbar{
    width: 6px;
}

a.header-menu-button > span {
    position: absolute;
    top: -5px;
    right: -6px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 11px;
    font-weight: 500;
    background-color: white;
    color: black;
    border-radius: 50%;
    border: 1px solid #005498;
}

.menu-item {
    line-height: 1;
    width: 100%;
    height: 100%;
    /*padding: 0 5px;*/
    white-space: nowrap;


}

.menu-item:not(:first-child) {
    /*margin:1px 7px;*/
    text-align: center;
}

.menu-item > a {
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
    border-style: solid;
    border-color: transparent;
    border-width: 4px 0;
    padding: 5px 25px;
    color: #ffffff;
    font-weight: 400;
    transition: border-color 0.3s ease;
    font-size: inherit;
}
 .about-product{
     color: #fff;
     background-color:#005498;
     border-color: #dee2e6 #dee2e6 #fff;
     border-bottom: 1px solid #dee2e6 ;
     display: block;
     padding: .5rem 1rem;
     height: 100%;
     width: 76px;
     font: 16px "Roboto", -apple-system, "Helvetica Neue", "Helvetica", sans-serif;
 }
/*.menu-item:hover > a,*/
/*.menu-item.active > a {*/
/*    !*border-bottom-color: #10BDFF;*!*/
/*    background-color: #666666;*/
/*}*/



.menu-dropdown {
    position: absolute;
    top: 100%;
    width: 206px;
    height: 300px;
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding-top: 3px;
}

.menu-dropdown-content {
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.menu-has-dropdown {
    position: relative;
}

.menu-has-dropdown:hover .menu-dropdown {
    opacity: 1;
    pointer-events: all;
}

a.menu-dropdown-link {
    display: block;
    padding: 14px;
    line-height: 1;
    text-decoration: none;
    color: #949494;
    font-size: 17px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a.menu-dropdown-link:hover {
    background-color: #F7F7F7;
    color: #005498;
}

a.menu-dropdown-link.active {
    background-color: #005498;
    color: #ffffff;
}

.fluid-dropdown {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 300px;
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    /*padding-top: 0px;*/
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.fluid-dropdown-content {
    width: 300px;
    max-height: 80vh;
    overflow: auto;
    background-color: #ffffff;
}
.has-fluid-dropdown:hover .fluid-dropdown {
    opacity: 1;
    pointer-events: all;

}
.webshop2:hover > i {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.menu-catalog-links {
    opacity: 0;
    position: absolute;
    pointer-events: none;
    border-left: 1px solid #cccccc;
}

.menu-catalog-block:hover .menu-catalog-links {
    opacity: 1;
    position: absolute;
    pointer-events: all;
    background: #fff;
    right: -83%;
    top: 0;
    display: flex;
    flex-direction: column;
    width: 250px;
    min-width: 150px;
    height: 100%;
    box-shadow: 0 3px 6px rgb(0 0 0 / 50%);
    transition: .2s;
}

.sub-menu {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: .2s;
    cursor: pointer;
    display: inline-block;
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
    /*font-size: 17px;*/
    color: #2f4c62;
    /*display: block;*/
    /*padding-left:0.3rem!important;*/
    padding-top: 1rem !important;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-style: normal;
}

.menu-catalog-link:hover .sub-menu {
    pointer-events: all;
    background: #fff;
    opacity: 1;
    width: 100%;
    left: 90%;
    top: 0;
    height: 100%;
    border-left: 1px solid #cccccc;
    box-shadow: 0 3px 6px rgb(0 0 0 / 50%);

}

.menu-catalog-blocks {
    -moz-column-count: 1;
    column-count: 1;
    -moz-column-gap: 0;
    column-gap: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.menu-catalog-block {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    page-break-inside: avoid;
    /*padding: 10px 18px 10px 10px;*/
}

.dropdown:hover > .dropdown-menu {
    display: block;
    height: auto;
}

.dropdown > .dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}


.menu-catalog-letter {
    font-weight: 700;
    color: #2f4c72;
    cursor: pointer;
    font-family: 'Noto Sans', sans-serif;
    /*font-style: normal;*/
    padding: 10px 0 10px 5px;
    /*font-size: inherit;*/
    display: inline-block;
    font-size: inherit;
    /*font-weight: inherit*/


}

.menu-catalog-letter > a {
    color: inherit;
    text-decoration: none;
    padding-left: 15px;
}
.menu-catalog-block:hover .menu-catalog-letter {
    background-color: #2f4c72;
    width: 100%;
    color: #fff;
    margin-left: 5px;
}
.menu-catalog-letter:hover {

}


.menu-catalog-link {

    white-space: normal;
    width: 100%;
}

.scroll-menu {
    overflow: auto;
    height: 100%;
}

.menu-catalog-link a {
    display: inline-block;
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: inherit;
    text-decoration: none;
    /* font-size: 17px; */
    color: #2f4c62;
    /* display: block; */
    padding: 13px 30px 0 24px;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-style: normal;
}

.menu-catalog-link a:hover {
    color: #10BDFF;
}

#footer {
    margin-top: auto;
    padding-top: 50px;
    padding-bottom: 25px;
}

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

}

.footer-menu > h4, p, a {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-size: 14px;
}

.ook h2 {
    color: #2f4c72;
    font-weight: 500!important;
    margin-top: 30px;
    font-size: 27px;
    font-family: 'Roboto', sans-serif;
}

.ook h4 {
    font-weight: 500;
    width: 66%;
    font-size: 22px!important;
    color: #494a50;
    margin-top: 5px;
}

.contact1 i {
    color: white;
    font-size: 25px;

}

.phone1 {
    background-color: #2f4c72;
    border-radius: 70px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-link {
    line-height: 1.2;
}

.footer-link > a {
    font-size: 19px;
    color: #69676c;
}

.footer-link:not(:first-child) {
    margin-top: 13px;
}

.footer-logo {
    display: block;
    max-width: 100%;
    width: 300px;
    height: auto;
}

.footer-lists {
    display: flex;
    justify-content: space-around;
    padding: 0;
}

.footer-list {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.footer-contacts {
    padding: 20px 0;
}

.footer-contacts > div {
    color: #005498;
    font-size: 14px;
    font-weight: 500;
    padding-top: 5px;
}

.footer-socs {
    margin-bottom: 4px;
}

a.footer-soc {
    color: #005498;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

a.footer-soc > img {
    display: inline-block;
    height: 35px;
    width: 35px;
    margin-right: 10px;
    vertical-align: middle;
}

a.footer-soc > span {
    display: inline-block;
    vertical-align: middle;
}

.footer-payments {
    align-items: center;
    flex-wrap: wrap;
}

.footer-payments > img {
    display: block;
    max-width: 80px;
    max-height: 40px;
    width: auto;
    height: auto;
    margin-right: 10px;
    margin-top: 6px;
}

.footer-copy {
    margin-top: auto;
    padding-top: 20px;
    color: #7B858A;

}

.footer-copy a {
    color: inherit;
}

.section {
    padding-top: 40px;
    padding-bottom: 65px;
}

.section-title {
    line-height: 1;
    font-size: 41px;
    color: #005498;
    padding-left: 10px;
    padding-bottom: 0;
    border-left: 4px solid #ef7d00;
}
.force-3-1 {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 33.3333333333%;
    overflow: hidden;
}

.force-3-1 > * {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.force-3-1 > img {
    -o-object-fit: cover;
    object-fit: cover;
}

.force-4-3 {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}

.force-4-3 > * {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.force-4-3 > img {
    -o-object-fit: cover;
    object-fit: cover;
}

.force-16-9 {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.force-16-9 > * {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.force-16-9 > img {
    -o-object-fit: cover;
    object-fit: cover;
}

.force {
    height: auto;
    max-width: 100%;
}

.blog-img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
    box-sizing: border-box;
}

.blog-img {
    /*width: 800px;*/
    aspect-ratio: auto 800 / 800;
}

.swiper-container.show-after-init:not(.swiper-container-initialized) {
    display: none !important;
}

.swiper-container.equal-heights .swiper-slide {
    height: auto !important;
}

.p-shadow {
    padding: 5px 5px 7px 5px;
}

.text-warning {
    color: #e6ae07 !important;
}

.font-weight-middle {
    font-weight: 500 !important;
}

.kzt:before {
    content: "\20B8";
    display: inline;
}

.all-inherit {
    all: inherit !important;
}

.dynamic-text a {
    color: #005498;
}

.dynamic-text img {
    max-width: 100% !important;
    -o-object-fit: cover !important;
    object-fit: cover !important;
}

.catalogue-price {
    color: #ffffff;
    font-size: 16px;
    background-color: #2f4c72;
    display: inline-block;
    padding: 0 10px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.sale-price {
    display: inline-block;
    color: #3b519d;
    font-size: 22px;
    position: relative;
    margin-left: 5px;
}

.sale-price:before {
    content: "";
    position: absolute;
    display: inline-block;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #cc0000;
}

.sale-price-sm {
    display: inline-block;
    color: #3b519d;
    font-size: 18px;
    position: relative;
    margin-left: 5px;
}

.sale-price-sm:before {
    content: "";
    position: absolute;
    display: inline-block;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #cc0000;
}

.cat-price {
    font-size: 24px;
}

a.check-cursor[href="javascript:void(0)"] {
    cursor: default;
}

.swiper-slide {
    background-color: #F5F7FA;
}

.blue {
    color: #005498 !important;
}

.py-s {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-2s {
    padding-top: 40px;
    padding-bottom: 40px;
}

.pt-s {
    padding-top: 20px;
}

.pb-s {
    padding-bottom: 20px;
}

.pt-2s {
    padding-top: 40px;
}

.pb-2s {
    padding-bottom: 40px;
}

.page-breadcrumb {
    background-color: transparent;
    padding: 0;
}

.page-breadcrumb .breadcrumb-item {
    color: #9D9D9D;
    font-size: 16px;
    font-style: italic;
    max-width: 450px;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-breadcrumb .breadcrumb-item > a {
    color: #4A4A4A;
    text-decoration: underline;
}

.page-breadcrumb .breadcrumb-item > a:hover {
    text-decoration: none;
}

.page-breadcrumb .breadcrumb-item > a[href="javascript:void(0)"] {
    text-decoration: underline;
    cursor: default;
}

.news-item {
    overflow: hidden;
}

.news-img {
    position: relative;
}

.style-for-blog {
    color: #2f4c72;
    font-size: 14px;
}

.style-for-search {
    border-radius: 0;
    font-size: 15px;
    height: 40px;
    width: 100%;
    border: 1px solid #ccc;
    background: #f1f1f1;
}

.search-button {
    background: white;
    cursor: pointer;
    float: right;
    height: 38px;
    width: 38px;
    display: block;
    border: 0 none;
    box-shadow: none !important;
    padding: 10px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    position: absolute;
    top: 62px;
    right: 9px;
    color: #9effff;
}

.news-date {

    display: block;
    position: absolute;
    top: 110px;
    right: 0;
    background-color: white;
    text-align: center;
    color: #2E3233;
    font-weight: 700;
    padding: 9px 14px;
}

.news-day {
    display: block;
    line-height: 1;
    font-size: 22px;
}

.news-month {
    display: block;
    line-height: 1;
    font-size: 13px;
    margin-top: 4px;
}

.header-text {
    display: block;
    position: relative;
    bottom: 16px;
    left: 114px;
    font-size: 18px;
    color: #45bedb;
    width: 950px;
}
.category-item{
    display: block;
    width: 100%;
    height: 112px;
    /*background-color: #ffffff;*/
    /*color: #ababab;*/
    padding: 8px 12px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 10px 0 rgb(31 48 93 / 10%);
    color: white;
    text-decoration: none;
    background-size: cover;
    position:relative;
}

.bg-category-title{
    background-color: black;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    position: absolute;
    z-index:1;
}

.header-img {
    right: 150px;
}

.news-year {
    display: block;
    line-height: 1;
    font-size: 16px;
    margin-top: 4px;
}

.news-content {
    padding-right: 15px;
}

.time-step {
    color: #888;
    font-size: 0.7em;
}

.news-title {
       padding-top: 22px;
    padding-bottom: 32px;
}

.news-title {
    color: #69676c;
}

.news-title > a {
    color: #504B4A;
}

.news-short {
    font-size: 13px !important;
    margin-top: 5px;
    color: #777;
    width: 100%;
    margin-bottom: 10px;
}

.a-blog {
    background-color: #45BEDB;
    padding: 10px 12px;
    text-align: center;
    display: inline-block;
    float: right;
    line-height: 1;
    margin: 1em;
    transition: background-color 0.4s;
    position: absolute;
    bottom: 0;
    right: 5px;
}

.a-blog > a {
    text-decoration: none;
    color: white;
}

.welcome-section {
    display: flex;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.welcome-section:before {
    content: "";
    padding-top: 37.34375%;
    flex: 0;
    max-width: 0;
    display: block;
}

.welcome {
    padding: 125px 0;
    flex: 0 0 100%;
    max-width: 100%;
}

.welcome-title {
    font-size: 48px;
    color: #FFFCEF;
}

.welcome-bg {
    overflow: visible;
    position: relative;
    margin-top: 20px;
    color: #69676c;
}

.welcome-bg:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -240px;
    bottom: 0;
    width: 240px;
    height: 100%;
    background-color: rgba(226, 233, 255, 0.7);
}

.welcome-text {
    padding: 15px 12% 15px 0;
    line-height: 1.6;
    font-size: 28px;
    width: 88%;
    background-color: rgba(226, 233, 255, 0.7);
}

.catalogue-item {
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
}

.catalogue-left {
    flex: 0 0 60%;
    max-width: 60%;
    padding-right: 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.catalogue-right {
    flex: 0 0 40%;
    max-width: 40%;
    height: 100%;
}

.catalogue-right > a {
    display: flex;
    align-items: center;
    font-size: 0;
    height: 100%;
    width: 100%;
}

.catalogue-right img {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

a.catalogue-title {
    font-size: 20px;
    color: #005498;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.2s ease;
    line-height: 1.3;
}

a.catalogue-title:hover {
    border-bottom-color: #005498;
}

a.part-item {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    color: #ababab;
    padding: 8px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 10px 0 rgba(31, 48, 93, 0.1);
}

.part-img {
    display: block;
    height: 56px;
    text-align: center;
    font-size: 0;
}

.part-img > img {
    display: inline-block;
    height: 56px;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.part-title {
    display: block;
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
}

.part-banners {
    display: flex;
    margin: 0 -10px;
    margin-top: 65px;
}

.part-banner {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
}

a.brand-item {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    color: #ababab;
    padding: 8px 12px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 10px 0 rgba(31, 48, 93, 0.1);
}

.brand-img {
    display: block;
    text-align: left;
    height: 60px;
    font-size: 0;
}

.brand-img > img {
    display: inline-block;
    height: 100%;
    width: auto;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.brand-title {
    text-align: right;
    display: block;
    font-size: 15px;
    color: #ababab;
    margin-top: 8px;
    text-transform: uppercase;
}
.category-title{
z-index: 2;
    text-align: center;
    display: block;
    font-size: 16px;
    font-weight:bold;
    color:white;
    margin-top: 8px;
    text-transform: uppercase;
}


.page a.card-more {
    background-color: #005498;
    color: #ffffff;
    font-size: 22px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

a.link-bauten {
    color: #005498;
}

a.link-bauten:hover {
    color: #005498;
}

#menu-mobile:not(.mm),
#cabinet-menu-mobile:not(.mm) {
    display: none;
    /*background-color: #888888;*/
    /*position: relative;*/
    /*top: 4500px;*/
}

.mm {
    background: #ffffff;
    color: #333;
}

.nowrap {
    white-space:nowrap !important;
}

a.mobile-login {
    text-decoration: none;
    color: #ffffff;
    /*display: inline-block;*/
    margin-right: 4px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #005498;
    font-size: 20px;
    vertical-align: middle;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-video iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.gallery-tab {
    display: none;
}

.gallery-tab.active {
    display: block;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    background-color: #000000;
}

.video-player .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}


.video-player button.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 48px;
    z-index: 1;
    transform: translate(-50%, -50%);
    border: none;
    background: transparent;
    box-shadow: none;
    outline: none;
    cursor: pointer;
}

.video-player:hover button.video-play-button .play-icon {
    fill: #ff0000;
    fill-opacity: 1;
}

.video-player .video-loader {
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    z-index: 1;
    width: 65px;
    height: 65px;
    border-width: 5px;
    border-style: solid;
    border-color: #dddddd #dddddd transparent #dddddd;
    border-radius: 50%;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.video-player .video-data.loaded + .video-loader {
    display: none;
}

.video-player .video-data:not(.loaded) {
    display: none;
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1201px) {
    .text-menu {
        display: none;
    }

    .ht-sm {
        height: 40px;
        width: 40px;
    }

    #header-top {
        height: 180px;
    }


}

@media (max-width: 1599px) {
    #header-top {
        height: 100px;

    }

    a.ht-tel {
        font-size: 24px;
    }

    .menu-item:not(:first-child) {
        /*margin-left: 10px;*/
    }

    .menu-item > a {
        font-size: 16px;
    }

    #footer {
        /*padding-top: 110px;*/
    }

    .footer-link > a {
        font-size: 18px;
        color: #504B4A;
    }

    .footer-logo {
        width: 270px;
    }

    .section {
        padding-top: 35px;
        padding-bottom: 45px;
    }

    label {
        color: #69676c;
    }

    .contacts-link a {
        color: #473E3C;
    }

    .cat-price {
        font-size: 19px;
    }

    .sale-price {
        font-size: 19px;
    }

    .news-title {
        padding-top: 15px;
        padding-bottom: 20px;
    }

    .news-short {
        padding-top: 15px;
    }

    .welcome {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .welcome-title {
        font-size: 40px;
    }

    .welcome-text {
        font-size: 24px;
        padding: 10px 5% 10px 0;
    }

    a.catalogue-title {
        font-size: 19px;
    }

    .catalogue-left {
        flex-basis: 65%;
        max-width: 65%;
    }

    .catalogue-right {
        flex-basis: 35%;
        max-width: 35%;
    }

    .part-title {
        font-size: 17px;
    }

    .part-banners {
        margin-top: 55px;
    }

    .page a.card-more {
        font-size: 19px;
    }
}

@media (max-width: 1365px) {
    #footer {
        padding-top: 20px;
    }

    .footer-logo {
        width: 250px;
    }

    .footer-link > a {
        font-size: 17px;
    }

    .section {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .catalogue-price {
        padding-left: 5px;
        padding-right: 5px;
    }

    .cat-price {
        font-size: inherit;
    }

    .news-day {
        font-size: 20px;
    }

    .news-content {
        padding-right: 5px;
    }

    .news-title {
        padding-top: 10px;
        padding-bottom: 15px;
    }

    .news-short {
        padding-top: 10px;
    }

    .welcome-title {
        font-size: 35px;
    }

    .welcome-text {
        font-size: 22px;
        padding-right: 3%;
    }

    .catalogue-item {
        padding: 15px;
    }

    a.catalogue-title {
        font-size: 18px;
    }

    .part-title {
        font-size: 16px;
    }

    .page a.card-more {
        font-size: 17px;
    }
}

@media not all and (max-width: 1199px) {
    #menu-mobile,
    #cabinet-menu-mobile {
        display: none;
    }
}

@media (max-width: 1199px) {
    .filters-divs{
        display: none;
    }
    .pt-0-sm {
        padding-top: 0 !important;
    }

    .container {
        width: 100% !important;
        padding: 0 1em;
    }

    #header {
        height: 0px;
    }

    .ht-brand > img {
        max-height: 83px;
        position: relative;
        bottom: 86px;
        background-color: #2f4c72;
        border-radius: 200px;
        padding: 1em;
    }

    #header-top {
        width: 100%;
        height: 1px;
        z-index: 1000;
        background-color: #ffffff;
        box-shadow: 3px 3px 2px 0 rgba(0, 0, 0, 0.1);
    }

    #header-menu {
        display: none;
    }

    #header-menu1 {
        height: 90px;
    }

    .ht-auth {
        display: none;
    }


    .ht-hamburger {
        display: flex!important;
        justify-content: flex-end!important;
    }

    button.hamburger {
        display: inline-block;
        width: 40px;
        position: relative;
        height: 40px;
        background-color: #005498;
        border: 2px solid #005498;
        padding: 5px;
        text-align: center;
        vertical-align: middle;
    }

    button.hamburger > .ic-hamburger > span,
    button.hamburger > .ic-hamburger:before,
    button.hamburger > .ic-hamburger:after {
        background-color: #fff;
    }

    .ht-sm {
        max-width: 230px;
        flex-basis: 230px;
    }


    .footer-link > a {
        font-size: 16px;
    }

    /*.footer-link  a:nth-child(1) {*/
    /*    font-size: 700px;*/
    /*    background: red;*/
    /*    color: red;*/
    /*}*/
    .footer-link:not(:first-child) {
        margin-top: 9px;
    }

    .footer-logo {
        width: 200px;
    }

    .footer-contacts {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .footer-copy {
        font-size: 12px;
    }

    .section {
        padding-top: 25px;
        padding-bottom: 35px;
    }
    .cat-price {
        font-size: 19px;
    }



    .news-date {
        padding: 5px 10px;
    }

    .news-day {
        font-size: 18px;
    }

    .welcome {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .welcome-title {
        font-size: 30px;
    }

    .welcome-text {
        padding: 5px 0;
        line-height: 1.5;
    }

    a.catalogue-title {
        font-size: 19px;
    }

}

.requests p {
    text-align: justify;
    font-style: italic;
}

.requests h1 {
    font-weight: normal;
    line-height: 1em;
    color: #45BEDB;
}

@media (max-width: 991px) {
    .ht-lg {
        display: none;
    }

    .ht-sm {
        max-width: none;
        flex: auto;
    }

    .ht-brand > img {
        max-width: 160px;
    }

    .footer-main {
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-payments {
        justify-content: center;
    }

    .footer-lists {
        flex-wrap: wrap;
        padding-left: 7.5px;
        padding-right: 7.5px;
        margin-top: 10px;
    }

    .footer-list {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 9px;
        text-align: center;
    }
    .cat-price {
        font-size: 18px;
    }


    .news-date {
        padding: 5px 7px;
        bottom: 7px;
        left: 7px;
    }

    .news-month {
        margin-top: 2px;
    }

    .dynamic-text img {
        display: block !important;
        height: auto !important;
        margin: 10px auto !important;
        float: none !important;
    }

    .welcome {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .welcome-title {
        font-size: 25px;
    }

    .welcome-text {
        font-size: 19px;
    }

    .catalogue-item {
        padding: 9px;
    }

    a.catalogue-title {
        font-size: 18px;
    }
}

@media (max-width: 899px) and (min-width: 768px) {
    .cat-price {
        font-size: 16px;
    }

    .sale-price {
        font-size: 16px;
    }

    .catalogue-item {
        padding: 7px;
    }

    a.catalogue-title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 25px;
        padding-bottom: 0;
        border-left: 4px solid #ef7d00;
        margin-top: 30px!important;
    }

    .welcome {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .welcome-title {
        text-align: center;
        font-size: 22px;
    }

    .welcome-bg::before {
        content: none;
        display: none;
    }

    .welcome-text {
        width: 100%;
        padding: 5px;
        font-size: 17px;
        text-align: center;
    }

    .part-banners {
        margin: 20px 0 0 0;
        flex-wrap: wrap;
    }

    .part-banner {
        width: 650px;
        flex-basis: 650px;
        max-width: 100%;
        margin: 0 auto;
        padding: 20px 0 0 0;
    }
}

@media (max-width: 575px) {
    .news-item {
        margin: 5px auto 0 auto;
        padding-bottom: 5px;
        max-width: 400px;
    }

    .welcome {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .welcome-title {
        font-size: 20px;
    }

    .welcome-text {
        font-size: 16px;
    }

    .catalogue-item {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .card-more {
        font-size: 16px;
    }
    .container {
        width: 100%;
    }
}

