:root {
    --woodsmoke: #141c1a;
    --mineshift: #232323;
    --lochmara: #007cd6;
    --dodger-blue: #1e98ff;
    --aethens-gray: #f0f2f5;
    --alto: #dbdbdb;
    --shark: #22282D;
    --gray: #8d8d8d;
}
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
* {
    transition: .3s ease-in-out;
}
ol,
ul {
    padding: 0;
}
blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol,
p,
ul {
    margin: 0;
}
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}
ol,
ul {
    list-style: none;
}
a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}
img {
    max-width: 100%;
    display: block;
}
article > * + * {
    margin-top: 1em;
}
button,
input,
select,
textarea {
    font: inherit;
}
a {
    text-decoration: none;
}
button {
    padding: 0;
    border-width: 0;
}
.icon {
    display: block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    outline: 0;
    background-color: #999;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
.icon_icon1 {
    -webkit-mask-image: url(/assets/img/icons/icon1.svg);
    mask-image: url(/assets/img/icons/icon1.svg);
}
.icon_icon2 {
    -webkit-mask-image: url(/assets/img/icons/icon2.svg);
    mask-image: url(/assets/img/icons/icon2.svg);
}
@font-face {
    font-family: Mulish;
    src: url(.ttf);
    src: url(/assets/fonts/Mulish-VariableFont_wght.ttf) format("truetype");
    font-style: normal;
    font-display: fallback;
}
body {
    font-size: 14px;
    font-family: Mulish, sans-serif;
    font-display: fallback;
    font-weight: 400;
    color: #555;
    outline: unset;
}
body.open {
    overflow: hidden;
}
.section {
    margin: 50px 0;
}
@media (max-width: 1025px) {
    .section {
        padding: 20px 0;
    }
}
.custom-btn .button {
    height: 62px;
    width: 207px;
    background: var(--lochmara);
    color: #fff;
    position: relative;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.custom-btn .button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 35%;
    width: 2px;
    height: 21px;
    background: #fff;
    display: block;
    -webkit-transition: height 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: height 0.3s ease 0s, left 0.3s ease 0s;
    transition: height 0.3s ease 0s, left 0.3s ease 0s;
}
.custom-btn .button::after {
    content: "";
    position: absolute;
    right: 0;
    top: 35%;
    width: 2px;
    height: 21px;
    background: #fff;
    display: block;
    -webkit-transition: height 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: height 0.3s ease 0s, left 0.3s ease 0s;
    transition: height 0.3s ease 0s, left 0.3s ease 0s;
}
.custom-btn .button:hover::after {
    height: 0;
}
.custom-btn .button:hover::before {
    height: 0;
}
.container {
    max-width: 1348px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: block;
}
@media (max-width: 1348px) {
    .container {
        padding: 0 15px;
    }
}
.absolute-link {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #141c1a;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}
.h2::after {
    content: "";
    background-image: url(/assets/img/icons/rectangle-h2.svg);
    position: absolute;
    width: 10px;
    height: 10px;
    background-size: cover;
    left: 50%;
    bottom: -20px;
}
.body {
    display: grid;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 50px;
}
.body__item {
    position: relative;
}
.mobile__geo {
    display: none;
}
.arrow-4 {
    position: absolute;
    cursor: pointer;
    margin-left: 5px;
    width: 16px;
    height: 6px;
    margin-top: -2px;
    top: 10px;
    right: -10px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.arrow-4-left {
    position: absolute;
    background-color: transparent;
    top: 4px;
    left: 0;
    width: 10px;
    height: 2px;
    display: block;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    float: right;
    border-radius: 2px;
}
.arrow-4-left:after {
    content: "";
    background-color: var(--lochmara);
    width: 10px;
    height: 2px;
    display: block;
    float: right;
    border-radius: 6px 10px 10px 6px;
    -webkit-transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    -o-transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    z-index: -1;
}
.arrow-4-right {
    position: absolute;
    background-color: transparent;
    top: 4px;
    left: 6px;
    width: 10px;
    height: 2px;
    display: block;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    float: right;
    border-radius: 2px;
}
.arrow-4-right:after {
    content: "";
    background-color: var(--lochmara);
    width: 10px;
    height: 2px;
    display: block;
    float: right;
    border-radius: 10px 6px 6px 10px;
    -webkit-transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    -o-transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    z-index: -1;
}
.header {
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.03);
}
.header__message {
    -webkit-mask-image: url(/assets/img/icons/wa.svg);
    width: 20px;
    height: 20px;
    margin-left: 20px;
    background: #fff;
    display: block;
}
.header__message:hover {
    background: var(--lochmara);
}
.header__message__telegram {
    -webkit-mask-image: url(/assets/img/icons/telegram.svg);
    width: 20px;
    height: 20px;
    margin-left: 20px;
    background: #fff;
    display: block;
}
.header__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__phone {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}
@media (max-width: 460px) {
    .header__phone {
        font-size: 14px;
    }
}
.header__phone a {
    color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__phone .icon-phone {
    -webkit-mask-image: url(/assets/img/icons/arcticons-phone.svg);
    background: #fff;
    margin-right: 10px;
}
.header__phone .icon-phone:hover {
    background: var(--lochmara);
}
.header__phone .icon-email {
    -webkit-mask-image: url(/assets/img/icons/mail.svg);
    background: #fff;
}
@media (max-width: 435px) {
    .header__phone .phone__view {
        display: none;
    }
}
.header__phone .phone__view:hover {
    color: var(--lochmara);
}
.header__icon-burger {
    display: none;
    width: 28px;
    height: 18px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-mask-image: url(/assets/img/icons/menu.svg);
    margin-left: 22px;
    background: #fff;
    z-index: 2;
}
@media (max-width: 1025px) {
    .header__icon-burger {
        display: block;
    }
}
.header__logo-link {
    background-image: url(/assets/img/common/logo.svg);
    background-size: cover;
    display: block;
    width: 225px;
    height: 48px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
@media (max-width: 426px) {
    .header__logo-link {
        width: 132px;
        height: 28px;
    }
}
.header__contacts {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 82px;
}
@media (max-width: 1025px) {
    .header__nav {
        display: none;
    }
}
.header__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 1025px) {
    .header__nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.header__nav ul li {
    margin-right: 28px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    position: relative;
}
@media (max-width: 1025px) {
    .header__nav ul li {
        margin-right: 0;
        margin-bottom: 25px;
        font-size: 20px;
    }
}
.header__nav ul li:last-child {
    margin-right: 0;
    margin-bottom: 0;
}
.header__nav ul li a {
    color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1025px) {
    .header__nav ul li a {
        color: #141c1a;
    }
}
.header__nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    display: block;
    background: none repeat scroll 0 0 transparent;
    height: 2px;
    width: 0;
    background: #fff;
    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}
.header__nav ul li a:hover::after {
    width: 100%;
    left: 0;
}
.header__top {
    background: #131416;
    height: 50px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
@media (max-width: 915px) {
    .header__top {
        display: none !important;
    }
}
.header__top-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__top-geo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__top-geo img {
    margin-right: 13px;
}
.header__top-email a:hover {
    color: var(--lochmara);
}
.header__top-items {
    margin-left: 15px;
}
.header__top-adress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__top-button {
    height: 40px;
    width: 158px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    background: var(--lochmara);
}
.header__top-button:hover a {
    text-decoration: underline;
}
.header__top-button a {
    color: #fff;
}
.header__top-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header__top-list ul li {
    margin-right: 35px;
}
.header__top-list ul li:last-child {
    margin-right: 0;
}
.header__top-list ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
.header__top-list ul li a:hover {
    color: #8d8d8d;
}
.header__bottom {
    display: none;
}
.header__bottom ul {
    padding: 36px 0;
}
.header__bottom ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
.header__bottom .header__phone a {
    color: #141c1a;
}
.header__bottom .header__phone span {
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}
.header__bottom .header__phone .icon-phone {
    -webkit-mask-image: url(/assets/img/icons/arcticons-phone.svg);
    background: var(--lochmara);
}
.header__bottom .header__phone .icon-email {
    -webkit-mask-image: url(/assets/img/icons/mail.svg);
    background: var(--lochmara);
    margin-right: 10px;
}
.header__bottom .button-header {
    margin-top: 20px;
}
.header__bottom .button {
    width: 207px;
    background: var(--lochmara);
    color: #fff;
    position: relative;
    height: 62px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__bottom .button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 35%;
    width: 2px;
    height: 21px;
    background: #fff;
    display: block;
}
.header__bottom .button::after {
    content: "";
    position: absolute;
    right: 0;
    top: 35%;
    width: 2px;
    height: 21px;
    background: #fff;
    display: block;
}
.header.open .header__nav {
    overflow: scroll;
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    left: 0;
    top: 0;
    padding: 62px 15px;
    z-index: 1;
}
.header.open .header__menu-nav {
    padding: 36px 0;
    border-top: 1px solid #e4e9e8;
    border-bottom: 1px solid #e4e9e8;
}
.header.open .header__icon-burger {
    -webkit-mask-image: url(/assets/img/icons/menu-close.svg);
    background: #8d8d8d;
}
.header.open .header__bottom {
    display: block;
}
.header.open .mobile__geo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 16px;
    color: #8d8d8d;
}
.header.open .mobile__geo img {
    margin-right: 13px;
}
.header.header-bg .header__nav ul li a {
    color: #141c1a;
}
.header.header-bg .header__logo-link {
    background-image: url(/assets/img/common/logo-hover.svg);
    background-size: cover;
}
.header.header-bg .header__message {
    background: #131416;
}
.header.header-bg .header__message:hover {
    background: var(--lochmara);
}
.header.header-bg .header__telegram {
    background: #131416;
}
.header.header-bg .header__telegram:hover {
    background: var(--lochmara);
}
.header.header-bg .icon-phone {
    background: #131416;
}
.header.header-bg .header__icon-burger {
    background: #131416;
}
.heading {
    padding-top: 45px;
    padding-bottom: 0;
}
@media (max-width: 426px) {
    .heading {
        padding-top: 119px;
    }
}
.heading__section {
    position: relative;
    overflow: hidden;
    height: 590px;
}
.heading__bg {
    position: absolute;
    width: 100%;
    height: 100%;
}
.heading__bg::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #000000;
    opacity: 0.5;
}
.heading__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.heading__container {
    padding: 209px 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-transform: uppercase;
    gap: 24px;
}

@media (max-width: 1025px) {
    .heading__container {
        padding: 139px 0;
    }
}
@media (max-width: 769px) {
    .heading__container {
        padding: 99px 15px;
    }
}
.heading__container h1 {
    font-weight: 700;
    font-size: 62px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
}
@media (max-width: 1025px) {
    .heading__container h1 {
        font-size: 44px;
        line-height: 48px;
    }
}
@media (max-width: 769px) {
    .heading__container h1 {
        font-size: 32px;
        line-height: 40px;
    }
}
.heading__container h1 span {
   /*  color: var(--lochmara); */
}
.heading__container .hr {
    position: relative;
    padding: 18px 0;
}
.heading__container .hr-long {
    width: 568px;
    height: 1px;
    background: #fff;
}
.heading__container .hr-short {
    width: 64px;
    position: absolute;
    left: 45%;
    height: 3px;
    background: #fff;
    top: 17px;
}
.heading__container .sub-text {
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
}
.catalog-main .body {
    grid-template-columns: repeat(4, 24%);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 769px) {
    .catalog-main .body {
        grid-template-columns: repeat(2, 48%);
    }
}
@media (max-width: 426px) {
    .catalog-main .body {
        grid-template-columns: repeat(1, 100%);
    }
}
.catalog-main .body__item {
    margin-bottom: 21px;
}
.catalog-main .body__item:after {
    position: absolute;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #dbdbdb;
}
.catalog-main .body__item:before {
    position: absolute;
    bottom: -1px;
    content: "";
    display: block;
    width: 10%;
    height: 3px;
    background: #5c8ee6;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: 1;
}
.catalog-main .body__item:hover {
    cursor: pointer;
}
.catalog-main .body__item:hover:before {
    width: 100%;
}
.catalog-main .body__item:hover .body__item-name {
    text-decoration: underline;
}
.catalog-main .body__item-img img {
    width: 100%;
    height: auto;
}
.catalog-main .body__item-name {
    padding: 10px 0 16px 0;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
}
.services-main {
    color: #141c1a;
}
.service-projects-container{
    display: flex;
    gap: 20px;
}
.service-projects-container .left-bar{
    width: 100%;
    display: none;
}
@media (min-width: 1024px){
    .service-projects-container .left-bar{
        display: initial;
    }
}
.services-main .body {
    grid-template-columns: repeat(3, 32%);
}
.service-projects-container .services-main .body {
    grid-template-columns: repeat(2, calc(50% - 20px));
    gap: 20px;
}

@media (min-width: 1125px){
    .service-projects-container .services-main .body {
        grid-template-columns: repeat(3, calc(33% - 20px));
    }
}
@media (min-width: 1280px){
    .service-projects-container .services-main .body {
        grid-template-columns: repeat(4, 23%);
    }
}


@media (max-width: 769px) {
    .services-main .body {
        grid-template-columns: repeat(1, 100%);
    }
}
.services-main .body__item {
    border: 1px solid #dbdbdb;
}
@media (max-width: 769px) {
    .services-main .body__item {
        margin-bottom: 32px;
    }
}
.services-main .body__item::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 45%;
    display: block;
    background: none repeat scroll 0 0 transparent;
    height: 2px;
    width: 10%;
    background: var(--lochmara);
    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}
.services-main .body__item:hover::after {
    width: 100%;
    left: 0;
}
.services-main .body__item-img img {
    width: 100%;
    height: auto;
}
.services-main .body__item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
}

