@charset "UTF-8";
@font-face {
    font-family: "Ubuntu";
    font-weight: normal;
    src: url("../fonts/Ubuntu-Regular.woff2");
}
@font-face {
    font-family: "Ubuntu";
    font-weight: bold;
    src: url("../fonts/Ubuntu-Medium.woff2");
}
@font-face {
    font-family: "Ubuntu";
    font-weight: 500;
    src: url("../fonts/Ubuntu-Medium.woff2");
}
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

input,
button,
textarea,
select {
    font: inherit;
}

html,
body {
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

body {
    font-size: 16px;
    min-width: 320px;
    position: relative;
    line-height: normal;
    font-family: "Ubuntu", sans-serif;
    color: #2b2b2c;
}

.img {
    display: block;
    max-width: 100%;
    height: auto;
}

.page {
    overflow: hidden;
    position: relative;
    padding-top: 152px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    background: #fff;
}
.header-seachOpen {
    display: none;
    cursor: pointer;
}
.header-toggle {
    cursor: pointer;
    position: relative;
    display: none;
}
.header-toggle svg {
    display: block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.header-toggle__close {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.header-toggle.active .header-toggle__burger {
    opacity: 0;
}
.header-toggle.active .header-toggle__close {
    opacity: 1;
}
.header-top {
    background: #004471;
    padding: 7px 0;
}
.header-top__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-logo {
    text-decoration: none;
    outline: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 17px;
}
.header-contact {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    max-width: 350px;
    flex-wrap: wrap;
    margin-top: -6px;
}
.header-contact__block {
    width: 50%;
    margin-top: 6px;
}
.header-contact__item {
    display: flex;
    align-items: center;
}
.header-contact__item a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    outline: none;
    position: relative;
    font-weight: bold;
    font-size: 12px;
    line-height: 140%;
    color: #ffffff;
    margin-left: 4px;
}
.header-contact__item a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.header-contact__item a:hover {
    text-decoration: none;
    color: #fff;
}
.header-contact__item a:hover::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.header-button {
    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;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    text-decoration: none;
    outline: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    width: 85px;
    height: 46px;
    max-width: 100%;
    position: relative;
}
.header-button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    width: 100%;
    height: 100%;
    border: 1px solid #7fa1b8;
}
.header-button svg {
    display: block;
    margin-right: 8px;
    fill: #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.header-button b {
    font-weight: normal;
    display: block;
    color: #7fa1b8;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.header-button span {
    color: #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.header-button span,
.header-button b,
.header-button svg {
    position: relative;
    z-index: 2;
}
.header-button:hover {
    text-decoration: none;
}
.header-button:hover::before {
    background-color: #fff;
    border: 1px solid #004471;
}
.header-button:hover span {
    color: #004471;
}
.header-button:hover svg {
    fill: #004471;
}
.header-button:hover b {
    color: #004471;
}
.header-login {
    margin-left: 20px;
    width: 155px;
}
.header-bottom {
    padding: 14.5px 0;
}
.header-bottom__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-catalogBtn {
    width: 156px;
    height: 45px;
    background: #004471;
    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;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.header-catalogBtn__burger {
    display: block;
}
.header-catalogBtn__icons {
    margin-right: 10px;
    position: relative;
}
.header-catalogBtn__icons svg {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.header-catalogBtn__close {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.header-catalogBtn__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
}
.header-catalogBtn:hover {
    background: #008dd2;
}
.header-catalogBtn.active .header-catalogBtn__burger {
    opacity: 0;
}
.header-catalogBtn.active .header-catalogBtn__close {
    opacity: 1;
}
.header-nav {
    padding: 0;
    margin: 0 auto;
}
.header-nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-nav ul li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px;
}
.header-nav ul li:last-child {
    margin-right: 0;
}
.header-nav ul li a {
    text-decoration: none;
    outline: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
}
.header-nav ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 100%;
    height: 1px;
    background: #004471;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.header-nav ul li:hover a {
    text-decoration: none;
    color: #004471;
}
.header-nav ul li:hover a::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.header-search {
    width: 260px;
    max-width: 100%;
    position: relative;
}
.header-search__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 45px;
    width: 100%;
    padding: 0 39px 0 39px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    background: transparent;
    border: 1px solid #bac0cc;
}
.header-search__input::-webkit-input-placeholder {
    color: #bac0cc;
}
.header-search__input::-moz-placeholder {
    color: #bac0cc;
}
.header-search__input:-ms-input-placeholder {
    color: #bac0cc;
}
.header-search__input::-ms-input-placeholder {
    color: #bac0cc;
}
.header-search__input::placeholder {
    color: #bac0cc;
}
.header-search__svg {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    outline: none !important;
}
.header-search__svg svg {
    display: block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    fill: #bac0cc;
}
.header-search__svg:hover svg,
.header-search__svg.active svg {
    fill: #004471;
}
.header-search__btn {
    left: 12px;
}
.header-search__audio {
    right: 12px;
}
.header-mobile {
    display: none;
}

.footer {
    padding: 30px 0 44px;
    background: #004471;
    margin-top: auto;
}
.footer-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer-block {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.footer-block:nth-child(2) {
    width: 50%;
    min-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}
.footer-logo {
    text-decoration: none;
    outline: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.footer-textImg {
    margin: 22px 0 4px;
    border-top: 1px solid #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.footer-navs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 15px;
}
.footer-nav {
    padding: 0;
    margin: 0;
    width: 50%;
}
.footer-nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.footer-nav ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 6px;
}
.footer-nav ul li:first-child {
    margin-top: 0;
}
.footer-nav ul li a {
    text-decoration: none;
    outline: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    color: #ffffff;
}
.footer-nav ul li a::before {
    content: "";
    bottom: -2px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.footer-nav ul li a:hover {
    text-decoration: none;
    color: #fff;
}
.footer-nav ul li a:hover::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.footer .header-contact__item {
    margin-top: 4px;
}
.footer .header-contact__item:first-child {
    margin-top: 0;
}
.footer-end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 10px;
}
.footer-address {
    margin: 16px 0 20px;
    text-align: right;
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    color: #ffffff;
}
.footer-soc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.footer-soc__item {
    display: block;
    margin-left: 10px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.footer-soc__item:hover {
    opacity: 0.7;
}

.center {
    text-align: center;
}

.catalogMenu {
    padding: 0;
    margin: 0;
    top: 152px;
    left: 50%;
    position: fixed;
    z-index: 9;
    width: 1180px;
    max-width: 100%;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-10px) translateX(-50%);
    -ms-transform: translateY(-10px) translateX(-50%);
    transform: translateY(-10px) translateX(-50%);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.catalogMenu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0) translateX(-50%);
    -ms-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
}
.catalogMenu::before {
    content: "";
    position: absolute;
    left: -500%;
    width: 1500%;
    height: 100%;
    border-top: 1px solid #e8e7f3;
    top: 0;
    background: #ffffff;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08),
        0px 1.56354px 6.47753px rgba(3, 4, 30, 0.0476886),
        0px 0.465507px 1.92853px rgba(3, 4, 30, 0.0323114);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.56354px 6.47753px rgba(3, 4, 30, 0.0476886),
        0px 0.465507px 1.92853px rgba(3, 4, 30, 0.0323114);
}
.catalogMenu ul {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 7px 0 0 0;
    list-style-type: none;
    height: 454px;
    overflow: hidden !important;
    width: 1180px;
    max-width: 100%;
    max-height: calc(100vh - 160px);
}
.catalogMenu ul .scroll-wrap {
    padding-top: 7px !important;
}
.catalogMenu ul li {
    padding: 6px 0;
    display: block;
    padding-right: 36px;
    width: 288px;
    max-width: 100%;
    border-top: 1px solid #e8e7f3;
}
.catalogMenu ul li:first-child {
    border: none;
}
.catalogMenu ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #2b2b2c;
    padding-right: 24px;
    position: relative;
}
.catalogMenu ul li a::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    background-image: url("../img/menu-arrow-1.svg");
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    display: none;
}
.catalogMenu ul li a::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    z-index: 2;
    background-image: url("../img/menu-arrow-2.svg");
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
    display: none;
}
.catalogMenu ul li.menu-item-has-children > a::before,
.catalogMenu ul li.menu-item-has-children > a::after {
    display: block;
}
.catalogMenu ul li ul {
    display: none;
    position: absolute;
    left: 287px;
    top: 0;
    border-left: 1px solid #e8e7f3;
    width: 288px;
    padding: 7px 0 0 0;
    overflow: visible !important;
}
.catalogMenu ul li ul li {
    width: 100%;
    padding-left: 20px;
}
.catalogMenu ul li:hover > ul {
    display: block;
}
.catalogMenu ul li:hover > ul li:hover > ul {
    display: block;
}
.catalogMenu ul li:hover > ul li:hover > ul li:hover > ul {
    display: block;
}
.catalogMenu ul li:hover > a {
    color: #004471;
    text-decoration: none;
}
.catalogMenu ul li:hover > a::before {
    opacity: 0;
}
.catalogMenu ul li:hover > a::after {
    opacity: 1;
}

[data-scrollbar] {
    width: 100%;
    background: #bac0cc;
}

[data-slimscroll] > div + div {
    width: 6px;
    margin-top: 10px;
    right: 0;
}

.steps {
    background: #f2f2f2;
    padding: 50px 0;
}
.steps-item {
    padding-left: 20px;
    position: relative;
}
.steps-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: -100%;
    height: 300%;
    width: 1px;
    background: #e8e7f3;
    pointer-events: none;
}
.steps-item__title {
    margin: 4px 0 8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.steps-item__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.steps-item__number {
    font-weight: 500;
    font-size: 36px;
    line-height: 140%;
    color: #bac0cc;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.steps-item:hover .steps-item__title {
    color: #004471;
}
.steps-item:hover .steps-item__text {
    color: #2b2b2c;
}
.steps-item:hover .steps-item__number {
    color: #004471;
}

.title {
    padding-top: 70px;
    padding-left: 14px;
    position: relative;
    font-size: 12px;
    line-height: 17px;
    text-transform: uppercase;
    color: #008dd2;
    font-weight: normal;
}
.title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    background: #008dd2;
    height: calc(100% - 4px);
}

.subtitle {
    margin-top: 16px;
    font-weight: 500;
    font-size: 28px;
    line-height: 39px;
}

.title.white::before {
    background: #fff;
}

.white {
    color: #fff;
}

.btn {
    text-decoration: none;
    outline: none;
    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;
    text-align: center;
    width: 280px;
    max-width: 100%;
    height: 45px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #004471;
    cursor: pointer;
    border: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.btn svg {
    display: block;
    margin-left: 14px;
}
.btn:hover {
    background: #008dd2;
    color: #fff;
    text-decoration: none;
}
.btn.btn-gray {
    background: #f2f2f2;
    color: #2b2b2c;
}
.btn.btn-gray:hover {
    background: #008dd2;
    color: #fff;
}
.btn.btn-border {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    color: #2b2b2c;
}
.btn.btn-border:hover {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    color: #004471;
}

.mainCatalog-btn {
    margin-left: auto;
    margin-top: -42px;
    position: relative;
    z-index: 2;
}
.mainCatalog-item {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e8e7f3;
    position: relative;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.mainCatalog-item__link {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}
.mainCatalog-item__title {
    margin: 13px 0 1px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.mainCatalog-item__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.mainCatalog-item__img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: auto;
}
.mainCatalog-item:hover {
    border: 1px solid #e8e7f3;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
}
.mainCatalog-item:hover .mainCatalog-item__title {
    color: #004471;
}
.mainCatalog-item:hover .mainCatalog-item__text {
    color: #2b2b2c;
}
.mainCatalog-row {
    margin-top: -20px;
}
.mainCatalog-block {
    margin-top: 20px;
}
.mainCatalog-wrapper {
    background: #f2f2f2;
    padding: 40px 0;
    margin-top: 27px;
}

.mainCatalog-mobile {
    display: none;
}

.header-nav ul li.menu-item-has-children {
    position: relative;
    padding-right: 24px;
}
.header-nav ul li.menu-item-has-children::before,
.header-nav ul li.menu-item-has-children::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url("../img/menu-arrow-3.svg");
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.header-nav ul li.menu-item-has-children::after {
    background-image: url("../img/menu-arrow-4.svg");
    opacity: 0;
}
.header-nav ul li.menu-item-has-children:hover::before {
    opacity: 0;
}
.header-nav ul li.menu-item-has-children:hover::after {
    opacity: 1;
}
.header-nav ul li.menu-item-has-children:hover::before,
.header-nav ul li.menu-item-has-children:hover::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.header-nav ul li ul {
    padding: 50px 0 20px;
    margin: 0;
    list-style-type: none;
    top: 122px;
    left: 50%;
    position: fixed;
    z-index: 9;
    width: 1180px;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px) translateX(-50%);
    -ms-transform: translateY(10px) translateX(-50%);
    transform: translateY(10px) translateX(-50%);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    display: block;
}
.header-nav ul li ul li {
    display: block;
    padding: 0;
    margin: 12px 0 0 0;
    width: 100%;
}
.header-nav ul li ul li:first-child {
    margin-top: 0;
}
.header-nav ul li ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    text-decoration: none;
}
.header-nav ul li ul li a::before,
.header-nav ul li ul li a::after {
    display: none;
}
.header-nav ul li ul li a:hover {
    color: #004471;
    text-decoration: none;
}
.header-nav ul li ul::before {
    content: "";
    position: absolute;
    left: -500%;
    width: 1500%;
    height: calc(100% - 30px);
    border-top: 1px solid #e8e7f3;
    top: 30px;
    z-index: -1;
    background: #ffffff;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08),
        0px 1.56354px 6.47753px rgba(3, 4, 30, 0.0476886),
        0px 0.465507px 1.92853px rgba(3, 4, 30, 0.0323114);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.56354px 6.47753px rgba(3, 4, 30, 0.0476886),
        0px 0.465507px 1.92853px rgba(3, 4, 30, 0.0323114);
}
.header-nav ul li:hover ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0) translateX(-50%);
    -ms-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
}
.header-nav ul li:hover ul a {
    color: #2b2b2c;
}
.header-nav ul li:hover ul a:hover {
    color: #004471;
}

.main {
    background: #f2f2f2;
    position: relative;
    padding-bottom: 46px;
}
.main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% + 190px);
    height: 248px;
    background: #004471;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    pointer-events: none;
}
.main-bg img {
    position: absolute;
    bottom: 0;
    right: 250px;
}
.main .container {
    position: relative;
    z-index: 2;
}
.main-title {
    padding-top: 58px !important;
}
.main-subtitle {
    margin-top: 20px;
    font-weight: 500;
    font-size: 36px;
    line-height: 140%;
    color: #ffffff;
    width: 470px;
    max-width: 100%;
}
.main-btnWrapper {
    margin-top: auto;
}
.main-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.main-slider {
    margin-top: 46px;
}
.main-img {
    width: 100%;
    height: 288px;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: bottom left;
    display: block;
}
.main .swiper-pagination {
    left: -28px;
    bottom: 0;
    display: block;
    position: absolute;
    z-index: 2;
    width: 8px;
}
.main .swiper-pagination-bullet {
    background: transparent;
    width: 8px;
    height: 8px;
    margin: 6px 0 0 0 !important;
    border: 1px solid #004471;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 0;
    z-index: 2;
}
.main .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #004471;
}

.main-mobile {
    display: none;
}
.posr {
    position: relative;
}