.services-main .body__item-title::after {
    background: #dbdbdb;
    width: 100%;
    height: 1px;
    content: "";
    display: block;
    margin: 10px 0;
}
.services-main .body__item-description {
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
}
.services-main .body__item-content {
    padding: 20px 51px 20px 51px;
    min-height: auto;
}
@media (min-width: 768px){
    .service-projects-container .services-main .body__item-content {
        padding: 20px;
    }
    .service-projects-container .services-main .body__item-title {
        font-size: 16px;
        line-height: 120%;
    }
}
@media (max-width: 1025px) {
    .service-projects-container .services-main .body__item-content {
        padding: 20px 21px 20px 21px;
    }
}
.fos {
    background: #f0f2f5;
    margin: 50px 0;
}
@media (max-width: 1025px) {
    .fos {
        margin: 34px 0;
    }
}
.fos__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 769px) {
    .fos__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.fos__body-item {
    width: 50%;
}
@media (max-width: 769px) {
    .fos__body-item {
        width: 100%;
    }
}
.fos__body-img {
    position: relative;
}
@media (max-width: 769px) {
    .fos__body-img {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}
.fos__body-img-content {
    position: absolute;
    top: -80px;
}
@media (max-width: 769px) {
    .fos__body-img-content {
        position: relative;
        top: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.fos__description {
    padding: 0 0 30px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #8d8d8d;
}
.fos .h2 {
    color: var(--lochmara);
    margin-bottom: 20px;
    font-size: 52px;
    text-align: left;
}
@media (max-width: 550px) {
    .fos .h2 {
        font-size: 36px;
        line-height: 120%;
    }
}
@media (max-width: 340px) {
    .fos .h2 {
        font-size: 24px;
    }
}
.fos .h2::after {
    display: none;
}
.fos .form__body-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
}
.fos .form__body-item {
    width: 100%;
}
.fos .form__body-item:hover {
    color: #131416;
}
.fos .form__body-item:focus {
    color: #131416;
}
.fos .form__body-item .controls input {
    padding: 20px 10px 20px 30px;
    border: 1px solid #e8e8e9;
    color: #8d8d8d;
    background-color: #f0f2f5;
    outline: 0;
}
.fos .form__body-item .controls input:focus {
    border: 1px solid var(--lochmara);
}
.fos .form__body-item-phone {
    position: relative;
    border: 1px solid #8d8d8d;
}
@media (max-width: 769px) {
    .fos .form__body-item-phone {
        margin: 16px 0;
    }
}
.fos .form__body-item-phone label {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #f0f2f5;
    padding: 0 10px;
}
.fos .form-group-btn {
    height: 62px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 35px;
}
.fos .form-group-btn button {
    height: 100%;
    width: 207px;
    background: var(--lochmara);
    color: #fff;
    position: relative;
}
.fos .form-group-btn button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 35%;
    width: 2px;
    height: 21px;
    background: #fff;
    display: block;
}
.fos .form-group-btn button::after {
    content: "";
    position: absolute;
    right: 0;
    top: 35%;
    width: 2px;
    height: 21px;
    background: #fff;
    display: block;
}
.home_page .section.works-main {
    padding-bottom: 65px;
}
.works-main .h2 {
    margin-bottom: 40px;
}
.works-main__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.works-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 20px;
}

.product-page .works-link {
    justify-content: center;
}

.works-link a {
    font-size: 18px;
    text-decoration: underline;
    color: #131416;
}
.works-link a:hover {
    color: var(--lochmara);
}
.works-slider .slick-slide img {
    margin: 0 auto;
    padding: 0;
}
.about-main .h2 {
    margin-bottom: 16px;
    text-align: left;
}
@media (max-width: 769px) {
    .about-main .h2 {
        text-align: center;
    }

    .works-link {
        justify-content: center;
    }
}
.about-main .h2::after {
    left: 250px;
    bottom: 15px;
}
@media (max-width: 769px) {
    .about-main .h2::after {
        left: 50%;
        bottom: -15px;
    }
}
.about-main .custom-btn .button {
    background: initial;
    color: #141c1a;
    border: 1px solid #dbdbdb;
}
@media (max-width: 769px) {
    .about-main .custom-btn .button {
        margin: 0 auto;
    }
}
.about-main .custom-btn .button::after {
    background: var(--lochmara);
}
.about-main .custom-btn .button::before {
    background: var(--lochmara);
}
.about-main__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 0 40px 0;
}
@media (max-width: 769px) {
    .about-main__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.about-main__body-item {
    width: 50%;
}
@media (max-width: 769px) {
    .about-main__body-item {
        width: 100%;
    }
}
@media (max-width: 769px) {
    .about-main__body-item:first-child {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}
.about-main__body-item:last-child {
    padding-left: 78px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 769px) {
    .about-main__body-item:last-child {
        padding-left: 0;
        padding-bottom: 34px;
    }
}
.about-main__body-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.about-main__body-img img {
    min-width: 569px;
    height: auto;
}
@media (max-width: 769px) {
    .about-main__body-img img {
        min-width: 100%;
    }
}
.about-main__body-description {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #141c1a;
    margin-bottom: 40px;
    max-width: 469px;
}
@media (max-width: 769px) {
    .about-main__body-description {
        max-width: 100%;
    }
}
.company-adv {
    border-top: 1px solid rgba(22, 24, 26, 0.15);
    border-bottom: 1px solid rgba(22, 24, 26, 0.15);
}
.company-adv__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 769px) {
    .company-adv__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.company-adv__body-item {
    width: 33%;
    text-align: center;
    margin: 30px 0;
    padding: 0;
    position: relative;
}
@media (max-width: 769px) {
    .company-adv__body-item {
        width: 100%;
        margin: 15px 0;
        padding: 0;
    }
}
.company-adv__body-item:nth-child(2) {
    border-left: 1px solid rgba(22, 24, 26, 0.15);
    border-right: 1px solid rgba(22, 24, 26, 0.15);
}
@media (max-width: 769px) {
    .company-adv__body-item:nth-child(2) {
        border-left: 0;
        border-right: 0;
        margin: 0;
    }
}
.company-adv__body-item::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -31.5px;
    background: var(--lochmara);
    width: 64px;
    height: 2px;
    left: 42%;
}
@media (max-width: 769px) {
    .company-adv__body-item::after {
        display: none;
    }
}
.company-adv__body-num {
    font-weight: 700;
    font-size: 62px;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--lochmara);
    position: relative;
}
.company-adv__body-num span {
    position: absolute;
    margin-left: -40px;
}
.company-adv__body-title {
    color: #141c1a;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}
.company-adv__body-title {
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    color: #141c1a;
}
.contacts-main__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 769px) {
    .contacts-main__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.contacts-main__body-item:first-child {
    width: 65%;
}
@media (max-width: 769px) {
    .contacts-main__body-item:first-child {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}
.contacts-main__body-item:last-child {
    width: 30%;
}
@media (max-width: 769px) {
    .contacts-main__body-item:last-child {
        width: 100%;
        padding-bottom: 34px;
    }
}
.contacts-main-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: start;
}
.contacts-main-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #141c1a;
}
.contacts-main-adress {
    padding-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
@media (max-width: 769px) {
    .contacts-main-adress {
        max-width: 100%;
    }
}

.address-wrap + .address-wrap {
    margin-top: 20px;
}

.contacts-main-list {
    margin-top: 32px;
}

.contacts-main-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.contacts-main-list li * {
    font-size: 16px;
    color: var(--woodsmoke);
}

.contacts-main-list li:first-child a {
    font-size: 16px;
}
.contacts-main-list li:first-child a:hover {
    color: var(--lochmara);
}
.contacts-main-list li:last-child {
    margin-bottom: 0;
}
.contacts-main-list img {
    margin-right: 20px;
}
.contacts-main-list a {
    font-weight: 400;
}
.contacts-main-list a:hover {
    color: var(--lochmara);
}
.modal-line__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 110px;
}
@media (max-width: 1025px) {
    .modal-line__body {
        padding: 0 0;
    }
}
@media (max-width: 769px) {
    .modal-line__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.modal-line__body-item:first-child {
    text-transform: uppercase;
    color: var(--lochmara);
    font-weight: 500;
    font-size: 32px;
    line-height: 41px;
}
.modal-line__body-item:nth-child(2) {
    width: 240px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
@media (max-width: 769px) {
    .modal-line__body-item:nth-child(2) {
        padding: 20px 0;
    }
}
footer {
    background: #f0f2f5;
    position: relative;
    overflow: hidden;
}
@media (max-width: 1025px) {
    footer {
        margin: 32px 0 0 0;
    }
}
footer .container {
    position: relative;
}
footer .h5 {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #141c1a;
    margin-bottom: 18px;
}
footer .footer {
    padding: 42px 0 32px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
}
@media (max-width: 769px) {
    footer .footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
footer .footer-bg {
    position: absolute;
    left: 0;
    overflow: hidden;
}
@media (min-width: 1441px) {
    footer .footer-bg {
        width: 31%;
    }
}
@media (min-width: 1921px) {
    footer .footer-bg {
        width: 35%;
    }
}
@media (max-width: 1440px) {
    footer .footer-bg {
        height: 100%;
        width: 26%;
    }
}
@media (max-width: 769px) {
    footer .footer-bg {
        display: none;
    }
}
footer .footer-bg img {
    width: 100%;
    height: 100%;
}
footer .footer__info {
    color: #fff;
}
@media (max-width: 769px) {
    footer .footer__info {
        color: #131416;
    }
}
footer .footer__info li {
    margin-bottom: 8px;
}
footer .footer__info li:last-child {
    margin-bottom: 0;
}
footer .footer__info a {
    color: #fff;
}
footer .footer__info a:hover {
    color: var(--lochmara);
}
@media (max-width: 769px) {
    footer .footer__info a {
        color: #131416;
    }
}
footer .footer__logo {
    padding-bottom: 20px;
}
@media (max-width: 769px) {
    footer .footer__logo {
        padding-bottom: 35px;
    }
}
footer .footer__logo-img {
    background-image: url(/assets/img/common/logo-footer.svg);
    width: 225px;
    height: 48px;
}
@media (max-width: 769px) {
    footer .footer__logo-img {
        background-image: url(/assets/img/common/logo-hover.svg);
    }
}
footer .footer__item:first-child {
    width: 25%;
}
@media (max-width: 769px) {
    footer .footer__item:first-child {
        width: 100%;
    }
}
footer .footer__item:last-child {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 30px;
}
@media (max-width: 769px) {
    footer .footer__item:last-child {
        width: 100%;
        position: relative;
    }
}
footer .footer__item:last-child a {
    color: #141c1a;
    font-weight: 400;
}
footer .footer__item:last-child a:hover {
    color: var(--lochmara);
}
footer .footer__item:last-child .button {
    color: var(--lochmara);
    margin-bottom: 30px;
    background: #fff;
}
footer .footer__item:last-child .button::after,
footer .footer__item:last-child .button::before {
    background: var(--lochmara);
}
footer .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 70%;
}
@media (max-width: 769px) {
    footer .footer__nav {
        width: 100%;
    }
}
@media (max-width: 426px) {
    footer .footer__nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
footer .footer__nav-item {
    width: 33%;
}
@media (max-width: 769px) {
    footer .footer__nav-item {
        width: 100%;
    }
}
@media (max-width: 426px) {
    footer .footer__nav-item {
        padding-bottom: 20px;
    }
}
@media (max-width: 426px) {
    footer .footer__nav-item:last-child {
        padding-bottom: 0;
    }
}
footer .footer__nav-item ul {
    padding-right: 15px;
}
footer .footer__nav-item ul li {
    margin-bottom: 12px;
}
footer .footer__nav-item ul li:last-child {
    margin-bottom: 0;
}
footer .footer__contact {
    width: 22%;
}
@media (max-width: 769px) {
    footer .footer__contact {
        width: 100%;
        position: absolute;
    }
}
@media (max-width: 769px) {
    footer .footer__contact img {
        margin: 0 auto;
    }
}
@media (max-width: 1200px) {
    footer .footer__contact .custom-btn {
        display: none;
    }
}
.copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 18px 0 75px 0;
}
@media (max-width: 769px) {
    .copyright {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (max-width: 769px) {
    .copyright__item {
        padding-bottom: 10px;
    }
}
@media (max-width: 769px) {
    .copyright__item:last-child {
        padding-bottom: 0;
    }
}
.copyright__item:first-child {
    color: #fff;
}
@media (max-width: 769px) {
    .copyright__item:first-child {
        color: #131416;
    }
}
.copyright__item a {
    color: var(--lochmara);
}
.lock {
    overflow: hidden;
}
.wrapper .header__logo-link {
    background-image: url(/assets/img/common/logo-hover.svg);
    background-size: cover;
}
.wrapper .icon-phone {
    background: #131416;
}
.wrapper .icon-phone:hover {
    background: var(--lochmara);
}
.wrapper .icon-email {
    background: #131416;
}
.wrapper .phone__view {
    color: #131416;
}
.wrapper .header__message {
    background: #131416;
}
.wrapper .header__message:hover {
    background: var(--lochmara);
}
.wrapper .header__telegram {
    background: #131416;
}
.wrapper .header__telegram:hover {
    background: var(--lochmara);
}
.wrapper .header__icon-burger {
    background: #131416;
}
.wrapper .header__nav ul li a {
    color: #131416;
}
.wrapper .header__nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    background: none repeat scroll 0 0 transparent;
    height: 2px;
    width: 0;
    background: #131416;
    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}
.wrapper .header__nav ul li a:hover::after {
    width: 100%;
    left: 0;
}
.breadcrumb {
    display: block;
    text-align: center;
}
.breadcrumb-item {
    display: inline-block;
}
.breadcrumb-item:after {
    margin: 0 5px;
    content: "—";
    color: var(--lochmara);
}
.breadcrumb-item a {
    color: var(--lochmara);
    font-size: 12px;
}
.breadcrumb-item.active {
    color: #dbdbdb;
    font-size: 12px;
    line-height: 15px;
}
.breadcrumb-item.active:after {
    content: "";
    margin: 0;
}
.h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 130%;
    color: #141c1a;
    text-align: center;
    text-transform: uppercase;
}
@media (max-width: 769px) {
    .h1 {
        font-size: 32px;
    }
}
.head {
    padding-top: 20px;
}
.head .hr {
    position: relative;
    padding: 20px 0 0;
}
.head .hr-long {
    width: 255px;
    height: 1px;
    background: #e4e9e8;
    margin: 0 auto;
}
.head .hr-short {
    width: 64px;
    height: 3px;
    background: var(--lochmara);
    margin: 0 auto;
    margin-top: -1.5px;
}
.head .sub-text {
    text-align: center;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: #141c1a;
    margin-top: 40px;
}
@media (max-width: 769px) {
    .head .sub-text {
        font-size: 14px;
        line-height: 20px;
    }
}
.category-list {
    display: grid;
    grid-template-columns: repeat(3, 30%);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 769px) {
    .category-list {
        grid-template-columns: repeat(2, 48%);
    }
}
@media (max-width: 425px) {
    .category-list {
        grid-template-columns: repeat(1, 100%);
    }
}
.category-list-item {
    margin-bottom: 50px;
    position: relative;
}
.category-list-item img {
    margin: 0 auto;
    width: 100%;
}
.left-bar {
    width: 30%;
    max-width: 304px;
}
@media (max-width: 769px) {
    .left-bar {
        width: 100%;
        display: none;
    }
}
.left-bar-list {
    border: 1px solid var(--alto);
    margin-bottom: 32px;
}
.left-bar-list .submenu {
    display: none;
    padding: 0 0 0 10px;
}
.left-bar-list .submenu__item.active .submenu__item-link {
    color: var(--lochmara);
}
.left-bar-list ul li.active .menu__body-item-link {
    color: var(--lochmara);
}
.left-bar-list ul li.active .arrow-4 {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
.left-bar-list ul li.active .submenu {
    display: block;
}
.left-bar-list ul li.active .submenu__item {
    margin-bottom: 7px;
}
.left-bar-list ul li.active .submenu__item-link {
    font-size: 13px;
}
.left-bar-list ul li.active .menu-item-link {
    color: var(--lochmara);
    font-weight: 600;
}
.left-bar-list .h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
}
.left-bar-list li {
    margin-bottom: 14px;
    position: relative;
}
.left-bar-list li a {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #131416;
}
.left-bar-list li a:hover {
    color: var(--lochmara);
}
.left-bar-form {
    background: #f0f2f5;
    padding: 35px 25px;
}
@media (max-width: 769px) {
    .left-bar-form {
        display: none;
    }
}
.left-bar-form .form__body {
    margin-bottom: 30px;
}
.left-bar-form .form__body-item.form__body-item-phone {
    margin-top: 30px;
}
.left-bar-form .form-group-btn .custom-btn {
    height: 62px;
}
.left-bar-form .form-group-btn button {
    width: 100%;
}
.left-bar-form .h3 {
    color: var(--lochmara);
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 30px;
}
.left-bar-form input {
    height: 66px;
    background: #f0f2f5;
    padding: 0 30px;
    color: #8d8d8d;
    border: 1px solid var(--lochmara);
}
.left-bar-form .order__form-checkbox {
    height: auto;
    margin-top: 16px;
}
.category-tovar-list .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 769px) {
    .category-tovar-list .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.category-tovar-list__body {
    display: grid;
    grid-template-columns: repeat(3, 31%);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 1025px) {
    .category-tovar-list__body {
        grid-template-columns: repeat(2, 48%);
    }
}
@media (max-width: 425px) {
    .category-tovar-list__body {
        grid-template-columns: repeat(1, 100%);
    }
}
.category__container {
    width: 80%;
    padding: 0 0 0 40px;
}
@media (min-width: 1400px) {
    .category__container {
        padding: 0 0 0 60px;
    }
}
@media (max-width: 769px) {
    .category__container {
        width: 100%;
        padding: 0;
    }
}
.category__top-nav {
    display: grid;
    grid-template-columns: repeat(4, 25%);
    margin-bottom: 50px;
}
@media (max-width: 769px) {
    .category__top-nav {
        grid-template-columns: repeat(2, 50%);
    }
    .category__top-nav-item-img {
        margin-bottom: 0;
    }
}
.category__top-nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    border: 1px solid #e4e9e8;
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.category__top-nav-item:hover {
    border: 1px solid #a4a7a6;
}
.category__top-nav-item-img {
    overflow: hidden;
    margin-bottom: 10px;
    width: 90%;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.category__top-nav-item-img img {
    width: 100%;
    height: auto;
}
.category__top-nav-item-name {
    font-weight: 600;
    font-size: 14px;
}
.category__top-nav-item-desc {
    font-size: 12px;
}
.category-list-item {
    margin-bottom: 40px;
    border: 1px solid #e4e9e8;
}
.category-list-item:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 45%;
    display: block;
    background: none repeat scroll 0 0 transparent;
    height: 2px;
    width: 10%;
    background: var(--lochmara);
    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}
.category-list-item:hover:after {
    width: 100%;
    left: 0;
}
@media (max-width: 425px) {
    .category-list-item {
        margin-bottom: 20px;
    }
}
.category-list-item:hover {
    cursor: pointer;
}
.category-list-item:hover .category-name {
    color: var(--lochmara);
}
.category-list-item:hover .category-name a {
    color: var(--lochmara);
}
.category-list-item .in-stock {
    position: absolute;
    top: 27px;
    left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
.category-list-item .in-stock img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}
.category-list-item-img {
    position: relative;
    min-height: 200px;
}
.category-list-item-img img {
    margin: 0 auto;
    width: 100%;
    padding: 0 0;
    height: 100%;
}
.category-list-item-img .price {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 6px 10px;
    background: #f0f2f5;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    opacity: 0.8;
}
.category-list-item .category-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #141c1a;
    background: #fbfcfc;
    padding: 15px 10px 15px 10px;
    min-height: 74px;
}
.category-list-item .category-name a {
    color: #141c1a;
}
.category-list-item .hidden {
    height: 0;
    overflow: hidden;
}
.fos-line {
    background: #f0f2f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 116px;
}
@media (max-width: 1025px) {
    .fos-line {
        padding: 0 58px;
    }
}
@media (max-width: 769px) {
    .fos-line {
        padding: 50px 15px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.fos-line-item {
    position: relative;
}
.fos-line-item .img {
    width: 210px;
}
.fos-line-item .vihr {
    position: absolute;
    top: -50px;
    left: 20px;
}
.fos-line-item .h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 38px;
    color: var(--lochmara);
    text-transform: uppercase;
}
@media (max-width: 769px) {
    .fos-line-item .h3 {
        text-align: center;
    }
}
.fos-line-item .sub-text {
    font-size: 24px;
    line-height: 38px;
    color: #131416;
}
@media (max-width: 769px) {
    .fos-line-item .sub-text {
        text-align: center;
        font-size: 18px;
        line-height: 24px;
    }
}
.service-adv__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 425px) {
    .service-adv__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.service-adv__body-item {
    width: 33%;
    text-align: center;
    margin: 0 auto;
}
@media (max-width: 425px) {
    .service-adv__body-item {
        width: 100%;
        margin-bottom: 34px;
    }
}
.service-adv__body-img {
    margin-bottom: 16px;
}
.service-adv__body-img img {
    margin: 0 auto;
}
.services-page .services-main .body__item {
    margin-bottom: 0px;
}
.seo-text h1 {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
}
.seo-text p {
    margin-bottom: 10px;
}
.seo-text p:last-child {
    margin-bottom: 0;
}
.tovar .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 769px) {
    .tovar .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.tovar__container {
    width: 80%;
    padding: 0 0 0 42px;
}
@media (max-width: 769px) {
    .tovar__container {
        width: 100%;
        padding: 0;
    }
}
.tovar__body {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}
@media (max-width: 769px) {
    .tovar__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (max-width: 769px) {
    .tovar__body-img {
        /*padding-top: 70px;*/
        /*padding-bottom: 50px;*/
    }
}
@media (max-width: 426px) {
    .tovar__body-img {
        margin-bottom: 30px;
    }
}
.tovar__body-item {
    width: 50%;
}
@media (max-width: 769px) {
    .tovar__body-item {
        width: 100%;
    }
}
.tovar__body-item:last-child {
    padding-left: 42px;
}
@media (max-width: 769px) {
    .tovar__body-item:last-child {
        padding-left: 0;
    }
}
.tovar__body .name {
    width: 100%;
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--woodsmoke);
}
@media (max-width: 769px) {
    .tovar__body-item .name {
        position: absolute;
        top: 0;
        margin-bottom: 0;
    }
}
@media (max-width: 769px) {
    .tovar__body-item .custom-btn .button {
        margin: 0 auto;
    }
}
.tovar__body-item .price {
    margin-bottom: 8px;
}
.tovar__body-item .price-new {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: var(--lochmara);
}

.slider .slick-dots li button:before {
    font-size: 30px;
    color: var(--lochmara);
    opacity: 1;
}
.slider .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
    border: 0.5px solid var(--lochmara);
    border-radius: 50%;
}
.slider .slick-next,
.slider .slick-prev {
    border: 1px solid #555555;
    width: 42px;
    height: 42px;
    background: #fff;
    z-index: 2;
}
.slick-disabled {
    cursor: not-allowed !Important;
}
.slider .slick-next:hover,
.slider .slick-prev:hover {
    background: var(--lochmara);
}
.slider .slick-next {
    right: -20px;
    transform: translateX(100%);
}
.slider .slick-next:before {
    background-image: url(/assets/img/icons/arrow-right.svg);
    opacity: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    display: block;
    height: 22px;
    width: 22px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
.slider .slick-next:hover:before {
    background-image: url(/assets/img/icons/arrow-right-hover.svg);
}
.slider .slick-prev {
    left: -20px;
    transform: translateX(-100%);
}
.slider .slick-prev:before {
    background-image: url(/assets/img/icons/arrow-left.svg);
    opacity: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    display: block;
    height: 22px;
    width: 22px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
.slider .slick-prev:hover:before {
    background-image: url(/assets/img/icons/arrow-left-hover.svg);
}
.similar-products__section .h2 {
    text-align: center;
}
.portfolio__body {
    display: grid;
    grid-template-columns: repeat(4, 24%);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 1025px) {
    .portfolio__body {
        grid-template-columns: repeat(3, 32%);
    }
}
@media (max-width: 769px) {
    .portfolio__body {
        grid-template-columns: repeat(2, 48%);
    }
}
@media (max-width: 376px) {
    .portfolio__body {
        grid-template-columns: repeat(1, 100%);
    }
}
.portfolio__body-item {
    margin-bottom: 30px;
}
.portfolio__body-item img {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    max-width: 100%;
    padding: 10px 10px;
}
.pagination-holder .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.pagination-holder .page-item {
    padding: 0 16px 11px 16px;
    margin-top: 10px;
    border-bottom: 1px solid #8d8d8d;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}
.pagination-holder .page-item a {
    color: #8d8d8d;
}
.pagination-holder .page-item:hover {
    background: #fff;
}
.pagination-holder .page-item.active {
    border-bottom: 1px solid var(--lochmara);
}
.pagination-holder .page-item.active a {
    color: #000;
}
.pagination-holder .pagen-prev {
    margin-right: 15px;
}
.pagination-holder .pagen-prev span {
    background-image: url(/assets/img/icons/arrow-left.svg);
    opacity: 1;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 22px;
    width: 22px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
.pagination-holder .pagen-prev span:hover {
    background-image: url(/assets/img/icons/arrow-pagen-left.png);
}
.pagination-holder .pagen-next {
    margin-left: 15px;
}
.pagination-holder .pagen-next span {
    background-image: url(/assets/img/icons/arrow-right.svg);
    opacity: 1;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 22px;
    width: 22px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
.pagination-holder .pagen-next span:hover {
    background-image: url(/assets/img/icons/arrow-pagen-right.svg);
}
.seo-text-body ul {
    list-style: disc;
    padding-left: 26px;
    margin-bottom: 10px;
}
.seo-text-body ol {
    list-style: decimal;
    margin-left: 15px;
    margin-bottom: 10px;
}
.seo-text-body li {
    margin-bottom: 3px;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
}
.seo-text-body li:last-child {
    margin-bottom: 0;
}
.seo-text-body p {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 10px;
}
.seo-text-body p:last-child {
    margin-bottom: 0;
}
.seo-text-body h2 {
    margin-bottom: 15px;
}
.seo-text-body img {
    width: 40%;
    height: 50%;
    padding-left: 20px;
    padding-top: 7px;
}
@media (max-width: 450px) {
    .seo-text-body img {
        width: 100%;
    }
}
.head-title .hr {
    position: relative;
    padding: 18px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.head-title .hr-long {
    width: 568px;
    height: 1px;
    background: #e4e9e8;
}
.head-title .hr-short {
    width: 64px;
    position: absolute;
    left: 47%;
    height: 3px;
    background: var(--lochmara);
    top: 17px;
}
#overlay {
    z-index: 200;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    display: none;
    background: rgba(0, 0, 0, 0.4);
}
.ajax_form {
    position: relative;
}
.modal-title {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--woodsmoke);
    line-height: 150%;
    margin-bottom: 20px;
}
.modal_sub-text {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 32px;
    text-align: center;
}
.modal__form {
    padding: 20px 40px;
    background: var(--aethens-gray);
    border-radius: unset;
    width: 80%;
    max-width: 878px;
    margin: 0 auto;
    position: relative;
    max-height: 800px;
    overflow: auto;
}
@media (max-width: 769px) {
    .modal__form {
        padding: 20px 15px;
        width: calc(100% - 30px) !important;
    }

    .modal-title {
        font-size: 24px;
    }
}
.modal__form .form__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}
.modal__form .form__body > * {
    width: 100%;
}
.modal__form .form__body .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.modal__form .form__body .form-group input {
    margin: 0 5px 0 0;
}
.modal__form .form__body .form-group a {
    color: #a1a1a1;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
}

.modal__form .form__body-items:first-child {
    padding: 0;
}
.modal__form .form__body-items:last-child {
    margin-bottom: 0;
}
.modal__form .form__body-items input,
.modal__form .form__body-items textarea,
.modal__form .form__body-items select {
    width: 100%;
    height: 48px;
    color: #555;
    background-color: #FFFFFF;
    border: 1px solid var(--alto);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    padding: 12px;
}
.modal__form .form__body-items input::placeholder,
.modal__form .form__body-items textarea::placeholder {
    color: #555;
}
.modal__form .form__body-items textarea {
    min-height: 72px;
}
.modal__form .form__body-item {
    font-size: 16px;
    line-height: 1.5;
    color: var(--woodsmoke);
    margin-bottom: 4px;
}
.modal__form .form__body-items input:focus,
.modal__form .form__body-items textarea:focus,
.modal__form .form__body-items select:focus {
    outline: 1px solid var(--lochmara);
}
.modal__form .form__body-item span {
    color: var(--lochmara);
}
.modal__form .form__checkbox-label {
    font-weight: 400;
    font-size: 14px;
    color: #a2a2a2;
}
.modal__form .form-group .form__checkbox {
    width: 24px;
    height: 24px;
    margin-right: 12px !important;
}
.modal__form .form__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.modal__form .form__btn .btn {
    padding: 17px 30px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5%;
    background: var(--lochmara);
    color: #fff;
    border: none;
    cursor: pointer;
    width: 270px;
    height: 62px;
}

.form__body-items.sm {
    width: calc((100% - 32px) / 3);
}

@media (max-width: 767px) {
    .form__body-items.sm {
        width: 100%;
    }
}

.modal__form .exit {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 48px;
    height: 48px;
    cursor: pointer;
}

.modal-form__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .modal__form .form__btn .btn {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 649px) {
    .modal-form__footer {
        flex-wrap: wrap;
    }
}

@media (max-width: 321px) {
    .modal__form .exit {
        right: 10px;
        top: 10px;
    }
}
.modal__form .recaptcha {
    overflow: hidden;
    min-width: min-content;
}
#modal_form,
.modal_form,
#modal_form-faq {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    z-index: 250;
    display: none;
    overflow: auto;
    height: 100%;
}
@media (max-width: 426px) {
    #modal_form,
    .modal_form,
    #modal_form-faq {
        top: 0 !important;
    }
}
.review-slider .slick-slide img {
    max-height: 600px;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #DBDBDB;
    height: auto;
}
.invalid-feedback {
    color: brown;
}

.category-list-item .category-name h2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}
.category-tovar-list__body article > * + * {
    margin: 0;
}
.home_page .section {
    padding: 25px 0;
}
@media (max-width: 769px) {
    .home_page .services-main .body__item-content {
        min-height: auto;
    }
}
.home_page .fos {
    margin: 140px 0 40px;
}
.about_page .breadcrumb {
    background: initial;
    
    
}

.about_page .breadcrumb-item a {
    color: #fff;
}

.about_page .breadcrumb-item:after {
    color: #fff;
}

.about_page .breadcrumb-item.active {
    color: #fff;
}

.about_page .section {
    padding: 25px 0;
}
.new_header .breadcrumb,
.new_header_h1 {
    margin-top: 95px;
}
@media (max-width: 800px) {
    .telby {
        display: none;
    }
}
@media (max-width: 460px) {
    .new_header {
        height: 400px;
    }
    .category-tovar-list__body {
        grid-template-columns: repeat(2, 49%);
    }
    .category-list-item-img .price {
        font-size: 14px;
        width: 100%;
        padding: 6px 4px;
        text-align: center;
    }
    .category-list-item-img img {
        min-height: 165px !important;
    }
    .category-list-item .category-name {
        padding: 10px !important;
    }
    .category-list-item .category-name .btn_zakaz {
        width: 100%;
    }
    .category-list-item .category-name a {
        font-size: 14px;
    }
}
.category-list-item-img img {
    position: absolute;
}
@media (max-width: 1100px) {
    .category-list-item-img img {
        min-height: 140px;
        -o-object-fit: cover;
        object-fit: cover;
        position: relative;
    }
}
.advantages .advantages_block .img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 0 0;
    height: 48px;
}
.advantages .advantages_block {
    vertical-align: top;
    /*background: #232e37;*/
    /*height: 63px;*/
    /*display: -webkit-box;*/
    /*display: -ms-flexbox;*/
    /*display: flex;*/
    /*-webkit-box-align: center;*/
    /*-ms-flex-align: center;*/
    /*align-items: center;*/
    /*-webkit-box-pack: center;*/
    /*-ms-flex-pack: center;*/
    /*justify-content: center;*/
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
}