.slider-buttons {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.slider-buttons__item {
    width: 32px;
    height: 32px;
    border: 1px solid #004471;
    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;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.slider-buttons__item svg {
    display: block;
    stroke: #004471;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.slider-buttons__item.swiper-button-disabled {
    border: 1px solid #bac0cc;
}
.slider-buttons__item.swiper-button-disabled svg {
    stroke: #bac0cc;
}
.slider-buttons__item:hover {
    opacity: 0.7;
}
.slider-buttons__next {
    margin-left: 10px;
}
.slider-buttons__next svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.overflow-box.steps-mb .mainAbout {
    padding-top: 67px;
}
.overflow-box.steps-mb .mainAbout::before {
    height: 350px;
}

.mainNews {
    padding-bottom: 120px;
    position: relative;
}
.mainNews::before {
    content: "";
    left: 0;
    top: 0;
    height: 365px;
    width: calc(50% + 190px);
    background: #f2f2f2;
    z-index: -1;
    position: absolute;
}
.mainNews-btn {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}
.mainNews-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.mainNews-slider .swiper-slide {
    width: 280px;
}
.mainNews-item {
    border: 1px solid #e8e7f3;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
    background-color: #fff;
}
.mainNews-item__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.mainNews-item__img {
/*    height: 150px;*/
    margin-top: -1px;
    margin-right: -1px;
    margin-left: -1px;
    width: calc(100% + 2px);
}
.mainNews-item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}
.mainNews-item__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.mainNews-item__bottomBlock {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
    margin-right: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.mainNews-item__bottomBlock:last-child {
    margin-right: 0;
}
.mainNews-item__bottomBlock span {
    display: block;
    margin-left: 4px;
}
.mainNews-item__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin: 0;
    margin-bottom: auto;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mainNews-item__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin: 4px 0;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mainNews-item__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}
.mainNews-item__category {
    padding: 5px 9px;
    border: 1px solid #008dd2;
}
.mainNews-item__date {
    margin-left: 10px;
}
.mainNews-item__wrapper {
    padding: 12px 13px 13px;
    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-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.mainNews-item:hover {
    border: 1px solid #e8e7f3;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
}
.mainNews-item:hover .mainNews-item__title {
    color: #004471;
}
.mainNews-item:hover .mainNews-item__text {
    color: #2b2b2c;
}
.mainNews-slider {
    margin: -30px 0 -30px -16px;
    padding: 0 0 0 16px;
    width: calc((100vw - 1200px)/2 + 1200px - 300px + 6px);
    /*width: 1500px;*/
    /*min-width: 1500px;*/
}
.mainNews .swiper-pagination {
    display: none;
}
.mainNews .swiper-wrapper {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.mainNews .swiper-slide {
    height: auto !important;
    padding: 30px 0;
}
.mainNews-right {
    margin-top: 50px;
}
.mainNews .slider-pagination {
    bottom: 0 !important;
}

.slider-pagination {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px !important;
    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;
}
.slider-pagination .swiper-pagination-bullet {
    margin: 0 3px !important;
    width: 8px;
    height: 8px;
    border: 1px solid #004471 !important;
    border-radius: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    background: transparent !important;
    opacity: 1 !important;
    cursor: pointer;
    display: block;
}
.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #004471 !important;
}

.mainNews-mobile {
    display: none;
}

.prices {
    margin: 80px 0;
    padding: 50px 0;
    overflow: hidden;
}
.prices .container {
    position: relative;
}
.prices-bg {
    position: absolute;
    left: 0;
    top: -50px;
    bottom: -50px;
    width: 500%;
    background: #004471;
    overflow: hidden;
    z-index: -1;
}
.prices-bg svg {
    display: block;
    bottom: -6px;
    left: 24px;
    position: absolute;
}
.prices-btn {
    width: 100%;
    padding: 15px 23px;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    border: 1px solid #fff;
}
.prices-btn span {
    display: block;
}
.prices-btn__icon {
    background: #004471;
    margin-right: 16px;
    width: 46px;
    min-width: 46px;
    height: 46px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.prices-btn__icon svg {
    fill: #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.prices-btn__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.prices-btn__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-top: 4px;
}
.prices-btn:hover {
    border: 1px solid #7fa1b8;
    background: transparent;
    text-decoration: none;
}
.prices-btn:hover .prices-btn__icon {
    background-color: #fff;
}
.prices-btn:hover .prices-btn__icon svg {
    fill: #004471;
}
.prices-btn:hover .prices-btn__text {
    color: rgba(255, 255, 255, 0.6);
}
.prices-btn:hover .prices-btn__title {
    color: #fff;
}
.prices-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 140%;
}
.prices-item {
    height: 80px;
    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;
    padding: 4px;
    background: #fff;
}
.prices-item img {
    width: auto;
    height: auto;
    max-height: 100%;
}
.prices-mb {
    margin-bottom: 50px;
}
.prices-prev {
    border-color: #7fa1b8;
    z-index: 3;
}
.slider-buttons__item.prices-next {
    border-color: #fff;
    z-index: 3;
}
.slider-buttons__item.prices-next svg {
    stroke: #fff;
}
.prices-prev svg {
    stroke: #7fa1b8;
}

.prices .swiper-pagination {
    display: none;
}



.price-mobile {
    display: none;
}

.popup-add-news .popup-title {
    margin-bottom: 20px;
}
.popup-add-news .page-form__warning {
    margin-top: 10px !important;
}
.popup-add-news .btn[disabled] svg {
    stroke: #bac0cc;
}

.popup-add-news .btn svg {
    stroke: #fff;
}
.header-logo__mobile {
    display: none;
}

.smi-bottom {
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #2b2b2c;
    margin-top: auto;
    padding-top: 10px;
}
.smi-bottom a {
    text-decoration: none;
    color: #2b2b2c;
}
.smi-bottom a:hover {
    text-decoration: underline;
    color: #2b2b2c;
}

@media (min-width: 993px) {
    .stock-slider {
        margin: -16px;
        padding: 16px;
    }
}

.price-mobile__btn {
    text-decoration: none;
    outline: none;
    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;
    height: 40px;
    width: 141px;
    background: #ffffff;
    border: 1px solid #e8e7f3;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    margin: 0 6px;
}
.price-mobile__btn svg {
    display: block;
    margin-right: 8px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.price-mobile__btn:hover {
    text-decoration: none;
    color: #004471;
}
.price-mobile__btn:hover svg {
    fill: #004471;
}

.stock {
    padding-top: 30px;
    padding-bottom: 120px;
    position: relative;
}
.stock::before {
    content: "";
    left: 0;
    top: 0;
    height: 365px;
    width: calc(50% + 190px);
    background: #f2f2f2;
    z-index: -1;
    position: absolute;
}
.stock-wrapper {
    position: relative;
}
.stock-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}
.stock-tabs__item {
    margin-right: 10px;
    height: 45px;
    background: #ffffff;
    border: 1px solid #e8e7f3;
    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;
    text-align: center;
    padding: 0 29px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.stock-tabs__item:hover {
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    color: #004471;
}
.stock-tabs__item.active {
    background-color: #004471;
    border-color: #004471;
    color: #fff;
}
.stock-tabs__item small {
    display: none;
}
.stock-btn {
    margin-top: 30px;
}
.stock .swiper-pagination {
    display: none;
}
.stock-item {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
    padding: 13px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
}
.stock-item__top {
    left: 14px;
    top: 14px;
    position: absolute;
    background: #ffffff;
    border: 1px solid #db4040;
    padding: 5px 9px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}
.stock-item__img {
    height: 170px;
    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;
}
.stock-item__img img {
    width: auto;
    height: auto;
    max-height: 100%;
}
.stock-item__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin: 10px 0 4px;
}
.stock-item__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.stock-item__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
    margin-bottom: auto;
}
.stock-item__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}
.stock-item__basketIcon {
    width: 60px;
    height: 36px;
    background: #004471;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    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;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.stock-item__basketIcon:hover {
    background: #008dd2;
}
.stock-item__price {
    white-space: nowrap;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.stock-item__price p {
    color: #db4040;
}
.stock-item__price span {
    display: block;
    margin-left: 8px;
    font-size: 14px;
    line-height: 140%;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    color: #787a80;
}
.stock-item__popup {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 7px 13px 13px 13px;
    border: 1px solid #e8e7f3;
    background-color: #fff;
    z-index: 3;
    bottom: -100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.stock-item__popup.active {
    bottom: 0;
}
.stock-item__popupTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.stock-item__popupText {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
}
.stock-item__popupPrice {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
}
.stock-item__popupPrice p {
    color: #db4040;
}
.stock-item__popupPrice span {
    color: #787a80;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    margin-left: 4px;
    display: block;
}
.stock-item__popupFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
}
.stock-item__popupBasket {
    text-decoration: none;
    outline: none;
    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;
    background: #004471;
    width: calc(100% - 118px);
    height: 36px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #ffffff;
}
.stock-item__popupBasket svg {
    display: block;
    margin-right: 10px;
}
.stock-item__popupBasket:hover {
    color: #fff;
    text-decoration: none;
    background: #008dd2;
}
.stock-item__blue {
    border-color: #008dd2;
}
.stock-item:hover {
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
}
.stock-item:hover .stock-item__title {
    color: #004471;
}
.stock-slider {
    /*width: 1812px;*/
    width: calc((100vw - 1200px)/2 + 1200px); /*1812px;*/
    min-width: calc((100vw - 1200px)/2 + 1200px);
}
.stock-slider .swiper-slide {
    height: auto !important;
    width: 280px;
}
.stock-slider .swiper-wrapper {
    align-items: stretch;
}
.stock-content {
    position: relative;
}
.stock-buttons {
    position: absolute;
    top: -60px;
    right: 0;
}

[data-tabs-content] {
    display: none;
    opacity: 0;
}
[data-tabs-content]:first-child {
    display: block;
    opacity: 1;
}

.counter {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    width: 104px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.counter-input {
    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;
    text-align: center;
    width: 34px;
    height: 100%;
    min-width: 34px;
    background: #f2f2f2;
    border: none;
    border-right: 1px solid #e8e7f3;
    border-left: 1px solid #e8e7f3;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
}
.counter-button {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    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;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.counter-button svg {
    display: block;
    stroke: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.counter-button.disabled svg {
    stroke: rgba(43, 43, 44, 0.7);
}
.counter-button:hover svg {
    stroke: #004471;
}

.mainAbout {
    padding-bottom: 66px;
    background: #f2f2f2;
    position: relative;
}
.mainAbout-wrapper {
    position: relative;
    z-index: 3;
}
.mainAbout::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 448px;
    background: #004471;
    width: 100%;
    z-index: 1;
}
.mainAbout-subtitle {
    margin: 16px 0 30px;
    font-weight: 500;
    font-size: 36px;
    line-height: 140%;
}
.mainAbout-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.mainAbout-left {
    width: 700px;
    max-width: 100%;
}
.mainAbout-right {
    width: 295px;
    margin-left: 50px;
    width: 295px;
    max-width: 100%;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.mainAbout-right__text {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}
.mainAbout-right__text span {
    font-weight: 500;
    font-size: 36px;
    line-height: 140%;
    display: block;
    margin-bottom: 8px;
}
.mainAbout-btn {
    background: #ffffff;
    border: 1px solid #004471;
    color: #2b2b2c;
}
.mainAbout-btn svg {
    stroke: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.mainAbout-btn:hover {
    background: #008dd2;
    color: #fff;
    border-color: #008dd2;
}
.mainAbout-btn:hover svg {
    stroke: #fff;
}
.mainAbout-mt {
    margin-top: auto;
}
.mainAbout-video {
    text-decoration: none;
    outline: none;
    display: block;
    width: 100%;
    position: relative;
    height: 320px;
    border: 1px solid #7fa1b8;
}
.mainAbout-video img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.mainAbout-video::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(rgb(43, 43, 44)),
        to(rgb(43, 43, 44))
    );
    background: -o-linear-gradient(bottom, rgb(43, 43, 44), rgb(43, 43, 44));
    background: linear-gradient(0deg, rgb(43, 43, 44), rgb(43, 43, 44));
    z-index: 1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0.5;
}
.mainAbout-video svg {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}
.mainAbout-video:hover {
    text-decoration: none;
}
.mainAbout-video:hover::before {
    opacity: 0.7;
}
.mainAbout-bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 2;
    width: calc(50% + 131px);
    background: #004471;
    overflow: hidden;
}
.mainAbout-bg__city {
    left: 325px;
    position: absolute;
    bottom: 0;
    width: 528px;
}
.mainAbout-bg svg {
    left: 528px;
    top: 56px;
    position: absolute;
    display: block;
}
.mainAbout-buttons {
    position: absolute;
    z-index: 4;
    bottom: 0;
    right: calc(50% + 151px);
}
.mainAbout .swiper-pagination {
    display: none;
}

.mobileMenu,
.mobileCatalog {
    position: fixed;
    display: none;
    top: 70px;
    right: -100%;
    z-index: 12;
    width: 384px;
    background: #ffffff;
    border-width: 1px 0px 1px 1px;
    border-style: solid;
    border-color: #e8e7f3;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    padding: 19px 30px 29px 29px;
    max-height: calc(100vh - 70px);
    overflow-x: auto;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.mobileMenu.open,
.mobileCatalog.open {
    right: 0;
}
.mobileMenu-buttons,
.mobileCatalog-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}
.mobileMenu-buttons__catalog,
.mobileCatalog-buttons__catalog {
    width: calc(100% - 136px) !important;
}
.mobileMenu-buttons__login,
.mobileCatalog-buttons__login {
    width: 124px !important;
    background: #ffffff;
    border: 1px solid #004471;
    color: #2b2b2c;
}
.mobileMenu-buttons__login svg,
.mobileCatalog-buttons__login svg {
    fill: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.mobileMenu-buttons__login:active,
.mobileCatalog-buttons__login:active {
    border-color: #004471;
    background: #fff;
    color: #004471;
}
.mobileMenu-buttons__login:active svg,
.mobileCatalog-buttons__login:active svg {
    fill: #004471;
}
.mobileMenu-bottom,
.mobileCatalog-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -8px;
}
.mobileMenu-bottom .header-contact__item,
.mobileCatalog-bottom .header-contact__item {
    width: 50%;
    margin: 8px 0 0 0;
}
.mobileMenu-bottom .header-contact__item a,
.mobileCatalog-bottom .header-contact__item a {
    color: #2b2b2c;
}
.mobileMenu-bottom .header-contact__item a:active,
.mobileCatalog-bottom .header-contact__item a:active {
    color: #004471;
}
.mobileMenu-nav,
.mobileCatalog-nav {
    padding: 0;
    margin: 0 0 20px;
}
.mobileMenu-nav ul,
.mobileCatalog-nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.mobileMenu-nav ul li,
.mobileCatalog-nav ul li {
    display: block;
    border-bottom: 1px solid #e8e7f3;
    padding: 12px 0;
}
.mobileMenu-nav ul li:first-child,
.mobileCatalog-nav ul li:first-child {
    border-top: 1px solid #e8e7f3;
}
.mobileMenu-nav ul li a,
.mobileCatalog-nav ul li a {
    text-decoration: none;
    outline: none;
    display: block;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.mobileMenu-nav ul li a:active,
.mobileCatalog-nav ul li a:active {
    color: #004471;
}
.mobileMenu-nav ul li.menu-item-has-children a,
.mobileCatalog-nav ul li.menu-item-has-children a {
    position: relative;
    padding-right: 20px;
}
.mobileMenu-nav ul li.menu-item-has-children a::before,
.mobileMenu-nav ul li.menu-item-has-children a::after,
.mobileCatalog-nav ul li.menu-item-has-children a::before,
.mobileCatalog-nav ul li.menu-item-has-children a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url("../img/double-arrow-1.svg");
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.mobileMenu-nav ul li.menu-item-has-children a::after,
.mobileCatalog-nav ul li.menu-item-has-children a::after {
    opacity: 0;
    background-image: url("../img/double-arrow-2.svg");
}
.mobileMenu-nav ul li.menu-item-has-children.open > a,
.mobileCatalog-nav ul li.menu-item-has-children.open > a {
    color: #004471;
}
.mobileMenu-nav ul li.menu-item-has-children.open a::before,
.mobileMenu-nav ul li.menu-item-has-children.open a::after,
.mobileCatalog-nav ul li.menu-item-has-children.open a::before,
.mobileCatalog-nav ul li.menu-item-has-children.open a::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.mobileMenu-nav ul li.menu-item-has-children.open a::before,
.mobileCatalog-nav ul li.menu-item-has-children.open a::before {
    opacity: 0;
}
.mobileMenu-nav ul li.menu-item-has-children.open a::after,
.mobileCatalog-nav ul li.menu-item-has-children.open a::after {
    opacity: 1;
}
.mobileMenu-nav ul li.menu-item-has-children.open ul,
.mobileCatalog-nav ul li.menu-item-has-children.open ul {
    display: block;
}
.mobileMenu-mobile,
.mobileCatalog-mobile {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 12px;
    margin-bottom: 32px;
}
.mobileMenu-mobile .price-mobile__btn,
.mobileCatalog-mobile .price-mobile__btn {
    width: calc(50% - 7px);
    margin: 0;
}

.mobileMenu-nav ul li ul {
    display: none;
    padding: 0 0 0 30px;
    margin: 0;
}
.mobileMenu-nav ul li ul li {
    border: none;
    padding: 0;
    margin: 10px 0 0 0;
}
.mobileMenu-nav ul li ul li a::after,
.mobileMenu-nav ul li ul li a::before {
    display: none;
}

.mobileCatalog-nav ul li ul a::before,
.mobileCatalog-nav ul li ul a::after {
    display: none;
}
.mobileCatalog .menu-item-has-children > a::before,
.mobileCatalog .menu-item-has-children > a::after {
    display: block;
}

.mobileCatalog {
    z-index: 13;
    padding: 0;
    overflow: hidden auto;
}
.mobileCatalog-container {
    position: relative;
    width: 300%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    left: 0;
    padding: 30px;
}
.mobileCatalog-nav {
    margin: 0 !important;
    left: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.mobileCatalog-nav > ul {
    width: 323px;
}
.mobileCatalog-nav .level-2,
.mobileCatalog-nav .level-3,
.mobileCatalog-nav .level-4 {
    position: absolute;
    top: 0;
    width: 33.3333333333%;
    left: 33.3333333333%;
    padding: 76px 30px 30px;
    display: none;
    height: 100%;
    background-color: #fff;
}
.mobileCatalog-nav .level-2 .start-title,
.mobileCatalog-nav .level-2 .start-center,
.mobileCatalog-nav .level-2 .start-end,
.mobileCatalog-nav .level-3 .start-title,
.mobileCatalog-nav .level-3 .start-center,
.mobileCatalog-nav .level-3 .start-end,
.mobileCatalog-nav .level-4 .start-title,
.mobileCatalog-nav .level-4 .start-center,
.mobileCatalog-nav .level-4 .start-end {
    margin-bottom: 24px;
    position: relative;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    position: absolute;
    left: 30px;
    top: 30px;
    padding-left: 26px;
}
.mobileCatalog-nav .level-2 .start-title,
.mobileCatalog-nav .level-2 .start-end,
.mobileCatalog-nav .level-3 .start-title,
.mobileCatalog-nav .level-3 .start-end,
.mobileCatalog-nav .level-4 .start-title,
.mobileCatalog-nav .level-4 .start-center,
.mobileCatalog-nav .level-4 .start-end {
    z-index: 3;
}
.mobileCatalog-nav .level-2 .start-title::before,
.mobileCatalog-nav .level-2 .start-center::before,
.mobileCatalog-nav .level-2 .start-end::before,
.mobileCatalog-nav .level-3 .start-title::before,
.mobileCatalog-nav .level-3 .start-center::before,
.mobileCatalog-nav .level-3 .start-end::before,
.mobileCatalog-nav .level-4 .start-title::before,
.mobileCatalog-nav .level-4 .start-center::before,
.mobileCatalog-nav .level-4 .start-end::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url("../img/double-arrow-1.svg");
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.mobileCatalog-nav .level-3 {
    left: 100%;
    width: 100%;
}
.mobileCatalog-nav .level-3 ul {
    position: static !important;
}
.mobileCatalog-nav .level-4 {
    position: static;
    display: none;
    padding: 0 0 0 30px;
    margin: 0;
}
.mobileCatalog-nav .level-4 li {
    border: none !important;
    padding: 0;
    margin: 10px 0 0 0;
}
.mobileCatalog-nav .level-4 li a::after,
.mobileCatalog-nav .level-4 li a::before {
    display: none;
}
.mobileCatalog-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    margin-bottom: 24px;
}
.mobileCatalog-top__text {
    margin-left: 6px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
}
.mobileCatalog-top img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.level-3 ul {
    position: static;
    display: none;
    padding: 0 0 0 30px;
    margin: 0;
}
.level-3 ul li {
    border: none !important;
    padding: 0;
    margin: 10px 0 0 0;
}
.level-3 ul li a::after,
.level-3 ul li a::before {
    display: none;
}

.mobileMenu.opacity-hide {
    opacity: 0 !important;
}

li.open:not(.catalogMenu li.open) > ul {
    display: block !important;
}

.mobileSearch {
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow-x: auto;
    background: #ffffff;
}
.mobileSearch-top {
    background: #f2f2f2;
    padding: 20px 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.mobileSearch .header-search {
    width: calc(100% - 56px);
}
.mobileSearch-close {
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #e8e7f3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.mobileSearch-close svg {
    display: block;
    fill: #bac0cc;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.mobileSearch-close:active svg {
    fill: #db4040;
}
.mobileSearch .header-search__input {
    height: 40px;
    background: #ffffff;
    border: 1px solid #e8e7f3;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}
.mobileSearch .header-search__input:focus {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
}

.mobileSearch {
    display: none;
}
.mobileSearch-wrapper {
    padding: 0 18px 18px;
}
.mobileSearch-item {
    margin-top: 40px;
}
.mobileSearch-item__top {
    margin-bottom: -3px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
    position: relative;
}
.mobileSearch-item__link {
    display: block;
    text-decoration: none;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    padding: 12px 0;
    border-bottom: 1px solid #e8e7f3;
}
.mobileSearch-item__link:active,
.mobileSearch-item__link:hover {
    text-decoration: none;
    color: #004471;
}
.mobileSearch-item__close {
    text-decoration: none;
    outline: none;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: calc(50% - 10px);
    right: 0;
}
.mobileSearch-item__close svg {
    display: block;
    fill: #bac0cc;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.mobileSearch-item__close:active svg {
    fill: #db4040;
}

.breadcrumbs {
    border-top: 1px solid #e8e7f3;
    padding: 13px 0 20px;
}
.breadcrumbs-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.breadcrumbs-list li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(120, 122, 128, 0.7);
}
.breadcrumbs-list li a {
    color: #787a80;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.breadcrumbs-list li a:hover {
    color: #004471;
    text-decoration: none;
}
.breadcrumbs-list li::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("../img/arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    min-width: 20px;
    margin: 0 2px;
}
.breadcrumbs-list li:last-child::after {
    display: none;
}

.padding-bottom {
    padding-bottom: 120px;
}

.page-top {
    border-bottom: 1px solid #e8e7f3;
    padding-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.page-top.no-border {
    border: none;
}

.page-title {
    font-weight: 500;
    font-size: 36px;
    line-height: 50px;
    color: #2b2b2c;
}

.page-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2px;
}
.page-buttons__item {
    text-decoration: none;
    outline: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 9px 15px;
    background: #ffffff;
    border: 1px solid #e8e7f3;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    font-weight: 400;
    margin-left: 10px;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}
.page-buttons__item svg {
    display: block;
    fill: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-right: 8px;
}
.page-buttons__item:hover {
    text-decoration: none;
    color: #004471;
    -webkit-box-shadow: 0px 1px 15px rgba(21, 7, 48, 0.05), 0px 8px 12px rgba(21, 7, 48, 0.05);
    box-shadow: 0px 1px 15px rgba(21, 7, 48, 0.05), 0px 8px 12px rgba(21, 7, 48, 0.05);
}
.page-buttons__item:hover svg {
    fill: #004471;
}

.category-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 17px;
    margin-right: -10px;
}
.category-links__item {
    text-decoration: none;
    outline: none;
    padding: 5px 9px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #db4040;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-right: 10px;
    margin-bottom: 10px;
}
.category-links__item:hover {
    text-decoration: none;
    color: #fff;
    background: #db4040;
}
.category-links__item.blue {
    border-color: #008dd2;
}
.category-links__item.blue:hover {
    background: #008dd2;
}
.category-wrapper {
    padding-top: 60px;
}

.category-links__mobile {
    display: none;
}

.mainCatalog-item__imgWrapper {
    height: 140px;
    width: 100%;
    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;
    text-align: center;
}

.mainCatalog-item__img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
}

.category-tabs {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 16px;
}
.category-tabs__item {
    cursor: pointer;
    margin-left: 16px;
}
.category-tabs__item svg {
    display: block;
    fill: #bac0cc;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.category-tabs__item.active svg {
    fill: #004471;
}

.category-nav {
    padding: 0;
    margin: 0;
    width: 100%;
}
.category-nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.category-nav ul li {
    display: block;
    margin-top: 6px;
    width: 100%;
    /*padding-right: 37px;*/
    position: relative;
}
.category-nav ul li:first-child {
    margin-top: 0;
}
.page-buttons__item span {
    white-space: nowrap;
}
.category-nav ul li a {
    text-decoration: none;
    outline: none;
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    background: #ffffff;
    border: 1px solid #e8e7f3;
    padding: 7px 13px;
    position: relative;
    padding-right: 0;
}
.category-nav > ul > li {
    border: 1px solid #e8e7f3;
}
.category-nav > ul > li > a {
    border: none;
    border-bottom: 1px solid #e8e7f3;
}
.category-nav ul li a span {
    display: none;
}
.category-nav ul li {
    position: relative;
}
.category-nav ul li::before,
.category-nav ul li::after {
    content: "";
    position: absolute;
    right: 14px;
    width: 20px;
    height: 20px;
    top: 8px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../img/double-arrow-3.svg");
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    pointer-events: none;
    transform: rotate(90deg);
    display: none;
}
.category-nav ul li::after {
    background-image: url("../img/double-arrow-2.svg");
    opacity: 0;
    display: none;
}
.category-nav ul li a:hover {
    text-decoration: none;
    color: #004471;
}
/*.category-nav ul li a:hover::before {
    opacity: 0;
}
.category-nav ul li a:hover::after {
    opacity: 1;
}*/
.category-nav ul li.menu-item-has-children {
    cursor: pointer;
}
.category-nav ul li.menu-item-has-children > a {
    width: calc(100% - 37px);
}
.category-nav ul li.menu-item-has-children::before,
.category-nav ul li.menu-item-has-children::after {
    display: block;
}
.category-nav ul li ul {
    display: none;
}
.category-nav ul li.active ul {
    padding: 11px 0;
    border: 1px solid #e8e7f3;
}
.category-nav ul li.active ul li ul {
    padding: 0;
    border: none;
    display: none;
}
.category-nav ul li.active ul li a,
.category-nav ul li.open ul li a {
    padding-top: 3px;
    padding-bottom: 3px;
    border: none;
}
.category-nav ul li.active.menu-item-has-children.active > a,
.category-nav ul li.active .menu-item-has-children.active > a {
    border-color: #004471;
    color: #004471;
}

/*.category-nav ul li.active.menu-item-has-children.active > a::before,
.category-nav ul li.active.menu-item-has-children.active > a::after,
.category-nav ul li.active .menu-item-has-children.active > a::before,
.category-nav ul li.active .menu-item-has-children.active > a::after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}*/
.category-nav ul li.menu-item-has-children.open::before,
.category-nav ul li.menu-item-has-children.open::after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.category-nav ul li.active.menu-item-has-children.active::after,
.category-nav ul li.active .menu-item-has-children.active::after {
    opacity: 1;
}
.category-nav ul li.active.menu-item-has-children.active::before,
.category-nav ul li.active .menu-item-has-children.active::before {
    opacity: 0;
}
.category-nav ul li.open > ul {
    display: block !important;
}
.category-nav ul li.active ul li a,
.category-nav ul li.open ul li {
    border: none;
}
.category-nav ul li.open ul li ul {
    padding: 2px 0 0 25px;
}
.category-nav ul li.open ul li ul li {
    margin: 4px 0 0 0;
}
.category-nav ul li.open ul li ul li a {
    display: block;
    text-decoration: none;
    outline: none;
    padding: 0;
    border: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}
.category-nav ul li.open ul li ul li a:hover,
.category-nav ul li.open ul li ul li.active a {
    color: #004471;
    text-decoration: none;
}

.category-order {
    display: block;
    opacity: 1;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.pt-40 {
    padding-top: 40px;
}

.hide {
    display: none;
}

.basket-box__title {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
}
.basket-box__text {
    margin: 10px 0 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
}
.basket-box__btn {
    margin: 0 auto;
}
.basket-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.basket-block {
    width: 170px;
    margin: 0 auto;
}
.basket-block:nth-child(1) {
    width: 51px;
    margin: 0;
}
.basket-block:nth-child(2) {
    width: 150px;
}
.basket-block:nth-child(3) {
    width: 279px;
    margin: 0;
    margin: 0 0 0 20px;
}
.basket-gray {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
}
.basket-top {
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e7f3;
}
.basket-item {
    border-bottom: 1px solid #e8e7f3;
    padding: 15px 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
    position: relative;
}
.basket-image {
    text-decoration: none;
    outline: none;
    display: block;
}
.basket-link {
    text-decoration: none;
    outline: none;
    color: #2b2b2c;
    display: block;
}
.basket-link:hover {
    text-decoration: underline;
    color: #2b2b2c;
}
.basket-delete {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
}
.basket-delete svg {
    display: block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    fill: #787a80;
}
.basket-delete:hover {
    text-decoration: none;
}
.basket-delete:hover svg {
    fill: #db4040;
}
.basket .counter {
    margin: 0 auto;
}
.basket-mobile {
    margin-bottom: 2px;
    display: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
}
.basket-small {
    font-size: 16px;
}

.fancybox__slide {
    padding: 18px;
}

.fancybox__backdrop {
    background: rgba(43, 43, 44, 0.5);
}

.carousel__button.is-close {
    width: 20px !important;
    height: 20px !important;
    right: 18px !important;
    top: 18px !important;
    background-image: url("../img/close.svg");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 2;
}
.carousel__button.is-close::before,
.carousel__button.is-close::after,
.carousel__button.is-close svg {
    display: none;
}

.popup {
    margin: 0 auto;
    max-width: 100%;
    width: 780px;
    background: #ffffff;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08),
        0px 1.56354px 6.47753px rgba(3, 4, 30, 0.0476886),
        0px 0.465507px 1.92853px rgba(3, 4, 30, 0.0323114);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.56354px 6.47753px rgba(3, 4, 30, 0.0476886),
        0px 0.465507px 1.92853px rgba(3, 4, 30, 0.0323114);
    position: relative;
    padding: 50px 60px;
}
.popup-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
}
.popup-subtitle {
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
}

.basket-popup__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.basket-popup__btn {
    width: 200px;
    margin-right: 20px;
}
.basket-popup__delete {
    width: 200px;
}

.basket-bottom {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.basket-bottom__left {
    width: 262px;
}
.basket-bottom__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
    margin-bottom: 20px;
}

.manufacturers-subtitle {
    margin-bottom: 40px;
    width: 770px;
    max-width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}
.manufacturers-block {
    margin-top: 20px;
}
.manufacturers-gray {
    background: #f2f2f2;
    padding: 30px 0 50px;
}
.manufacturers-item {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    min-height: 100%;
    text-align: center;
    position: relative;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
    padding: 16px 16px 28.5px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.manufacturers-item__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.manufacturers-item__img {
    margin-bottom: 20.5px;
    height: 100px;
    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;
}
.manufacturers-item__img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.manufacturers-item:hover {
    color: #004471;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
}

.basket-complete,
.basket-empty {
    display: none;
}

.svg-20 {
    width: 20px;
    height: 20px;
}

.svg-24 {
    width: 24px;
    height: 24px;
}

.svg-24-25 {
    width: 24px;
    height: 25px;
}

.svg-12 {
    width: 12px;
    height: 12px;
}

.svg-32 {
    width: 32px;
    height: 32px;
}

.svg-172 {
    width: 172px;
    height: 172px;
}

.mobileMenu-buttons__svg {
    width: 21px;
    height: 20px;
}

.mainAbout-video__svg {
    width: 62px;
    height: 60px;
}

.mainAbout-bg__svg {
    width: 278px;
    height: 278px;
}

.pageError {
    padding-top: 30px;
}
.pageError-wrapper {
    background: #1a1a1b;
    position: relative;
    padding: 60px 300px 86px;
    text-align: center;
    color: #ffffff;
}
.pageError-title {
    font-weight: 500;
    font-size: 100px;
    line-height: 140%;
}
.pageError-subtitle {
    margin: 20px 0;
    font-size: 24px;
    line-height: 140%;
    font-weight: 400;
}
.pageError-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}
.pageError-svg {
    position: absolute;
    right: 40px;
    top: 33px;
    pointer-events: none;
}
.pageError-svg svg {
    width: 34px;
    height: 34px;
    display: block;
}
.pageError-rec {
    left: 43px;
    top: 37px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    text-align: left;
    position: absolute;
    pointer-events: none;
}
.pageError-rec b {
    margin-right: 10px;
    width: 14px;
    min-width: 14px;
    height: 14px;
    background: #e71717;
    border-radius: 100%;
}
.pageError-top {
    top: 24px;
    left: 24px;
    width: calc(100% - 48px);
    pointer-events: none;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.pageError-top span {
    display: block;
    width: 120px;
    height: 120px;
}
.pageError-top span:first-child {
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
}
.pageError-top span:last-child {
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
}
.pageError-bottom {
    bottom: 24px;
    left: 24px;
    width: calc(100% - 48px);
    pointer-events: none;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.pageError-bottom span {
    display: block;
    width: 120px;
    height: 120px;
}
.pageError-bottom span:first-child {
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.pageError-bottom span:last-child {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.pageError-bottomText {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
    margin: 80px 0 10px;
}

.pageLink-item {
    text-decoration: none;
    outline: none;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    display: block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    background: #f2f2f2;
    border: 1px solid #e8e7f3;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    margin-top: 20px;
}
.pageLink-item span {
    display: block;
}
.pageLink-item img {
    margin: 0 auto 10px;
}
.pageLink-item:hover {
    background: #ffffff;
    text-decoration: none;
    border: 1px solid #e8e7f3;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    color: #004471;
}

.faq-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 30px 0;
}
.faq-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0 30px;
    margin-left: 10px;
    width: auto;
}
.faq-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.faq-left {
    padding-top: 9px;
}
.faq-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.faq-result__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #787a80;
}
.faq-result__link {
    text-decoration: none;
    outline: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0 14px;
    background: #f2f2f2;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    height: 36px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    margin-left: 10px;
}
.faq-result__link svg {
    display: block;
    margin-left: 2px;
}
.faq-result__link svg path {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.faq-result__link:hover {
    background: #fafafa;
    text-decoration: none;
    color: #004471;
}
.faq-result__link:hover svg path {
    fill: #004471;
}
.faq-error {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #db4040;
}
.faq-wrapper {
    padding: 10px 0 30px;
    background: #f2f2f2;
}
.faq-item {
    border-top: 1px solid #e8e7f3;
    border-bottom: 1px solid #e8e7f3;
    display: none;
}
.faq-item:nth-child(1),
.faq-item:nth-child(2),
.faq-item:nth-child(3) {
    display: block;
}
.faq-item__title {
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #2b2b2c;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}
.faq-item__title svg {
    display: block;
    margin-left: 10px;
    fill: #004471;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    min-width: 24px;
}
.faq-item__title span {
    display: block;
    margin-top: 1px;
}
.faq-item__title:hover {
    color: #004471;
}
.faq-item__title:hover svg {
    fill: #008dd2;
}
.faq-item__text {
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    display: none;
}
.faq-item.active .faq-item__text {
    display: block;
}
.faq-item.active .faq-item__title {
    color: #004471;
}
.faq-item.active .faq-item__title svg {
    fill: #008dd2;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.faq-box {
    margin-top: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e8e7f3;
}
.faq-box__title {
    margin-bottom: 14px;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #2b2b2c;
}
.faq-box__toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    margin-top: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.faq-box__toggle b {
    display: none;
    font-weight: 400;
}
.faq-box__toggle svg {
    display: block;
    margin-left: 2px;
    stroke: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.faq-box__toggle:hover {
    color: #004471;
}
.faq-box__toggle:hover svg {
    stroke: #004471;
}
.faq-box.open .faq-item {
    display: block !important;
}
.faq-box.open .faq-box__toggle b {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.faq-box.open .faq-box__toggle span {
    display: none;
}
.faq-box.open .faq-box__toggle svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}


.interesting {
    padding: 100px 0 0;
}
.interesting-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 140%;
    color: #2b2b2c;
    margin-bottom: 10px;
}
.interesting .pageLink-item {
    margin-top: 0;
    height: 100%;
}
.interesting-item {
    margin-bottom: 20px;
}

.article {
    padding-bottom: 100px;
}
.article-wrapper {
    width: 980px;
    max-width: 100%;
}
.article-top {
    padding-top: 40px;
}
.article-date {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}
.article-title {
    margin: 6px 0 12px;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #2b2b2c;
}
.article-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px;
}
.article-dot {
    margin-right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
}
.article-dot svg {
    display: block;
    margin-right: 4px;
}
.article-img {
    border: 1px solid #e8e7f3;
}
.article-imgText {
    margin: 6px 0 20px;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #787a80;
}
.article-liked {
    margin-bottom: 50px;
}
.article-liked__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    margin-bottom: 10px;
}
.article-liked__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.article-liked__link {
    margin-right: 16px;
    width: 30px;
    height: 30px;
    background: #004471;
    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;
    text-align: center;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    text-decoration: none;
    outline: none;
}
.article-liked__link:hover {
    background: #008dd2;
}
.article-liked__like svg {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    fill: transparent;
}
.article-liked__like.active svg {
    fill: #fff;
}
.article-comments__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #2b2b2c;
    margin-bottom: 4px;
}
.article-comments__title span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 6px;
    color: #787a80;
}
.article-comments__item {
    margin-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e7f3;
    display: none;
}
.article-comments__item:nth-child(1),
.article-comments__item:nth-child(2),
.article-comments__item:nth-child(3) {
    display: block;
}
.article-comments__items.active > .article-comments__item {
    display: block !important;
}
.article-comments__itemTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.article-comments__itemName {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
}
.article-comments__itemDate {
    margin-left: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
}
.article-comments__itemText {
    margin: 6px 0 14px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}
.article-comments__itemLinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.article-comments__itemLink {
    text-decoration: none;
    outline: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-right: 18px;
}
.article-comments__itemLink svg {
    display: block;
    margin-right: 6px;
    fill: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.article-comments__itemLink:hover,
.article-comments__itemLink.active {
    color: #004471;
    text-decoration: none;
}
.article-comments__itemLink:hover svg,
.article-comments__itemLink.active svg {
    fill: #004471;
}
.article-comments__itemOpen {
    margin-left: 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.article-comments__itemOpen svg {
    display: block;
    margin-left: 4px;
    stroke: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.article-comments__itemOpen b {
    font-weight: normal;
    display: none;
}
.article-comments__itemOpen:hover {
    color: #004471;
}
.article-comments__itemOpen:hover svg {
    stroke: #004471;
}
.article-comments__openComments {
    margin-top: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.article-comments__openComments b {
    display: none;
    font-weight: 400;
}
.article-comments__openComments svg {
    display: block;
    margin-left: 2px;
    stroke: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.article-comments__openComments:hover {
    color: #004471;
}
.article-comments__openComments:hover svg {
    stroke: #004471;
}
.article-comments__openComments.active b {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.article-comments__openComments.active span {
    display: none;
}
.article-comments__openComments.active svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.article-form {
    margin-top: 60px;
}
.article-form__top {
    height: 99px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.article-form__top::before {
    content: "";
    position: absolute;
    left: -500%;
    width: 1500%;
    top: 0;
    height: 100%;
    background: #f2f2f2;
    z-index: -1;
}
.article-form__title {
    font-weight: 500;
    font-size: 28px;
    line-height: 140%;
    color: #2b2b2c;
}
.article-form__subtitle {
    padding-left: 27px;
    margin-left: 27px;
    height: 59px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-left: 1px solid #bac0cc;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #bac0cc;
}

.article-comments__item .article-comments__item {
    margin: 10px 0 0 0;
    border: none;
    padding: 0 0 0 60px;
    display: none;
    position: relative;
}
.article-comments__item .article-comments__item::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 50px;
    height: 15px;
    border-left: 1px solid #bac0cc;
    border-bottom: 1px solid #bac0cc;
}
.article-comments__item.active .article-comments__itemOpen b {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.article-comments__item.active .article-comments__itemOpen span {
    display: none;
}
.article-comments__item.active .article-comments__itemOpen svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.article-comments__item.active .article-comments__item {
    display: block;
}

.content {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
}
.content p {
    margin-bottom: 20px;
}
.content a {
    color: #004471;
    text-decoration: none;
}
.content a:hover {
    text-decoration: underline;
}
.content h2 {
    font-size: 24px;
}
.content h3,
.content h4 {
    font-size: 20px;
}
.content h5,
.content h6 {
    font-size: 18px;
}
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    margin-bottom: 20px;
    line-height: 140%;
    font-weight: bold;
}
.content ul {
    list-style-type: none;
    margin: 0 0 20px;
}
.content ul li {
    display: block;
    margin-top: 10px;
    position: relative;
    padding-left: 16px;
    line-height: 22px;
}
.content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: #2b2b2c;
}
.content ul li:first-child {
    margin-top: 0;
}

.article-form__wrapper {
    width: 580px;
    max-width: 100%;
    margin-top: 30px;
}

.page-form__placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    margin-bottom: 6px;
}
.page-form__placeholder span {
    color: #db4040;
}
.page-form__warning {
    margin-top: 10px;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #2b2b2c;
}
.page-form__warning span {
    color: #db4040;
}
.page-form__btn {
    margin-top: 30px;
}
.page-form__btn svg {
    display: block;
    width: 21px;
    height: 20px;
    margin-left: 14px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    stroke: #bac0cc;
}
.page-form__btn[disabled] {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    color: #bac0cc;
    cursor: default;
}
.page-form__btn[disabled] svg {
    -webkit-filter: none;
    filter: none;
}
.page-form__textarea {
    background: #ffffff;
    border: 1px solid #bac0cc;
    display: block;
    width: 100%;
    height: 114px;
    padding: 9px 13px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    resize: none;
}
.page-form__input {
    background: #ffffff;
    border: 1px solid #bac0cc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 40px;
    padding-left: 13px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}

.newsArchive {
    margin-top: -20px;
}
.newsArchive-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 140%;
    color: #2b2b2c;
}
.newsArchive-subtitle {
    margin-top: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #2b2b2c;
    margin-bottom: 30px;
}
.newsArchive-item {
    position: relative;
    background: #f2f2f2;
    border: 1px solid #f2f2f2;
    padding: 14px 0 16px;
    text-align: center;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.newsArchive-item__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
}
.newsArchive-item__subtitle {
    margin-top: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #787a80;
}
.newsArchive-item__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.newsArchive-item:hover {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    -webkit-box-shadow: 0px 7px 9px rgba(3, 4, 30, 0.05), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 9px rgba(3, 4, 30, 0.05), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    color: #004471;
}
.newsArchive-wrapper {
    position: relative;
}
.newsArchive-buttons {
    top: -52px;
    right: 0;
    position: absolute;
}
.newsArchive-slider {
    padding: 10px;
    margin: -10px;
}
.newsArchive-pagination {
    display: none;
}

.news .stock-tabs__item,
.support .stock-tabs__item {
    text-decoration: none;
}
.news .stock-tabs__item:hover,
.support .stock-tabs__item:hover {
    text-decoration: none;
}
.news .stock-tabs,
.support .stock-tabs {
    margin: 0;
}

.news {
    padding-bottom: 100px;
}
.news-left {
    width: 700px;
    max-width: 100%;
}
.news-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 40px 0 10px;
}
.news-bottomBtn {
    margin: 40px auto 0;
}
.news-bottomBtn svg {
    stroke: #fff;
}
.news-list {
    padding-top: 20px;
}
.news-article {
    margin-top: 20px;
    padding: 19px;
    background: #ffffff;
    border: 1px solid #e8e7f3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
}
.news-article:first-child {
    margin-top: 0;
}
.news-article__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.news-article__img {
    width: 279px;
    height: 150px;
    margin-right: 20px;
    min-width: 279px;
}
.news-article__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    object-position: center center;
}
.news-article__text {
    margin-bottom: auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-article__text.double {
    -webkit-line-clamp: 2;
}
.news-article__title {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin: 10px 0 8px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-article__title.double {
    -webkit-line-clamp: 2;
}
.news-article__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.news-article:hover {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
}
.news-article:hover .news-article__title {
    color: #004471;
}

.pagination {
    margin: 30px auto 0;
    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;
}
.pagination-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: rgba(120, 122, 128, 0.7);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    outline: none;
    margin: 0 5px;
}
.pagination-link:hover,
.pagination-link.active {
    color: #004471;
    text-decoration: none;
}
.pagination-link.pagination-link__prev,
.pagination-link.pagination-link__next {
    border: 1px solid #bac0cc;
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 32px;
    position: relative;
}
.pagination-link.pagination-link__prev::before,
.pagination-link.pagination-link__next::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/prev.svg");
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    background-repeat: no-repeat;
    background-position: center;
}
.pagination-link.pagination-link__prev::after,
.pagination-link.pagination-link__next::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/prev-hover.svg");
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
}
.pagination-link.pagination-link__prev:hover,
.pagination-link.pagination-link__next:hover {
    border-color: #004471;
}
.pagination-link.pagination-link__prev:hover::before,
.pagination-link.pagination-link__next:hover::before {
    opacity: 0;
}
.pagination-link.pagination-link__prev:hover::after,
.pagination-link.pagination-link__next:hover::after {
    opacity: 1;
}
.pagination-link.pagination-link__prev {
    margin-right: 42.5px;
    margin-left: 0;
}
.pagination-link.pagination-link__next {
    margin-left: 42.5px;
    margin-right: 0;
}
.pagination-link.pagination-link__next::before,
.pagination-link.pagination-link__next::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.scroll-right {
    cursor: pointer;
    width: 31px;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.scroll-right.is-visible {
    opacity: 1;
}
.scroll-right svg {
    display: block;
    width: 31px;
    height: 8px;
}

.scroll-list {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 18px;
    margin-bottom: 10px;
}

.scroll-left {
    cursor: pointer;
    width: 31px;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.scroll-left svg {
    display: block;
    width: 31px;
    height: 8px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.support {
    padding-bottom: 100px;
}
.support .news-left {
    width: 100% !important;
}
.support-wrapper {
    padding-top: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e7f3;
}
.support-bold {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #2b2b2c;
    margin-bottom: 14px;
}
.support-gray {
    padding: 0 14px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 38px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f2f2f2;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    margin-bottom: 12px;
}
.support-item {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    position: relative;
    padding: 19px 15px 25px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
}
.support-item__download {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.support-item__type {
    padding: 0 9px;
    height: 29px;
    background: #ffffff;
    border: 1px solid #008dd2;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #2b2b2c;
}
.support-item__icon {
    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;
    width: 46px;
    height: 46px;
    background: #004471;
    margin: 0 auto;
}
.support-item__name {
    margin: 22px 0 10px;
    text-align: center;
    font-size: 14px;
    line-height: 140%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    color: #2b2b2c;
}
.support-item__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: auto;
}
.support-item__link {
    text-decoration: none;
    outline: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.support-item__link svg {
    display: block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    fill: #787a80;
    margin-right: 6px;
}
.support-item__link:hover {
    text-decoration: none;
    color: #004471;
}
.support-item__link:hover svg {
    fill: #004471;
}
.support-item__center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.support-item:hover {
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
}
.support-item:hover .support-item__hover {
    color: #004471;
}
.support-box {
    top: -55px;
    position: relative;
    margin-bottom: -55px;
}
.support-apps__title {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
}
.support-apps__link {
    text-decoration: none;
    outline: none;
    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;
    margin-top: 15px;
    height: 53px;
    background: #004471;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.support-apps__link:hover {
    background: #008dd2;
}
.support .support-apps__title {
    font-size: 16px;
    margin-bottom: 36px;
}

.supportForm {
    margin-bottom: 120px;
    position: relative;
    padding-bottom: 64px;
}
.supportForm::before {
    content: "";
    position: absolute;
    right: 0;
    width: calc(50% + 120px);
    top: 0;
    height: 100%;
    background: #f2f2f2;
    z-index: -2;
}
.supportForm-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 140%;
    color: #2b2b2c;
    margin-bottom: 24px;
}
.supportForm-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.supportForm-left {
    width: 540px;
    min-width: 540px;
    margin-right: 50px;
    padding: 40px;
    padding-left: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
    position: relative;
}
.supportForm-left::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    width: 500%;
    height: 100%;
    background: #004471;
}
.supportForm-right {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.supportForm-right__block {
    width: calc(50% - 10px);
}
.supportForm-right .page-form__placeholder {
    margin-bottom: 4px;
}
.supportForm-btn {
    margin-top: 22px;
    outline: none;
}
.supportForm-btn svg {
    stroke: #fff;
}
.supportForm-btn[disabled] {
    color: #bac0cc;
    background: #ffffff;
    border: 1px solid #e8e7f3;
    cursor: default;
}
.supportForm-btn[disabled] svg {
    stroke: #bac0cc;
}
.supportForm-mb {
    margin-bottom: 10px;
}

.js-phone {
    padding-left: 47px;
}

.phone-input__flag {
    cursor: pointer;
    left: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    position: absolute;
}

.phone-input__wrapper {
    position: relative;
    z-index: 4;
}
.phone-input__wrapper .page-form__input {
    position: relative;
    z-index: 2;
}

.phone-input__arrow {
    cursor: pointer;
    right: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    position: absolute;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.phone-input__arrow svg {
    display: block;
    stroke: #2b2b2c;
}

.phone-input__absolute {
    top: calc(100% - 2px);
    position: absolute;
    background: #ffffff;
    width: 100%;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    border: 1px solid #e8e7f3;
    height: 165px;
    overflow: hidden !important;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08),
        0px 1.56354px 6.47753px rgba(3, 4, 30, 0.0476886),
        0px 0.465507px 1.92853px rgba(3, 4, 30, 0.0323114);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.56354px 6.47753px rgba(3, 4, 30, 0.0476886),
        0px 0.465507px 1.92853px rgba(3, 4, 30, 0.0323114);
}
.phone-input__absolute .scroll-bar-wrap {
    margin-right: 9px;
}

.phone-input__wrapper.open .phone-input__absolute {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding: 6px 0;
}
.phone-input__wrapper.open .phone-input__arrow {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.phone-input__absoluteItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    padding: 0 13px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
}
.phone-input__absoluteItem img,
.phone-input__absoluteItem span,
.phone-input__absoluteItem p {
    position: relative;
    z-index: 2;
}
.phone-input__absoluteItem::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% + 8px);
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    background: #f2f2f2;
}
.phone-input__absoluteItem:hover::before,
.phone-input__absoluteItem.active::before {
    opacity: 1;
}
.phone-input__absoluteItem span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 10px;
}
.phone-input__absoluteItem p {
    color: #787a80;
}

.manufacturer-top {
    width: 780px;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
}
.manufacturer-logo {
    width: 180px;
    min-width: 180px;
    margin-right: 20px;
}
.manufacturer-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #2b2b2c;
}
.manufacturer-gray {
    background: #f2f2f2;
    padding: 40px 0;
    margin-top: 30px;
}
.manufacturer-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.manufacturer-item {
    width: calc(50% - 15px);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
}