.advantages_blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
}
.inner_page {
    position: relative;
    margin: 0 auto;
    clear: both;
    display: block;
}
.advantages {
    /*background: #2b3842;*/
    text-align: justify;
    display: block;
    margin-bottom: 20px;
    border: 1px solid var(--alto);
}

.advantages .advantages_block p {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    color: var(--mineshift);
    width: 140px;
    text-align: left;
    font-weight: 500;
    line-height: 18.83px;
}
.advantages .advantages_block img {
    /*border: 2px solid var(--lochmara);*/
    width: 48px;
    height: 48px;
}


@media (min-width: 0px){
    .advantages{
        padding: 20px;
    }
    .advantages .advantages_block{
        width: 50%;
        position: relative;
    }
    .advantages .advantages_block::after {
        content: none;
    }
}

@media (max-width: 479px) {
    .advantages .advantages_blocks {
        gap: 20px;
    }
    .advantages .advantages_block {
        width: calc((100% - 20px) / 2);
        flex-direction: column;
        align-items: start;
        gap: 12px;
    }

}

@media (min-width: 480px){
    .advantages .advantages_block:not(:last-child)::after {
        content: ' ';
        border-right: 1px solid var(--alto);
        position: absolute;
        right: 0;
        height: 64px;
        background: var(--alto);
        width: 1px;
    }
    .advantages .advantages_block:nth-child(2n)::after {
        content: none;
    }
    .advantages{
        padding: 20px 21px;
    }
}