.manufacturerAbout {
    padding-bottom: 100px;
}
.manufacturerAbout-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px;
}
.manufacturerAbout-left {
    border-top: 1px solid #e8e7f3;
    width: 700px;
    max-width: 100%;
}
.manufacturerAbout-item {
    padding: 9px 0;
    border-bottom: 1px solid #e8e7f3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.manufacturerAbout-item__number {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #bac0cc;
    min-width: 47px;
}
.manufacturerAbout-item__text {
    padding-top: 4.5px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
}
.manufacturerAbout-right {
    width: 400px;
    max-width: 100%;
}
.manufacturerAbout-img {
    width: 100%;
    display: block;
    border: 1px solid #e8e7f3;
}

.manufacturerCatalog-links {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
/*    overflow: hidden;*/
/*    overflow-x: scroll;*/
/*    padding-bottom: 20px;*/
    min-width: calc(100% + (100vw - 1200px) / 2);
}
@media (max-width: 1220px) {
    .manufacturerCatalog-links {
        width: auto;
        min-width: 0;
        margin-bottom: 20px;
    }
}
.manufacturerCatalog-wrapper .scroll-list {
    display: flex;
}
.manufacturerCatalog-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 36px;
/*    margin-right: 10px;*/
/*    margin-top: 20px;*/
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    white-space: nowrap;
    background: #f2f2f2;
    border: 1px solid #f2f2f2;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    padding: 0 13px;
    text-decoration: none;
    outline: none;
}
.manufacturerCatalog-link span {
    color: #004471;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 2px;
}
.manufacturerCatalog-link:hover {
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e8e7f3;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
}

.manufacturerSlider-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.manufacturerSlider-left {
    width: 700px;
}
.manufacturerSlider-video {
    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;
    text-align: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
    text-decoration: none;
    outline: none;
    overflow: hidden;
    border: 1px solid #7fa1b8;
    position: relative;
}
.manufacturerSlider-video span {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #f6f6f6;
    border-radius: 78px;
    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;
    text-align: center;
    position: relative;
    z-index: 3;
}
.manufacturerSlider-video__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.manufacturerSlider-video__bg {
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(rgba(43, 43, 44, 0.5)),
        to(rgba(43, 43, 44, 0.5))
    );
    background: -o-linear-gradient(bottom, rgba(43, 43, 44, 0.5), rgba(43, 43, 44, 0.5));
    background: linear-gradient(0deg, rgba(43, 43, 44, 0.5), rgba(43, 43, 44, 0.5));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.manufacturerSlider-video:hover {
    text-decoration: none;
}
.manufacturerSlider-video:hover .manufacturerSlider-video__img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}
.manufacturerSlider-right {
    width: 400px;
}
.manufacturerSlider-doc {
    text-decoration: none;
    outline: none;
    display: block;
    width: 100%;
    border: 1px solid #e8e7f3;
}
.manufacturerSlider-doc img {
    width: 100%;
    display: block;
    height: auto;
}
.manufacturerSlider-slider {
    display: none;
    padding-bottom: 30px;
}
.manufacturerSlider .slider-pagination {
    bottom: 0;
}

.manufacturerPopular {
    overflow: hidden;
    padding-bottom: 108px;
    padding-top: 58px;
}
.manufacturerPopular-title {
    position: absolute;
    left: 0;
    top: -58px;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #2b2b2c;
}
.manufacturerPopular-wrapper {
    position: relative;
}
.manufacturerPopular-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.manufacturerPopular-right {
    width: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    position: relative;
    max-width: 100%;
}
.manufacturerPopular-right::before {
    content: "";
    position: absolute;
    left: -180px;
    width: 1500%;
    top: -58px;
    bottom: -58px;
    background: #f2f2f2;
    z-index: -2;
}
.manufacturerPopular-left {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
    padding: 30px 20px 30px 0;
    position: relative;
    width: 700px;
    max-width: 100%;
}
.manufacturerPopular-left::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1500%;
    background: #004471;
    z-index: -1;
}

.index {
    position: relative;
    z-index: 2;
}

.manufacturerNews-title {
    width: 160px;
    margin: 0 auto;
}
.manufacturerNews-wrapper {
    overflow: hidden;
    position: relative;
    padding-bottom: 55px;
    text-align: center;
    background-image: url("../img/bg-city.jpg");
    background-size: cover;
    background-position: center;
}
.manufacturerNews-btn {
    margin: 30px auto 0;
}
.manufacturerNews-btn svg {
    margin-left: 14px;
    stroke: #2b2b2c;
}
.manufacturerNews-btn:hover svg {
    stroke: #004471;
}

.manufacturerNews-mobile {
    display: none;
}

.manufacturerDocs {
    padding-bottom: 100px;
}
.manufacturerDocs-btn {
    margin-top: -45px;
}
.manufacturerDocs .title {
    margin-bottom: 16px;
}
.manufacturerDocs .subtitle {
    margin: 0;
}

.card {
    padding-bottom: 80px;
}
.card-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 30px;
}
.card-left {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    padding: 9px;
    position: relative;
    width: 280px;
    min-width: 280px;
    margin-right: 20px;
}
.card-img {
    width: 100%;
    height: auto;
    display: block;
}
.card-right {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.card-manufacturer {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
}
.card-manufacturer span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 4px;
    color: #2b2b2c;
}
.card-text {
    margin: 8px 0 18px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}
.card-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.card-price__item {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #db4040;
    margin-right: 6px;
}
.card-price__old {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    color: #787a80;
}
.card-btnAdd {
    margin-top: 24px;
}
.card-btnAdd svg {
    width: 21px;
    height: 20px;
    margin-left: 14px;
}
.card-wrapper {
    width: 900px;
    max-width: 100%;
    margin-top: 80px;
}
.card-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}
.card-desc b {
    display: block;
    margin: 20px 0 6px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
}
.card-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}
.card .mainAbout-video {
    margin: 30px 0 0 0;
}
.card-back.btn {
    margin: 40px 0 0;
    white-space: nowrap;
    font-size: 14px;
}
.card-back.btn svg {
    display: block;
    margin-right: 8px;
    stroke: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-left: 0;
}
.card-back.btn:hover {
    background: #008dd2;
    color: #fff;
}
.card-back.btn:hover svg {
    stroke: #fff;
}
.card-characteristics {
    border-top: 1px solid #e8e7f3;
}
.card-characteristics__item {
    padding: 9px 0;
    border-bottom: 1px solid #e8e7f3;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.card-characteristics__left {
    width: 280px;
    min-width: 280px;
    margin-right: 20px;
    color: #787a80;
}
.card-docs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-top: -20px;
}
.card-docs__block {
    margin-right: 20px;
    margin-top: 20px;
    width: 280px;
}
.card-hiddenBasket {
    display: none;
    width: 543px;
    max-width: 100%;
    padding: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 19px;
    opacity: 0;
    border: 1px solid #e8e7f3;
}
.card-hiddenBasket .card-btnAdd {
    margin: 0;
}
.card-hiddenBasket__prices {
    margin: 0 auto;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #db4040;
    text-align: center;
}
.card-hiddenBasket__pricesOld {
    margin-bottom: 2px;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    color: #787a80;
    font-size: 14px;
}
.card-gray.btn {
    margin-top: 24px;
    cursor: default;
    display: none;
    opacity: 0;
}
.card-gray.btn b {
    font-weight: 400;
}
.card-gray.btn:hover {
    color: #2b2b2c;
    background: #f2f2f2;
}
.card .scroll-list {
    display: none;
}

.support-item__name {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.support-item__link span {
    white-space: nowrap;
}

.card-newsBtn.btn {
    margin-top: 30px;
    border-color: #004471;
}
.card-newsBtn.btn svg {
    width: 21px;
    height: 20px;
    margin: 0 0 0 14px;
    stroke: #2b2b2c;
}
.card-newsBtn.btn:hover {
    color: #fff;
    background: #004471;
    border-color: #004471;
}
.card-newsBtn.btn:hover svg {
    stroke: #004471;
}

.cardCategorys {
    position: relative;
}
.cardCategorys::before {
    content: "";
    left: 0;
    top: 0;
    height: 320px;
    width: calc(50% + 190px);
    background: #f2f2f2;
    z-index: -1;
    position: absolute;
}
.cardCategorys-subtitle {
    margin-bottom: 28px;
}
.cardCategorys .swiper-pagination {
    display: none;
}
.cardCategorys-wrapper {
    position: relative;
}
.cardCategorys-item__wrapper {
    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;
}

.contactQuestion-form {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.contactQuestion-form__block {
    width: 280px;
    margin-right: 20px;
}
.contactQuestion-form__block:last-child {
    margin-right: 0;
    width: 580px;
}
.contactQuestion .page-form__input {
    margin-bottom: 14px;
}
.contactQuestion .page-form__textarea {
    height: 120px;
}
.contactQuestion .page-form__warning.mobile {
    display: none;
}

.js-btn[disabled] {
    pointer-events: none;
}

.contactRequisites {
    padding-bottom: 80px;
    overflow: hidden;
}
.contactRequisites-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.contactRequisites-left {
    padding: 50px 0;
    width: 600px;
    position: relative;
}
.contactRequisites-left::before {
    content: "";
    position: absolute;
    right: -180px;
    height: 100%;
    top: 0;
    width: 1500%;
    background: #f2f2f2;
    z-index: -2;
}
.contactRequisites-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 140%;
    color: #2b2b2c;
}
.contactRequisites-text {
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #2b2b2c;
}
.contactRequisites-text a {
    text-decoration: underline;
    color: #2b2b2c;
}
.contactRequisites-text a:hover {
    text-decoration: none;
}
.contactRequisites-text p {
    margin-bottom: 16px;
}
.contactRequisites-text p:last-child {
    margin-bottom: 0;
}
.contactRequisites-right {
    width: 480px;
    margin-left: auto;
    max-width: 100%;
    padding: 50px 0 50px 100px;
    position: relative;
}
.contactRequisites-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1500%;
    z-index: -1;
    background: #004471;
}
.contactRequisites-soc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.contactRequisites-soc__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #ffffff;
    margin-bottom: 30px;
}
.contactRequisites-soc__item {
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 14px;
    background: #ffffff;
    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;
}
.contactRequisites-soc__item svg {
    display: block;
    width: 30px;
    height: 30px;
}
.contactRequisites-soc__item svg path {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    fill: #004471;
}
.contactRequisites-soc__item svg rect {
    width: 30px;
    height: 30px;
    fill: #fff;
}
.contactRequisites-soc__item:hover path {
    fill: #008dd2;
}

.contact {
    padding-bottom: 80px;
}
.contact-item {
    margin-top: 80px;
}
.contact-item__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.contact-item__icon {
    width: 30px;
    height: 30px;
    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;
    text-align: center;
    min-width: 30px;
    margin-right: 10px;
    background: #004471;
}
.contact-item__icon svg {
    display: block;
    fill: #fff;
}
.contact-item__topText {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #2b2b2c;
}
.contact-item__text {
    margin: 12px 0 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
}
.contact-item__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.contact-item__img {
    height: 300px;
    width: 380px;
}
.contact-item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.contact-item__map {
    width: calc(100% - 400px);
}
.contact-white {
    padding: 20px 20px 0;
    min-height: 100%;
    background-color: #fff;
    border: 1px solid #e8e7f3;
}
.contact-white__items {
    padding-top: 12px;
}
.contact-white__item {
    padding: 11px 0;
    border-top: 1px solid #e8e7f3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.contact-white__item:first-child {
    margin-top: 0;
}
.contact-white__itemFirst {
    width: 55px;
    min-width: 55px;
}
.contact-white__itemLine {
    margin-right: 10px;
    width: 1px;
    height: 25px;
    background: #bac0cc;
}
.contact-white__itemGray {
    margin-left: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.contact-white__itemGray.w100 {
    margin: 2px 0 0 0;
    width: 100%;
}
.contact-white__itemLink {
    text-decoration: none;
    outline: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #2b2b2c;
    text-decoration: underline;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    font-size: 14px;
    transition: all 0.4s;
}
.contact-white__itemLink:hover {
    text-decoration: underline;
    color: #004471;
}
.contact-white__itemLink:hover + .contact-white__itemGray {
    color: #2b2b2c;
}
.contact-white__itemRed {
    color: #db4040;
}
.contact-gray {
    padding: 40px 0;
    background: #f2f2f2;
}

.partnership {
    overflow: hidden;
    padding-bottom: 36px;
}
.partnership-wrapper {
    padding-top: 30px;
}
.partnership-gray {
    position: relative;
    padding: 30px 0;
}
.partnership-gray::before {
    content: "";
    position: absolute;
    left: -500%;
    width: 1100%;
    background: #f2f2f2;
    z-index: -1;
    height: 100%;
    top: 0;
}
.partnership-gray p {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #2b2b2c;
    width: 684px;
    max-width: 100%;
    margin: 0 auto;
}
.partnership-flex {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 70px;
}
.partnership-left {
    width: 550px;
    max-width: 100%;
}
.partnership-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
}
.partnership-right {
    width: 480px;
    max-width: 100%;
    border: 1px solid #bac0cc;
    position: relative;
}
.partnership-right img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.partnership-right::before {
    content: "";
    left: 80px;
    top: -40px;
    width: 1500%;
    height: 100%;
    background: #004471;
    z-index: -1;
    position: absolute;
}
.partnership-block {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
}
.partnership-block:first-child {
    margin-top: 30px;
}

.partnershipForm {
    padding-top: 40px;
    position: relative;
}
.partnershipForm::before {
    content: "";
    position: absolute;
    left: -500%;
    width: 1100%;
    height: 375px;
    top: 0;
    z-index: -1;
    background: #f2f2f2;
}
.partnershipForm-title {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 28px;
    line-height: 140%;
    color: #2b2b2c;
}
.partnershipForm-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.partnershipForm-left {
    width: 280px;
    max-width: 100%;
}
.partnershipForm-left .page-form__input {
    margin-bottom: 12px;
}
.partnershipForm-left .supportForm-btn {
    width: 100%;
    margin-top: 30px;
}
.partnershipForm-img {
    border: 1px solid #e8e7f3;
    margin-bottom: 38px;
    width: 100%;
    display: block;
    height: auto;
}
.partnershipForm-wrapper {
    position: relative;
    width: 480px;
    margin-left: auto;
    max-width: 100%;
}
.partnershipForm-pagination {
    display: none;
}
.partnershipForm-prev {
    right: calc(100% + 62px);
    position: absolute;
    bottom: 0;
}
.partnershipForm-next {
    bottom: 0;
    right: calc(100% + 20px);
    position: absolute;
}
.partnershipForm-right {
    width: 680px;
    max-width: 100%;
}
.partnershipForm-slideImg {
    height: 272px;
    width: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.page-form__upload {
    display: none;
    background: #f2f2f2;
    padding: 8px 14px;
    margin-top: 10px;
}
.page-form__uploadFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.page-form__uploadClose {
    margin-left: 2px;
    min-width: 20px;
    cursor: pointer;
}
.page-form__uploadClose svg {
    display: block;
    fill: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.page-form__uploadClose:hover svg {
    fill: #004471;
}
.page-form__uploadName {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}
.page-form__file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    background: #ffffff;
    width: 100%;
    cursor: pointer;
    margin-top: 20px;
    font-weight: 400;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 140%;
    border: 1px solid #e8e7f3;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.page-form__file input {
    display: none;
}
.page-form__file img {
    margin-right: 8px;
}
.page-form__file:hover {
    color: #004471;
}

.vacancies-list {
    padding-top: 40px;
}
.vacancies-item {
    padding: 20px 0 19px;
    border-bottom: 1px solid #e8e7f3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    font-size: 14px;
}
.vacancies-item__left {
    width: 380px;
    min-width: 380px;
    margin-right: 20px;
}
.vacancies-item__img {
    height: 250px;
    width: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}
.vacancies-item__arrow {
    margin-top: 12px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #787a80;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.vacancies-item__arrow svg {
    display: block;
    margin-left: 2px;
    stroke: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.vacancies-item__arrow b {
    font-weight: 400;
    display: none;
}
.vacancies-item__arrow:hover {
    color: #004471;
}
.vacancies-item__arrow:hover svg {
    stroke: #004471;
}
.vacancies-item__arrow.active svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.vacancies-item__arrow.active span {
    display: none;
}
.vacancies-item__arrow.active b {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.vacancies-item__bold {
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    margin-top: 10px;
}
.vacancies-item__numbers {
    padding: 0;
    margin: 0;
    width: 580px;
    max-width: 100%;
    counter-reset: myCounter;
}
.vacancies-item__numbers li {
    display: block;
    position: relative;
    list-style: none;
    padding-left: 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}
.vacancies-item__numbers li::before {
    counter-increment: myCounter;
    content: counter(myCounter) ".";
    position: absolute;
    left: 0;
    top: 0;
}
.vacancies-item__numbers.mb {
    margin-bottom: 12px;
}
.vacancies-item__btn {
    bottom: 20px;
    right: 0;
    position: absolute;
    width: 167px;
}
.vacancies-item__btn[disabled] {
    background: #f2f2f2;
    pointer-events: none;
    border: none;
    font-size: 0;
    background-image: url("../img/check.svg");
    background-repeat: no-repeat;
    background-position: center;
}
.vacancies-item__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.vacancies-item__name {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #2b2b2c;
}
.vacancies-item__gray {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
}
.vacancies-item__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    margin-top: 10px;
}
.vacancies-item__hidden {
    height: 116px;
    overflow: hidden;
}
.vacancies-item__hidden.open {
    height: auto;
}
.vacancies-popup {
    width: 504px;
}
.vacancies-popup__form {
    margin: 20px auto 0;
    width: 324px;
    max-width: 100%;
}
.vacancies-popup .supportForm-btn {
    margin: 30px 0 0 0;
    width: 100%;
}
.vacancies-popup .page-form__input {
    margin-bottom: 14px;
}
.vacancies-popup .page-form__file {
    padding-right: 11px;
    margin-bottom: 14px;
    padding-left: 11px;
    margin-top: 0;
}
.vacancies-popup .page-form__file img {
    margin-left: auto;
    margin-right: 0;
}

.base-text {

}
.base-text p {
    display: block;
    margin: 0 0 10px;
}
.base-text a {
    color: #337ab7;
    text-decoration: none;
}
.base-text b,
.base-text strong {
    color: #004370;
    font-weight: 700;
}
.base-text ul {
    list-style-type: disc;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}
.base-text ol,
.base-text ul {
    margin-top: 0;
    margin-bottom: 10px;
}
.base-text li {
    display: list-item;
    display: -webkit-match-parent;
}
.base-text ::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px;
    text-align: start;
    text-align-last: start;
}

.about {
    padding-bottom: 80px;
}
.about-wrapper {
    position: relative;
    margin-top: 40px;
}
.about-buttons {
    position: absolute;
    right: 0;
    top: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    z-index: 4;
}
.about-pagination {
    display: none;
    right: 500px;
    bottom: 0 !important;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: auto !important;
    z-index: 3;
}
.about-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.about-item__img {
    width: 780px;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
.about-item__right {
    padding: 40px 40px 50px;
    background: #004471;
    margin-top: 52px;
    background-image: url("../img/city-2.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 480px;
    margin-left: -80px;
}
.about-item__title {
    font-weight: 500;
    font-size: 28px;
    line-height: 140%;
    color: #ffffff;
}
.about-item__text {
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
}

.mainAbout-center .mainAbout-list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aboutGray {
    padding: 50px 0;
    background: #f2f2f2;
}
.aboutGray-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.aboutGray-item {
    width: 680px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
}
.aboutGray-item:last-child {
    width: 440px;
}

.aboutCertificate {
    padding: 50px 0 100px;
    position: relative;
}
.aboutCertificate::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    height: 250px;
    background: #f2f2f2;
}
.aboutCertificate-wrapper {
    margin-top: 30px;
}
.aboutCertificate-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 140%;
    color: #2b2b2c;
}
.aboutCertificate-buttons {
    position: absolute;
    top: -52px;
    right: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.aboutCertificate-item {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    padding: 9px;
    display: block;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.aboutCertificate-item:hover {
    opacity: 0.7;
}
.aboutCertificate-item img {
    width: 100%;
}
.aboutCertificate-pagination {
    display: none;
}

.aboutPartners {
    padding: 40px 0 50px;
    background: #004471;
}
.aboutPartners-title {
    color: #fff;
}

.aboutTeam {
    position: relative;
}
.aboutTeam::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    background: #f2f2f2;
    height: 500px;
}
.aboutTeam-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    margin: 16px 0 30px;
}
.aboutTeam .stock-tabs {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.aboutTeam .stock-tabs__item {
    margin-bottom: 10px;
}
.aboutTeam-wrapper .swiper-slide {
    height: 100%;
}
.aboutTeam-slider {
    padding-bottom: 62px;
}
.aboutTeam-buttons {
    left: 0;
    bottom: 0;
    top: auto;
    position: absolute;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    z-index: 4;
}
.aboutTeam-pagination {
    display: none;
}
.aboutTeam-item {
    position: relative;
    text-align: center;
    padding: 10px 10px 24px 10px;
    height: 100%;
}
.aboutTeam-item .index {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.aboutTeam-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: #fff;
    border: 1px solid #e8e7f3;
}
.aboutTeam-item__img {
    border: 1px solid #e8e7f3;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    margin: 0 auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}
.aboutTeam-item__name {
    margin: 15px 0 6px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
}
.aboutTeam-item__proff {
    margin-bottom: auto;
    padding-bottom: 15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}
.aboutTeam-item__link {
    margin-top: 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    text-decoration: none;
}
.aboutTeam-item__link svg {
    display: block;
    margin-right: 4px;
    fill: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.aboutTeam-item__link:hover {
    text-decoration: none;
    color: #004471;
}
.aboutTeam-item__link:hover svg {
    fill: #004471;
}
.aboutTeam .scroll-list {
    display: none;
}

.aboutGift {
    padding: 35px 0 40px;
    position: relative;
}
.aboutGift::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 300px;
    z-index: -1;
    background: #f2f2f2;
    width: calc(50% - 100px);
}
.aboutGift-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 140%;
    color: #2b2b2c;
}
.aboutGift-subtitle {
    margin: 16px 0 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    width: 680px;
    max-width: 100%;
}
.aboutGift-btn {
    margin-top: 30px;
    width: 280px;
}
.aboutGift-btn svg {
    stroke: #fff;
}
.aboutGift-btn:hover svg {
    stroke: #fff;
}
.aboutGift-pagination {
    display: none;
}
.aboutGift-buttons {
    top: -52px;
    right: 0;
    position: absolute;
}
.aboutGift-btn b {
    display: none;
}

.aboutGiftCertificate {
    padding: 35px 0 100px;
    position: relative;
}
.aboutGiftCertificate::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 300px;
    z-index: -1;
    background: #f2f2f2;
    width: calc(50% - 100px);
}
.aboutGiftCertificate .aboutGift-title {
    text-align: right;
}
.aboutGiftCertificate .aboutGift-subtitle {
    width: 600px;
    margin-left: auto;
    text-align: right;
}
.aboutGiftCertificate .aboutGift-btn {
    margin-left: auto;
}
.aboutGiftCertificate .aboutGift-btn b {
    display: none;
}
.aboutGiftCertificate .aboutGift-buttons {
    right: auto;
    left: 0;
}

.aboutSteps {
    padding-bottom: 80px;
}
.aboutSteps-list {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.aboutSteps-left {
    width: 700px;
    max-width: 100%;
}
.aboutSteps-right {
    width: 400px;
    max-width: 100%;
    border-top: 1px solid #e8e7f3;
    position: relative;
}
.aboutSteps-img {
    border: 1px solid #e8e7f3;
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: block;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -o-object-fit: cover;
    object-fit: cover;
    height: 312px;
}
.aboutSteps-img:first-child {
    position: static;
}
.aboutSteps-img.active {
    opacity: 1;
}
.aboutSteps-item {
    padding: 8px 0;
    border-bottom: 1px solid #e8e7f3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}
.aboutSteps-item__number {
    width: 47px;
    min-width: 47px;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #bac0cc;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.aboutSteps-item__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-top: 4px;
}
.aboutSteps-item:hover .aboutSteps-item__number,
.aboutSteps-item:hover .aboutSteps-item__text {
    color: #004471;
}

.steps-mb {
    margin-bottom: 0 !important;
}

.aboutHistory {
    padding: 80px 0;
}
.aboutHistory-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 140%;
    text-align: center;
    color: #2b2b2c;
}
.aboutHistory-wrapper {
    margin-top: 40px;
}
.aboutHistory-buttons {
    top: -75px;
    right: 0;
    position: absolute;
    z-index: 2;
}
.aboutHistory-item {
    text-align: center;
}
.aboutHistory-item__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #2b2b2c;
}
.aboutHistory-item__center {
    margin: 20px 0;
    position: relative;
}
.aboutHistory-item__center::before {
    content: "";
    background: #e8e7f3;
    height: 3px;
    top: calc(50% - 1.5px);
    left: 0;
    width: 100%;
    position: absolute;
}
.aboutHistory-item__center::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("../img/arrow-2.svg");
    background-repeat: no-repeat;
    background-position: center;
}
.aboutHistory-item__img {
    width: 36px;
    background: #fff;
    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;
    margin: 0 auto;
    position: relative;
    background: #fff;
    z-index: 2;
}
.aboutHistory-item__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}
.aboutHistory-pagination {
    display: none;
}