@media (max-width: 768px) {
    .advantages .advantages_block {
        padding: 0;
    }
    .advantages_blocks {
        row-gap: 20px;
    }
}

@media (min-width: 1024px){
    .advantages .advantages_block{
        width: 25%;
        max-width: 218px;
    }
    .advantages .advantages_block:not(:last-child)::after {
        content: ' ';
        border-right: 1px solid var(--alto);
        position: absolute;
        right: 0;
        height: 64px;
        background: var(--alto);
        width: 1px;
    }
    .advantages{
        padding: 20px 0;
    }
}
.social_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.social_block svg {
    width: 30px;
    height: max-content;
}
.seo-text-body h2 {
    margin-top: -130px;
    padding-top: 150px;
    font-size: 24px;
}
.faq-wrapper h2, .faq-wrapper h3 {
    margin-top: -110px !important;
    padding-top: 150px;
}


.breadcrumb-item.active {
    color: #000;
}
.container {
    padding: 0 15px;
}
.cookie-box {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding: 1rem 2rem;
    background: #fff;
    -webkit-transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 9999;
}
.cookie-box a {
    color: var(--lochmara);
}
.cookie-box--hide {
    opacity: 0;
    bottom: -100%;
}
.cookie-button {
    display: inline-block;
    cursor: pointer;
    padding: 0.65rem 0.85rem;
    margin-left: 0.45rem;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    background-color: var(--lochmara);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.breadcrumb {
    padding: 10px 10px;
    background: #fff;
}
.cookie-button:hover {
    opacity: 0.8;
}
.js-button-up.button-up {
    position: fixed;
    z-index: 1000;
    background: var(--lochmara);
    width: 50px;
    height: 40px;
    border-radius: 6px;
    bottom: 20px;
    left: 25px;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}
.js-button-up.button-up.active {
    opacity: 1;
}
.js-button-up .icon {
    -webkit-transition: opacity 0.3s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
    max-width: 50%;
    position: absolute;
    margin: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.js-button-up .icon svg {
    fill: #fff;
}
.js-button-up.button-up:hover {
    background: #006ac4;
}
.header__menu-nav ul {
    display: none;
}
.header.open .header__menu-nav {
    display: block !important;
}
.top-menu,
.top-menu ul {
    margin: 0;
    padding: 0;
    float: left;
}
.top-menu ul li {
    display: inline-block;
    margin-right: 10px;
}
.top-menu ul li a {
    color: #fff;
    line-height: 50px;
    font-weight: 400;
}
.top-menu ul li a:hover {
    color: #333;
    text-decoration: none;
}
.top-social-section,
.top-social-section ul {
    margin: 0;
    padding: 0;
    float: right;
}
.top-social-section ul li {
    display: inline-block;
    margin-right: 15px;
}
.top-social-section ul li a {
    color: #fff;
    line-height: 50px;
}
.top-social-section ul li a:hover {
    color: #333;
}
nav.navbar {
    margin: 0;
    padding: 0;
}
nav.navbar ul li {
    display: inline-block;
    margin: 34px 23px 0;
}
.drop-menu-section {
    top: 50px;
}
.m-menu-icon div {
    width: 35px;
    height: 5px;
    background-color: #000;
    margin: 6px 0;
    display: none;
}
@media (max-width: 768px) {
    .tovar_table_price {
        display: none;
    }
    .m-w {
        width: 100%;
    }
    .m-menu-icon {
        float: right;
        padding: 10px;
    }
    .m-menu-icon div {
        display: block !important;
    }
    .bg-menu-m {
        background-color: #25bce9;
        border-radius: 5px;
    }
    nav.navbar ul li {
        display: block;
        border-bottom: 1px solid #e1e1e1;
    }
    #cssmenu ul ul {
        background: #fff;
    }
    #cssmenu .submenu-button {
        background: #000;
    }
}
#cssmenu,
#cssmenu #menu-button,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#cssmenu:after,
#cssmenu > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
#cssmenu #menu-button {
    display: none !important;
}
#cssmenu > ul > li {
    float: left;
}
#cssmenu.align-center > ul {
    font-size: 0;
    text-align: center;
}
#cssmenu.align-center > ul > li {
    display: inline-block;
    float: none;
}
#cssmenu.align-center ul ul {
    text-align: left;
}
#cssmenu.align-right > ul > li {
    float: right;
}
#cssmenu > ul > li > a {
    padding: 17px 11px 17px 22px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
}
#cssmenu > ul > li.has-sub > a {
    padding-right: 30px;
}
#cssmenu > ul > li.has-sub > a:after {
    position: absolute;
    top: 22px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #000;
    left: initial;
    content: "";
}
#cssmenu > ul > li.has-sub > a:before {
    position: absolute;
    top: 19px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #000;
    content: "";
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#cssmenu > ul > li.has-sub:hover > a:before {
    top: 23px;
    height: 0;
}
#cssmenu ul ul {
    position: absolute;
    left: -9999px;
}
#cssmenu.align-right ul ul {
    text-align: right;
}
#cssmenu ul ul li {
    height: 0;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#cssmenu li:hover > ul {
    left: auto;
    -webkit-box-shadow: 0 2px 14px rgba(0, 0, 0, 0.275);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.275);
}
#cssmenu.align-right li:hover > ul {
    left: auto;
    right: 0;
}
#cssmenu li:hover > ul > li {
    height: auto;
}
#cssmenu ul ul ul {
    margin-left: 100%;
    border-left: 1px solid #cdcdcd;
    top: 0;
}
#cssmenu.align-right ul ul ul {
    margin-left: 0;
    margin-right: 100%;
}
#cssmenu ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 11px 25px 11px 15px;
    width: 300px;
    font-size: 14px;
    text-decoration: none;
    color: #000;
    font-weight: 400;
    line-height: 20px;
    text-transform: none;
    background: #fff;
}
#cssmenu ul ul li.last-item > a,
#cssmenu ul ul li:last-child > a {
    border-bottom: 0;
}
#cssmenu ul ul li a:hover,
#cssmenu ul ul li:hover > a {
    color: #000;
}
#cssmenu ul ul li.has-sub > a:after {
    position: absolute;
    top: 16px;
    right: 11px;
    width: 8px;
    height: 2px;
    left: initial;
    display: block;
    background: #000;
    content: "";
}
#cssmenu.align-right ul ul li.has-sub > a:after {
    right: auto;
    left: 11px;
}
#cssmenu ul ul li.has-sub > a:before {
    position: absolute;
    top: 13px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #000;
    content: "";
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#cssmenu.align-right ul ul li.has-sub > a:before {
    right: auto;
    left: 14px;
}
#cssmenu ul ul > li.has-sub:hover > a:before {
    top: 17px;
    height: 0;
}
@media all and (max-width: 768px),
only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (-o-min-device-pixel-ratio: 2 / 1) and (max-width: 1024px),
only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px),
only screen and (min-resolution: 192dpi) and (max-width: 1024px),
only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
    #cssmenu {
        width: 100%;
    }
    #cssmenu ul {
        width: 100%;
        display: none;
    }
    #cssmenu.align-center > ul {
        text-align: left;
    }
    #cssmenu ul li {
        width: 100%;
        border-top: 1px solid rgba(120, 120, 120, 0.2);
    }
    #cssmenu li:hover > ul > li,
    #cssmenu ul ul li {
        height: auto;
    }
    #cssmenu ul li a,
    #cssmenu ul ul li a {
        width: 100%;
        border-bottom: 0;
        margin: 0;
        padding: 17px;
    }
    #cssmenu > ul > li {
        float: none;
    }
    #cssmenu ul ul li a {
        padding-left: 25px;
    }
    #cssmenu ul ul ul li a {
        padding-left: 35px;
    }
    #cssmenu ul ul ul ul li a {
        padding-left: 55px;
    }
    #cssmenu ul li a {
        padding-right: 55px !important;
    }
    #cssmenu ul ul li a {
        color: #000;
        background: 0 0;
        padding: 11px;
    }
    #cssmenu ul ul li a:hover {
        color: #7d7d7d;
    }
    #cssmenu ul ul li.active > a,
    #cssmenu ul ul li:hover > a {
        color: #7d7d7d;
    }
    #cssmenu ul ul,
    #cssmenu ul ul ul,
    #cssmenu.align-right ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
    }
    #cssmenu ul ul > li.has-sub > a:after,
    #cssmenu ul ul > li.has-sub > a:before,
    #cssmenu > ul > li.has-sub > a:after,
    #cssmenu > ul > li.has-sub > a:before {
        display: none;
    }
    #cssmenu #menu-button {
        display: block;
        padding: 17px;
        color: #fff;
        cursor: pointer;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700;
        background-color: #25bce9;
    }
    #cssmenu #menu-button:after {
        position: absolute;
        top: 22px;
        right: 17px;
        display: block;
        height: 4px;
        width: 20px;
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff;
        content: "";
    }
    #cssmenu #menu-button:before {
        position: absolute;
        top: 16px;
        right: 17px;
        display: block;
        height: 2px;
        width: 20px;
        background: #fff;
        content: "";
    }
    #cssmenu #menu-button.menu-opened:after {
        top: 23px;
        border: 0;
        height: 2px;
        width: 15px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    #cssmenu #menu-button.menu-opened:before {
        top: 23px;
        background: #fff;
        width: 15px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    #cssmenu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid rgba(120, 120, 120, 0.2);
        height: 48px;
        width: 46px;
        cursor: pointer;
    }
    #cssmenu .submenu-button.submenu-opened {
        background: #262626;
    }
    #cssmenu ul ul .submenu-button {
        height: 34px;
        width: 46px;
    }
    #cssmenu .submenu-button:after {
        position: absolute;
        top: 22px;
        right: 19px;
        width: 8px;
        height: 2px;
        display: block;
        background: #fff;
        content: "";
    }
    #cssmenu ul ul .submenu-button:after {
        top: 15px;
        right: 19px;
    }
    #cssmenu .submenu-button.submenu-opened:after {
        background: #fff;
    }
    #cssmenu .submenu-button:before {
        position: absolute;
        top: 19px;
        right: 22px;
        display: block;
        width: 2px;
        height: 8px;
        background: #fff;
        content: "";
    }
    #cssmenu ul ul .submenu-button:before {
        top: 12px;
        right: 22px;
    }
    #cssmenu .submenu-button.submenu-opened:before {
        display: none;
    }
}
.header.open .top-section {
    border-bottom: 1px solid #e4e9e8;
    overflow: scroll;
    max-height: 100%;
}
.header.open #cssmenu > ul > li > a {
    padding-left: 10px;
}
.header.open #cssmenu li:hover > ul {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.header.open #cssmenu ul ul ul {
    border-left: none;
}
ul.open {
    display: block !important;
}
#cssmenu > ul > li.has-sub > a::after,
#cssmenu > ul > li.has-sub > a::before {
    background: rgba(255, 255, 255, 0.8);
}
.wrapper #cssmenu > ul > li.has-sub > a::after,
.wrapper #cssmenu > ul > li.has-sub > a::before {
    background: #000;
}
.faqs {
    max-width: 875px;
    margin: 0 auto;
}
.faq-wrapper h2, .faq-wrapper h3 {
    font-size: 30px;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 25px;
    text-align: center;
}
.faq-wrapper h3, .faq-wrapper h4 {
    margin-bottom: 0;
}
.faqs h4 {
    font-weight: 700;
    background: #fff;
    position: relative;
    padding: 20px 40px 20px 20px;
    margin: 15px 0;
    border-radius: 10px;
    border: 1px solid #eee;
    -webkit-box-shadow: 0 0 16px rgba(40, 40, 82, 0.08);
    box-shadow: 0 0 16px rgba(40, 40, 82, 0.08);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.faqs h4::after {
    content: "+";
    position: absolute;
    right: 20px;
}
.faqs h4.special:after {
    content: "-";
}
.faqs .answer {
    padding: 0 0 15px 0;
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
}
.faqs .hover {
    cursor: pointer;
}
.faq_page .faqs {
    margin-top: -100px;
    padding-top: 120px;
}
.faq_page .faq-intro-section ul li a {
    margin: 5px 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--lochmara) !important;
    border-radius: 17px;
    min-height: 40px;
    height: auto;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    font-size: 16px;
    list-style-type: none;
    padding: 0 22px;
    color: #fff;
}
.faq_page .faq-intro-section ul li a:hover {
    outline: 0;
    background: var(--lochmara) !important;
    opacity: 0.8;
    color: #fff;
}
.faq_page .faq-intro-section ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.faq_page h2 {
    text-transform: none;
    font-size: 25px;
    text-align: initial;
    margin-bottom: 20px;
}
.faq_page .faq-wrapper h2 {
    font-size: 30px;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 25px;
}
.faq_page .faq-wrapper h3 {
    margin-bottom: 0;
}
.faq_page .faqs h4 {
    font-weight: 700;
    background: #fff;
    position: relative;
    padding: 20px 40px 20px 20px;
    margin: 15px 0;
    border-radius: 10px;
    border: 1px solid #eee;
    -webkit-box-shadow: 0 0 16px rgba(40, 40, 82, 0.08);
    box-shadow: 0 0 16px rgba(40, 40, 82, 0.08);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.faq_page .faqs h4::after {
    content: "+";
    position: absolute;
    right: 20px;
}
.faq_page .faqs .special {
    background: var(--lochmara);
    /*color: #fff;*/
}
.faq_page .faqs h4.special:after {
    content: "-";
}
.faq_page .faqs .answer {
    padding: 0 0 15px 0;
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
}
.faq_page .faqs .hover {
    cursor: pointer;
}
.faq_page .faq-intro-section {
    margin-bottom: 60px;
}
.faq_page .page-template-default p {
    font-size: 15px;
    line-height: 22px;
}
.faq_page .page-template-default h1,
.page-template-default h2,
.page-template-default h3, .page-template-default h4 {
    margin: 20px 0;
}
.faq_page .page-template-default h1 {
    font-size: 32px;
}
.faq_page .page-template-default h2 {
    font-size: 22px;
    color: #000;
    padding: 0 !important;
}
.faq_page .faq-wrapper.wrapper {
    padding: 15px 0 70px;
    border-top: 1px solid #eee;
}
.faq_page .faq-wrapper.wrapper:first-child {
    margin-top: 50px;
}
.faq_page .faqs .answer {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 0 15px 0;
}
.faq_page .faq-wrapper.wrapper .faqs {
    max-width: 100%;
}
.faq_page .faqs h3 {
    background: #f2f3f5;
    font-size: 16px;
    border: 1px solid #dfdfdf;
    border-radius: inherit;
    margin: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.faq_page .btn-up {
    background-color: #f2f3f5;
    color: #333;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 0;
    padding: 10px 16px;
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid #dcdcdd;
    margin-top: 25px;
}
.faq_page .btn-up:hover {
    cursor: pointer;
    background: #dcdcdc;
}
.faq_page .faq-btn-holder {
    text-align: right;
}
@media screen and (max-width: 768px) {
    .faq_page h1 {
        font-size: 24px;
    }
    .faq_page h2 {
        font-size: 20px !important;
        padding: 0 20px !important;
    }
    .faq_page .faqs .answer,
    .faq_page .faqs h3 {
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
    .faq_page .faq-intro-section ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.custom-btn .button {
    height: 56px;
    width: 190px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 14px;
}
.faq-body {
    margin-top: 45px;
    margin-bottom: 80px;
}
.table-har-block-1 {
    margin: 10px auto 100px;
    -webkit-box-shadow: 0 35px 50px rgba(0, 0, 0, 0.2);
    box-shadow: 0 35px 50px rgba(0, 0, 0, 0.2);
    max-width: 1180px;
}
.category_otzyvy h2,
.table-har-block-1 h2 {
    font-size: 30px;
    margin-bottom: 25px;
    text-align: center;
}
.fl-table {
    border-radius: 5px;
    font-weight: 400;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    background-color: #fff;
}
.fl-table td,
.fl-table th {
    text-align: center;
    padding: 8px;
    font-size: 14px;
}
.fl-table td {
    border-right: 1px solid #f8f8f8;
}
.fl-table thead th {
    color: #fff;
    background: #4fc3a1;
}
.fl-table thead th:nth-child(odd) {
    color: #fff;
    background: #324960;
}
.fl-table tr:nth-child(even) {
    background: #f8f8f8;
}
.seo-text {
    padding-top: 20px;
}
.main_table td,
.main_table th {
    font-size: 16px;
    text-align: left;
    padding: 10px 15px;
}
.fos .h2 {
    line-height: 120%;
}
.header-bg #cssmenu > ul > li:first-child > a,
.wrapper .header #cssmenu > ul > li:first-child > a {
    color: #fff !important;
}
.header-bg #cssmenu > ul > li:first-child,
.wrapper #cssmenu > ul > li:first-child {
    background: var(--lochmara);
}
.header-bg #cssmenu > ul > li.has-sub > a::after,
.header-bg #cssmenu > ul > li.has-sub > a::before,
.wrapper #cssmenu > ul > li.has-sub > a::after,
.wrapper #cssmenu > ul > li.has-sub > a::before {
    background: #fff !important;
}
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(14, 29, 51, 0.8)), to(rgba(14, 29, 51, 0.2)));
    background: -o-linear-gradient(top, rgba(14, 29, 51, 0.8), rgba(14, 29, 51, 0.2));
    background: linear-gradient(to bottom, rgba(14, 29, 51, 0.8), rgba(14, 29, 51, 0.2));
}
.hero-slider {
    width: 100%;
    height: 40vh;
    overflow: hidden;
    margin-bottom: 60px;
    margin-top: 20px;
    max-height: 360px;
    position: relative;
}
.hero-slider img {
    -o-object-fit: contain !important;
    object-fit: contain !important;
}
.hero-slider .carousel-cell {
    width: 100%;
    margin-right: 30px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
@media (min-width: 375px){
    .hero-slider .carousel-cell {
        width: 50%;
    }
}
@media (min-width: 992px){
    .hero-slider .carousel-cell {
        width: 30%;
    }
}

.hero-slider .carousel-cell .inner {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
}
.hero-slider .carousel-cell .inner .subtitle {
    font-family: "Roboto Slab", serif;
    font-size: 2.2rem;
    line-height: 1.2em;
    font-weight: 200;
    font-style: italic;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}
.hero-slider .carousel-cell .inner .title {
    font-family: Montserrat, sans-serif;
    font-size: 3rem;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}
.hero-slider .carousel-cell .inner .btn {
    border: 1px solid #fff;
    padding: 14px 18px;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.hero-slider .carousel-cell .inner .btn:hover {
    background: #fff;
    color: #000;
}
.hero-slider .flickity-prev-next-button {
    border: 1px solid var(--lochmara);
    width: 42px;
    height: 42px;
    background: #fff;
    z-index: 2;
    position: absolute;
    border-radius: 0;
}
.hero-slider .flickity-prev-next-button:hover {
    background: 0 0;
}
.hero-slider .flickity-prev-next-button .arrow {
    fill: #fff;
}
.hero-slider .flickity-page-dots {
    bottom: 0;
}
.hero-slider .flickity-page-dots .dot {
    width: 30px;
    height: 4px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.5);
    border: 0 solid #fff;
    border-radius: 0;
}
.hero-slider .flickity-page-dots .dot.is-selected {
    background: var(--lochmara);
    border: 0 solid var(--lochmara);
}
#system-message dd.message,
.info {
    color: #000;
    padding: 30px 30px 25px;
    margin: 0 0 40px 0;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 6px 0 #e4e4e4;
    box-shadow: 0 0 6px 0 #e4e4e4;
}
.i_box {
    margin-bottom: 10px;
    text-align: left;
}
.i_box .some_title,
.jus .some_title {
    font-weight: 700;
    color: #333;
}
.tiporazmer {
    float: left;
    padding: 5px 11px;
    margin-right: 10px;
    margin-bottom: 10px;
    min-width: 50px;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #e4e4e4;
}
.tiporazmer:hover {
    color: #fff;
    background: var(--lochmara);
}
.tiporazmer.active {
    color: #fff;
    background: var(--lochmara);
}
.haracteristiki_tovar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.haracteristiki_tovar .col33 {
    width: 33%;
}
@media screen and (max-width: 800px) {
    .haracteristiki_tovar .col33 {
        width: 50%;
    }
}
.table-har-block-1.tovar {
    max-width: 100% !important;
    padding: 25px;
    margin-bottom: 60px;
    border-radius: 10px !important;
    -webkit-box-shadow: 0 0 6px 0 #e4e4e4 !important;
    box-shadow: 0 0 6px 0 #e4e4e4 !important;
}
.proizvodstvo {
    margin-bottom: 40px;
}
.proizvodstvo p {
    line-height: 22px;
    margin-bottom: 20px;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 700;
}
.proizvodstvo img {
    margin-bottom: 14px;
}
.btn_zakaz {
    height: 40px;
    width: 158px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    background: var(--lochmara);
    margin: 10px auto 0;
    color: #fff;
}
.btn_zakaz a {
    color: #fff !important;
    text-decoration: none !important;
    width: 100%;
    text-align: center;
    padding: 10px;
}
.answer ul {
    margin-bottom: 25px;
}
.fl-table {
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid #eee;
}
#tabs {
    margin: 10px 0;
}
.tabs-nav {
    display: table;
    margin: 0 !important;
    padding: 0;
    width: 100%;
}
.tabs-nav li {
    display: table-cell;
    float: none;
    margin: 0;
    padding: 0;
}
.tabs-nav a {
    display: block;
    padding: 10px 20px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    background: #fbfbfb;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    color: #999;
}
.tabs-nav li:first-child a {
    border-radius: 5px 0 0 0;
}
.tabs-nav li:last-child a {
    display: block;
    border-right: 1px solid #ccc;
    border-radius: 0 5px 0 0;
}
.tabs-nav a.active {
    border-bottom: 1px solid #fff;
    background: #fff;
    color: #000;
}
.tabs-items {
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 5px 5px;
    background: #fff;
}
.tabs-item {
    padding: 15px;
    display: none;
}
.skidka-za-otzyv img {
    width: 100%;
    max-width: 700px;
}
.skidka-za-otzyv p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
    margin-bottom: 20px;
}
.karta {
    list-style-type: decimal;
    font-size: 16px;
    margin-left: 25px !important;
}
.karta_div {
    border: 2px solid var(--lochmara);
    margin-bottom: 30px;
    padding: 5px 30px 5px 15px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}