.lc {
    padding-bottom: 60px;
}
.lc-wrapper {
    margin-top: 30px;
}
.lc-tabs {
    margin-bottom: 24px;
}
.lc-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e8e7f3;
}
.lc-item__right {
    text-align: right;
}
.lc-item__leftGray {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #787a80;
}
.lc-item__leftResult {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    margin-top: 8px;
}
.lc-item__rightBtn {
    text-decoration: none;
    outline: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    opacity: 0.7;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    color: #787a80;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}
.lc-item__rightBtn svg {
    display: block;
    margin-right: 6px;
    fill: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.lc-item__rightBtn:hover {
    text-decoration: none;
    color: #004471;
    opacity: 1;
}
.lc-item__rightBtn:hover span {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}
.lc-item__rightBtn:hover svg {
    fill: #004471;
}
.lc-item__rightText {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: right;
    color: #787a80;
    width: 280px;
    max-width: 100%;
}
.lc-item__rightText a {
    text-decoration: underline;
    color: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.lc-item__rightText a:hover {
    color: #004471;
}
.lc-pass {
    margin-top: 0px;
    width: 177px;
    font-size: 14px;
}
.lc-pass svg {
    display: block;
    margin: 0 8px 0 0;
    fill: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.lc-pass:hover {
    color: #004471;
}
.lc-pass:hover svg {
    fill: #004471;
}
.lc-allPrice {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
    padding-top: 14px;
}
.lc-box {
    margin-bottom: 16px;
}
.lc-box__top {
    position: relative;
    padding: 20px;
    background: #f2f2f2;
}
.lc-box__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.lc-box__block {
    width: 200px;
}
.lc-box__block:nth-child(1) {
    width: 193px;
}
.lc-box__block:nth-child(3) {
    width: 198px;
}
.lc-box__block:nth-child(2) {
    width: 151px;
}
.lc-box__gray {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
}
.lc-box__hidden {
    display: none;
    border: 1px solid #e8e7f3;
    padding: 19px 29px 0;
}
.lc-box.active .lc-box__hidden {
    display: block;
}
.lc-box__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
    margin-top: 8px;
}
.lc-box__toggle {
    right: 30px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.lc-box__toggle b {
    font-weight: 400;
    display: none;
}
.lc-box__toggle svg {
    display: block;
    margin-right: 6px;
    stroke: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.lc-box__toggle:hover {
    color: #004471;
}
.lc-box__toggle:hover span,
.lc-box__toggle:hover b {
    text-decoration: underline;
}
.lc-box__toggle:hover svg {
    stroke: #004471;
}
.lc-box__toggle.active span {
    display: none;
}
.lc-box__toggle.active b {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.lc-box__toggle.active svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.lc-changePassword {
    margin-top: 30px;
}
.lc-changePassword__hidden {
    display: none;
}
.lc-changePassword__close {
    cursor: pointer;
    margin-left: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lc-changePassword__close svg {
    fill: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.lc-changePassword__close:hover svg {
    fill: #004471;
}
.lc-changePassword__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    white-space: nowrap;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.lc-changePassword__title svg {
    position: relative;
    top: 2px;
}
.lc-changePassword__form {
    width: 280px;
    max-width: 100%;
}
.lc-changePassword .page-form__input.mb {
    margin-bottom: 14px;
}
.lc-changePassword .supportForm-btn {
    width: 100% !important;
}
.lc-changePassword__forgout {
    text-align: center;
    margin-top: 14px;
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    width: 280px;
    max-width: 100%;
    color: #004471;
    text-decoration: none;
}
.lc-changePassword__forgout:hover {
    text-decoration: underline;
    color: #004471;
}
.lc-changePassword.open .lc-pass {
    display: none;
}
.lc-changePassword.open .lc-changePassword__hidden {
    display: block;
}

.popup-form__wrapper {
    width: 280px;
    margin: 20px auto 30px;
    max-width: 100%;
}
.popup-form__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 402px;
    max-width: 100%;
    margin: 0 auto;
}
.popup-form__btn {
    width: 200px;
}
.popup-form__close {
    width: 200px;
    background: #f2f2f2;
    color: #2b2b2c;
    border: none;
}
.popup-form__close:hover {
    background: #f2f2f2;
    color: #004471;
}

.fancybox__content input,
.fancybox__content textarea,
.fancybox__content button {
    outline: none !important;
}

.lc-item__right.ml0 {
    margin-left: 0;
}

.lc-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.lc-block {
    width: 50%;
    padding-right: 20px;
}
.lc-block:last-child {
    border-left: 1px solid #e8e7f3;
    padding-right: 0;
    padding-left: 20px;
}

.lc-item__rightText.left {
    text-align: left;
}

.lc-contactFaces .lc-item__rightBtn {
    margin: 0;
}
.lc-contactFaces-item {
    padding: 15px 0;
    border-bottom: 1px solid #e8e7f3;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.lc-contactFaces-item__small {
    padding: 10px 0 9px;
}
.lc-contactFaces-item__gray {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
}
.lc-contactFaces-item__block {
    margin-right: 20px;
}
.lc-contactFaces-item__block:nth-child(1) {
    width: 20px;
}
.lc-contactFaces-item__block:nth-child(2) {
    width: 329px;
}
.lc-contactFaces-item__block:nth-child(3) {
    width: 200px;
}
.lc-contactFaces-item__block:nth-child(4) {
    width: 380px;
}
.lc-contactFaces-item__block:nth-child(5) {
    width: 180px;
    margin: 0 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.lc-contactFaces__delete {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-decoration: none;
    outline: none;
}
.lc-contactFaces__delete svg {
    display: block;
    fill: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.lc-contactFaces__delete:hover {
    text-decoration: none;
}
.lc-contactFaces__delete:hover svg {
    fill: #db4040;
}

.lc-facesBtn {
    margin: 30px 0 0 0;
    width: 265px;
}

.lc .scroll-list {
    display: none;
}

.lc-changePopup .phone-input__absoluteItem span {
    color: #2b2b2c;
}
.lc-changePopup .page-form__input {
    margin-bottom: 14px;
}

.category .mainCatalog-item {
    background: #f2f2f2;
    border: 1px solid #e8e7f3;
}
.category .mainCatalog-item:hover {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
}

.catalog-back {
    margin: 18px 0 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
}
.catalog-back svg {
    display: block;
    margin-right: 4px;
    stroke: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.catalog-back:hover {
    color: #004471;
}
.catalog-back:hover svg {
    stroke: #004471;
}
.catalog-toggle {
    margin-left: auto;
    width: 280px;
    display: block;
    max-width: 100%;
    position: relative;
    z-index: 8;
}
.catalog-toggle__box {
    height: 45px;
    width: 100%;
    padding-left: 14px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    background: #ffffff;
    border: 1px solid #e8e7f3;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    z-index: 2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.catalog-toggle__box p {
    width: calc(100% - 40px);
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.catalog-toggle__box svg {
    display: block;
    position: absolute;
    right: 14px;
    top: 13px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    stroke: #2b2b2c;
    transition: all 0.4s;
}
.catalog-toggle__box:hover svg {
    stroke: #004471;
}
.catalog-toggle__wrapper {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    padding: 16px 14px;
    background: #ffffff;
    border: 1px solid #e8e7f3;
    z-index: 1;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-box-shadow: 0px 1px 15px rgba(21, 7, 48, 0.05), 0px 8px 12px rgba(21, 7, 48, 0.05);
    box-shadow: 0px 1px 15px rgba(21, 7, 48, 0.05), 0px 8px 12px rgba(21, 7, 48, 0.05);
}
.catalog-toggle__item {
    margin-top: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.catalog-toggle__item:first-child {
    margin-top: 0;
}
.catalog-toggle__item:hover,
.catalog-toggle__item.active {
    text-decoration: none;
    color: #004471;
}
.catalog-toggle.open .catalog-toggle__box {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    -webkit-box-shadow: 0px 1px 15px rgba(21, 7, 48, 0.05), 0px 8px 12px rgba(21, 7, 48, 0.05);
    box-shadow: 0px 1px 15px rgba(21, 7, 48, 0.05), 0px 8px 12px rgba(21, 7, 48, 0.05);
}
.catalog-toggle.open .catalog-toggle__box svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    stroke: #004471;
}
.catalog-toggle.open .catalog-toggle__wrapper {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.catalog-filterBtn {
    width: 156px;
    font-size: 18px;
}
.catalog-filterBtn svg {
    display: block;
    margin: 0 10px 0 0 !important;
}
.catalog-topFilters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.catalog-filters {
    display: none;
}
.catalog-filters.open {
    display: block;
}
.catalog-filters__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #2b2b2c;
    height: 45px;
    margin-bottom: 20px;
}
.catalog-filters__title small {
    display: none;
}
.catalog-filters__title b {
    font-weight: 400;
}
.catalog-filters__close {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: 10px;
}
.catalog-filters__close svg {
    display: block;
    stroke: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.catalog-filters__close:hover svg {
    stroke: #db4040;
}
.catalog-filters__wrapper {
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e8e7f3;
}
.catalog-filters__item {
    padding: 14px 0;
    width: 100%;
    border-top: 1px solid #e8e7f3;
}
.catalog-filters__item:first-child {
    padding-top: 0;
    border-top: none;
}
.catalog-filters__item:last-child {
    padding-bottom: 24px;
}
.catalog-filters__name {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
}
.catalog-filters__arrow {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 8px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.catalog-filters__arrow b {
    display: none;
    font-weight: 400;
}
.catalog-filters__arrow svg {
    display: block;
    stroke: #787a80;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.catalog-filters__arrow:hover {
    color: #004471;
}
.catalog-filters__arrow:hover svg {
    stroke: #004471;
}
.catalog-filters__arrow.open span {
    display: none;
}
.catalog-filters__arrow.open b {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.catalog-filters__arrow.open svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.catalog-filters__label {
    margin: 4px 0 0;
    cursor: pointer;
    -webkit-user-select: none;
    width: 100%;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 2px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    display: none;
}
.catalog-filters__label input {
    display: none;
}
.catalog-filters__label:nth-child(1),
.catalog-filters__label:nth-child(2),
.catalog-filters__label:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.catalog-filters__label b {
    display: block;
    width: 16px;
    min-width: 16px;
    height: 16px;
    background: #ffffff;
    border: 1px solid #004471;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-right: 7px;
    background-repeat: no-repeat;
    background-position: center;
}
.catalog-filters__label input:checked + b {
    background-color: #004471;
    background-image: url("../img/checked.svg");
}
.catalog-filters__label:first-child {
    margin-top: 0;
}
.catalog-filters__label:hover {
    color: #004471;
}
.catalog-filters__labels {
    overflow: hidden !important;
    position: relative;
    max-height: 70px;
}
.catalog-filters__labels .scroll-bar-wrap {
    display: none !important;
}
.catalog-filters__labels .scroll-bar-wrap .scroll-bar {
    width: 6px !important;
}
.catalog-filters__labels .scroll-wrap .scroll-bar {
    display: none !important;
}
.catalog-filters__labels.open {
    max-height: 188px;
}
.catalog-filters__labels.open .scroll-bar-wrap {
    display: block !important;
}
.catalog-filters__labels.open .catalog-filters__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.catalog-filters__bottom {
    margin-top: 24px;
    text-align: center;
}
.catalog-filters__numbers {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #787a80;
}
.catalog-filters__accept {
    margin: 6px 0 26px;
    width: 100%;
    height: 38px;
    font-size: 16px;
}
.catalog-filters__accept b {
    font-weight: 400;
}
.catalog-filters__clear {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
    text-decoration: none;
    outline: none;
}
.catalog-filters__clear svg {
    display: block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    fill: #787a80;
    margin-left: 2px;
}
.catalog-filters__clear span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 3px;
}
.catalog-filters__clear:hover {
    color: #db4040;
    text-decoration: none;
}
.catalog-filters__clear:hover svg {
    fill: #db4040;
}
.catalog-filter__inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 19px;
}
.catalog-filter__input {
    width: calc(50% - 4px);
    position: relative;
}
.catalog-filter__input input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 32px;
    width: 100%;
    height: 36px;
    background: #ffffff;
    border: 1px solid #e8e7f3;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.catalog-filter__input input:hover {
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
}
.catalog-filter__input span {
    position: absolute;
    left: 12px;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    font-weight: 400;
    z-index: 2;
    font-size: 14px;
    line-height: 140%;
    color: #787a80;
    pointer-events: none;
}

.noUi-horizontal {
    height: 1px;
}

.noUi-target {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: #e8e7f3;
}

.noUi-connect {
    background: #004471;
}

.noUi-horizontal .noUi-handle {
    width: 18px;
    height: 18px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #004471;
    border-radius: 100%;
    cursor: pointer;
    top: calc(50% - 8.5px);
    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;
    text-align: center;
}
.noUi-horizontal .noUi-handle::before,
.noUi-horizontal .noUi-handle::after {
    display: none;
}

.noUi-touch-area {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #fff;
}

.catalog-mobile {
    display: none;
}

.stock-item__characteristics {
    margin-bottom: -2px;
    padding-top: 12px;
}

.stock-item__characteristicsItem {
    margin-top: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #2b2b2c;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.stock-item__characteristicsLeft,
.stock-item__characteristicsRight {
    width: calc(50% - 5px);
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stock-item__characteristicsLeft {
    color: #787a80;
}

.catalog-item {
    position: relative;
    padding: 23px;
    border: 1px solid #e8e7f3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    overflow: hidden;
}
.catalog-item:hover {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    -webkit-box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
    box-shadow: 0px 7px 29px rgba(3, 4, 30, 0.08), 0px 1.5px 7px rgba(3, 4, 30, 0.05),
        0px 0.5px 2px rgba(3, 4, 30, 0.035);
}
.catalog-item__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.catalog-item__left {
    width: 230px;
    margin-right: 20px;
    min-width: 230px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.catalog-item__left img {
    width: 100%;
    height: auto;
}
.catalog-item__center {
    width: 488px;
}
.catalog-item__text {
    margin: 5px 0 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}
.catalog-item__name {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
}
.catalog-item .stock-item__characteristicsLeft {
    width: 166px;
    margin-right: 20px;
}
.catalog-item .stock-item__characteristicsRight {
    width: 302px;
}
.catalog-item .stock-item__characteristicsItem {
    margin-top: 2px;
    font-weight: 400;
    font-size: 14px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    line-height: 140%;
    color: #2b2b2c;
}
.catalog-item .stock-item__characteristicsLeft {
    color: #787a80;
}
.catalog-item .stock-item__characteristicsLeft,
.catalog-item .stock-item__characteristicsRight {
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.catalog-item__price {
    margin-left: auto;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #2b2b2c;
}
.catalog-item__price.red {
    color: #db4040;
}
.catalog-item__right {
    text-align: right;
    margin-left: auto;
}
.catalog-item__old {
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    color: #787a80;
}
.catalog-item__btn {
    width: 60px;
    height: 36px;
    text-decoration: none;
    outline: none;
    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;
    background: #004471;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 4;
}
.catalog-item__btn svg {
    display: block;
}
.catalog-item__btn:hover {
    background: #008dd2;
    text-decoration: none;
}
.catalog-item__basket {
    position: absolute;
    width: 192px;
    right: -200px;
    border-left: 1px solid #e8e7f3;
    height: 100%;
    z-index: 5;
    background: #fff;
    top: 0;
    padding: 18px 24px 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.catalog-item__basket.active {
    right: 0;
}
.catalog-item__basket .stock-item__popupText {
    margin-bottom: 8px;
    text-align: center;
}
.catalog-item__basket .counter {
    margin: 0 auto;
}
.catalog-item__basket .stock-item__popupFlex {
    display: block;
    margin: 0;
}
.catalog-item__basket .stock-item__popupPrice {
    margin: 16px 0;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
}
.catalog-item__basket .stock-item__popupPrice span {
    margin-left: auto;
    font-size: 14px;
}
.catalog-item__basket .stock-item__popupBasket {
    width: 100%;
    height: 36px;
    font-size: 16px;
}

.catalog-item__basket .stock-item__popupPrice {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.page-popup .page-form__input {
    margin-bottom: 14px;
}
.page-popup .page-form__warning {
    /*margin-top: -4px;*/
}
.page-popup__form {
    width: 280px;
    max-width: 100%;
    margin: 0 auto;
}
.page-popup__radios {
    margin: 20px 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 325px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.page-popup__btn {
    width: 100% !important;
    height: 45px !important;
    margin-top: 30px !important;
    font-size: 16px !important;
}
.page-popup__btn[disabled] {
    background: #ffffff;
    border: 1px solid #e8e7f3;
    color: #bac0cc;
}
.page-popup__radio {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}
.page-popup__radio b {
    display: block;
    width: 18px;
    min-width: 18px;
    height: 18px;
    background: #ffffff;
    border: 1px solid #004471;
    margin-right: 5px;
    position: relative;
    border-radius: 100%;
}
.page-popup__radio b::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #004471;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.page-popup__radio input {
    display: none;
}
.page-popup__radio input:checked + b::before {
    opacity: 1;
}
.page-popup__line {
    margin: 20px auto;
    height: 1px;
    display: block;
    width: 280px;
    background: #e8e7f3;
    max-width: 100%;
}
.page-popup__link {
    text-decoration: none;
    outline: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #004471;
}
.page-popup__link:hover {
    text-decoration: underline;
    color: #004471;
}
.page-popup__back {
    text-decoration: none;
    outline: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 18px;
    left: 18px;
    position: absolute;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    color: #2b2b2c;
    outline: none !important;
}
.page-popup__back svg {
    display: block;
    stroke: #2b2b2c;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-right: 4px;
}
.page-popup__back:hover {
    text-decoration: none;
    color: #004471;
}
.page-popup__back:hover svg {
    stroke: #004471;
}

.popup-subtitle__mb {
    margin-bottom: 28px;
}

.mt14 {
    margin-top: 14px;
}

.page-form__inputIcon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    right: 14px;
    top: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0.5;
}
.page-form__inputIcon svg {
    width: 20px;
    height: 17px;
    display: block;
    fill: #787a80;
}

.page-form__inputPassword {
    position: relative;
    margin-bottom: 14px;
}
.page-form__inputPassword .page-form__input {
    margin-bottom: 0;
}

.popup-forgot {
    margin: 20px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}
.popup-forgot__gray {
    margin-bottom: 6px;
    color: #787a80;
}

.page-popup__stepsText {
    margin-top: 12px;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #787a80;
}

.page-popup__info {
    margin-top: -4px;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #2b2b2c;
}

.page-popup__infoTitle {
    margin-bottom: 12px;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
    margin-top: 20px;
}

.page-popup__form .phone-input__absoluteItem span,
.js-form .phone-input__absoluteItem span {
    color: #2b2b2c;
}

.overflow-box {
    overflow: hidden;
    margin-bottom: 100px;
}

.basket-bottom {
    position: relative;
}

.basket-bottom__label {
    position: absolute;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.basket-bottom__label input {
    display: none;
}
.basket-bottom__label b {
    width: 16px;
    height: 16px;
    position: relative;
    background: #ffffff;
    border: 1px solid #004471;
    min-width: 16px;
    margin-right: 6px;
}
.basket-bottom__label b::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #004471;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.basket-bottom__label input:checked + b::before {
    opacity: 1;
}
.basket-bottom__label span {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2b2b2c;
}

#lc-add-faces .page-form__input {
    margin-bottom: 14px;
}

.pageMainNews::before {
    height: 260px;
}

.popup-form__flex {
    width: 420px;
}

.lc-contactFaces-item__darkText {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2b2b2c;
}

.footer-tabletSoc {
    display: none;
}

.footer-logo__mobile {
    display: none;
}
.footer-logo__desktop {
    display: block;
}

/*.level_1.menu-item-has-children::before,
.level_1.menu-item-has-children::after {
    filter: brightness(0) invert(1);
}*/

/*.category-nav li.level_1.active::before {
    background-image: url(../img/double-arrow-2-white.svg);
}

.category-nav li.level_1.active::after {
    background-image: url(../img/double-arrow-2-white.svg);
}

.level_1.menu-item-has-children > a {
    position: relative;
}
.level_1.menu-item-has-children > a::before {
    content: "";
    width: 37px;
    right: -37px;
    top: 0;
    height: 100%;
    background: #004471 !important;
    position: absolute;
}*/

.category-nav {
    user-select: none;
}

.level_2::before,
.level_2::after {
    top: 3px !important;
}
.level_3::before,
.level_3::after {
    top: 0 !important;
}

.level_1.active > a {
    position: relative;
}
.level_1.active > a::before {
    content: "";
    position: absolute;
    width: 37px;
    right: -37px;
    top: 0;
    height: calc(100% + 1px);
    background: #004471 !important;
    pointer-events: none;
}

.category-nav ul li::before,
.category-nav ul li::after {
    z-index: 2;
}
.level_1.active::after,
.level_1.active::before {
    filter: brightness(0) invert(1);
}






.desktopMenu {
    padding: 0;
    margin: 0;
    top: 152px;
    left: 50%;
    position: fixed;
    z-index: 9;
    width: 1180px;
    max-width: 100%;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-10px) translateX(-50%);
    -ms-transform: translateY(-10px) translateX(-50%);
    transform: translateY(-10px) translateX(-50%);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    height: 457px;
}

.desktopMenu-wrapper {
    overflow-y: auto;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.desktopMenu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0) translateX(-50%);
    -ms-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
    max-height: calc(100vh - 152px);
}

.desktopMenu ul {
    position: relative;
    z-index: 3;
}

.desktopMenu::before {
    content: "";
    position: absolute;
    left: -500%;
    width: 1500%;
    height: 100%;
    border-top: 1px solid #e8e7f3;
    top: 0;
    background: #ffffff;
    -webkit-box-shadow: 0px 7px 29px rgb(3 4 30 / 8%), 0px 1.56354px 6.47753px rgb(3 4 30 / 5%), 0px 0.465507px 1.92853px rgb(3 4 30 / 3%);
    box-shadow: 0px 7px 29px rgb(3 4 30 / 8%), 0px 1.56354px 6.47753px rgb(3 4 30 / 5%), 0px 0.465507px 1.92853px rgb(3 4 30 / 3%);
}

.desktopMenu-parent {
    padding: 0;
    margin: 0;
    display: block;
    width: 290px;
    min-width: 290px;
    height: 457px;
    position: relative;
}

.desktopMenu-parent .scroll-bar-wrap {
    right: 15px;
}
.desktopMenu-parent > div::-webkit-scrollbar {
    display: none;
}
.desktopMenu-parent ul {
    padding-top: 8px;
    border-right: 1px solid #E8E7F3;
    padding-right: 36px;
}
.desktopMenu-parent ul li {
    display: block;
    padding: 5px 24px 6px 0;
    border-top: 1px solid #E8E7F3;
    position: relative;
}
.desktopMenu-parent ul li:first-child {
    padding-top: 6px;
    border: none;
}
.desktopMenu-parent ul li a {
    display: block;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #2B2B2C;
}
.desktopMenu-parent ul li a::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    z-index: 2;
    background-image: url('../img/menu-arrow-2.svg');
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
}
.desktopMenu-parent ul li a::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    background-image: url(../img/menu-arrow-1.svg);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.desktopMenu-parent ul li a:hover, .desktopMenu-parent ul li.active a {
    color: #004471;
    text-decoration: none;
}
.desktopMenu-parent ul li a:hover::before, .desktopMenu-parent ul li.active a::before {
    opacity: 0;
}
.desktopMenu-parent ul li a:hover::after, .desktopMenu-parent ul li.active a::after {
    opacity: 1;
}

.desktopMenu-child {
    padding: 0;
    margin: 0;
    display: none;
}
.desktopMenu-child.active {
    display: block;
}
.desktopMenu-child ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 457px;
}
.desktopMenu-child ul li {
    width: 30%;
    display: block;
    margin: 14px 0 0 0;
}
.desktopMenu-child ul li a {
    text-decoration: none;
    outline: none;
    display: inline-flex;
    transition: all 0.4s;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #2B2B2C;
}
.desktopMenu-child ul li a:hover {
    color: #004471;
    text-decoration: none;
}
.desktopMenu-child ul li ul {
    display: block;
    height: auto;
    min-height: 20px;
}
.desktopMenu-child ul li ul li {
    margin-top: 4px;
}
.desktopMenu-child ul li ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #787A80;
}
.desktopMenu-child ul li ul li a:hover {
    color: #004471;
}
.desktopMenu-child ul li ul li {
    width: 100%;
}



.no-price {
    font-size: 90%;
}
.byn {
    font-size: 80%;
    white-space: nowrap;
    font-style: normal;
}
.nds {
    color: #8b8b8b;
    font-style: normal;
}


.desktopMenu-childs {
    flex-grow: 1;
    padding-left: 12px;
}

@media (min-width: 1220px) {
    .partnership-gray p br {
        /* display: none; */
    }
}
@media (max-width: 1220px) {
    .footer {
        padding-bottom: 36px;
    }
    .desktopMenu {
        display: none !important;
    }
    .category-links__item {
        font-size: 12px;
    }
    .footer-logo img {
        width: 90%;
    }
    .footer-list {
        margin: 0 -8px;
    }
    .footer-block,
    .footer-block:nth-child(2) {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        width: 25%;
        padding: 0 8px;
        min-width: auto;
    }
    .footer-block:nth-child(2) {
        width: 50%;
    }
    .footer-textImg {
        width: 180px;
    }
    .footer-textImg img {
        width: 210px;
    }
    .footer-navs {
        padding-top: 8px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .footer-nav {
        width: 50%;
    }
    .footer-end {
        padding-top: 8px;
        display: block;
    }
    .footer-address {
        text-align: left;
    }
    .footer-soc {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .footer-soc__item {
        margin: 0;
    }
    .footer-nav ul li {
        margin-top: 8px;
    }
    .header-toggle {
        display: block;
    }
    .header-login {
        display: none;
    }
    .header-cart {
        border-left: 1px solid #7fa1b8;
        border-right: 1px solid #7fa1b8;
        width: auto;
        padding: 0 18px;
        margin: 0 18px;
        height: 42px;
        font-size: 16px;
    }
    .header-cart svg {
        margin-right: 2px;
    }
    .header-cart::before {
        display: none;
    }
    .header-cart:hover {
        color: #fff;
        background: transparent;
        text-decoration: none;
    }
    .header-cart:hover b {
        color: #7fa1b8;
    }
    .header-cart:hover svg {
        fill: #fff;
    }
    .header-cart:active svg {
        fill: #7fa1b8;
    }
    .header {
        background: #004471;
    }
    .header-bottom {
        display: none;
    }
    .header-top {
        padding: 11.5px 0;
    }
    .header-logo {
        width: 350px;
        margin: 0;
    }
    .stock-item__flex {
        margin-top: 10px;
    }
    .header-logo img {
        width: 100%;
    }
    .header-img img {
        width: auto;
        height: 47px;
    }
    .header-seachOpen {
        display: block;
    }
    .header-seachOpen svg path {
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
    }
    .header-seachOpen:active svg path {
        fill: #7fa1b8;
    }
    .header-contact {
        max-width: 100%;
        width: 310px;
    }
    .page {
        padding-top: 70px;
    }
    .title {
        padding-left: 12px;
        padding-top: 47px;
    }
    .subtitle {
        font-size: 24px;
        line-height: 34px;
    }
    .btn {
        width: 228px;
        height: 44px;
        font-size: 14px;
        line-height: 20px;
    }
    .btn svg {
        margin-left: 10px;
    }
    .mainCatalog-btn {
        margin-top: -41px;
    }
    .mainCatalog-wrapper {
        margin-top: 27px;
    }
    .mainCatalog-row {
        margin-top: -16px;
    }
    .mainCatalog-block {
        margin-top: 16px;
    }
    .mainCatalog-item {
        padding: 14px 10px 25.5px;
    }
    .mainCatalog-item__title {
        font-size: 14px;
        line-height: 20px;
        margin-top: 0;
    }
    .mainCatalog-item__text {
        font-size: 14px;
        line-height: 20px;
    }
    .col,
    .col-1,
    .col-10,
    .col-11,
    .col-12,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-auto,
    .col-lg,
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-auto,
    .col-md,
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-auto,
    .col-sm,
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-auto,
    .col-xl,
    .col-xl-1,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-auto {
        padding-right: 8px;
        padding-left: 8px;
    }
    .row {
        margin-left: -8px;
        margin-right: -8px;
    }
    .subtitle {
        font-weight: 400;
    }
    .overflow-box {
        margin-bottom: 60px;
    }
    .steps {
        padding: 30px 0 26px;
    }
    .steps-item {
        padding-left: 14px;
    }
    .steps-item__number {
        font-size: 28px;
        line-height: 39px;
    }
    .steps-item__title {
        font-size: 16px;
        line-height: 140%;
        margin: 10px 0 8px;
    }
    .steps-item__text {
        font-size: 14px;
        line-height: 20px;
    }
    .catalogMenu {
        display: none;
    }
    .main {
        padding-bottom: 60px;
    }
    .main-bg {
        width: calc(50% + 234px);
        height: 250px;
    }
    .main-subtitle {
        font-size: 28px;
        line-height: 39px;
        width: 370px;
    }
    .main-slider {
        margin-top: 60px;
    }
    .main-img {
        height: 260px;
    }
    .mainNews-buttons {
        display: none;
    }
    .mainNews {
        padding-bottom: 60px;
    }
    .mainNews-slider {
        width: auto;
        min-width: auto;
    }
    .mainNews .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .mainNews-btn {
        margin: 30px 0 0 0;
    }
    .mainNews-right {
        margin-top: 57px;
    }
    .mainNews-item__img {
/*        height: 150px;*/
    }
    .mainNews-item__wrapper {
        padding: 14px 13px;
    }
    .mainNews-item__category {
        padding: 5px 9px;
        font-size: 12px;
        line-height: 17px;
    }
    .mainNews-item__title {
        margin: 10px 0 8px;
        font-size: 14px;
        line-height: 20px;
    }
    .mainNews-item__text {
        font-size: 14px;
        line-height: 20px;
    }
    .mainNews-slider {
        padding-bottom: 25px;
        margin-top: -41px;
    }
    .mainNews .slider-pagination {
        bottom: 30px !important;
    }
    .mainNews-item__bottom {
        margin-top: 14px;
    }
    .mainNews::before {
        width: calc(50% + 60px);
        height: 300px;
    }
    .prices {
        margin: 50px 0;
        padding: 40px 0 45px;
        position: relative;
    }
    .prices .container {
        position: static;
    }
    .prices-bg {
        left: 0;
    }
    .prices-bg svg {
        left: -18px;
        bottom: -22px;
    }
    .prices-mb {
        margin-bottom: 45px;
    }
    .prices-buttons {
        display: none;
    }
    .prices-title {
        font-size: 24px;
        line-height: 140%;
        font-weight: 400;
    }
    .prices-btn {
        padding: 10px 12px;
        padding-right: 0;
    }
    .prices-btn__text {
        margin-top: 2px;
    }
    .prices-item {
        padding: 10px;
    }
    .prices-bg {
        height: 100%;
        top: 0;
    }
    .prices-slider {
        padding-bottom: 20px;
    }
    .prices .swiper-pagination,
    .aboutPartners .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        bottom: 0 !important;
    }
    .prices .swiper-pagination-bullet,
    .aboutPartners .swiper-pagination-bullet {
        border-color: #fff !important;
    }
    .prices .swiper-pagination-bullet.swiper-pagination-bullet-active,
    .aboutPartners .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #fff !important;
    }
    .stock {
        padding: 30px 0 60px;
    }
    .stock::before {
        width: calc(50% + 60px);
        height: 250px;
    }
    .stock-tabs {
        margin-bottom: 20px;
    }
    .stock-tabs__item {
        height: 36px;
        margin-right: 12px;
        padding: 0 15px;
        font-size: 14px;
    }
    .stock-btn {
        margin-top: 8px;
    }
    .cardCategorys::before {
        width: calc(50% + 60px);
        height: 280px;
    }
    .mainAbout {
        padding: 0;
    }
    .mainAbout-bg {
        width: calc(50% + 90px);
    }
    .mainAbout-bg__city {
        left: 28px;
        bottom: -1px;
    }
    .mainAbout-bg svg {
        right: 46px;
        left: auto;
        top: 31px;
        width: 172px;
        height: 172px;
    }
    .mainAbout .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        bottom: 0 !important;
        right: 127px;
        left: auto;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .mainAbout-right {
        padding-bottom: 34px;
    }
    .mainAbout-right__text {
        font-size: 14px;
        line-height: 140%;
    }
    .mainAbout-right__text span {
        font-size: 28px;
        line-height: 39px;
    }
    .mainAbout-slider {
        padding-bottom: 34px;
    }
    .mainAbout-buttons {
        display: none;
    }
    .mainAbout-video {
        height: 270px;
    }
    .mainAbout-left {
        width: 490px;
    }
    .mainAbout::before {
        height: 366px;
    }
    .mainAbout-subtitle {
        margin: 8px 0 30px;
        font-weight: 400;
        font-size: 24px;
        line-height: 33px;
    }
    .stock-slider {
        min-width: auto;
        width: auto;
        padding-bottom: 22px;
    }
    .stock .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        left: 0;
        bottom: 0;
    }
    .stock-buttons {
        top: -56px;
    }
    .stock-item__img {
        height: 140px;
    }
    .mobileMenu,
    .mobileCatalog {
        display: block;
    }
    .padding-bottom {
        padding-bottom: 60px;
    }
    .page-title {
        font-size: 28px;
        line-height: 39px;
    }
    .page-top {
        padding-bottom: 14px;
    }
    .category-wrapper {
        padding-top: 30px;
    }
    .pt-40 {
        padding-top: 60px;
    }
    .basket-bottom {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .basket-bottom__price {
        font-size: 16px;
    }
    .basket-block:nth-child(1) {
        width: 30px;
    }
    .basket-block:nth-child(2) {
        width: 130px;
    }
    .basket-block:nth-child(3) {
        margin-left: 16px;
        width: 250px;
    }
    .basket-pt {
        padding-top: 45px;
    }
    .basket-item {
        font-size: 16px;
    }
    .carousel__button.is-close {
        right: 14px;
        top: 14px;
    }
    .popup {
        padding: 50px 24px;
        width: 504px;
    }
    .popup-title {
        font-size: 18px;
    }
    .popup-subtitle {
        font-size: 16px;
        margin-top: 14px;
    }
    .basket-popup__list {
        margin-top: 30px;
    }
    .basket-popup__btn,
    .basket-popup__delete {
        width: 138px;
        height: 44px;
        font-size: 14px;
    }
    .basket-popup__btn {
        margin-top: 16px;
    }
    .manufacturers-gray {
        padding: 24px 0 40px;
    }
    .manufacturers-block {
        margin-top: 16px;
    }
    .manufacturers-item {
        padding: 16px 16px 22px;
    }
    .manufacturers-item__img {
        height: 79px;
        margin-bottom: 10px;
    }
    .manufacturers-subtitle {
        width: 716px;
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 40px;
    }
    .manufacturers-pt {
        padding-top: 40px;
    }
    .pageError-top span,
    .pageError-bottom span {
        width: 100px;
        height: 100px;
    }
    .pageError {
        padding-top: 10px;
    }
    .pageError-wrapper {
        padding: 40px 190px 64px;
    }
    .pageError-subtitle {
        margin: 16px 0;
    }
    .pageError-bottomText {
        margin-top: 60px;
    }
    .pageLink-item {
        padding: 20px 0 22px;
        font-size: 14px;
        line-height: 140%;
    }
    .pageLink-item img {
        margin-bottom: 12px;
    }
    .interesting {
        padding: 60px 0;
    }
    .interesting-title {
        font-size: 24px;
        line-height: 140%;
        margin: 0;
        font-weight: 400;
    }
    .interesting-item {
        margin-bottom: 10px;
    }
    .faq-box {
        margin-top: 16px;
        padding: 20px 16px;
    }
    .faq-box__title {
        font-size: 18px;
        line-height: 140%;
        margin-bottom: 10px;
    }
    .faq-wrapper {
        padding: 14px 0 30px;
    }
    .faq-item__title {
        font-size: 14px;
        line-height: 20px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .faq-item__title span {
        margin-top: 2px;
    }
    .faq-item__text {
        margin-top: -2px;
        padding-bottom: 10px;
        margin-bottom: 0;
        font-size: 14px;
        line-height: 20px;
    }
    .faq-btn {
        width: auto;
        margin-left: 14px;
        height: 45px;
    }
    .faq-top {
        margin: 20px 0;
    }
    .newsArchive {
        margin-top: 0;
    }
    .article-wrapper {
        width: 100%;
    }
    .article-top {
        padding-top: 20px;
    }
    .article {
        padding-bottom: 60px;
    }
    .news .page-searchBox {
        width: calc(100% - 130px);
    }
    .news .header-search {
        width: 100%;
    }
    .news .header-search__input {
        height: 40px;
        font-size: 14px;
    }
    .news .faq-btn {
        height: 40px;
        width: 117px;
    }
    .news-left {
        width: 525px;
    }
    .news-top {
        margin: 26px 0 14px;
    }
    .news {
        padding-bottom: 60px;
    }
    .news-bottomBtn {
        margin: 50px auto 0;
    }
    .news-article__text.double {
        -webkit-line-clamp: 3;
    }
    .news-article__title.double {
        -webkit-line-clamp: 1;
    }
    .news-article__title {
        margin-top: 12px;
    }
    .news-article {
        padding: 15px;
        margin-top: 16px;
    }
    .support-wrapper {
        padding-top: 24px;
        padding-bottom: 16px;
    }
    .support-bold {
        margin-bottom: 16px;
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
        color: #2b2b2c;
    }
    .support-item__link {
        font-size: 12px;
    }
    .support-item {
        padding: 19px 11px 20px;
    }
    .support {
        padding-bottom: 60px;
    }
    .supportForm {
        margin-bottom: 60px;
        padding-bottom: 0;
    }
    .supportForm::before {
        width: calc(50% + 16px);
        height: 280px;
    }
    .supportForm-title {
        font-weight: 400;
        font-size: 24px;
        line-height: 140%;
        margin-bottom: 16px;
    }
    .supportForm-right {
        padding: 0;
    }
    .supportForm-left {
        padding: 30px 60px 30px 0;
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
        color: #ffffff;
        width: 510px;
        min-width: 510px;
        margin-right: 70px;
    }
    .supportForm-right {
        display: block;
    }
    .supportForm-right__block {
        width: 100%;
    }
    .supportForm-right .page-form__input {
        margin-bottom: 16px;
    }
    .supportForm-mb {
        margin-bottom: 16px;
    }
    .supportForm-btn {
        width: 100%;
        margin-top: 20px;
    }
    .manufacturer-top {
        width: 716px;
        padding-top: 30px;
    }
    .manufacturer-text {
        font-size: 18px;
        line-height: 140%;
    }
    .manufacturer-gray {
        margin-top: 40px;
    }
    .manufacturer-item {
        width: calc(50% - 20px);
        font-size: 14px;
        line-height: 140%;
    }
    .manufacturerAbout {
        padding-bottom: 60px;
    }
    .manufacturerAbout-list {
        margin-top: 20px;
    }
    .manufacturerAbout-left {
        width: 580px;
    }
    .manufacturerAbout-item {
        padding: 8px 0;
    }
    .manufacturerAbout-item__number {
        min-width: 49px;
    }
    .manufacturerAbout-item__text {
        font-size: 16px;
        line-height: 22px;
        padding-top: 6px;
        margin-top: 0;
    }
    .manufacturerAbout-right {
        width: 320px;
    }
    .manufacturerCatalog-link {
        margin-top: 12px;
    }
    .manufacturerSlider-right {
        width: 320px;
    }
    .manufacturerSlider-left {
        width: 590px;
    }
    .manufacturerPopular {
        padding-bottom: 40px;
        padding-top: 0;
    }
    .manufacturerPopular-title {
        position: static;
        font-weight: 400;
        font-size: 24px;
        line-height: 140%;
        margin-bottom: 12px;
    }
    .manufacturerPopular-left {
        padding: 30px 50px 46px 0;
        width: 590px;
        font-size: 14px;
        line-height: 140%;
    }
    .manufacturerPopular-right {
        width: 320px;
        font-size: 14px;
        line-height: 140%;
    }
    .manufacturerPopular-right::before {
        top: -30px;
        bottom: -30px;
        left: -100px;
    }
    .manufacturerDocs {
        padding-bottom: 60px;
    }
    .card-left {
        width: 228px;
        min-width: 228px;
        margin-right: 16px;
    }
    .card-text {
        margin-bottom: 10px;
    }
    .card-price__item {
        font-size: 16px;
    }
    .card-btnAdd {
        margin-top: 14px;
    }
    .card-wrapper {
        margin-top: 50px;
        width: 716px;
    }
    .card-tabs {
        margin-bottom: 20px;
    }
    .card-back.btn {
        width: 281px;
    }
    .card {
        padding-bottom: 60px;
    }
    .card-docs {
        margin-right: -16px;
        margin-top: -16px;
    }
    .card-docs__block {
        width: 228px;
        margin-right: 16px;
        margin-top: 16px;
    }
    .card-top {
        padding-top: 20px;
    }
    .card-gray.btn {
        margin: 14px 0 0 0;
    }
    .card-gray.btn b {
        display: none;
    }
    .card-newsBtn.btn {
        width: 280px;
    }
    .contactQuestion-form {
        margin-top: 24px;
    }
    .contactQuestion-form__block:last-child {
        width: 340px;
    }
    .contactQuestion .supportForm-btn {
        width: 228px;
    }
    .contactRequisites {
        padding-bottom: 60px;
    }
    .contactRequisites-left {
        padding: 40px 0 48px;
        width: 530px;
        max-width: 100%;
    }
    .contactRequisites-title {
        font-weight: 400;
        font-size: 24px;
        line-height: 140%;
    }
    .contactRequisites-text {
        margin-top: 14px;
        font-size: 14px;
        line-height: 22px;
    }
    .contactRequisites-text p {
        margin-bottom: 14px;
    }
    .contactRequisites-right {
        padding: 40px 0 50px 66px;
        margin: 0;
        width: 346px;
    }
    .contactRequisites-soc__title {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 140%;
    }
    .contact-item__img {
        width: 344px;
/*        height: 250px;*/
    }
    .contact-item__map {
        width: calc(100% - 360px);
    }
    .contact-item__text {
        font-size: 14px;
        line-height: 140%;
    }
    .contact-item__topText {
        font-size: 18px;
    }
    .contact {
        padding-bottom: 60px;
    }
    .contact-item {
        margin-top: 60px;
    }
    .contact-white__item {
        font-size: 16px;
    }
    .contact-white__itemGray {
        font-size: 13px;
        margin-left: 6px;
    }
    .partnership {
        padding-bottom: 40px;
    }
    .partnership-gray p {
        font-size: 16px;
        line-height: 140%;
    }
    .partnership-flex {
        margin-top: 40px;
    }
    .partnership-right {
        margin-top: 20px;
        width: 420px;
    }
    .partnership-right::before {
        top: -20px;
        left: 30px;
    }
    .partnership-text {
        font-size: 16px;
        line-height: 140%;
    }
    .partnership-left {
        width: 488px;
    }
    .partnership-block:first-child {
        margin-top: 40px;
    }
    .partnershipForm-list {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .partnershipForm-right {
        width: 488px;
    }
    .partnershipForm-left {
        width: 324px;
    }
    .partnershipForm-title {
        margin-bottom: 16px;
        font-size: 24px;
        line-height: 140%;
        font-weight: 400;
    }
    .partnershipForm-slideImg {
        height: 200px;
    }
    .partnershipForm-wrapper {
        width: 360px;
    }
    .vacancies-item__btn {
        width: 138px;
    }
    .vacancies-item__left {
        width: 228px;
        min-width: 228px;
        margin-right: 16px;
    }
    .vacancies-item__img {
        height: 178px;
    }
    .vacancies-item__name {
        font-size: 18px;
    }
    .vacancies-item__hidden {
        height: 35px;
    }
    .vacancies-item__numbers {
        width: 538px;
    }
    .about {
        padding-bottom: 60px;
    }
    .about-wrapper {
        margin-top: 30px;
    }
    .about-item__img {
        width: 630px;
        height: 260px;
    }
    .about-item__right {
        width: 350px;
        margin-left: -40px;
        padding: 30px 22px 38px;
    }
    .about-item__title {
        font-weight: 400;
        font-size: 24px;
        line-height: 140%;
    }
    .about-item__text {
        margin-top: 14px;
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
    }
    .about-pagination {
        right: 374px;
    }
    .aboutGray {
        padding: 40px 0;
    }
    .aboutGray-item {
        width: 554px;
        font-size: 14px;
    }
    .aboutGray-item:last-child {
        width: 312px;
    }
    .aboutCertificate {
        padding: 50px 0;
    }
    .aboutCertificate-slider {
        padding-bottom: 22px;
    }
    .aboutCertificate-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        bottom: 0 !important;
        left: 0;
        right: auto;
    }
    .aboutCertificate-title {
        font-weight: 400;
        font-size: 24px;
        line-height: 140%;
    }
    .aboutCertificate-wrapper {
        margin-top: 20px;
    }
    .aboutPartners {
        padding: 40px 0;
    }
    .aboutPartners-slider {
        padding-bottom: 22px;
    }
    .aboutTeam-item__img {
        width: 100px;
        height: 100px;
    }
    .aboutTeam-item__name {
        margin: 16px 0 6px;
        font-size: 16px;
        line-height: 140%;
    }
    .aboutTeam-item__proff {
        margin-bottom: auto;
    }
    .aboutTeam-slider {
        padding-bottom: 22px;
    }
    .aboutTeam-buttons {
        display: none;
    }
    .aboutTeam-pagination {
        bottom: 0 !important;
        left: 0;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .aboutTeam-text {
        margin-bottom: 24px;
    }
    .aboutGift {
        padding: 30px 0 20px;
    }
    .aboutGift-title {
        font-weight: 400;
        font-size: 24px;
        line-height: 140%;
    }
    .aboutGift-subtitle {
        margin: 16px 0 24px;
    }
    .aboutGift::before {
        width: calc(50% - 8px);
    }
    .aboutGift-btn {
        margin-right: 8px;
        width: 228px;
    }
    .aboutGift-pagination {
        bottom: 0 !important;
        position: absolute;
        left: 0;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .aboutGift-slider {
        padding-bottom: 22px;
    }
    .aboutGiftCertificate {
        padding: 30px 0 60px;
    }
    .aboutGiftCertificate-slider {
        padding-bottom: 22px;
    }
    .aboutGiftCertificate::before {
        width: calc(50% - 8px);
    }
    .aboutGiftCertificate .aboutGift-btn {
        margin-right: 0;
        margin-left: 0;
    }
    .aboutGiftCertificate .aboutGift-btn span {
        display: none;
    }
    .aboutGiftCertificate .aboutGift-btn b {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        font-weight: 400;
    }
    .aboutSteps-left {
        width: 580px;
    }
    .aboutSteps-list {
        margin-top: 20px;
    }
    .aboutSteps-item__text {
        font-size: 16px;
    }
    .aboutSteps-right {
        width: 320px;
    }
    .aboutSteps-img {
        height: 240px;
    }
    .aboutSteps {
        padding-bottom: 60px;
    }
    .aboutHistory-item__title {
        font-size: 18px;
    }
    .aboutHistory-item__center {
        margin-bottom: 16px;
    }
    .aboutHistory-item__center::after {
        right: -18px;
    }
    .aboutHistory {
        padding: 60px 0 50px;
    }
    .aboutHistory-wrapper {
        margin-top: 44px;
    }
    .aboutHistory-title {
        font-weight: 400;
        font-size: 24px;
        line-height: 140%;
    }
    .aboutHistory-buttons {
        top: -77px;
    }
    .aboutHistory-slider {
        padding-bottom: 22px;
    }
    .aboutHistory-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        bottom: 0 !important;
        left: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }
    .lc-box__hidden {
        padding: 14px 14px 0;
    }
    .lc-facesBtn {
        width: 280px;
        margin-top: 20px;
    }
    .catalog-topFilters {
        margin-bottom: -2px;
    }
    .catalog-filterBtn {
        width: 120px;
        height: 44px;
        font-size: 14px;
    }
    .catalog-filterBtn svg {
        margin-right: 4px !important;
    }
    .catalog-toggle__box {
        height: 44px;
        padding-left: 13px;
    }
    .catalog-back {
        height: 44px;
        position: relative;
        z-index: 2;
        font-size: 16px;
        margin-top: -44px;
        bottom: -44px;
        margin-bottom: 0;
    }
    .catalog-back svg {
        margin-right: 4px;
    }
    .catalog-tablet-pt {
        padding-top: 60px;
    }
    .catalog-filters__name {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .catalog-filters__accept {
        font-size: 16px;
    }
    .catalog-filters__accept b {
        display: none;
    }
    .catalog-filters__title {
        font-size: 18px;
        height: 44px;
        margin-top: -60px;
        background: #fff;
        z-index: 2;
        position: relative;
    }
    .page-title {
        font-weight: 400;
    }
    .catalog-item__basket {
        width: 180px;
        padding: 18px;
    }
    .catalog-item {
        padding: 18px;
    }
    .catalog-item__left {
        width: 200px;
        min-width: 200px;
        margin-right: 14px;
    }
    .catalog-item__center {
        width: 350px;
    }
    .catalog-item .stock-item__characteristicsLeft {
        width: 156px;
        margin-right: 12px;
    }
    .catalog-item .stock-item__characteristicsRight {
        width: 210px;
        margin: 0;
    }
    .catalog-item__price,
    .catalog-item__price p,
    .catalog-item__price span {
        white-space: nowrap;
    }
    .catalog-item__price {
        font-size: 16px;
    }
    .catalog-item__old {
        font-size: 14px;
    }
    .catalog-item__basket {
        padding: 17px;
    }
    .catalog-item__basket .stock-item__popupPrice {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .main {
        margin-top: 20px;
    }
    .mobileMenu-nav ul li ul li:first-child {
        border: none !important;
    }
    .overflow-box.steps-mb .mainAbout::before {
        height: 270px;
    }
    .overflow-box.steps-mb .mainAbout {
        padding-top: 40px;
    }
    .popup-form__btn,
    .popup-form__close {
        width: 200px !important;
    }
    .lc-contactFaces-item__darkText {
        font-size: 14px;
    }
    .breadcrumbs {
        border: none;
    }
    .contact .page-title {
        font-size: 24px;
    }
    .newsArchive-title {
        font-size: 24px;
    }
    .article-comments__title {
        font-size: 20px;
    }
    .article-form__title {
        font-size: 22px;
    }
}
@media (min-width: 834px) and (max-width: 1220px) {
    .stock-item__price {
        display: block;
    }
    .stock-item__price span {
        margin: 0;
    }
    .stock-item__popupPrice {
        display: block;
        text-align: right;
    }
    .stock-item__popupText {
        display: none;
    }
    .stock-item__popupPrice {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .stock-item__popupBasket {
        width: 60px;
    }
    .stock-item__popupBasket span {
        display: none;
    }
    .stock-item__popupBasket svg {
        margin: 0;
    }
    .basket-bottom {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .partnershipForm-list {
        align-items: flex-start;
    }
    .partnershipForm-right {
        margin-top: 105px;
    }
    .partnershipForm-img {
        height: 240px;
        object-fit: cover;
        margin-bottom: 66px;
    }
}
@media (max-width: 834px) {
    .pageMainNews::before {
        height: 430px;
        display: block !important;
        width: 100%;
        left: 0;
    }
    .eFiltr .fltr_block {
        width: 100% !important;
    }
    .stock-item__text {
        margin-bottom: 0;
    }
    .stock-item__characteristics {
        margin-bottom: auto;
    }
    .category-nav ul li::before,
    .category-nav ul li::after {
        top: 6px;
        right: 8px;
    }
    .catalog-tablet-pt {
        padding: 0;
        margin: 0;
    }
    .catalog-back {
        margin: 20px 0 24px;
        height: auto;
        position: static;
    }
    .catalog-opens {
        display: none;
    }
    .aboutSteps-left {
        width: 380px;
    }
    .aboutSteps-right {
        width: 280px;
    }
    .aboutSteps-img {
        height: 210px;
    }
    .card-newsBtn.btn {
        margin: 30px 0 0 0;
    }
    .manufacturerSlider-left,
    .manufacturerSlider-right {
        width: calc(50% - 6px);
    }
    .manufacturerAbout-left {
        width: 450px;
    }
    .manufacturerAbout-right {
        width: 220px;
    }
    .stock-item__img {
        height: 170px;
    }
    .mainNews::before {
        display: none;
    }
    .footer-maxw {
        width: 550px;
        margin: 0 auto;
        max-width: 100%;
    }
    .col,
    .col-1,
    .col-10,
    .col-11,
    .col-12,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-auto,
    .col-lg,
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-auto,
    .col-md,
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-auto,
    .col-sm,
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-auto,
    .col-xl,
    .col-xl-1,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-auto {
        padding-right: 6px;
        padding-left: 6px;
    }
    .row {
        margin-left: -6px;
        margin-right: -6px;
    }
    .mainCatalog-row {
        margin-top: -14px;
    }
    .mainCatalog-block {
        margin-top: 14px;
    }
    .footer {
        padding: 50px 0 20px;
    }
    .footer-list {
        display: block;
        margin: 0;
    }
    .footer-block {
        width: 100%;
        padding: 0 !important;
    }
    .footer-block:first-child {
        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;
    }
    .footer-block:nth-child(2) {
        width: 100%;
    }
    .footer-textImg {
        border: none;
        margin-left: 20px;
        padding-left: 12px;
        border-left: 1px solid #fff;
    }
    .footer-textImg img {
        width: 156px;
    }
    .footer-navs {
        margin: 39px auto 19px;
        padding: 0;
    }
    .footer-nav {
        width: 50%;
        padding: 0 6px;
    }
    .footer-end {
        padding: 0;
    }
    .footer-soc {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 20px 0 0;
        border-top: 1px solid #7fa1b8;
    }
    .footer-soc__item {
        margin: 0 10px;
    }
    .footer-links {
        padding: 16px 0;
        border-top: 1px solid #7fa1b8;
        border-bottom: 1px solid #7fa1b8;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer-address {
        text-align: center;
        margin: 16px 0;
    }
    .footer-nav ul li {
        margin-top: 14px;
    }
    .footer .header-contact__item {
        width: 50%;
        margin-top: 6px;
    }
    .page {
        padding-top: 102px;
    }
    .mainCatalog-item {
        padding: 10px;
    }
    .mainCatalog-item__text {
        font-size: 12px;
        line-height: 17px;
        margin-bottom: auto;
    }
    .mainCatalog-item__title {
        margin: 11px 0 3px;
        font-size: 12px;
        line-height: 17px;
    }
    .btn {
        height: 44px;
        width: 212px;
        margin: 0 auto;
    }
    .mainCatalog {
        padding: 10px 0 0;
    }
    .mainCatalog-wrapper {
        padding: 30px 0 50px;
        margin-top: 20px;
    }
    .mainCatalog-btn {
        display: none;
    }
    .mainCatalog-btn.mainCatalog-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 30px;
    }
    .title {
        padding-top: 37px;
        font-size: 12px;
        line-height: 17px;
        padding-left: 13px;
    }
    .subtitle {
        margin-top: 12px;
        font-size: 24px;
        line-height: 140%;
    }
    .overflow-box {
        margin: 0;
    }
    .steps {
        padding: 30px 0 50px;
        background: #fff;
        margin: 0;
    }
    .steps-block {
        margin-top: 14px;
    }
    .steps-row {
        margin-top: -14px;
    }
    .steps-item {
        min-height: 100%;
        padding: 14px 14px 16px;
        background: #f2f2f2;
    }
    .steps-item__number {
        font-size: 24px;
        line-height: 140%;
        font-weight: 400;
    }
    .steps-item__title {
        font-size: 16px;
        line-height: 140%;
        margin: 6px 0;
    }
    .steps-item__text {
        font-size: 14px;
        line-height: 140%;
    }
    .mainNews {
        padding-bottom: 60px;
    }
    .mainNews-right {
        margin-top: 24px;
    }
    .mainNews-slider {
        margin-right: -10px;
        margin-left: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .mainNews-item__img {
/*        height: 180px;*/
    }
    .mainNews-item__title {
        margin: 8px 0;
        font-size: 16px;
        line-height: 140%;
        -webkit-line-clamp: 2;
    }
    .mainNews-item__date {
        font-size: 12px;
        line-height: 17px;
    }
    .mainNews-item__wrapper {
        padding: 15px 13px 13px;
    }
    .prices {
        margin: 0;
        padding: 50px;
    }
    .prices-bg {
        width: 100%;
        height: 100%;
    }
    .prices-bg svg {
        bottom: 10px;
        width: 172px;
        height: 172px;
        left: calc(50% - 86px);
    }
    .prices-title {
        margin: 40px 0 20px;
        text-align: center;
        font-size: 18px;
        line-height: 25px;
    }
    .prices-item {
        height: 60px;
    }
    .prices {
        padding: 50px 0;
    }
    .prices-mb {
        margin: 0;
    }
    .prices-btn {
        display: none;
    }
    .price-mobile {
        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;
    }
    .steps-item::before {
        display: none;
    }
    .stock {
        padding: 50px 0;
    }
    .stock::before {
        width: 100%;
        height: 320px;
    }
    .stock-tabs {
        margin-bottom: 20px;
    }
    .stock-tabs__item {
        margin-right: 8px;
        padding: 0 15px;
        font-size: 14px;
    }
    .stock-btn {
        margin: 30px auto 0;
    }
    .cardCategorys::before {
        width: 100%;
        height: 350px;
    }
    .stock-item__popupBasket {
        width: 140px;
    }
    .mobileMenu,
    .mobileCatalog {
        top: 102px;
        max-height: calc(100vh - 102px);
    }
    .category-wrapper {
        padding-top: 20px;
    }
    .category-nav ul li a {
        padding: 12.5px 0;
        font-size: 16px;
        line-height: 140%;
        border: none;
        padding-right: 40px;
    }
    .category-nav ul li a::before {
        background-image: url("../img/double-arrow-1.svg");
    }
    .category-nav ul li a span {
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
        color: #bac0cc;
        display: inline-flex;
        margin-left: 5px;
    }
    .category-nav ul li {
        border-top: 1px solid #e8e7f3;
        margin: 0;
    }
    .category-nav ul li:last-child {
        border-bottom: 1px solid #e8e7f3;
    }
    .category-links {
        display: none;
        padding: 0;
    }
    .category-links.category-links__mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .category-tabs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .category-order {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        opacity: 0;
        display: none;
    }
    .manufacturers-block {
        margin-top: 12px;
    }
    .manufacturers-gray {
        padding: 28px 0 40px;
    }
    .manufacturers-subtitle {
        margin-bottom: 30px;
    }
    .manufacturers-pt {
        padding-top: 20px !important;
    }
    .category-nav ul li.active ul {
        border: none;
        border-top: 1px solid #e8e7f3;
    }
    .category-nav ul li ul li {
        border: none !important;
    }
    .pageError-wrapper {
        padding: 40px 60px 64px;
    }
    .pageLink-item {
        margin-top: 12px;
    }
    .pageError-bottomText {
        margin: 40px auto 18px;
        width: 600px;
        font-size: 14px;
        line-height: 140%;
        max-width: 100%;
    }
    .pageError-bottomText br {
        display: none;
    }
    .interesting-title {
        margin-bottom: 18px;
        text-align: center;
    }
    .faq-box {
        margin-top: 12px;
        padding: 18px;
    }
    .faq-box__title {
        margin-bottom: 12px;
    }
    .faq-box__toggle {
        margin-top: 12px;
    }
    .faq-item__title {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .faq-top {
        margin: 20px 0 24px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .faq-btn {
        width: auto;
        padding: 0;
        height: 40px;
        font-size: 14px;
        width: 118px;
        margin-left: 12px;
    }
    .faq-btn-right {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .faq-btn-right,
    .faq-btn-left {
        width: 100%;
    }
    .faq-btn-left {
        margin-top: 20px;
        padding: 0;
    }
    .faq-btn-result {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .faq-btn-result__text {
        width: 100%;
        margin-bottom: 4px;
        font-weight: 400;
        font-size: 12px;
        line-height: 140%;
        color: #787a80;
    }
    .faq-btn-result__link {
        height: 36px;
        padding: 0 14px;
        font-size: 14px;
        margin: 0 10px 0 0;
    }
    .faq-btn-result__link svg {
        margin-left: 2px;
    }
    .faq-btn-error {
        margin-top: 10px;
        font-size: 12px;
        line-height: 17px;
    }
    .faq .page-searchBox {
        width: calc(100% - 130px);
    }
    .faq .header-search {
        width: 100%;
    }
    .faq .header-search__input {
        height: 40px;
        font-size: 14px;
    }
    .newsArchive-buttons {
        display: none;
    }
    .newsArchive-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .newsArchive-slider {
        padding-bottom: 30px;
    }
    .newsArchive-title {
        font-size: 24px;
        line-height: 140%;
        font-weight: 400;
    }
    .newsArchive-subtitle {
        margin: 12px auto 30px;
        font-size: 14px;
        line-height: 140%;
        width: 270px;
    }
    .article-title {
        margin: 6px 0 14px;
    }
    .article-dots {
        margin-bottom: 20px;
    }
    .article-imgText {
        margin: 4px 0 30px;
    }
    .content {
        font-size: 14px;
        line-height: 140%;
    }
    .article-liked__link {
        margin-right: 20px;
    }
    .article-liked__link:last-child {
        margin-right: 0;
    }
    .article-comments__item:nth-child(1),
    .article-comments__item:nth-child(2),
    .article-comments__item:nth-child(3) {
        display: none;
    }
    .article-comments__openComments {
        margin-right: 14px;
    }
    .article-comments__itemOpen {
        margin-left: auto;
    }
    .article-comments__items {
        padding-top: 16px;
    }
    .page-form__btn {
        margin: 30px auto 0;
    }
    .article-form__wrapper {
        width: 100%;
        margin-top: 24px;
    }
    .news-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 20px 0 6px;
    }
    .news .faq-right {
        width: 100%;
    }
    .news-left {
        width: 100%;
        margin: 30px 0 0 0;
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .news-bottomBtn {
        margin: 60px auto 0;
        width: 212px;
    }
    .pagination {
        margin-top: 20px;
    }
    .manufacturerCatalog-links {
        margin-bottom: 10px;
    }
    .manufacturerCatalog-link {
        font-size: 12px;
        padding: 0 10px;
    }
    .manufacturerPopular-left {
        padding-right: 20px;
        width: calc(60% - 15px);
    }
    .manufacturerPopular-right {
        width: calc(40% - 15px);
    }
    .manufacturerPopular-title {
        width: 300px;
        max-width: 100%;
    }
    .manufacturerNews-btn {
        margin: 24px auto 0;
    }
    .manufacturerDocs-btn {
        margin: 30px auto 0;
        width: 260px;
    }
    .manufacturerDocs {
        padding-bottom: 40px;
    }
    .card-btnAdd {
        margin: 14px 0 0 0;
    }
    .card-hiddenBasket {
        width: 100%;
        padding: 9px;
    }
    .cardCategorys-item__wrapper {
        min-height: auto;
    }
    .contactQuestion-form__block,
    .contactQuestion-form__block:last-child {
        width: 220px;
    }
    .contactQuestion-form {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .contactQuestion .supportForm-btn {
        margin: 30px 0 0 0;
        width: 100%;
    }
    .contactRequisites-right {
        padding: 40px 0 40px 24px;
    }
    .contactRequisites-soc__item {
        margin-right: 12px;
    }
    .contact-gray {
        padding: 18px 0 30px;
    }
    .contact-gray .col-lg-4 {
        margin-top: 12px;
    }
    .contact-white {
        min-height: none;
        padding: 16px;
    }
    .contact-white__item {
        font-size: 14px;
        line-height: 140%;
        padding: 9px 0;
    }
    .contact-white__item:last-child {
        padding-bottom: 0;
    }
    .partnership-text,
    .partnership-gray p {
        font-size: 14px;
        line-height: 140%;
    }
    .partnership-left {
        width: 330px;
    }
    .partnership-right {
        width: 330px;
    }
    .partnership-flex {
        margin-top: 30px;
    }
    .partnershipForm-right {
        width: 400px;
    }
    .partnershipForm-left {
        width: 270px;
    }
    .partnershipForm-slideImg {
        height: 180px;
    }
    .partnershipForm-wrapper {
        width: 320px;
    }
    .partnershipForm-prev {
        right: calc(100% + 50px);
    }
    .partnershipForm-next {
        right: calc(100% + 10px);
    }
    .vacancies-item__btn {
        width: 138px;
        margin: 0;
        right: 0;
    }
    .vacancies-item__numbers {
        width: 330px;
    }
    .about-item__img {
        width: 390px;
        height: 240px;
    }
    .about-item__right {
        margin-top: 46px;
        padding: 24px 20px;
    }
    .aboutGray-item {
        width: 360px;
    }
    .aboutGray-item:last-child {
        width: 300px;
    }
    .aboutGift-btn {
        margin: 8px 0 0 0;
    }
    .aboutGift-buttons {
        display: none;
    }
    .aboutHistory-buttons {
        display: none;
    }
    .lc-changePassword {
        margin-top: 24px;
    }
    .lc-pass {
        margin: 0 0 0;
    }
    .lc-item__leftGray {
        font-size: 14px;
    }
    .lc-item__leftResult {
        font-size: 14px;
    }
    .lc-item {
        padding: 9px 0;
    }
    .lc-box__top {
        padding: 24px;
    }
    .lc-box__flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .lc-box__block {
        width: 50% !important;
        margin-bottom: 16px;
    }
    .lc-box__toggle {
        position: static;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .lc-box__text {
        font-size: 14px;
        margin-top: 6px;
    }
    .lc-box__gray {
        font-size: 12px;
    }
    .lc-facesBtn {
        width: 225px;
        margin-top: 24px;
    }
    .lc-contactFaces-item.lc-contactFaces-item__small {
        display: none;
    }
    .lc-contactFaces-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        padding: 10px 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .lc-contactFaces-item__block {
        margin: 0;
    }
    .lc-contactFaces-item__block:nth-child(1) {
        width: 100%;
        min-width: auto;
    }
    .lc-contactFaces-item__block:nth-child(4),
    .lc-contactFaces-item__block:nth-child(3) {
        width: 50%;
    }
    .lc-contactFaces-item__block:nth-child(2) {
        width: 50%;
        margin: 10px 0;
    }
    .lc-contactFaces-item__block:nth-child(5) {
        width: 50%;
    }
    .lc-contactFaces__delete {
        position: absolute;
        right: 0;
        top: 11px;
    }
    .catalog-filterBtn {
        width: 120px;
        height: 44px;
        font-size: 14px;
        margin: 0;
    }
    .catalog-filters {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 20;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        margin: 0;
        background: #fff;
        padding: 0;
    }
    .catalog-filters__title {
        margin: 0;
        padding: 15px 18px;
        height: auto;
        font-weight: 400;
        font-size: 24px;
        line-height: 140%;
        position: relative;
    }
    .catalog-filters__title::before {
        content: "";
        position: absolute;
        left: 18px;
        right: 18px;
        height: 1px;
        background: #e8e7f3;
        bottom: 0;
    }
    .catalog-filters__title p {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .catalog-filters__title b {
        display: none;
    }
    .catalog-filters__title small {
        display: block;
        font-weight: 400;
        font-size: 12px;
        line-height: 140%;
        margin-left: 10px;
        color: #787a80;
        margin-top: 5px;
    }
    .catalog-filters__bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0;
        padding: 17px 18px 18px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 21;
        background: #fff;
        border-top: 1px solid #e8e7f3;
    }
    .catalog-filters__close {
        margin-left: auto;
    }
    .catalog-filters__numbers {
        display: none;
    }
    .catalog-filters__wrapper {
        padding: 15px 18px 80px;
        border: none;
    }
    .catalog-filters {
        display: block;
        opacity: 0;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
        visibility: hidden;
        pointer-events: none;
    }
    .catalog-filters.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .catalog-mobile {
        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: space-between;
        padding-top: 10px;
    }
    .catalog-mobile__block {
        width: calc(50% - 7px);
        margin-top: 14px;
    }
    .catalog-desktop {
        display: none;
    }
    .faq-right {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 20px;
    }
    .faq-error {
        font-size: 12px;
    }
    .stock-item__popupPrice,
    .stock-item__popupText {
        font-size: 13px;
    }
    .cardCategorys::before {
        height: 240px;
    }
    .cardCategorys .swiper-pagination {
        display: flex !important;
        bottom: 0;
    }
    .header-logo__mobile {
        display: block;
    }
    .header-logo__desktop {
        display: none;
    }
    .header-logo {
        width: 122px;
    }
}
@media (max-width: 759px) and (min-width: 577px) {
    .catalog .stock-item__popupBasket {
        width: 112px;
    }
    .catalog .stock-item__popupText {
        font-size: 12px;
    }
}
@media (max-width: 759px) {
    .main {
        padding-bottom: 45px;
    }
    .article-comments__title {
        margin-bottom: -2px;
        font-size: 18px;
    }
    .stock-item__popupPrice,
    .stock-item__popupText {
        font-size: 14px;
    }
    .main-bg {
        width: 100%;
        height: 240px;
    }
    .main-bg img {
        width: 519px;
        min-width: 519px;
        height: auto;
        display: block;
    }
    .main-subtitle {
        margin-top: 14px;
        width: 310px;
        font-weight: 400;
        font-size: 24px;
        line-height: 33px;
    }
    .main-slider {
        margin: 40px auto 0;
        width: 450px;
        max-width: 100%;
        padding: 0 0 20px 0;
    }
    .main .swiper-slide {
        padding: 0;
    }
    .main-btn {
        display: none;
        margin: 35px auto 0;
    }
    .main-btn.main-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .main-img {
        height: 220px;
		object-fit: contain;
    }
    .main .swiper-pagination-bullet {
        margin: 0 3px !important;
    }
    .main .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: absolute;
        left: 0;
        bottom: 0;
        padding: 0;
    }
    .mainNews-btn {
        display: none;
    }
    .mainNews-btn.mainNews-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 30px auto 0;
    }
    .overflow-box.steps-mb .mainAbout {
        padding-top: 40px;
    }
    .overflow-box.steps-mb .mainAbout .mainAbout-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .overflow-box.steps-mb .mainAbout .mainAbout-right {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .overflow-box.steps-mb .mainAbout-bg {
        height: 294px;
    }
    .overflow-box.steps-mb .mainAbout .mainAbout-right__text {
        color: #fff;
    }
    .overflow-box.steps-mb .mainAbout .mainAbout-right__text {
        margin: 0 auto;
    }
    .overflow-box.steps-mb .mainAbout .mainAbout-right__text:last-child {
        margin-top: 20px;
        margin-bottom: 40px;
    }
    .mainAbout {
        background-color: #fff;
        padding: 0;
    }
    .mainAbout::before {
        display: none;
    }
    .mainAbout-bg {
        width: 100%;
        height: 190px;
    }
    .mainAbout-bg svg {
        display: none;
    }
    .mainAbout-bg__city {
        left: -20px;
        right: auto;
        bottom: -30px;
    }
    .mainAbout-subtitle {
        margin: 12px 0 26px;
        font-size: 24px;
        line-height: 33px;
        width: 200px;
        max-width: 100%;
    }
    .mainAbout-btn {
        display: none;
    }
    .mainAbout-list {
        display: block;
    }
    .mainAbout-left,
    .mainAbout-right {
        width: 100%;
        padding: 0;
    }
    .mainAbout-left {
        width: 500px;
        max-width: 100%;
        margin: 0 auto;
    }
    .mainAbout-video {
        height: 220px;
    }
    .mainAbout-right {
        padding-top: 10px;
        margin: 0;
    }
    .mainAbout-right__text {
        width: 370px;
        max-width: 100%;
        text-align: center;
        margin: 20px auto 0;
        color: #2b2b2c;
        font-size: 14px;
        line-height: 140%;
    }
    .mainAbout-right__text span {
        font-size: 24px;
        line-height: 140%;
        font-weight: 400;
    }
    .mainAbout .swiper-pagination {
        right: 0;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .catalog-filters__accept {
        width: calc(50% - 6px);
        height: 44px;
        font-size: 14px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .catalog-filters__clear {
        width: calc(50% - 6px);
        height: 44px;
        background: #f2f2f2;
        font-size: 14px;
        color: #2b2b2c;
    }
    .catalog-filters__clear span,
    .catalog-filters__clear svg {
        display: none;
    }
    .no-price {
        font-size: 80%;
    }
    .byn {
        padding-left: 4px;
        position: relative;
        font-size: 100%;
    }
    .nds {
        position: absolute;
        left: 4px;
        top: 100%;
        font-size: 60%;
        line-height: 1;
    }
    .basket-bottom__label {
        position: static;
        width: 161px;
        margin: 0 auto 30px;
    }
    .basket-box__title {
        font-size: 16px;
        line-height: 140%;
    }
    .basket-box__text {
        font-size: 14px;
        line-height: 140%;
        margin: 10px 0 30px;
    }
    .basket-pt {
        padding-top: 4px;
    }
    .basket-top {
        display: none;
    }
    .basket-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .basket-block {
        width: 100%;
        padding-left: 156px;
    }
    .basket-block:nth-child(1) {
        width: 100%;
        margin-left: 0;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        padding: 0;
    }
    .basket-block:nth-child(2) {
        width: 100%;
        padding: 0;
        position: relative;
        z-index: 2;
        margin-bottom: -116px;
    }
    .basket-block:nth-child(3) {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        width: 100%;
        margin: 6px 0 10px;
        padding: 0;
    }
    .basket-block.center {
        text-align: left;
    }
    .basket-delete {
        top: 0;
    }
    .basket-item {
        padding: 16px 0;
        font-size: 16px;
    }
    .basket-item:first-child {
        padding: 0;
    }
    .basket-small {
        font-size: 14px;
    }
    .basket-image {
        width: 136px;
        height: 116px;
        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;
    }
    .basket-image img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }
    .basket-mobile {
        display: block;
    }
    .basket .counter {
        margin: 16px 0;
    }
    .basket-bottom {
        display: block;
        text-align: center;
        margin-top: 24px;
    }
    .basket-bottom__left {
        width: 209px;
        margin: 0 auto 40px;
    }
    .basket-bottom__price {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 16px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }
    .basket-bottom__price p:first-child {
        margin-right: 6px;
    }
    .basket-bottom__btn {
        margin: 0 auto;
    }
    .basket-popup__list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .basket-popup__btn,
    .basket-popup__delete {
        width: 138px;
        height: 44px;
        font-size: 14px;
        margin: 0;
    }
    .basket-popup__btn {
        margin-right: 16px;
    }
    .header {
        background: #004471;
        padding: 0 0 10px;
    }
    .header-top {
        padding: 0;
    }
    .header-contact {
        display: none;
    }
    .header-seachOpen {
        margin-left: auto;
    }
    .header-mobile {
        display: block;
        padding: 10px 0;
        margin-bottom: 7px;
        border-bottom: 1px solid #7fa1b8;
        font-weight: 500;
        font-size: 12px;
        line-height: 17px;
        color: #f2f2f2;
    }
    .header-mobile__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header-mobile__text {
        margin-right: auto;
        white-space: nowrap;
    }
    .header-mobile__link {
        text-decoration: none;
        outline: none;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #f2f2f2;
        white-space: nowrap;
    }
    .header-mobile__link:hover {
        text-decoration: none;
    }
    .header-mobile__link.ml {
        margin-left: 24px;
    }
    .support-wrapper {
        padding: 18px;
        background: #f2f2f2;
        margin-top: 20px;
    }
    .support-box {
        position: static;
        margin: 30px 0 0 0;
    }
    .support-bold {
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
        color: #2b2b2c;
        margin: 0;
    }
    .support-gray {
        height: 33px;
        background: #ffffff;
        border: none;
        padding: 0 14px;
        font-weight: 400;
        font-size: 12px;
        line-height: 140%;
        color: #2b2b2c;
        margin: 8px 0 0 0;
    }
    .support-item {
        margin-top: 14px;
        padding: 19px 37px 25px;
        min-height: auto;
    }
    .support-item__name {
        margin: 22px 0 10px;
        font-size: 14px;
        line-height: 20px;
    }
    .support-item__link {
        font-size: 14px;
    }
    .support-item__link svg {
        margin-right: 6px;
    }
    .support-apps {
        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: space-between;
    }
    .support-apps__title {
        margin: 8px 0 0 0 !important;
        padding-bottom: 4px;
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        width: 100%;
    }
    .support-apps__link {
        width: calc(50% - 5px);
    }
    .page-buttons__item {
        white-space: nowrap;
    }
    .supportForm::before {
        width: calc(50% - 30px);
    }
    .supportForm-left {
        width: 360px;
        min-width: 360px;
        margin-right: 40px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .manufacturerPopular-left,
    .manufacturerPopular-right {
        font-size: 12px;
        line-height: 140%;
    }
    .main-bg img {
        bottom: -26px;
        left: -29px;
    }
    .page {
        padding-top: 99px;
    }
    .header-img {
        display: none;
    }
    .mobileMenu,
    .mobileCatalog {
        top: 99px;
        max-height: calc(100vh - 99px);
    }
    .page-title {
        font-size: 24px;
        line-height: 140%;
    }
    .page-top {
        padding-bottom: 8px;
        display: block;
    }
    .page-buttons {
        display: none;
    }
    .breadcrumbs-list li {
        font-size: 12px;
        line-height: 140%;
    }
    .breadcrumbs-list li::after {
        margin: 0;
    }
    .mainCatalog-item__imgWrapper {
        height: 90px;
    }
    .faq-box {
        margin-top: 20px;
    }
    .article-form__top {
        margin-top: 50px;
        height: auto;
        padding: 20px 0;
        display: block;
    }
    .article-form__title {
        font-weight: 400;
        font-size: 24px;
        line-height: 140%;
        text-align: center;
    }
    .article-form__subtitle {
        height: auto;
        border: none;
        padding: 0;
        margin: 8px 0 0 0;
        font-size: 14px;
        line-height: 140%;
        color: #787a80;
        opacity: 0.7;
        font-weight: 400;
        text-align: center;
        width: 100%;
        display: block;
    }
    .page-form__textarea {
        height: 100px;
    }
    .page-form__placeholder {
        margin-bottom: 6px;
        font-size: 14px;
    }
    .news-list {
        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: space-between;
    }
    .news-article {
        padding: 0;
        border: none;
        width: calc(50% - 12px);
        display: block;
        margin-top: 24px;
    }
    .news-article:first-child {
        margin-top: 24px;
    }
    .news-article__wrapper {
        padding: 14px 13px 13px;
        border: 1px solid #e8e7f3;
        border-top: none;
    }
    .news-list {
        padding: 0;
    }
    .news-article__wrapper {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
    .news-article__img {
        min-width: auto;
        width: 100%;
    }
    .news-article__text {
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
        color: #787a80;
    }
    .news-article__title {
        -webkit-line-clamp: 2 !important;
        margin: 8px 0;
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        color: #2b2b2c;
    }
    .support .news-left {
        margin-top: 0;
    }
    .supportForm {
        margin: 0;
        padding: 0;
    }
    .supportForm::before {
        display: none;
    }
    .supportForm-right {
        padding: 30px 0 60px;
        width: 100%;
        margin: 0;
        position: relative;
    }
    .supportForm-right::before {
        content: "";
        background: #f2f2f2;
        position: absolute;
        bottom: 0;
        left: -18px;
        right: -18px;
        height: calc(100% + 60px);
        z-index: -2;
    }
    .supportForm-btn {
        width: 212px;
        margin: 30px auto 0;
    }
    .supportForm-list {
        display: block;
    }
    .supportForm-left {
        padding: 30px 18px;
        background: #004471;
        font-size: 14px;
        line-height: 20px;
        width: 100%;
        margin: 0;
        min-width: auto;
    }
    .supportForm-left::before {
        display: none;
    }
    .supportForm-title {
        margin-bottom: 20px;
        font-size: 24px;
    }
    .manufacturer-top {
        display: block;
        padding-top: 20px;
        width: 100%;
    }
    .manufacturer-logo {
        width: 156px;
        min-width: 156px;
        margin-bottom: 20px;
    }
    .manufacturer-text {
        font-size: 16px;
        line-height: 140%;
    }
    .manufacturer-gray {
        margin-top: 30px;
        padding: 30px 0;
    }
    .manufacturer-items {
        display: block;
    }
    .manufacturer-item {
        width: 100%;
        font-size: 14px;
        line-height: 140%;
    }
    .manufacturer-item:last-child {
        margin-top: 20px;
    }
    .manufacturerAbout {
        padding-bottom: 50px;
    }
    .manufacturerAbout-list {
        display: block;
        margin-top: 20px;
    }
    .manufacturerAbout-left {
        width: 100%;
    }
    .manufacturerAbout-item {
        padding: 10px 0;
    }
    .manufacturerAbout-item__number {
        min-width: 38px;
        font-size: 18px;
        line-height: 140%;
    }
    .manufacturerAbout-item__text {
        padding-top: 3px;
        margin-top: 0;
        font-size: 14px;
        line-height: 140%;
    }
    .manufacturerAbout-right {
        width: 400px;
        max-width: 100%;
        margin: 30px auto 0;
    }
    .scroll-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    /* .manufacturerCatalog-links {
        overflow: hidden;
        overflow-x: scroll;
    } */
    .manufacturerCatalog .scroll-right {
        margin-top: 10px;
    }
    .card-top {
        display: block;
    }
    .card-left {
        width: 400px;
        max-width: 100%;
        margin: 0 auto;
        min-width: auto;
    }
    .card-right {
        width: 100%;
        margin: 20px 0 0 0;
    }
    .card-gray.btn {
        margin: 20px 0 0 0;
    }
    .card-price {
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
    }
    .card-price__old {
        margin-left: 6px;
        font-size: 14px;
        line-height: 140%;
        -webkit-text-decoration-line: line-through;
        text-decoration-line: line-through;
        color: #787a80;
    }
    .card-text {
        margin-bottom: 20px;
    }
    .card-characteristics__item {
        padding: 11px 0;
    }
    .card-characteristics__left {
        width: 114px;
        margin-right: 14px;
        min-width: 114px;
    }
    .card-docs__block {
        margin-right: 0;
        width: calc(50% - 8px);
    }
    .card-docs {
        margin-right: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .contactQuestion-form__block,
    .contactQuestion-form__block:last-child {
        width: 100%;
        margin: 0;
    }
    .contactQuestion-form {
        display: block;
    }
    .contactQuestion .supportForm-btn {
        margin: 30px auto 0;
        width: 228px;
    }
    .contactQuestion .page-form__warning {
        display: none;
    }
    .contactQuestion .page-form__warning.mobile {
        display: block;
    }
    .contactRequisites {
        padding-bottom: 0;
    }
    .contactRequisites-list {
        display: block;
    }
    .contactRequisites-right {
        padding: 40px 18px 50px;
        width: 100%;
    }
    .contactRequisites-right::before {
        width: 100%;
    }
    .contactRequisites-soc {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .contactRequisites-soc__title {
        font-size: 24px;
        line-height: 140%;
        text-align: center;
        margin-bottom: 30px;
    }
    .contactRequisites-soc__item {
        margin: 0 9px;
    }
    .contactRequisites-title {
        font-size: 24px;
        line-height: 140%;
        margin-bottom: 20px;
    }
    .contactRequisites-left {
        padding: 45px 0 50px;
    }
    .contactRequisites-left::before {
        content: "";
        left: -18px;
        right: -18px;
        width: auto;
        top: 0;
        height: calc(100% + 95px);
    }
    .contactRequisites-text {
        font-size: 14px;
        line-height: 140%;
    }
    .contactRequisites-text p {
        margin-bottom: 12px;
    }
    .contact-item__bottom {
        display: block;
    }
    .contact-item__map {
        height: 250px;
        width: 100%;
    }
    .contact-item__img {
/*        width: 350px;*/
    width: auto;
        max-width: 100%;
        margin: 12px auto 0;
/*        height: 200px;*/
    }
    .contact-item__text {
        margin: 14px 0 20px;
    }
    .partnership {
        padding-bottom: 78px;
    }
    .partnership-gray p {
        text-align: left;
    }
    .partnership-flex {
        display: block;
    }
    .partnership-left {
        width: 100%;
    }
    .partnership-right {
        width: 400px;
        max-width: 100%;
        height: 250px;
    }
    .partnership-right img {
        height: 100%;
    }
    .partnership-right::before {
        top: 18px;
        left: 56px;
    }
    .partnership-block:first-child {
        margin-top: 30px;
    }
    .partnership-block {
        font-size: 14px;
    }
    .partnershipForm {
        padding-top: 50px;
    }
    .partnershipForm-right {
        display: none;
    }
    .partnershipForm-left {
        width: 100%;
    }
    .partnershipForm-title {
        font-size: 24px;
        line-height: 140%;
        margin-bottom: 30px;
    }
    .partnershipForm-left .supportForm-btn {
        width: 212px;
        margin: 30px auto 0;
    }
    .vacancies-list {
        padding-top: 6px;
        margin: 0;
    }
    .vacancies-item {
        display: block;
        padding: 24px 0 23px;
    }
    .vacancies-item__left {
        width: 100%;
        margin: 0 auto 14px;
        min-width: auto;
    }
    .vacancies-item__img {
        width: 400px;
        max-width: 100%;
        margin: 0 auto;
        height: 200px;
    }
    .vacancies-item__top {
        display: block;
    }
    .vacancies-item__gray {
        margin: 4px 0 10px;
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
        color: #787a80;
    }
    .vacancies-item__hidden {
        height: 0;
    }
    .vacancies-item__text {
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
        color: #2b2b2c;
        margin: 0;
    }
    .vacancies-item__bold {
        margin: 10px 0 4px;
        font-size: 16px;
        line-height: 140%;
    }
    .vacancies-item__btn.btn {
        position: static;
        margin: 14px 0 0 0;
        width: 212px;
    }
    .vacancies-item__numbers {
        width: 100%;
    }
    .about {
        padding-bottom: 50px;
    }
    .about-wrapper {
        margin-top: 30px;
    }
    .about-buttons {
        display: none;
    }
    .about-slider {
        padding-bottom: 28px;
    }
    .about-pagination {
        right: 0;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .about-item {
        display: block;
    }
    .about-item__img {
        width: 400px;
        max-width: 100%;
        margin: 0 auto;
        height: 250px;
        margin-bottom: -30px;
    }
    .about-item__right {
        background: transparent;
        background-image: none;
        padding: 0;
        width: 100%;
        margin: 0;
        position: relative;
        z-index: 2;
    }
    .about-item__title {
        padding: 30px 14px;
        background-image: url("../img/city-2.svg");
        background-repeat: no-repeat;
        background-position: center bottom;
        background-color: #004471;
        font-size: 24px;
        line-height: 140%;
        text-align: center;
    }
    .about-item__text {
        padding: 0 14px;
        margin-top: 25px;
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
        text-align: center;
        color: #2b2b2c;
    }
    .aboutGray {
        padding: 50px 0;
    }
    .aboutGray-list {
        display: block;
    }
    .aboutGray-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .aboutGray-item:last-child {
        width: 100%;
        margin: 0;
    }
    .aboutCertificate::before {
        height: 190px;
    }
    .aboutSteps-left {
        width: 100%;
    }
    .aboutSteps-right {
        display: none;
    }
    .aboutSteps-list {
        margin-top: 16px;
    }
    .aboutSteps-item {
        padding: 9px 0;
    }
    .aboutSteps-item__number {
        width: 38px;
        min-width: 38px;
        font-size: 18px;
        line-height: 140%;
    }
    .aboutSteps-item__text {
        font-size: 14px;
        line-height: 20px;
        margin-top: 3px;
    }
    .lc-changePassword__forgout,
    .lc-changePassword__form {
        width: 100%;
    }
    .lc-changePassword__title {
        font-size: 14px;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .popup-form__btn,
    .popup-form__close {
        width: calc(50% - 10px);
    }
    .lc-items {
        display: block;
    }
    .lc-block {
        width: 100%;
        padding: 0 !important;
        border: none !important;
    }
    .page-popup__btn {
        margin-top: 20px !important;
        font-size: 14px !important;
    }
    .main {
        margin-top: 10px;
    }
    .footer-address br {
        display: none;
    }
    .stock-item__flex {
        margin-top: 20px;
    }
    .card-characteristics__item:last-child {
        border-bottom: none;
    }
    .footer-logo {
        width: 100%;
    }
    .footer-logo img {
        width: auto;
        margin: 0 auto;
    }
    .footer-logo__mobile {
        display: block;
    }
    .footer-logo__desktop {
        display: none;
    }
}
@media (max-width: 576px) {
    .lc-contactFaces-item__block:nth-child(4),
    .lc-contactFaces-item__block:nth-child(3) {
        width: 100%;
    }
    .article-form__title {
        font-size: 22px;
    }
    .lc-contactFaces-item__block:nth-child(2) {
        width: 100%;
        margin: 10px 0;
    }
    .lc-contactFaces-item__block:nth-child(5) {
        width: 100%;
    }
    .lc-contactFaces-item__block:nth-child(4) {
        margin: 10px 0;
    }
    .catalog-mobile__block {
        width: 100%;
    }
    .page-popup__radios {
        width: 100%;
        position: static;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .page-popup__radio {
        font-size: 12px;
    }
    .lc .scroll-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .lc .stock-tabs {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }
    .lc-box__top {
        padding: 16px;
    }
    .aboutCertificate {
        padding: 50px 0 60px;
    }
    .aboutCertificate-slider {
        padding-bottom: 20px;
    }
    .aboutCertificate-wrapper {
        margin-top: 20px;
    }
    .aboutCertificate-buttons {
        display: none;
    }
    .card-docs {
        margin-top: -14px;
    }
    .card-docs__block {
        margin-top: 0;
        width: 100%;
    }
    .manufacturerCatalog-wrapper {
        margin: 0 -18px;
        padding-left: 18px;
    }
    .manufacturer-gray {
        margin: 30px -18px 0;
        padding: 30px 18px;
    }
    .stock-slider {
        width: 360px;
        max-width: 100%;
        margin: 0 auto;
    }
    .support-apps__link {
        width: 100%;
    }
    .stock-buttons {
        display: none;
    }
    .mainNews-right {
        margin-left: auto;
        margin-right: auto;
        width: 380px;
        max-width: 100%;
    }
    .container {
        padding-right: 18px;
        padding-left: 18px;
    }
    .footer-navs {
        margin-left: -6px;
        margin-right: -6px;
        width: auto;
    }
    .footer-block:first-child {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .prices-slider {
        width: 504px;
        position: static;
    }
    .prices-relative {
        position: relative;
    }
    .stock-item__flex {
        margin-top: 18px;
    }
    .stock-item__price span {
        margin-left: 10px;
    }
    .mobileMenu,
    .mobileCatalog {
        width: 100%;
        max-height: auto;
        height: calc(100vh - 99px);
    }
    .mobileMenu-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .mobileMenu {
        padding: 20px 17px 17px;
    }
    .mobileCatalog-nav > ul {
        width: calc(33.3333333333% - 24px);
    }
    .mobileCatalog-container {
        padding: 23px 17px;
    }
    .mobileCatalog-nav .level-2,
    .mobileCatalog-nav .level-3,
    .mobileCatalog-nav .level-4 {
        padding: 70px 18px 24px;
    }
    .mobileCatalog-nav .level-2 .start-title,
    .mobileCatalog-nav .level-2 .start-center,
    .mobileCatalog-nav .level-2 .start-end,
    .mobileCatalog-nav .level-3 .start-title,
    .mobileCatalog-nav .level-3 .start-center,
    .mobileCatalog-nav .level-3 .start-end,
    .mobileCatalog-nav .level-4 .start-title,
    .mobileCatalog-nav .level-4 .start-center,
    .mobileCatalog-nav .level-4 .start-end {
        margin: 0;
        left: 18px;
        top: 24px;
    }
    .mobileCatalog-nav .level-4 {
        padding: 0 0 0 30px !important;
    }
    .basket-popup__list {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .basket-popup__btn,
    .basket-popup__delete {
        width: calc(50% - 6px);
    }
    .popup {
        width: 100%;
        padding: 50px 18px;
    }
    .popup-title {
        font-size: 18px;
    }
    .popup-subtitle {
        margin-top: 14px;
        font-size: 14px;
        line-height: 20px;
    }
    .manufacturers-item {
        padding: 0 0 10px;
        font-size: 14px;
        line-height: 20px;
    }
    .manufacturers-item__img {
        width: 100%;
        height: 76px;
        padding: 8px;
        margin-bottom: 0;
    }
    .pageError-text {
        display: none;
    }
    .pageError-top {
        top: 18px;
        width: calc(100% - 36px);
        left: 18px;
    }
    .pageError-top span {
        width: 40px;
        height: 40px;
    }
    .pageError-bottom {
        bottom: 18px;
        width: calc(100% - 36px);
        left: 18px;
    }
    .pageError-bottom span {
        width: 40px;
        height: 40px;
    }
    .pageError-wrapper {
        padding: 70px 18px 68px;
    }
    .pageError-svg {
        top: 22px;
        right: 26px;
    }
    .pageError-svg svg {
        display: block;
        width: 24px;
        height: 24px;
    }
    .pageError-rec {
        left: 28px;
        top: 34px;
        font-size: 14px;
        line-height: 140%;
    }
    .pageError-rec b {
        margin-right: 6px;
        width: 8px;
        height: 8px;
        min-width: 8px;
    }
    .pageError-title {
        font-size: 36px;
        line-height: 140%;
    }
    .pageError-subtitle {
        margin: 12px auto 0;
        font-size: 18px;
        line-height: 140%;
        width: 288px;
        max-width: 100%;
    }
    .pageLink-item img {
        margin-bottom: 10px;
    }
    .pageLink-item {
        padding: 24px 0 20px;
    }
    .pagination {
        margin-top: 20px;
    }
    .pagination-link {
        margin: 0 6px;
    }
    .pagination-link.pagination-link__prev {
        margin-right: 29px;
    }
    .pagination-link.pagination-link__next {
        margin-left: 29px;
    }
    .news-list {
        display: block;
    }
    .news-article {
        width: 380px;
        margin: 24px auto 0;
        max-width: 100%;
    }
    .news-article__img {
        position: relative;
        height: auto;
        padding-top: 55.5%;
    }
    .news-article__img img {
        position: absolute;
        left: 0;
        top: 0;
    }
    .support-wrapper {
        margin-left: -18px;
        margin-right: -18px;
    }
    .stock-tabs__item {
        white-space: nowrap;
    }
    .news-left {
        margin-right: -18px;
        width: auto;
        max-width: none;
        margin-left: 0;
        width: calc(100% + 18px);
    }
    .stock-tabs {
        overflow-x: scroll;
        width: 100%;
        padding-bottom: 15px;
        margin-bottom: 5px;
    }
    .scroll-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .manufacturerSlider-list {
        display: none;
    }
    .manufacturerSlider-slider {
        display: block;
    }
    .manufacturerSlider-video {
        min-height: 0;
        height: 250px;
    }
    .manufacturerSlider-doc {
        height: 250px;
        width: 100%;
    }
    .manufacturerSlider-doc img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .manufacturerPopular {
        padding-bottom: 0;
        padding-top: 0;
    }
    .manufacturerPopular-title {
        width: 325px;
        font-weight: 400;
        font-size: 24px;
        line-height: 140%;
    }
    .manufacturerPopular-list {
        display: block;
    }
    .manufacturerPopular-left {
        width: 100%;
        padding: 30px 18px;
        background: #004471;
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
    }
    .manufacturerPopular-left::before {
        display: none;
    }
    .manufacturerPopular-right {
        margin: 30px auto 0;
        font-size: 14px;
        line-height: 140%;
        padding-bottom: 30px;
        width: 100%;
    }
    .manufacturerPopular-right::before {
        left: -18px;
        right: -18px;
        top: -80px;
        bottom: 0;
        width: auto;
        height: auto;
    }
    .manufacturerNews-wrapper {
        display: none;
    }
    .manufacturerNews-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 auto;
    }
    .manufacturerNews {
        padding-bottom: 60px;
    }
    .stock-tabs {
        margin-left: -10px !important;
        width: calc(100% + 18px);
        max-width: none;
    }
    .card .scroll-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .card-tabs {
        overflow-x: scroll;
    }
    .card-hiddenBasket {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .card-hiddenBasket__prices {
        width: 100%;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 10px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .card-hiddenBasket__prices::before {
        content: "Количество, шт";
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
        color: #787a80;
    }
    .card-hiddenBasket__pricesOld {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .card-hiddenBasket__pricesItem {
        margin: 0 8px 0 auto;
    }
    .card-hiddenBasket .card-btnAdd.btn {
        width: 144px;
    }
    .card-hiddenBasket .card-btnAdd.btn span {
        width: 66px;
        overflow: hidden;
        white-space: nowrap;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .card-hiddenBasket .card-btnAdd.btn svg {
        margin-left: 0;
        margin-right: 10px;
    }
    .card-newsBtn.btn {
        margin-top: 20px;
        width: 212px;
        font-size: 14px;
    }
    .cardCategorys .stock-slider {
        padding-bottom: 20px;
    }
    .cardCategorys .slider-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        bottom: 0;
    }
    .about-wrapper {
        margin: 30px -18px 0;
    }
    .about-item__img {
        width: 100%;
    }
    .about-item__right {
        padding: 0 18px;
    }
    .aboutPartners {
        padding: 40px 0 50px;
    }
    .aboutPartners-wrapper {
        margin-top: 20px;
    }
    .aboutTeam-item__img {
        width: 120px;
        height: 120px;
    }
    .aboutTeam-item__name {
        margin: 15px 0 6px;
        font-size: 18px;
        line-height: 140%;
    }
    .aboutTeam-item {
        padding: 0 0 24px;
    }
    .aboutTeam-item__proff {
        margin-bottom: auto;
        font-size: 14px;
        line-height: 140%;
    }
    .aboutTeam-text {
        margin: 6px 0 30px;
        font-size: 14px;
        line-height: 140%;
        text-align: left;
    }
    .aboutTeam .scroll-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .aboutTeam .stock-tabs {
        overflow-x: scroll;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .aboutGift {
        padding: 40px 0 60px;
    }
    .aboutGift::before {
        width: calc(100% - 75px);
    }
    .aboutGift-btn {
        margin: 30px auto 0 !important;
        width: 212px;
    }
    .aboutGift-btn b {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        font-weight: 400;
    }
    .aboutGift-btn span {
        display: none;
    }
    .aboutGift-title {
        font-weight: 400;
        font-size: 24px;
    }
    .aboutGift-text {
        margin: 10px 0 30px;
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
    }
    .aboutGiftCertificate {
        padding: 40px 0 60px;
    }
    .aboutGiftCertificate::before {
        width: calc(100% - 75px);
        line-height: 140%;
    }
    .aboutHistory {
        padding: 50px 0 60px;
    }
    .aboutHistory-wrapper {
        margin-top: 30px;
    }
    .aboutHistory-item__center {
        margin: 20px 0 14px;
    }
    .aboutHistory-item__center::after {
        display: none;
    }
    .aboutHistory-item__text {
        font-size: 14px;
    }
    .lc-item {
        display: block;
    }
    .lc-item__right {
        margin-top: 8px;
    }
    .lc-changePassword {
        margin-top: 20px;
    }
    .lc-pass {
        margin: 0 auto 0;
    }
    .lc-item__rightText {
        margin-left: auto;
    }
    .catalog-toggle {
        width: calc(100% - 120px - 14px);
    }
    .catalog-toggle__box p span,
    .catalog-toggle__item span {
        display: none;
    }
    .page-popup__line {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .popup-form__btn,
    .popup-form__close {
        width: 100% !important;
        margin-top: 15px;
    }
    .popup-form__flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: -15px;
    }
    .popup-form__close {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .faq-result {
        display: block;
    }
    .faq-result__link {
        margin-top: 4px;
        margin-right: 4px;
        margin-left: 0;
        margin-bottom: 0;
    }
    .faq-right {
        width: 100%;
    }
    .mainAbout-subtitle,
    .subtitle,
    .main-subtitle,
    .mainAbout-right__text span,
    .page-title {
        font-size: 22px;
    }
    .aboutHistory-title,
    .aboutGift-title,
    .aboutCertificate-title {
        font-size: 22px;
    }
    .contact .page-title {
        font-size: 22px;
    }
    .faq-box {
        margin-left: -18px;
        margin-right: -18px;
        border: none;
    }
    .prices-slider {
        width: 100%;
    }
    .newsArchive-title {
        font-size: 20px;
    }
}
@media (max-width: 400px) {
    .stock-tabs__item span {
        display: none;
    }
    .stock-tabs__item small {
        display: block;
        font-size: 14px;
    }
    .mainCatalog-item__imgWrapper {
        width: calc(100% + 20px);
        margin: 0 -10px;
    }
}
@media (max-width: 370px) {
    .header-mobile__text {
        margin: 0;
    }
    .header-mobile__link {
        margin: 0 auto;
    }
    .header-mobile__link.ml {
        margin: 0;
    }
    .header-cart {
        padding: 0 14px;
        margin: 0 14px;
    }
    .stock-tabs {
        margin-right: -8px;
    }
    .stock-tabs__item {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        font-size: 13px;
    }
    .stock-tabs__item small {
        font-size: 13px;
    }
    .mobileMenu-bottom .header-contact__item a {
        font-size: 10px;
    }
    .basket-mobile {
        font-size: 12px;
    }
    .pageLink-item {
        font-size: 13px;
    }
    /*.faq-right {
    display: block;
  }
  .faq .page-searchBox, .news .page-searchBox {
    width: 100%;
  }
  .faq-btn, .news .faq-btn {
    width: 100%;
    margin: 12px 0 0 0;
  }*/
    .faq-btn,
    .news .faq-btn {
        margin-left: 10px;
        width: 110px;
    }
    .faq .page-searchBox,
    .news .page-searchBox {
        width: calc(100% - 120px);
    }
    .article-form__title {
        font-size: 20px;
    }
    .faq .header-search__svg svg,
    .news .header-search__svg svg,
    .faq .header-search__svg,
    .news .header-search__svg {
        width: 18px;
        height: 18px;
    }
    .faq .header-search__btn,
    .news .header-search__btn {
        left: 6px;
    }
    .faq .header-search__audio,
    .news .header-search__audio {
        right: 6px;
    }
    .faq .header-search__input,
    .news .header-search__input {
        padding-left: 26px;
        font-size: 13px;
    }
    .support-item {
        padding-left: 14px;
        padding-right: 14px;
    }
    .cardCategorys .mainCatalog-item__text {
        font-size: 10px;
    }
    .contactRequisites-soc__item {
        margin: 0 5px;
    }
    .contactRequisites-soc__title {
        font-size: 20px;
    }
    .catalog-toggle__item {
        font-size: 12px;
    }
    .catalog-toggle__wrapper {
        padding: 12px 10px;
    }
    .catalog-toggle__box {
        font-size: 12px;
    }
    .catalog-toggle__box svg {
        right: 8px;
    }
    .catalog-toggle__box p {
        width: calc(100% - 30px);
    }
    .page-popup__radios {
        width: auto;
        margin-left: -10px;
        margin-right: -10px;
    }
}
@media (max-width: 834px) and (min-width: 760px) {
    .pageError-bottomText {
        width: 478px;
    }
    .col,
    .col-1,
    .col-10,
    .col-11,
    .col-12,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-auto,
    .col-lg,
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-auto,
    .col-md,
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-auto,
    .col-sm,
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-auto,
    .col-xl,
    .col-xl-1,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-auto {
        padding-left: 8px;
        padding-right: 8px;
    }
    .faq-box {
        margin-top: 16px;
    }
    .faq-box__title {
        margin-bottom: 10px;
    }
    .faq-box {
        padding: 20px 16px;
    }
    .footer-soc {
        display: none;
    }
    .footer-tabletSoc {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .footer-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .footer-block:nth-child(2) {
        width: calc(100% - 244px);
    }
    .footer-block:nth-child(1) {
        width: 244px;
        display: block;
    }
    .footer-textImg {
        margin: 17px 0 0 0;
        border: none;
        padding: 8px 0 0 0;
        position: relative;
    }
    .footer-textImg::before {
        content: "";
        width: 144px;
        height: 1px;
        background: #fff;
        position: absolute;
        left: 0;
        top: 0;
    }
    .footer-soc__item {
        margin: 0 12px 0 0;
    }
    .footer-soc__item:last-child {
        margin-right: 0;
    }
    .footer-tabletSoc {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        border: none;
        margin: 73px 0 0 0;
    }
    .footer-nav ul li {
        margin-top: 8px;
    }
    .footer-links {
        border: none;
        padding: 0;
    }
    .footer-end {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .footer-links {
        margin: 0;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
    .footer-address {
        width: 244px;
        min-width: 244px;
        margin: 0;
        padding: 0;
        text-align: left;
    }
    .footer-block:nth-child(3) {
        padding-top: 24px !important;
        margin-top: 24px;
        position: relative;
    }
    .footer-block:nth-child(3)::before {
        content: "";
        position: absolute;
        left: -500%;
        width: 1500%;
        top: 0;
        background: #7fa1b8;
        height: 1px;
        display: block;
        opacity: 0.3;
    }
    .footer-navs {
        margin: 10px 0 0 0;
    }
    .footer {
        padding: 30px 0;
    }
    .header-img {
        display: none;
    }
    .header-logo {
        margin-right: 0;
    }
    .header-contact {
        margin-right: 36px;
    }
    .supportForm-list {
        display: block;
    }
    .supportForm-left {
        width: 100%;
    }
    .supportForm-right {
        width: 324px;
        margin-top: 24px;
    }
    .supportForm-left::before {
        width: auto;
        left: 0;
        right: 0;
    }
    .supportForm-left {
        padding: 30px 20px;
    }
    .supportForm::before {
        width: 100%;
        height: 280px;
        top: 210px;
    }
    .support-apps {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .support-apps__title {
        width: 100%;
    }
    .support .support-apps__title {
        margin-bottom: 0;
    }
    .support-box {
        position: static;
        margin: 30px 0 0 0;
    }
    .support-apps__link {
        min-width: 230px;
        margin-right: 16px;
        margin-top: 20px;
    }
    .page-buttons__item {
        white-space: nowrap;
    }
    .contactRequisites-right {
        padding: 20px;
        padding-right: 0;
    }
    .contactQuestion-form__block {
        width: 324px;
    }
    .contactQuestion-form__block:last-child {
        width: 100%;
        margin: 16px 0 0 0;
    }
    .contactQuestion .supportForm-btn {
        width: 230px;
    }
    .contact-item__img {
        width: 230px;
/*        height: 200px;*/
    }
    .contact-item__map {
        width: calc(100% - 246px);
    }
    .contact-white__items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 16px 0 0 0;
    }
    .contact-white__item {
        border: none;
        width: calc(33.3333333333% - 16px);
        margin: 0;
        padding: 0;
        margin-right: 16px;
        border-right: 1px solid #bac0cc;
        display: block;
    }
    .contact-white__itemLine {
        display: none;
    }
    .contact-white__itemGray {
        display: inline-block;
        margin: 0 0 0 6px;
    }
    .contact-white__itemText {
        display: inline-block;
        width: auto;
    }
    .contact-white__itemFirst {
        display: block;
        width: 100%;
        margin-bottom: 8px;
    }
    .contact-white__itemLink {
        width: 100%;
    }
    .contact-white__itemLink + .contact-white__itemGray {
        margin: 8px 0 0 0;
    }
    .contact-white__item:last-child {
        border: none;
        margin-right: 0;
    }
    .contactQuestion .page-form__warning {
        display: none;
    }
    .contactQuestion .page-form__warning.mobile {
        display: block;
    }
    .manufacturerSlider-left {
        width: 476px;
    }
    .manufacturerSlider-right {
        width: 230px;
    }
    .container {
        max-width: 742px;
    }
    .manufacturerAbout-right {
        width: 230px;
    }
    .manufacturerDocs .support-item {
        margin-top: 20px;
    }
    .manufacturerPopular-left {
        width: 100%;
        padding: 30px 20px;
    }
    .manufacturerPopular-left::before {
        width: auto;
        left: 0;
        right: 0;
    }
    .manufacturerPopular-list {
        display: block;
    }
    .manufacturerPopular-right {
        margin: 30px 0 0 0;
        width: 100%;
        padding-bottom: 30px;
    }
    .manufacturerPopular-right::before {
        bottom: 0;
        top: -60px;
        height: auto;
    }
    .stock-item__price {
        display: block;
    }
    .stock-item__price span {
        margin: 0;
    }
    .stock-item__popupPrice {
        display: block;
    }
    .stock-item__popupPrice span {
        margin: 0;
    }
    .stock-item__popupBasket {
        width: 90px;
    }
    .stock-item__popupBasket svg {
        display: none;
    }
    .manufacturers-item {
        padding: 16px;
    }
    .manufacturers-item {
        font-size: 16px;
    }
    .manufacturers-block {
        margin-top: 16px;
    }
    .news-article__img {
/*        width: 160px;*/
/*        min-width: 160px;*/
        height: 150px;
    }
    .news-article__text {
        -webkit-line-clamp: 2;
    }
    .news-article__title {
        margin: 6px 0;
    }
    .mainNews-item__bottom {
        margin-top: 6px;
    }
    .mainNews-item__category {
        display: none;
    }
    .mainNews-item__date {
        margin: 0;
    }
    .news .header-search {
        width: 259px;
        margin-left: auto;
    }
    .newsArchive-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .newsArchive-subtitle {
        width: 100%;
    }
    .vacancies-item__left {
        width: 160px;
        min-width: 160px;
    }
    .vacancies-item__img {
        height: 130px;
    }
    .vacancies-item {
        padding: 18px 0;
    }
    .vacancies-list {
        padding-top: 14px;
    }
    .partnership-text,
    .partnership-gray p {
        font-size: 16px;
    }
    .partnership-left {
        width: 476px;
    }
    .partnership-right {
        width: 230px;
    }
    .partnership-right img {
        height: 220px;
    }
    .partnershipForm-left {
        width: 324px;
    }
    .partnershipForm-right {
        width: 360px;
    }
    .partnershipForm-img {
        -o-object-fit: cover;
        object-fit: cover;
        margin-bottom: 30px;
        height: 280px;
    }
    .partnershipForm-slideImg {
        height: 200px;
    }
    .partnershipForm-wrapper {
        width: 230px;
    }
    .basket-block {
        width: 160px;
    }
    .basket-block:nth-child(2) {
        width: 90px;
    }
    .basket-item {
        font-size: 14px;
    }
    .basket-block:nth-child(3) {
        width: 200px;
    }
    .basket-block:nth-child(1) {
        width: 26px;
    }
    .basket-gray {
        font-size: 13px;
    }
    .basket-bottom {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .basket-bottom__left.btn {
        margin: 0;
    }
    .mainAbout-video {
        height: 294px;
    }
    .card-characteristics__left {
        width: 230px;
        margin-right: 16px;
    }
    .cardCategorys .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        bottom: 0;
    }
    .catalog-desktop {
        display: block;
    }
    .catalog-mobile {
        display: none;
    }
    .catalog .catalog-opens {
        display: block;
    }
    .catalog .catalog-opens .category-nav {
        display: none;
    }
    .catalog .category-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .catalog .category-links__item {
        margin-bottom: 24px;
    }
    .catalog-filters__labels {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .catalog-filters__label {
        width: calc(33.3333333333% - 18px);
        margin-right: 18px;
        margin-bottom: 10px;
    }
    .catalog-filters__label:nth-child(1),
    .catalog-filters__label:nth-child(2),
    .catalog-filters__label:nth-child(3),
    .catalog-filters__label:nth-child(4),
    .catalog-filters__label:nth-child(5),
    .catalog-filters__label:nth-child(6),
    .catalog-filters__label:nth-child(7),
    .catalog-filters__label:nth-child(8),
    .catalog-filters__label:nth-child(9) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .catalog-filters__labels {
        max-height: 100px;
    }
    .catalog-filter__range,
    .catalog-filter__inputs {
        width: calc(33.3333333333% - 18px);
    }
    .catalog-filters__bottom {
        display: block;
        text-align: left;
    }
    .catalog-filters__accept,
    .catalog-filters__clear {
        margin: 0;
        width: 230px;
    }
    .catalog-filters__clear {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        margin-top: 24px;
    }
    .aboutGiftCertificate .aboutGift-btn {
        margin-left: auto;
    }
    .aboutGift-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        top: auto;
        bottom: -32px;
    }
    .aboutGray-item {
        width: 476px;
    }
    .aboutGray-item:last-child {
        width: 230px;
    }
    .about-pagination {
        right: 380px;
    }
    .mainAbout-left {
        width: 353px;
        margin-right: 16px;
    }
    .mainAbout-right {
        width: 295px;
        margin: 0;
    }
    .mainAbout-video {
        height: 210px;
    }
    .mainAbout {
        background: #fff;
    }
    .mainAbout .swiper-pagination {
        right: 95px;
    }
    .mainAbout-btn {
        display: none;
    }
    .mainNews-btn {
        margin: 30px 0 0 0;
    }
    .mainNews-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 24px;
    }
    .mainAbout::before {
        height: 305px;
    }
    .stock-btn {
        margin-left: 0;
    }
    .col-hide-tablet {
        display: none;
    }
    .price-mobile {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-top: -50px;
    }
    .prices-title {
        margin: 40px 0 0 0;
        text-align: left;
        font-size: 24px;
        line-height: 140%;
    }
    .prices-bg svg {
        left: -18px;
        bottom: -40px;
        pointer-events: none;
    }
    .main-btn {
        margin-left: 0;
    }
    .main-img {
        height: 200px;
    }
    .main .swiper-pagination {
        left: -48px;
    }
    .main-slider {
        margin-left: -40px;
        width: calc(100% + 40px);
        margin-top: 100px;
    }
    .main-bg {
        height: 220px;
    }
    .page {
        padding-top: 69px;
    }
    .main {
        margin-top: 16px;
    }
    .mobileMenu,
    .mobileCatalog {
        top: 69px;
    }
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }
/*
    .mainNews-item__img {
        height: auto;
        padding-top: 60%;
        position: relative;
    }
    .mainNews-item__img img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
*/
    .footer-nav {
        width: 260px;
        margin-right: auto;
        margin-left: auto;
    }
    .footer-nav:last-child {
        margin-right: 0;
        margin-left: auto;
    }
    .footer-navs {
        width: 100%;
    }
    .manufacturerPopular-title {
        width: 100%;
    }
    .supportForm-btn {
        width: 100%;
        margin-top: 24px;
    }
    .faq-right {
        margin-left: auto;
    }
    .pageMainNews::before {
        height: 240px;
    }
}

@media (min-width: 834px) and (max-width: 1000px) {
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }
    .col,
    .col-1,
    .col-10,
    .col-11,
    .col-12,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-auto,
    .col-lg,
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-auto,
    .col-md,
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-auto,
    .col-sm,
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-auto,
    .col-xl,
    .col-xl-1,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-auto {
        padding-left: 8px;
        padding-right: 8px;
    }
    .main .col-lg-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .header-logo {
        width: 300px;
    }
    .header-img {
        width: 200px;
    }
    .header-contact {
        width: 300px;
    }
    .prices-btn__text {
        font-size: 12px;
    }
    .prices-title {
        font-size: 20px;
    }
    .mainAbout .swiper-pagination {
        right: 24%;
    }
    .steps-item__title {
        font-size: 15px;
    }
    .steps-item__text {
        font-size: 13px;
    }
    .mainNews-item__text,
    .mainNews-item__title {
        font-size: 13px;
    }
    .subtitle {
        font-size: 22px;
        line-height: 30px;
    }
    .footer-nav ul li a {
        font-weight: 400;
        font-size: 11px;
    }
    .footer-textImg img {
        width: 100%;
    }
    .header-contact__item a {
        font-weight: 400;
    }
    .prices-btn__icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        margin-right: 10px;
    }
    .svg-32 {
        width: 28px;
        height: 28px;
    }
    .mainAbout-right {
        margin-left: 30px;
        width: 320px;
        min-width: 320px;
    }
    .mainAbout-left {
        width: calc(100% - 350px);
    }
    .mainAbout-bg {
        width: calc(50% + 10px);
    }
    .pageError-wrapper {
        padding: 40px 110px 64px;
    }
    .pageLink-item {
        padding: 16px 0;
        font-size: 12px;
    }
    .stock-item__popupFlex .counter {
        transform: scale(0.9);
        position: relative;
        left: -4px;
    }
    .stock-item__popupFlex .stock-item__popupBasket {
        height: 32px;
    }
    .about-item__img {
        width: calc(100% - 310px);
        height: 230px;
    }
    .about-item__right {
        padding: 20px;
    }
    .aboutGray-item {
        font-size: 13px;
    }
    .aboutSteps-item__text {
        font-size: 14px;
    }
    .aboutSteps-left {
        width: 450px;
    }
    .basket-gray,
    .breadcrumbs-list li {
        font-size: 13px;
    }
    .mainCatalog-item__title {
        font-size: 12px;
        line-height: 16px;
    }
    .mainCatalog-item__text {
        font-size: 13px;
        margin-top: 5px;
    }
    .category-links__item {
        padding: 3px 6px;
        margin-right: 6px;
        margin-bottom: 6px;
    }
    .category-links {
        margin-top: -6px;
    }
    .category-nav ul li a {
        padding: 5px 10px;
        font-size: 13px;
        padding-right: 26px;
    }
    .category-nav ul li a::before,
    .category-nav ul li a::after {
        width: 16px;
        height: 16px;
        top: calc(50% - 8px);
        background-size: 16px;
        right: 10px;
    }
    .category-nav ul li.active ul {
        padding: 7px 0;
    }
    .category-nav ul li.active ul li ul li a {
        font-size: 12px;
    }
    .contact-white {
        padding: 16px 16px 0;
    }
    .contact-item__topText {
        font-size: 16px;
    }
    .contact-white__itemFirst {
        width: 40px;
        min-width: 40px;
    }
    .contact-white__itemLine {
        margin-right: 8px;
    }
    .contact-white__item {
        font-size: 14px;
    }
    .contact-white__itemGray {
        font-size: 11px;
    }
    .contactRequisites-text {
        font-size: 13px;
        line-height: 20px;
    }
    .contactRequisites-text p {
        margin-bottom: 10px;
    }
    .contactRequisites-right {
        padding: 40px 0 40px 40px;
    }
    .contactQuestion-form__block {
        margin-right: 16px;
        width: 231px;
    }
    .contactQuestion-form__block:last-child {
        width: 300px;
    }
    .lc-box__gray {
        font-size: 13px;
    }
    .lc-box__text {
        font-size: 16px;
    }
    .lc-box__block:nth-child(1) {
        width: 150px;
    }
    .lc-box__block:nth-child(2) {
        width: 140px;
    }
    .lc-box__block:nth-child(3) {
        width: 150px;
    }
    .lc-box__block:nth-child(4) {
        width: 180px;
    }
    .basket-item {
        font-size: 14px;
    }
    .lc-contactFaces-item__darkText,
    .lc-item__rightBtn {
        font-size: 13px;
    }
    .lc-item__leftGray,
    .lc-item__leftResult {
        font-size: 15px;
    }
    .manufacturerAbout-item__text {
        font-size: 14px;
    }
    .manufacturerAbout-left {
        width: 480px;
    }
    .manufacturerAbout-right {
        width: 285px;
    }
    .manufacturerSlider-right {
        width: 300px;
    }
    .manufacturerSlider-left {
        width: calc(100% - 320px);
    }
    .manufacturerDocs-btn .svg-20 {
        width: 16px;
        height: 16px;
        margin-left: 4px;
    }
    .manufacturerDocs-btn {
        width: 200px;
        font-size: 12px;
    }
    .manufacturerPopular-right {
        width: 300px;
    }
    .manufacturerPopular-right::before {
        left: -60px;
        top: -20px;
        bottom: -20px;
    }
    .manufacturerPopular-title {
        font-size: 20px;
    }
    .manufacturerPopular-left {
        width: calc(100% - 330px);
    }
    .manufacturers-item {
        font-size: 16px;
        padding: 14px 14px 18px;
    }
    .news-left {
        width: 420px;
    }
    .mainNews-item__img {
/*        height: 115px;*/
    }
    .page-title {
        font-size: 26px;
    }
    .partnershipForm-left {
        width: 40%;
    }
    .partnershipForm-right {
        width: 50%;
    }
    .partnership-right {
        width: 360px;
    }
    .partnership-left {
        width: calc(100% - 380px);
    }
    .partnership-text,
    .partnership-gray p {
        font-size: 14px;
    }
    .page-buttons__item {
        white-space: nowrap;
    }
    .support-item__link svg {
        width: 16px !important;
        height: 16px !important;
        margin-right: 4px;
    }
    .support-item__link {
        font-size: 10px;
    }
    .support-item {
        padding: 30px 10px 10px;
    }
    .support-item__type {
        left: 6px;
        top: 6px;
        font-size: 10px;
        height: 20px;
    }
    .support-item__name {
        margin-top: 16px;
    }
    .support-item__icon {
        width: 36px;
        height: 36px;
    }
    .support-item__icon img {
        width: 28px;
    }
    .support-item__name {
        font-size: 13px;
    }
    .support-apps__link {
        height: 40px;
        margin-top: 10px;
    }
    .support-apps__link img {
        height: 30px;
    }
    .support-gray {
        height: 32px;
        font-size: 14px;
    }
    .supportForm-title {
        font-size: 20px;
    }
    .supportForm-right {
        width: 300px;
        flex-grow: 0;
    }
    .supportForm-left {
        margin-right: auto;
        width: calc(100% - 340px);
        min-width: auto;
    }
    .catalog-item__left {
        width: 160px;
        min-width: 160px;
        margin-right: auto;
    }
    .catalog-item {
        padding: 10px;
    }
    .catalog-item__name {
        font-size: 16px;
    }
    .catalog-item__text {
        font-size: 13px;
        margin: 5px 0;
    }
    .stock-item__characteristics {
        padding-top: 8px;
    }
    .catalog-item .stock-item__characteristicsItem {
        font-size: 12px;
    }
    .catalog-item__center {
        width: 300px;
    }
    .catalog-item__right {
        width: calc(100% - 480px);
    }
    .catalog-item__btn {
        right: 10px;
        bottom: 10px;
    }
    .catalog-filters__title {
        font-size: 16px;
    }
    .catalog-filters__label {
        font-size: 13px;
    }
    .stock-item__top {
        left: 10px;
        top: 10px;
    }
    .contact .page-title {
        font-size: 24px;
    }
}

.fltr_block_checkbox.active .catalog-filters__labels {
    height: auto !important;
}

@media (max-width: 380px) {
    .pagination-link.pagination-link__prev {
        margin-right: 12px;
    }
    .pagination-link.pagination-link__next {
        margin-left: 12px;
    }
}