.karta li {
    line-height: 14px;
}
.karta a {
    display: block;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-decoration: none;
    line-height: 22px;
}
.karta a:hover {
    background: var(--lochmara);
    color: #fff;
}
.karta_div .zagolovok {
    margin: 10px;
    font-size: 20px !important;
    font-weight: 700;
}
.faq-wrapper {
    padding: 0 15px;
}
@media (max-width: 767px) {
    .fl-table {
        display: block;
        width: 100%;
    }
    .haracteristiki {
        display: none;
    }
    .table-har-block-1:before {
        content: "Scroll horizontally >";
        display: block;
        text-align: right;
        font-size: 11px;
        color: #fff;
        padding: 0 0 10px;
    }
    .fl-table tbody,
    .fl-table thead,
    .fl-table thead th {
        display: block;
    }
    .fl-table thead th:last-child {
        border-bottom: none;
    }
    .fl-table thead {
        float: left;
    }
    .fl-table tbody {
        width: auto;
        position: relative;
        overflow-x: auto;
    }
    .fl-table td,
    .fl-table th {
        padding: 10px 0.625em 0.625em 0.625em;
        height: 60px;
        width: 160px;
        font-size: 12px;
        word-wrap: break-word;
    }
    .fl-table thead th {
        text-align: left;
        border-bottom: 1px solid #f7f7f9;
    }
    .fl-table tbody tr {
        display: table-cell;
    }
    .fl-table tbody tr:nth-child(odd) {
        background: 0 0;
    }
    .fl-table tr:nth-child(even) {
        background: 0 0;
    }
    .fl-table tr td:nth-child(odd) {
        background: #f8f8f8;
        border-right: 1px solid #e6e4e4;
    }
    .fl-table tr td:nth-child(even) {
        border-right: 1px solid #e6e4e4;
    }
    .fl-table tbody td {
        display: block;
        text-align: center;
        width: 100px;
    }
    .js-button-up.button-up {
        right: 27px;
        left: inherit;
        bottom: 12px;
    }
}
@media screen and (min-width: 770px) {
    .menu_scroll {
        overflow: scroll;
        max-height: 400px;
    }
    .table-har-block-1.tovar td {
        width: 50%;
    }
    .section {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media screen and (max-width: 769px) {
    .seo-text-body {
        padding-left: 15px;
        padding-right: 15px;
    }
    .wrapper #cssmenu .submenu-button:after,
    .wrapper #cssmenu .submenu-button:before {
        background: #fff !important;
    }
    .h1 {
        font-size: 26px;
    }
    .cookie-button {
        margin-top: 15px;
    }
    .tovar__body-item .custom-btn .button {
        margin: 0 10px;
    }
    .tovar__body-item .custom-btn .button:first-child {
        margin-left: 0;
    }
    .tovar__body-img {
        margin-bottom: 0;
        padding-bottom: 20px;
    }
    .faq-wrapper h2,
    .table-har-block-1 h2 {
        font-size: 24px;
    }
    .table_vid_2 .table-har-block-1 {
        margin: 10px auto 60px;
        -webkit-box-shadow: 0 15px 14px rgba(0, 0, 0, 0.2);
        box-shadow: 0 15px 14px rgba(0, 0, 0, 0.2);
    }
    .table_vid_2 .fl-table thead tr {
        width: 100% !important;
    }
    .table_vid_2 .fl-table tbody tr {
        width: 100% !important;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .table_vid_2 .fl-table tbody {
        width: 100% !important;
    }
    .table_vid_2 .fl-table thead {
        width: 100% !important;
    }
    .table_vid_2 .fl-table thead tr {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .table_vid_2 .fl-table thead th {
        width: 50% !important;
        height: auto;
    }
    .table_vid_2 .fl-table {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        width: 100% !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .table_vid_2 .fl-table tbody td {
        text-align: left !important;
        width: 50% !important;
        height: auto;
    }
    .fl-table th,
    .table_vid_2 .fl-table td {
        font-size: 13px !important;
    }
    .main_table .table-har-block-1 {
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0 !important;
        margin-bottom: 10px !important;
    }
    .main_table {
        padding-top: 0;
    }
}
@media screen and (max-width: 500px) {
    .hero-slider {
        max-height: 260px;
    }
    .header__body {
        height: 45px;
    }
    .heading {
        padding-top: 80px !important;
    }
    .notification {
        bottom: 100px !important;
    }
}

.heading.product, .heading.blog {
    padding-top: 0 !important;
}

@media (max-width: 1025px) {
    .heading.product {
        margin-bottom: 0;
    }
}

.wrapper_small {
    margin-left: auto;
    margin-right: auto;
    max-width: 1360px;
    margin-bottom: 50px;
    margin-top: 70px;
}
.wrapper_small .h2 {
    text-align: center;
    color: #000;
    font-size: calc(var(--index) * 1.9);
    line-height: 52px;
    font-weight: 700;
    font-size: 24px;
}
.akcii .-text .sub_title {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid #ffc93e;
    font-size: 18px;
    margin-top: 10px;
    line-height: 38px;
}
.akcii_content {
    overflow-y: hidden;
    border: 1px solid #e4e4e4;
    border-radius: 30px;
    padding: calc(var(--index) * 1.2) calc(var(--index) * 5);
}
.akcii_content .-info {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, 1fr);
    padding: 20px;
}
.akcii_content .-info a {
    font-size: 16px;
    color: #444;
    text-decoration: underline;
    cursor: pointer;
    padding-right: 15px;
}
.notification {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 30px;
    padding: 16px 28px;
    font-weight: 700;
    font-size: 16px;
    background-color: #e5e5e5;
    border-radius: 12px;
}
.modal_skidka {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: auto;
    max-width: 500px;
}
.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: 700;
}
.modal-text {
    text-align: center;
}
.close-modal:focus,
.close-modal:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.adress_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.adress_header span {
    font-size: 13px;
}
.video video {
    width: 100%;
    height: auto;
    max-width: 700px;
    text-align: center;
}
.video p {
    text-align: center;
}
.border td,
.border th {
    border: 1px solid #c7c7c7;
}
.chertej img {
    margin: 0 auto;
}
.project-img {
    margin-top: 20px;
}
.project-img img {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}
.hero-slider .flickity-prev-next-button .arrow {
    fill: #646464;
}
.flickity-prev-next-button svg {
    position: absolute;
    left: 24%;
    top: 20%;
    width: 20px;
    height: 25px;
}
.project .h1 {
    font-size: 30px;
    line-height: 50px;
}
@media (max-width: 1025px) {
    .header__top {
        display: none;
    }
    .faq_page .faqs {
        margin-top: 0;
        padding-top: 0;
    }
}
@media (max-width: 480px) {
    .hero-slider {
        margin-bottom: 30px;
    }
}
jdiv.wrap_c672 {
    bottom: 45px !important;
}
.anchor__link {
    margin-bottom: 20px;
}
.anchor__link a {
    font-size: 14px;
    line-height: 120%;
    font-weight: 400;
    color: #22282d;
    text-decoration: underline;
}
.opros-btn .button {
    color: var(--lochmara);
    border: 1px solid #dbdbdb;
    background: #fff;
}
.opros-btn .button::after,
.opros-btn .button::before {
    background: var(--lochmara);
}
.form-group-checkbox {
    margin-bottom: 15px;
}
.form-group-checkbox a {
    text-decoration: underline;
}

.black_icon {
    background-color: #000000;
}

.location {
    min-width: 24px;
    height: 24px;
    mask-image: url("/assets/img/location.svg");
    -webkit-mask-image: url("/assets/img/location.svg");
    mask-repeat: no-repeat;
}
.messenger_icon {
    width: 20px;
    height: 20px;
    mask-repeat: no-repeat;
}
.telegram {
    mask-image: url("/assets/img/telegram.svg");
    -webkit-mask-image: url("/assets/img/telegram.svg");
}
.viber {
    mask-image: url("/assets/img/viber.svg");
    -webkit-mask-image: url("/assets/img/viber.svg");
}
.whatsapp {
    mask-image: url("/assets/img/whatsapp.svg");
    -webkit-mask-image: url("/assets/img/whatsapp.svg");
}

.country_icon,
.document_icon {
    width: 16px;
    height: 16px;
}

.belarus_icon {
    background-image: url(/assets/img/BY.svg);
}
.russian_icon {
    background-image: url(/assets/img/RU.svg);
}

.document_icon {
    mask-image: url("/assets/img/Document.svg");
    -webkit-mask-image: url("/assets/img/Document.svg");
}


html.burger_opened,
body.burger_opened {
    overflow: hidden;
    max-height: 100vh;
}

.header {
    background-color: var(--aethens-gray);
    font-family: "Mulish", sans-serif;
    top: 0;
    position: sticky;
    z-index: 999;
}
.header_container {
    width: 100%;
    max-width: 1441px;
    margin: 0 auto;
}
.header #top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#top {
    /*padding-top: 8px;*/
    /*padding-bottom: 8px;*/
}
#top .logo {
    height: 48px;
}
.location_container {
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
}

.phones,
.info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phones .phone {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    white-space: nowrap;
}
.phones .phone .phone_number {
    border-bottom: 1px dashed var(--woodsmoke);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: var(--woodsmoke);
}

.phones .phone .messengers {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-left: 10px;
}
.info {
    color: initial;
    padding: 0;
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.info a {
    color: var(--mineshift);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
.info .mail {
    border-bottom: 1px dashed var(--mineshift);
    width: fit-content;
}
.info .download {
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 14px;
    white-space: nowrap;
}
.call, .btn {
    padding: 9.5px 21.5px;
    color: #ffffff;
    text-decoration: none;
    background: var(--lochmara);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    display: flex;
    align-items: center;
    transition: background 0.3s;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
}
.call:hover, .btn:hover {
    background: var(--dodger-blue);
}
.header #menu {
    max-width: 1440px;
    margin: 0 auto;
}
.burger_button {
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 48px;
    width: 48px;
    /*padding: 10px 5px;*/
    align-items: center;
    justify-content: center;
}
.burger_button.active > div:nth-child(2) {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px);
}
.burger_button.active > div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 9px);
}
.burger_button.active > div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -8px);
}
.burger_button > div {
    transition: all 0.3s;
    width: 30px;
    border: 2px solid var(--mineshift);
    border-radius: 10px;
}
.burger_button > div:nth-child(2) {
    transition: transform 0.3s, opacity 0.2s, visibility 0.2s;
}
#burger_menu {
    left: 100%;
    top: 64px;
    transition: left 0.3s;
    width: 100%;
    height: 100%;
    position: fixed;
    background: #ffffff;
    box-shadow: 0px 2px 10px 0px #0000001a;
}
#burger_menu.active {
    left: 0;
}

#menu {
}
#menu ul {
    display: none;
    padding: 0;
    list-style: none;
    margin: 0;
}
#menu > ul ul {
    background: var(--aethens-gray);
    box-shadow: 0px 2px 10px 0px #0000001a;
    border: 1px solid var(--alto);
}
#menu > ul {
    display: flex;
    gap: 32px;
}
#menu > ul > li {
    padding: 16px;
    color: var(--lochmara);
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}
#menu > ul > li.has_sub {
    padding-right: 44px;
}
#menu > ul > li.has_sub:after {
    content: " ";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    mask-image: url("/assets/img/arrow_drop.svg");
    -webkit-mask-image: url("/assets/img/arrow_drop.svg");
    background-color: var(--lochmara);
    transition: all 0.3s;
}
#menu > ul > li.has_sub:hover:after {
    transform: rotate(180deg) translateY(50%);
    background-color: #ffffff;
}
#menu .has_sub {
    position: relative;
}
#menu ul li a,
#menu ul li {
    text-decoration: none;
    color: var(--mineshift);
    display: block;
}
#menu ul li:not(:hover) a.current:not(:hover) {
    color: var(--lochmara) !important;
}

#menu ul li:hover > a {
    color: #ffffff;
}

#menu .has_sub:hover > ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 100%;
    background: #ffffff;
    top: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    width: 300px;
}

#menu > ul > li.has_sub > ul {
    left: 0 !important;
    top: 100% !important;
    background: var(--aethens-gray);
    box-shadow: 0px 2px 10px 0px #0000001a;
    border: 1px solid var(--alto);
}
#menu > ul > li.has_sub > ul li {
    border-bottom: 1px solid var(--alto);
    display: flex;
    background: var(--aethens-gray);
}
#menu ul li:hover {
    background: var(--lochmara) !important;
    transition: all 0.3s;
}
ul li .drop {
    margin: auto;
    padding: 13px;
    width: 14px;
    display: flex;
    align-items: center;
    align-content: center;
    -webkit-mask-image: url("/assets/img/plus.svg");
    mask-image: url("/assets/img/plus.svg");
    background-color: #000000;
    mask-repeat: no-repeat;
    mask-position: center;
}
.drop_container {
    background: #ffffff33;
    display: flex;
}
ul li.has_sub:hover > .drop_container .drop,
ul li.has_sub.active > div > .drop_container .drop {
    -webkit-mask-image: url("/assets/img/minus.svg");
    mask-image: url("/assets/img/minus.svg");
}
#menu ul li.has_sub:hover > .drop_container {
}
#menu > ul > li.has_sub > ul li a {
    padding: 8px 8px 8px 16px;
    width: 100%;
}

.menu_container {
    background-color: #fff;
}

@media (min-width: 0px) {
    #top .logo {
        width: 177px;
        height: 37px;
    }
    .header #menu {
        display: none;
    }
    .header_container,
    #menu {
        padding-inline: 15px;
    }
    #top {
        padding-top: 8px;
        padding-bottom: 8px;
        gap: normal;
    }
    #top .location_container {
        display: none;
    }
    #top .phones {
        display: none;
    }
    #top .info {
        display: none;
    }
    #top .call {
        display: none;
    }
}
@media (min-width: 768px) {
    #top .phones {
        display: flex;
    }
}
@media (min-width: 1024px) {
    #top .logo {
        width: auto;
        height: auto;
    }
    #top {
        padding-top: 8px;
        padding-bottom: 8px;
        gap: 55px;
    }
    #top .info {
        display: flex;
    }
    #top .call {
        display: flex;
    }
    #top .burger_button {
        display: none;
    }
    .header #menu {
        display: flex;
    }
}

@media (min-width: 1440px) {
    .header_container,
    #menu {
        padding-inline: 61px;
    }
    .header #top {
        gap: 74px;
    }
    #top .location_container {
        display: flex;
    }
}

#burger_menu {
    border: 1px solid #dbdbdb;
    max-height: calc(100% - 64px);
    overflow: auto;
}
#burger_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#burger_menu .call {
    color: #ffffff;
    text-align: center;
    padding: 17.5px 0;
}
#burger_menu .phones .phone {
    gap: 10px;
    align-items: center;
}
#burger_menu .phones .phone .messengers a {
    padding: 10px;
}
#burger_menu > ul > li:not(:last-child):not(:first-child) {
    padding: 16px;
    border-bottom: 1px solid #dbdbdb;
}
#burger_menu .info,
#burger_menu .call {
    display: block;
}
#burger_menu .phones {
    display: flex;
    max-width: 329px;
}
#burger_menu .menu li:not(.has_sub) {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--alto);
}
#burger_menu .menu li.has_sub > div {
    border-bottom: 1px solid var(--alto);
}
#burger_menu .menu li > div {
    display: flex;
    justify-content: space-between;
}
#burger_menu .menu li a {
    padding: 16px 8px 16px 16px;
}
#burger_menu .menu li > ul {
    display: none;
}
#burger_menu .menu li.has_sub.active > ul {
    display: block;
}

#burger_menu .menu li.has_sub .drop_container {
    padding: 21px;
    background: var(--lochmara);
}
#burger_menu .menu li.has_sub .drop_container .drop {
    padding: 0;
    height: 14px;
    background-color: #fff;
}
#burger_menu .menu li {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}
#burger_menu .menu > li > div > a {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
}
#burger_menu .menu > li.has_sub > ul > li a {
    padding-left: 32px;
}
#burger_menu .menu > li.has_sub > ul > li > ul > li a {
    padding-left: 48px;
}
#burger_menu .menu > li.has_sub > ul > li > ul > li > ul > li a {
    padding-left: 64px;
}
#burger_menu .info {
    padding-bottom: 100px;
}

.info a:hover,
.phones .phone_number:hover {
    transition: all 0.3s;
    color: var(--lochmara);
}
.messenger_icon.black_icon:hover,
.info .download:hover .document_icon {
    transition: all 0.3s;
    background-color: var(--lochmara);
}

/* 10.09.24 */

.marquiz__bg,
.marquiz__modal {
    transition: all 0.5s;
}
@media (min-width: 768px) and (max-width: 1024px) {
    .marquiz__modal {
        width: 60% !important;
        height: 90% !important;
    }
}
@media (max-width: 768px) {
    .marquiz__modal {
        margin-bottom: 0 !important;
        height: 90%;
    }
}


.h2::after{
    content: none;
}

.fs-16 {font-size: 16px !important;}

.copyright .links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.white_icon{
    background-color: #fff;
}

.footer .footer__item .footer__item__blocks{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .footer__info .footer__info__address{
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-weight: 400;
}

.footer, .footer__info .footer__info__phone{
    font-weight: 700;
}


.footer .mail{
    text-decoration: underline;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #fff;
    text-underline-offset: 4px;
}
.footer .mail:hover{
    color: var(--lochmara);
}
.copyright__item.links a:hover{
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer__info a[href*="tel"]:hover,
.footer .mail:hover{
    transition: all .3s;
    color: var(--woodsmoke);
}

.footer .footer__info__phone{
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer__info__phone .social_block svg{
    height: 30px;
}
.footer social_block > div{
    max-height: 50px;
}
footer .footer-bg{
    top: 0;
    bottom: 0;
    height: 100%;
}

.typography{
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #fff;
}

.page_footer{
    position: relative;
    z-index: 100000;
}

.page_footer .copyright .requisites{
    color: var(--mineshift);
    font-weight: 400;
}

@media (max-width: 768px){
    .page_footer .location{
        background-color: #131416;
    }
    .page_footer .mail, .page_footer .typography{
        color: #131416;
    }
}


.search_container{
    position: sticky;
    position: -webkit-sticky;
    transition: all .3s;
    padding: 20px 0;
    margin: 0;
    background-color: var(--aethens-gray);
    z-index: 998;
    top: 64px;
}
@media (min-width: 1024px){
    .search_container{
        top: 110px;
    }
}

.search_container:not(.active){
    margin-top: -120px;
    top: -120px;
}
.search_form{
    margin: 0 auto;
    width: fit-content;
    display: flex;
    gap: 24px;
}
.search_form .search_value{
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid var(--aethens-gray);
    transition: border-color .3s;
    outline: none;
    min-width: 212px;
}
.search_form .search_value:hover,
.search_form .search_value:focus{
    border-color: var(--lochmara);
}

.search_results{
    padding: 0 2rem;
}

@media (min-width: 768px){
    .search_results{
        padding: 0 5rem;
    }
}
.search_result{
    margin: 15px 0;
}
.search_result h3{
    width: fit-content;
}
.search_result h3 a{
    color: var(--lochmara);
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}
.search_result h3 a:hover{
    text-decoration: underline;
}



/*category bar*/

.left-bar-list .h3{
    padding: 16px;
    margin: 0;
}
.left-bar-list .drop_container{
    background: #FFFFFF33;
}
.left-bar li:not(:last-child){
    border-bottom: 1px solid #DBDBDB
}
.left-bar .drop_container{
    width: 40px;
}
.left-bar li{
    background-color: var(--aethens-gray);
}

.left-bar li > a,
.left-bar li > a span{
    color: var(--mineshift);
}
.left-bar li.active > a,
.submenu__item.active{
    background-color: var(--lochmara);
}
.left-bar li.active > a span,
.submenu__item.active > a.submenu__item-link span{
    color: #fff;
}

.left-bar li a{
    display: flex;
    width: 100%;
}
.left-bar *{
    transition: all .3s;
}
li a span{
    padding: 0 8px 0 16px;
    width: 100%;
}
.submenu__item a span{
    padding: 12px 12px 12px 32px;
    width: 100%;
}

.left-bar .menu_-body-item-link{
    background-color: var(--alto);
}
.menu__body-item-link{
    display: flex;
    justify-content: space-between;
}
.left-bar li > a:hover{
    background-color: var(--dodger-blue);
    color: #fff;
}
.left-bar li.active > a:hover{
    background-color: var(--lochmara);
    color: #fff;
}
.left-bar li a:hover span{
    color: #fff;
}
.left-bar li a:hover .drop_container{
    background: #FFFFFFCC;
}

.left-bar-list .submenu{
    padding: 0;
}
.submenu .submenu__item span{
    font-weight: 400;
    font-size: 13px;
    line-height: 16.32px;
}
.left-bar-list ul li.active .submenu__item{
    margin: 0;
}
.left-bar-list li{
    margin: 0;
}



/*form consult*/
.form_consult .form__body-item{
    position: relative;
    margin-top: 25px;
}

.form_consult .form__body-item label{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
    color: #8d8d8d;
    background: #F0F2F5;
    z-index: 1;
}
.form_consult .form__body-item input{
    outline: none;
    border: 1px solid #E8E8E9;
    transition: all .3s;
}
.form_consult .form__body-item input:focus{
    border-color: var(--lochmara);
    color: #141C1A;
}
.form_consult .form__body-item input:focus + label,
.form_consult .form__body-item input:not(:placeholder-shown) + label{
    padding: 0 10px;
    font-size: 10px;
    line-height: 16px;
    top:-10px;
    transform: none;
    left: 20.5px;
}

.form_consult .form__body-item input:focus::placeholder{
    color: #141C1A;
}

.form_consult .button{
    height: 62px;
}
.form_consult .h3{
    margin-bottom: 35px;
}



.form_consult .form__body{
    margin-bottom: 35px;
}





/* search header  */

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

.search_icon{
    mask-image: url('/assets/img/Search.svg');
    -webkit-mask-image: url('/assets/img/Search.svg');
    transition: all .3s;
    width: 20px;
    height: 20px;
}

.search_button.active .search_icon{
    mask-image: url('/assets/img/Cross.svg');
    -webkit-mask-image: url('/assets/img/Cross.svg');
}
.search_button{
    width: 40px;
    height: 40px;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    cursor: pointer;
}
.search_button .search_icon{
    background-color: var(--lochmara);
}
.search_button:active{
    background-color: var(--lochmara);
}
.search_button:active .search_icon{
    background-color: #fff;
}
@media (hover:hover){
    .search_button:hover{
        background-color: var(--lochmara);
    }
    .search_button:hover .search_icon{
        background-color: #fff;
    }
}



.pagination-holder .pagination > li:nth-child(1):not(:hover):not(.disabled),
.pagination-holder .pagination > li:nth-child(2):not(:hover):not(.disabled){
    color: var(--shark);
}




.pagination-holder{
    padding-bottom: 20px;
}



.pagination-holder li.disabled{
    cursor: default;
}

.pagination-holder li.disabled{
    color: var(--gray);
}

.pagination-holder li:hover,
.pagination-holder li:hover > *{
    color: var(--lochmara) !important;
}


.left-bar-list ul li:hover .submenu{
    display: block;
}

.left-bar li.active > a > .drop_container .drop,
.submenu__item.active > a.submenu__item-link > .drop_container .drop,
.left-bar-list ul li:hover .drop_container .drop
{
    -webkit-mask-image: url("/assets/img/minus.svg");
    mask-image: url("/assets/img/minus.svg");
}



@media (max-width: 970px) and (min-width: 768px){
    .fos .h2{
        font-size: 36px;
    }
    .catalog-main .body__item-name{
        font-size: 18px;
    }
}

.category_otzyvy .video video{
    max-width: 90vh;
}


.about-main__body-img img{
    min-width: 100%;
    max-width: 60%;
}
.about-main__body-item:last-child{
    padding-left: 50px;
}



.new_header {
    height: 700px;
}
.new_header .heading__bg video {
    position: absolute;
    height: clamp(500px, 90vw, 1161px);
    z-index: -1;
    max-height: 100%;
    width: 100%;
    object-fit: cover;
}
@media (max-width: 768px){
    .new_header{
        height: 500px;
    }
}
.new_header_h1{
    margin: 0;
}



.marquiz__button_fixed-left{
    transform: none !important;
    top: auto !important;
    bottom: 15px;
    left: 25px !important;
}
.marquiz__button_fixed-left .icon-quiz{
    transform: none !important;
}

.js-button-up.button-up{
    bottom: 80px;
}








.works_section{
    padding-bottom: 50px;
    padding-top: 30px;
}

.works{
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 30px;
}
.works__container{
    padding-top: 30px;
}

.works__block{
    flex: 100%;
    color: var(--shark);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Mulish', sans-serif;
    line-height: 28px;
}
.works .works__block:last-child{
    flex: 100%;
}
.works__block__head{
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    color: var(--shark);
    margin-bottom: 10px;
}
.works__block__head.large{
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 15px;
}
.works__block ul{
    list-style: initial;
    margin-left: 20px;
}
.works__block p:not(:first-child){
    margin: 10px 0;
}
.works__block p:last-child{
    margin-bottom: 0;
}
.works__gallery{

}
.works__gallery img{
    max-width: 100%;
    max-height: 252px;
    height: auto;
    object-fit: contain;
    width: 100%;
}
.works__gallery .flickity-prev-next-button{
    display: none;
    background: #fff;
    border: 1px solid var(--lochmara);
    border-radius: 0;
    width: 42px;
    height: 42px;
}
.works__gallery .flickity-prev-next-button svg{
    display: none;
}

.works__gallery .flickity-prev-next-button.previous{
    left: -5px;

}
.works__gallery .flickity-prev-next-button:before{
    content: ' ';
    background-color: var(--gray);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    mask-repeat: no-repeat;
}
.works__gallery .flickity-prev-next-button.previous:before{
    mask-image: url('/assets/img/arrowLeft.svg');
    -webkit-mask-image: url('/assets/img/arrowLeft.svg');
}
.works__gallery .flickity-prev-next-button.next{
    right: -15px;
}
.works__gallery .flickity-prev-next-button.next:before {
    mask-image: url('/assets/img/arrowRight.svg');
    -webkit-mask-image: url('/assets/img/arrowRight.svg');
}
.works__drawings{
    display: flex;
    gap: 20px;
    overflow-x: auto;
    justify-content: center;
}
.works__drawings img{
    max-width: 416px;
    max-height: 290px;
    object-fit: contain;
    width: 100%;
}
.works_section > .works__block__head{
    margin-bottom: 0;
}
.works_heading{
    padding-top: 120px !important;
}
.menu_container{
    box-shadow: 0px 10px 10px 0px #00000008;
}
@media (min-width: 768px){
    .works_heading{
        padding-top: 85px !important;
    }
    .works__gallery .flickity-prev-next-button{
        display: initial;
    }
    .works__block{
        flex: calc(50% - 20px);
    }
    .works__drawings{
        justify-content: flex-start;
    }
    .works__gallery img{
        max-width: 33%;
        max-height: 313px;
        margin-left: 20px;
        
    }

}


.lightboxOverlay{
    z-index: 1000000 !important;
}

.lightbox{
    z-index: 1000000 !important;
}


#overlay, #modal_form, .modal_form {
 z-index: 1000000;
}


.seo-text-body h3 {
    font-size: 24px;
    line-height: 120%;
    margin-top: -130px;
    margin-bottom: 15px;
    padding-top: 150px;
    color: var(--woodsmoke);
}

.faq_page .faqs h3.vopros {
    font-weight: 700;
    background: #fff;
    position: relative;
    padding: 20px 40px 20px 20px;
    margin: 15px 0;
    border-radius: 10px;
    border: 1px solid #eee;
    -webkit-box-shadow: 0 0 16px rgba(40, 40, 82, 0.08);
    box-shadow: 0 0 16px rgba(40, 40, 82, 0.08);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.faq_page .faqs h3.vopros::after {
    content: "+";
    position: absolute;
    right: 20px;
}

.site_message_wrap {
    display: none !important;
}

/* main banner */

.heading__section .utp-item {
    display: flex;
    align-items: center;
    background: var(--lochmara);
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    gap: 12px;

    /* динамика */
    padding: 12px;
    padding-left: calc(53px + var(--i) * 30px);
    width: calc(460px + (var(--i) * 30px));

    /* форма */
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0% 100%);
}

.heading__section .utp-item .img {
    margin: 12px 0 12px 12px;
}

/* обёртка */
.heading__section .utp-items {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    gap: 4px;
    text-transform: uppercase;
}

/* кнопка */
.heading__container .btn {
    font-size: 24px;
    font-weight: 700;
    padding: 24px 127px;
}

/* медиа */
@media (max-width: 991px) {
    .new_header {
        height: max-content;
    }
    .new_header .heading__bg,
    .new_header .heading__container {
        height: 500px;
    }
    .heading__section .utp-items {
        position: static;
        transform: none;
        margin-top: 8px;
        gap: 8px;
    }
    .heading__container {
        text-align: center;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .utp-item svg { display: none; }
}

/* ноутбуки */
@media (min-width: 992px) and (max-width: 1599px) {
    .heading__section .utp-item {
        padding-left: calc(3vw + var(--i) * 30px);
        width: calc(28vw + (var(--i) * 30px));
    }
    .heading__container > * {
        width: 68vw;
    }
    .heading__container h1 {
        font-size: 56px;
    }
}

/* десктопы */
@media (min-width: 1600px) {
    .heading__container > * {
        width: 65vw;
    }
    .heading__section .utp-item {
        padding: 18px;
        padding-left: calc(53px + var(--i) * 30px);
        width: calc(460px + (var(--i) * 30px));
    }
}

/* мобилки */
@media (max-width: 599px) {
    .heading__section .utp-item {
        padding: 0 15px 0 30px;
        width: 345px;
        clip-path: polygon(24px 0, 100% 0, 100% 100%, 0% 100%);
    }
    .heading__section .utp-item .img {
        margin-left: 0;
    }
    .heading__section .utp-item .img img {
        width: 48px;
        height: 48px;
    }
    .heading__container .sub-text {
        font-size: 20px;
    }
    .heading__container .btn {
        font-size: 20px;
        padding: 16px 60px;
    }
}

/* btn */
.btn-accent {
    text-transform: uppercase;
    background: var(--lochmara);
    color: #FFF;
    width: max-content;
}
.btn-accent:hover {
    background: var(--dodger-blue);
}

/* paddings */

.pb-0 {padding-bottom: 0}
.pt-0 {padding-top: 0}

/* margins */

.mt-90 {margin-top: 90px}
.mt-40 {margin-top: 40px}
.mt-20 {margin-top: 20px}
.mt-8 {margin-top: 8px}
.mt-4 {margin-top: 4px}

.mb-90 {margin-bottom: 90px}
.mb-40 {margin-bottom: 40px}
.mb-20 {margin-bottom: 20px}
.mb-8 {margin-bottom: 8px}
.mb-4 {margin-bottom: 4px}
.mb-0 {margin-bottom: 0 !important;}

.fw-bolder {font-weight: 600}
.fw-bold {font-weight: 700}

@media (min-width: 768px) {
    .mb-md-60 {margin-bottom: 60px}
}

@media (min-width: 992px) {
    .mb-lg-90 {margin-bottom: 90px}
}

/* btn */

.w-max {width: max-content}
.w-full {width: 100%}

.btn {
    text-transform: uppercase;
    text-align: center;
}
.btn-transparent {
    background-color: transparent;
    color: var(--lochmara);
    outline: 1px solid var(--lochmara);
}
.btn-transparent:hover {
    color: #FFF;
    outline-color: var(--dodger-blue);
}


/* stages */

.stages-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
}

.stage-item .stage-number {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 184px;
    max-width: 184px;
    -webkit-clip-path: polygon(calc(100% - 15px) 0%, 100% 50%, 100% 100%, 0.21% 100%, 0% 0%);
    clip-path: polygon(calc(100% - 15px) 0%, 100% 50%, 100% 100%, 0.21% 100%, 0% 0%);
    background-color: var(--lochmara);
    padding: 6px 20px 6px 23px;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: #FFF;
}


.stage-item .stage-number img{
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.stage-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background-color: var(--aethens-gray);
}
.stage-item .stage-title {
    font-size: 24px;
    font-weight: 600;
}

.stage-item .stage-body {
    padding: 8px 0;
}

.stages-btn {
    display: flex;
    justify-content: center;
}

.stages-btn .btn {
    padding: 20px 40px;
    font-weight: 600;
}

@media(min-width: 768px) {
    .stage-item {
        padding: 0;
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }

    .stage-item .stage-title {
        min-width: 270px;
        max-width: 270px;
    }
}

@media (min-width: 1200px) {
    .stage-item {
        gap: 20px;
    }

    .stage-item .stage-number {
        padding: 20px 20px 20px 64px;
        gap: 20px;
        min-width: 315px;
        max-width: 315px;
        clip-path: polygon(calc(100% - 30px) 0%,100% 50%,100% 100%,0.21% 100%,0% 0%);
    }

    .stage-item .stage-number img {
        width: 60px;
        height: 60px;
    }

    .stage-item .stage-title {
        min-width: 315px;
        max-width: 315px;
    }
}

/* slick */

.slick-slide {
    margin: 0 10px;
}

.slick-list {
    margin: 0 -10px !important;
}

.slick-slide img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .slick-arrow {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1469px) {
    .slider .slick-prev {
        left: 0;
        transform: unset;
    }
    .slider .slick-next {
        right: 0;
        transform: unset;
    }
}

/* blog */

.blog-categories .items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.blog-categories .category-item {
    padding: 8px 12px;
    outline: 1px solid #DBDBDB;
}
.blog-categories .category-item > * {
    color: #555555;
}

.blog-categories .category-item:hover,
.blog-categories .category-item.active {
    color: var(--lochmara) !important;
    outline-color: var(--lochmara) !important;
}
.blog-categories .category-item:hover *,
.blog-categories .category-item.active * {
    color: var(--lochmara) !important;
}

.blog-items {
    display: grid;
    gap: 40px 20px;
}

.blog-item {
    display: flex;
    flex-direction: column;
}

.blog-item .content,
.blog-item .content .text {
    flex-grow: 1;
}

.blog-item .preview-image {
    overflow: hidden;
    position: relative;
}

.blog-item .preview-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.66 / 1;
}

.blog-item .date {
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    padding: 8px 12px 8px 24px;
    background-color: var(--lochmara);
    color: #FFF;
    clip-path: polygon(
            0% 0%,
            100% 0%,
            calc(100% - 16px) 100%,
            0% 100%
    );
}

.blog-item .content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-item:not(.slick-slide) .content {
    padding: 12px;
    background-color: var(--aethens-gray);
}

.blog-item .title {
    color: var(--woodsmoke);
    font-weight: 600;
    font-size: 16px;
}

.blog-item .detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lochmara);
    text-transform: uppercase;
}

.blog-item:hover .detail {
    gap: 16px;
}
.blog-item:hover .preview-image img {
    transform: scale(1.1);
}

@media (min-width: 1200px) {
    .blog-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pagination.blog {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
}
.pagination.blog .item .prev {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14"><path d="M22.666 6.0001C22.9312 6.0001 23.1856 6.10546 23.3731 6.29299C23.5607 6.48053 23.666 6.73488 23.666 7.0001C23.666 7.26531 23.5607 7.51967 23.3731 7.7072C23.1856 7.89474 22.9312 8.0001 22.666 8.0001H10.3327V13.0001C10.3325 13.1978 10.2738 13.3909 10.1639 13.5552C10.054 13.7195 9.89787 13.8475 9.71525 13.9231C9.53263 13.9988 9.3317 14.0186 9.13783 13.9801C8.94397 13.9415 8.76587 13.8464 8.62602 13.7068L0.626017 7.70676C0.438749 7.51926 0.333563 7.2651 0.333563 7.0001C0.333563 6.7351 0.438749 6.48093 0.626017 6.29343L8.62602 0.293431C8.76587 0.153755 8.94397 0.0586562 9.13783 0.0201437C9.3317 -0.0183688 9.53263 0.00143298 9.71525 0.0770481C9.89787 0.152663 10.054 0.2807 10.1639 0.444988C10.2738 0.609275 10.3325 0.802444 10.3327 1.0001V6.0001H22.666Z" fill="%23555555"/></svg>');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}
.pagination.blog .item:not(.disabled) .prev:hover {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14"><path d="M22.666 6.0001C22.9312 6.0001 23.1856 6.10546 23.3731 6.29299C23.5607 6.48053 23.666 6.73488 23.666 7.0001C23.666 7.26531 23.5607 7.51967 23.3731 7.7072C23.1856 7.89474 22.9312 8.0001 22.666 8.0001H10.3327V13.0001C10.3325 13.1978 10.2738 13.3909 10.1639 13.5552C10.054 13.7195 9.89787 13.8475 9.71525 13.9231C9.53263 13.9988 9.3317 14.0186 9.13783 13.9801C8.94397 13.9415 8.76587 13.8464 8.62602 13.7068L0.626017 7.70676C0.438749 7.51926 0.333563 7.2651 0.333563 7.0001C0.333563 6.7351 0.438749 6.48093 0.626017 6.29343L8.62602 0.293431C8.76587 0.153755 8.94397 0.0586562 9.13783 0.0201437C9.3317 -0.0183688 9.53263 0.00143298 9.71525 0.0770481C9.89787 0.152663 10.054 0.2807 10.1639 0.444988C10.2738 0.609275 10.3325 0.802444 10.3327 1.0001V6.0001H22.666Z" fill="%23007CD6"/></svg>');
}
.pagination.blog .item .next {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14" fill="none"><path d="M1.33398 6.0001C1.06877 6.0001 0.814414 6.10546 0.626877 6.29299C0.439341 6.48053 0.333984 6.73488 0.333984 7.0001C0.333984 7.26531 0.439341 7.51967 0.626877 7.7072C0.814414 7.89474 1.06877 8.0001 1.33398 8.0001H13.6673V13.0001C13.6675 13.1978 13.7262 13.3909 13.8361 13.5552C13.946 13.7195 14.1021 13.8475 14.2848 13.9231C14.4674 13.9988 14.6683 14.0186 14.8622 13.9801C15.056 13.9415 15.2341 13.8464 15.374 13.7068L23.374 7.70676C23.5613 7.51926 23.6664 7.2651 23.6664 7.0001C23.6664 6.7351 23.5613 6.48093 23.374 6.29343L15.374 0.293431C15.2341 0.153755 15.056 0.0586562 14.8622 0.0201437C14.6683 -0.0183688 14.4674 0.00143298 14.2848 0.0770481C14.1021 0.152663 13.946 0.2807 13.8361 0.444988C13.7262 0.609275 13.6675 0.802444 13.6673 1.0001V6.0001H1.33398Z" fill="%23555555"/></svg>');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}
.pagination.blog .item:not(.disabled) .next:hover {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="14" viewBox="0 0 24 14" fill="none"><path d="M1.33398 6.0001C1.06877 6.0001 0.814414 6.10546 0.626877 6.29299C0.439341 6.48053 0.333984 6.73488 0.333984 7.0001C0.333984 7.26531 0.439341 7.51967 0.626877 7.7072C0.814414 7.89474 1.06877 8.0001 1.33398 8.0001H13.6673V13.0001C13.6675 13.1978 13.7262 13.3909 13.8361 13.5552C13.946 13.7195 14.1021 13.8475 14.2848 13.9231C14.4674 13.9988 14.6683 14.0186 14.8622 13.9801C15.056 13.9415 15.2341 13.8464 15.374 13.7068L23.374 7.70676C23.5613 7.51926 23.6664 7.2651 23.6664 7.0001C23.6664 6.7351 23.5613 6.48093 23.374 6.29343L15.374 0.293431C15.2341 0.153755 15.056 0.0586562 14.8622 0.0201437C14.6683 -0.0183688 14.4674 0.00143298 14.2848 0.0770481C14.1021 0.152663 13.946 0.2807 13.8361 0.444988C13.7262 0.609275 13.6675 0.802444 13.6673 1.0001V6.0001H1.33398Z" fill="%23007CD6"/></svg>');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}
.pagination.blog .item.disabled {
    opacity: .7;
    cursor: not-allowed;
}
.pagination.blog .item > * {
    width: 42px;
    height: 42px;
    color: #555555;
    outline: 1px solid #555555;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination.blog .item:not(.disabled):hover > *,
.pagination.blog .item.active > * {
    color: var(--lochmara);
    outline: 1px solid var(--lochmara);
}

[class*=clamp-] {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.clamp-3 {
    -webkit-line-clamp: 3;
}
.clamp-4 {
    -webkit-line-clamp: 4;
}

@media (min-width: 768px) {
    .right__container {
        width: 80%;
        padding: 0 40px 0 0;
    }

    .right-bar {
        width: 30%;
        max-width: 304px;
    }
}

@media (min-width: 1400px) {
    .right__container {
        padding: 0 60px 0 0;
    }
}

/* theme */

.text-center {text-align: center !important;}
.text-start {text-align: left !important;}
.text-end {text-align: right !important;}

/*article */

.article-page .date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #141C1A;
}

.article-page .content .img img {
    width: 100%;
}

.content {
    font-size: 16px;
}
.content [class*=h],
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    font-weight: 600;
    color: #141C1A;
    text-align: inherit;
    line-height: 1.3;
}

.content h1:not(:first-child), .content h2:not(:first-child) {
    margin: 32px 0 20px;
}

.content h3 {
    font-size: 20px;
    margin: 24px 0 16px;
}

.content img {
    margin-bottom: 12px;
}

.about-section .content [class*=h] {
    font-weight: 700;
    margin-bottom: 20px;
}

.about-section .content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.content .h4,
.content h4 {
    font-size: 18px;
    margin: 20px 0 12px;
}
.content ul {
    margin: 12px 0 20px;
    list-style: inherit;
    padding: 0 0 0 26px;
}
.content ul li::marker {
    color: #141C1A;
}
.content ul strong, .content ul b {
    font-weight: 600;
    color: #141C1A;
}
.content li + li {
    margin-top: 12px;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: "Inter", system-ui, sans-serif;
}

.content thead {
    background: var(--lochmara);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.content th,
.content td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--aethens-gray);
}

.content tr:last-child td {
    border-bottom: none;
}

.content tbody tr:nth-child(even) {
    background-color: var(--aethens-gray);
}

.content tbody tr:hover {
    background-color: rgba(30,152,255,0.08);
    transition: background 0.2s ease-in-out;
}

.content td a {
    color: var(--dodger-blue);
    text-decoration: none;
    font-weight: 500;
}

.content td a:hover {
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .content table,
    .content thead,
    .content tbody,
    .content th,
    .content td,
    .content tr {
        display: block;
    }

    .content thead {
        display: none;
    }

    .content tr {
        margin-bottom: 15px;
        border: 1px solid var(--alto);
        border-radius: 10px;
        padding: 10px;
    }

    .content td {
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 10px;
        font-size: 15px;
    }

    .content td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--gray);
        flex-basis: 40%;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .content .h3 {font-size: 18px}
}

.article-bottom {
    padding-top: 20px;
    border-top: 1px solid #DBDBDB;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.back-to-articles, .share {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #141C1A;
    font-size: 16px;
}
.back-to-articles:hover, .share:hover {
    color: var(--lochmara);
}


.right-bar .title {
    color: #141C1A;
    font-size: 18px;
    font-weight: 600;
}

.blog-themes .category-item a {
    padding: 8px 12px;
    font-size: 16px;
    background-color: #F0F2F5;
    color: #555555;
    display: block;
    width: 100%;
}

.blog-themes .category-item:hover a {
    color: #FFF;
    background-color: var(--lochmara);
}
.blog-themes .category-item + .category-item {
    margin-top: 4px;
}

.sidebar-item + .sidebar-item {margin-top: 24px}

.sidebar-item .blog-item + .blog-item {
    margin-top: 8px;
}

.article-page .container {
    row-gap: 90px;
}

.share a {display: flex}

/* about section */

.about-section {
    color: #141C1A;
}

.about-section .content .btn {
    padding: 20px 60px;
}

.about-section ul {
    list-style: unset;
    padding: 0;
}

.about-section ul li {
   display: flex;
    gap: 12px;
}
.about-section ul li::before {
    content: "";
    display: inline-block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" fill="%23007CD6"/><path d="M17 8L10 16L7 13" stroke="white" stroke-width="1.375" stroke-miterlimit="10" stroke-linecap="square"/></svg>') no-repeat center/contain;
}

.about-section .part {
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 20px;
    position: relative;
}
.about-section .part + .part {
    margin-top: 40px;
}
.about-section .part .part-item {
    width: 100%;
}

.about-section .top-part .about-img {
    clip-path: polygon(25px 0%,100% 0%,100.00% 100%,0% 100%);
    margin-left: 15px;
}
.about-section .bottom-part .about-img {
    clip-path: polygon(0% 0%,100% 0%,calc(100% - 25px) 100%,0% 100%);
    margin-right: 15px;
}

.about-section .bottom-part .container {
    display: flex;
    justify-content: end;
}

.about-section .utp-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.about-section .utp-items .utp-item {
    width: calc((100% - 20px) / 2);
}
.about-section .utp-item .company-adv__body-text {
    font-size: 16px;
}


@media (min-width: 992px) {
    .about-section .part .about-img {
        position: absolute;
    }

    .about-section .part {
        min-height: 480px;
        align-items: center;
    }
    .about-section .part .part-item {
        width: calc((100% - 20px) / 2);
    }
    .about-section .part .about-img {
        height: 100%;
    }
    .about-section .part .about-img img {
        height: 100%;
        object-fit: cover;
    }

    .about-section .utp-items .utp-item {
        max-width: 270px;
    }

    .about-section .top-part .about-img {
        right: 0;
        clip-path: polygon(60px 0%,100% 0%,100.00% 100%,0% 100%);
        margin: 0;
    }
    .about-section .bottom-part .about-img {
        left: 0;
        clip-path: polygon(0% 0%,100% 0%,calc(100% - 60px) 100%,0% 100%);
        margin: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .utp-item .company-adv__body-num {
        font-size: 48px;
    }
}

@media (max-width: 599px) {
    .utp-item .company-adv__body-num {
        font-size: 32px;
    }
}

/* product-page  */

.section.tovar {
    margin-top: 0;
}

.offer-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.offer-block > .btn {
    padding: 20px 10px;
    gap: 10px;
    flex: 1;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    transition: .3s ease-in-out;
}
.offer-block > .btn:hover path {
    fill: #FFF;
}

.product-chars .char-item + .char-item {
    margin-top: 4px;
}

.product-chars .char-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}
.product-chars .char-item .title {
    color: #141C1A;
    font-weight: 600;
}

.product-chars-wrap button {
    color: var(--lochmara);
    text-decoration: underline;
    font-size: 16px;
    font-weight: 600;
    margin-top: 4px;
    background-color: transparent;
    cursor: pointer;
}

.hidden {
    display: none !important;
}

.delivery {
    background-color: var(--aethens-gray);
    padding: 8px 12px;
    font-size: 16px;
}
.delivery .title {
    color: var(--woodsmoke);
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;align-items: center;gap: 10px;
}

/* product-tabs */

.product-tabs {
    margin: 40px 0 90px;
}

.product-tabs .tabs-nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    color: var(--woodsmoke);
    background-color: var(--aethens-gray);
    margin-bottom: 20px !important;
}

.product-tabs .tabs-nav li {
    padding: 12px 16px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.product-tabs .tabs-nav li.active {
    color: #FFF;
    background-color: var(--lochmara);
}

.product-tabs .tabs-content .tab-pane {
    display: none;
}

.product-tabs .tabs-content .tab-pane.active {
    display: block;
}

@media (min-width: 992px) {
    .product-tabs .tabs-nav li {
        padding: 12px 24px;
    }
}

.faqs-section .faqs-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.faqs-section .faq-item {
    font-size: 16px;
    outline: 1px solid var(--alto);
    padding: 12px;
    height: max-content;
    flex-grow: 1;
}

.faqs-section .faq-question {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: unset;
    background-color: unset;
    width: 100%;
    color: var(--woodsmoke);
    font-weight: 600;
    text-align: start;
}

.faqs-section .q-icon svg {
    display: none;
}

.faqs-section .q-icon {
    display: flex;
}

.faqs-section .q-icon .icon-plus {
    display: inline-block;
}

.faqs-section .faq-item.active .q-icon .icon-plus {
    display: none;
}

.faqs-section .faq-item.active .q-icon .icon-minus {
    display: inline-block;
}

.faqs-section .faq-answer {
    display: none;
    padding-top: 12px;
}

@media (min-width: 768px) {
    .faqs-section .faq-item {
        max-width: calc((100% - 20px) / 2);
    }
}

.similar-products .category-list-item {
    margin-bottom: 0;
}

.other-volumes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 16px;
}

.other-volumes .title {
    margin-top: 4px;
    color: var(--woodsmoke);
    font-weight: 600;
}

.other-volumes > .volume-item {
    padding: 3px 7px;
    border: 1px solid var(--alto);
    color: #555;
}

.other-volumes > .volume-item:hover,
.other-volumes > .volume-item.active {
    color: var(--lochmara);
    border-color: var(--lochmara);
}

.blog-slider .slick-track {
    display: flex;
}
.blog-slider .blog-item.slick-slide {
    display: flex;
    height: auto;
}
.blog-slider .blog-item.slick-slide .content {
    margin-top: 8px;
}

.calculation-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 40px 8.7%;
    background: var(--lochmara);
    color: #FFF;
    font-size: 24px;
}

.calculation-wrap .h2 {
    color: #FFF;
    text-align: start;
    margin-bottom: 12px;
}

.calculation-wrap .content-part {
    flex-grow: 1;
}

.calculation-wrap .btn {
    background: #FFF;
    color: var(--lochmara);
    font-weight: 700;
    align-items: center;
    gap: 10px;
    height: 62px;
    padding: 10px 24px;
    white-space: unset;
    min-width: 260px;
    width: 50%;
    max-width: 372px;
    text-align: start;
}
.calculation-wrap .btn svg {
    width: 20px;
    min-width: 20px;
}

@media (max-width: 992px) {
    .calculation-wrap {
        flex-direction: column;
        justify-content: center;
    }

    .calculation-wrap .btn {
        width: 100%;
    }

    .calculation-wrap .content-part,
    .calculation-wrap .h2 {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .calculation-wrap {
        font-size: 18px;
    }
}

/* reviews */

.reviews-feedback__rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reviews-tabs {
    font-weight: 600;
    font-size: 24px;
    color: var(--woodsmoke);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 12px;
    row-gap: 20px;
}
.reviews-tabs .buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}
.reviews-tabs button {
    cursor: pointer;
    color: #555;
    background-color: #FFF;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 11px;
    border: 1px solid var(--alto);
    width: max-content;
}
.reviews-tabs button.active {
    border-color: var(--lochmara);
}

.reviews-block.tab-content {
    display: block;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.reviews-block.tab-content.active {
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
}


.tab-content.rating .ec-d-rating_wrap {
    padding: 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    width: max-content;
}
.tab-content.rating .ec-d-rating_wrap .ec-d-rating__value {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    color: var(--woodsmoke);
}

.tab-content.rating .rating-value {
    display: flex;
    align-items: center;
}
.tab-content.rating .ec-stars {
    margin: 6px 2px 6px 6px;
}

.review-message__item  {
    margin-top: 20px;
}

.review-message__item .ec-message__body,
.review-message__item .ec-message__footer {
    font-size: 16px;
    color: var(--woodsmoke);
    padding: 12px 32px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-message__item .ec-message__body {
    background-color: var(--aethens-gray);
    text-align: center;
    gap: 12px;
    min-height: 185px;
}

.review-message__item .message-icon {
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='41' viewBox='0 0 40 41' fill='none'><g clip-path='url(%23clip0_44_2252)'><path d='M8.79 18.0669C10.5206 18.0669 12.2123 18.5801 13.6512 19.5415C15.0902 20.503 16.2117 21.8696 16.8739 23.4684C17.5362 25.0673 17.7095 26.8266 17.3719 28.5239C17.0343 30.2213 16.2009 31.7804 14.9772 33.0041C13.7535 34.2278 12.1944 35.0611 10.497 35.3988C8.79971 35.7364 7.04037 35.5631 5.44152 34.9008C3.84267 34.2386 2.4761 33.1171 1.51464 31.6781C0.553179 30.2392 0.04 28.5475 0.04 26.8169L0 25.5669C0 20.9256 1.84374 16.4744 5.12563 13.1925C8.40752 9.91064 12.8587 8.06689 17.5 8.06689V13.0669C15.8578 13.0625 14.2309 13.3837 12.7136 14.0119C11.1962 14.6401 9.81849 15.5629 8.66 16.7269C8.20967 17.1762 7.79429 17.6593 7.4175 18.1719C7.86583 18.1002 8.3225 18.0644 8.7875 18.0644L8.79 18.0669ZM31.29 18.0669C33.0206 18.0669 34.7123 18.5801 36.1512 19.5415C37.5902 20.503 38.7117 21.8696 39.3739 23.4684C40.0362 25.0673 40.2095 26.8266 39.8719 28.5239C39.5343 30.2213 38.7009 31.7804 37.4772 33.0041C36.2535 34.2278 34.6944 35.0611 32.997 35.3988C31.2997 35.7364 29.5404 35.5631 27.9415 34.9008C26.3427 34.2386 24.9761 33.1171 24.0146 31.6781C23.0532 30.2392 22.54 28.5475 22.54 26.8169L22.5 25.5669C22.5 20.9256 24.3437 16.4744 27.6256 13.1925C30.9075 9.91064 35.3587 8.06689 40 8.06689V13.0669C38.3578 13.0625 36.7309 13.3837 35.2136 14.0119C33.6962 14.6401 32.3185 15.5629 31.16 16.7269C30.7097 17.1762 30.2943 17.6593 29.9175 18.1719C30.3658 18.1002 30.8233 18.0669 31.29 18.0669Z' fill='%23CCE5F7'/></g><defs><clipPath id='clip0_44_2252'><rect width='40' height='40' fill='white' transform='translate(0 0.566895)'/></clipPath></defs></svg>") no-repeat center/contain;
}

.review-message__item:hover {
    margin-top: unset;
}
.review-message__item:hover .ec-message__body {
    background-color: var(--lochmara);
    color: #FFF;
}
.review-message__item:hover .ec-message__body .read-more-btn {
    border-color: #FFF;
    color: #FFF;
}

.review-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.review-text.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
}

.ec-message__footer .ec-message__author {
    font-weight: 600;
}

.ec-message__body .read-more-btn {
    border-bottom: 1px solid var(--woodsmoke);
    background-color: transparent;
    cursor: pointer;
}

.ec-message__footer .ec-message__date {
    color: #555;
}

@media (max-width: 768px) {
    .reviews-tabs, .reviews-feedback__rating {
        flex-direction: column;
    }

    .tab-content.rating .ec-d-rating_wrap {
        flex-wrap: wrap;
        width: auto;
    }

    .reviews-tabs .buttons {
        gap: 8px;
    }
}

.slider .slick-dots {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    margin-top: 20px;
    gap: 8px;
    flex-wrap: wrap;
}

.slider .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    border: 1px solid var(--lochmara);
}
.slider .slick-dots li button:before {
    content: unset;
}
.slider .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 1px;
}
.slider .slick-dots li.slick-active {
    background-color: var(--lochmara);
}



/* check-box item */

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    position: relative;
    gap: 12px;
    color: var(--woodsmoke);
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-checkbox .checkmark {
    width: 24px;
    min-width: 24px;
    height: 24px;
    border: 1px solid var(--lochmara);
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

.custom-checkbox input:checked ~ .checkmark::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--lochmara);
    border-color: var(--lochmara);
}

.custom-checkbox:hover .checkmark {
    border-color: #0056b3;
}

.label-text a {
    color: var(--lochmara);
}

.show-on-map {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lochmara);
    margin-top: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.fotorama__stage {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
}

.fotorama__stage img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

section:not(.about-section) .content ul {
    list-style: inherit;
    margin: 24px 0;
    padding-left: 26px;
}
section:not(.about-section) .content ol {
    list-style: decimal;
    margin: 24px 0;
    padding-left: 26px;
}

#map .leaflet-control-attribution {
    display: none !important;
}
#map .leaflet-top {z-index: 900 !important;}