.container {
    display: flex;
    width: 1190px;
    max-width: 100%;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-direction: row;
    margin: 0px -15px;
    width: 100%;
}

.col-12 {
    display: flex;
    width: 100%;
}

.header_top-logo {
    display: flex;
    text-decoration: none;
}

.header_top-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.header_top {
    padding-bottom: 20px;
}

.header_top-middle-trow ul {
    list-style: none;
    padding: 0px;
    display: flex;
}

.header_top-middle-trow ul li a {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    display: flex;
    align-items: center;
    color: #000000;
    text-decoration: none;
}

.header_top-last {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 3px;
    margin-top: 7px;
}

.header_top-logo-img {
    margin-right: 24px;
}

.header_top-logo-text span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
    color: #999999;
    margin-bottom: 15px;
}

.header_top-logo-text b {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 47px;
    display: flex;
    align-items: center;
    letter-spacing: 0.08em;
    color: #132146;
    margin-bottom: 8px;
}

.header_top-logo-text em {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: #333333;
}

.header_top .col-12 {
    justify-content: space-between;
}

.header_top-middle-trow ul li:not(:last-child) {
    margin-right: 40px;
}

.header_top-middle-brow {
    display: flex;
    flex-direction: column;
}

.header_top-middle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.header_top-middle_open {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #333333;
    padding-left: 12px;
    position: relative;
    margin-right: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header_top-middle_open:before {
    width: 6px;
    height: 6px;
    content: '';
    background: #04BA00;
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    border-radius: 50%;
    animation: pulse infinite 3s alternate;
}

@keyframes pulse {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    80% {
        opacity: 0.3;
    }
}

.header_top-middle_phones a {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #132146;
    text-decoration: none;
}

.header_top-middle_phones a:not(:first-child) {
    padding-left: 16px;
    margin-left: 16px;
    border-left: 1px solid #999999;
}

.header_top-last button {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    padding: 14px 20px;
    background: #D51813;
    border-radius: 10px;
    border: none;
    transition: all .3s ease-in-out;
    user-select: none;
    cursor: pointer;
}

.header_top-last .mail--mobile {
    display: none;
}

.header_top-last button:hover {
    background: #132146;
}

.header_top-last .mail--desktop {
    display: flex;
    flex-direction: column;
}

.header_top-last>.mail--desktop svg {
    margin-right: 6px;
}

.header_top-last>.mail--desktop>a {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #107BB1;
    margin-left: auto;
}

a {
    transition: all .3s ease-in-out;
}

a:hover {
    color: #d51813;
}

.header_top-middle-trow ul li a:hover {
    color: #d51813;
}

.header_bottom {
    background: #F8F8F8;
}

.header_bottom ul {
    list-style: none;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0px;
}

.header_bottom ul li {
    position: relative;
}

.header_bottom ul li a {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    /* identical to box height, or 18px */
    color: #000000;
    height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 29px;
    white-space: nowrap;
    text-decoration: none;
}

.header_bottom ul li.parent ul.child {
    position: absolute;
    flex-direction: column;
    width: fit-content;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 0px 22px;
    max-height: 0px;
    border-color: transparent;
    display: none;
    transition: 0.3s ease;
}

.header_bottom ul li a:hover,
.header_bottom ul li a.active {
    background: #132146;
    border-radius: 10px;
    color: white;
}

.header_bottom ul li.parent ul.child li a {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    display: flex;
    align-items: flex-start;
    color: #333333;
    text-align: left !important;
    padding: 5px 10px;
    height: fit-content;
}

.header_bottom .parent .child>li {
  padding: 0 22px;
}

.header_bottom ul li.parent:hover ul.child {
    padding: 10px 0;
    max-height: 1000px;
    border-color: #ccc;
    display: block;
}

.header_bottom ul li.parent ul.child li a:hover {
    color: #2E58C6;
    background: transparent;
    text-decoration: underline;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    width: 100%;
    z-index: 99;
}

body {
    padding-top: 150px;
}

.header_bottom ul li.parent ul.child {
    border: 0px transparent;
}

.header_bottom ul li.parent:hover ul.child {
    border: 1px solid #ccc;
}

.header_bottom ul li.parent2:hover ul.child2 {
  display: block;
}
.mobile-menu2, .mobile-menu3 {
  display: none;
}
.header_bottom .child2 {
  position: absolute;
  top: -1px;
  left: 100%;
  padding: 1px;
  display: none;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.header_bottom .child2>li {
  word-break: break-word;
}

.header_top,
.header_top-logo-text span {
    transition: all .3s ease-in-out;
}

.fixed .header_top {
    padding-bottom: 20px;
}

.header_top-logo-img img {
    transition: all .3s ease-in-out;
}

.fixed .header_top-logo-img img {
    width: 60px;
}

.header_top-logo-img img {
    width: 72px;
}

.fixed .header_top-logo-text span {
    margin-bottom: 4px;
}

.fixed .header_bottom ul li a {
    height: 38px;
}

footer {
    margin-top: 100px;
    background: #132146;
    padding: 64px 0px;
}

@media (max-width: 1400px) {
    .container {
        padding: 0 15px;
    }
    .about .about__logo {
        width: 89%
    }
}

@media (max-width: 1370px) {
    .header_bottom ul li.parent ul.child li a {
        font-size: 12px;
        padding: 3px 10px;
    }
    .header_bottom ul li.parent:hover ul.child {
        padding: 5px 0;
    }
}

@media (max-width: 1280px) {
    footer {
        margin-top: 80px;
    }
}

footer .col-12 {
    flex-direction: row;
    display: flex;
    width: 100%;
}

.footer-wr {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.footer-subtitle {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    /* identical to box height, or 16px */
    display: flex;
    align-items: center;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.footer-wr ul {
    margin: 0px;
    list-style: none;
    padding: 0px;
}

.footer-wr a {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    /* identical to box height, or 14px */
    display: flex;
    align-items: center;
    color: #A1A6B5;
    text-decoration: none;
    display: block;
}

.footer-wr p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    /* identical to box height, or 14px */
    color: #A1A6B5;
    margin-bottom: 15px;
    display: block;
    margin-top: 0px;
}

.footer_details {
    margin-bottom: 5px;
    margin-top: 5px;
}

.footer_addr p b {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    /* or 22px */
    color: #FFFFFF;
}

.footer_social {
    display: flex;
    margin-bottom: 30px;
}

.footer_social a {
    margin-right: 8px;
}

.footer_social a:hover svg {
    opacity: 0.75;
}

.footer_btn button {
    background: #D51813;
    border: 1px solid #d51813;
    border-radius: 10px;
    /* Inside auto layout */
    flex: none;
    order: 4;
    align-self: stretch;
    flex-grow: 0;
    width: 100%;
    height: 47px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */
    color: #FFFFFF;
    user-select: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.footer_btn button:hover {
    background: #132146;
}

.footer-col.col-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 25%;
}

.footer-col.col-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer_main-menu ul li a {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    /* identical to box height, or 16px */
    display: flex;
    align-items: center;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.footer_main-menu ul {
    margin-bottom: 40px;
}

.footer_copyright p:last-child {
    margin: 0px;
}

.footer-col.col-3,
.footer-col.col-4 {}

.footer-col.col-3 li.parent>a,
.footer-col.col-4 li.parent>a {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    /* identical to box height, or 16px */
    display: flex;
    align-items: center;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.footer-col.col-3 li.parent a,
.footer-col.col-4 li.parent a {
    margin-bottom: 12px;
}

.footer-col.col-3 ul,
.footer-col.col-4 ul {
    margin-bottom: 40px;
}

.footer-wr a:hover {
    color: white;
}

.footer-col.col-3 li.parent>a:hover,
.footer-col.col-4 li.parent>a:hover {
    color: #A1A6B5;
}

.footer-col.col-3 li.parent>a,
.footer-col.col-4 li.parent>a {
    margin-bottom: 24px;
}

.footer_main-menu ul li a:hover {
    color: #a1a6b5;
}

body {
    width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 1280px) {
    .row {
        margin: 0px;
    }
    .row {
        margin: 0px;
    }
    .footer_main-menu ul li a {
        font-size: 14px;
    }
    .footer-wr a {
        font-size: 12px;
    }
    .footer-col.col-3 li.parent>a,
    .footer-col.col-4 li.parent>a {
        font-size: 14px;
    }
    .header_top-logo-img img {
        width: 60px;
    }
    .header_top-logo-text b {
        font-size: 34px;
        line-height: normal;
    }
    .header_top-logo-text span {
        margin-bottom: 5px;
        line-height: normal;
        font-size: 11px;
    }
    .header_top-logo-text em {
        font-size: 12px;
    }
    .header_top-middle-trow ul li a {
        font-size: 13px;
    }
    .header_top-middle_open {
        font-size: 12px;
    }
    .header_top-middle_phones a {
        font-size: 14px;
    }
    .header_top-last button {
        padding: 10px 20px;
        min-width: 185px;
    }
    .js-popup-email-trigger svg{
        display: none;
    }
    .header_top-middle__group{
        gap: 10px;
    }
    .mail--desktop{
        max-width: 40%;
    }
    .header_top-last{
        gap: 10px;
        justify-content: center;
    }
    .header_top-last>a {
        font-size: 14px;
    }
    .header_top {
        padding-bottom: 25px;
    }
    .header_bottom ul li a {
        font-size: 16px;
        padding: 0 20px;
        border-radius: 10px;
    }
    .container {
        width: 991px;
    }
    .header_top-logo-img img {
        width: 52px !important;
    }
    .header_top-logo-img {
        margin-right: 16px;
    }
    .header_top-middle-trow ul li:not(:last-child) {
        margin-right: 20px;
    }
    body {
        padding-top: 180px;
    }
    .footer-subtitle {
        font-size: 14px;
    }
    .footer_addr p b {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .container {
        width: 768px;
    }
    .row {
        padding: 0 15px;
    }
    .header_top-logo-img img {
        width: 40px !important;
    }
    .header_top-last button {
        font-size: 12px;
        padding: 6px 10px;
        min-width: 130px;
    }
    .mail--desktop{
        font-size: 10px;
    }
    .mail--desktop a{
        font-size: 12px;
    }
    .header_top-logo-text b {
        font-size: 24px;
        margin: 0px;
        line-height: 1;
    }
    .header_top-logo-text span {
        font-size: 7px;
    }
    .header_top-middle-trow ul li a {
        font-size: 12px;
    }
    .header_top-logo-text em {
        font-size: 10px;
    }
    .header_top-middle-trow ul li:not(:last-child) {
        margin-right: 10px;
    }
    .header_top-logo-img {
        margin-right: 10px;
    }
    .header_top-middle_open {
        font-size: 10px;
        line-height: normal;
        margin-right: 0px;
        width: 100%;
        margin-right: 10px;
    }
    .header_top-middle_phones a:not(:first-child){
        padding-left: 5px;
        margin-left: 5px;
    }
    .header_top-middle_phones a {
        font-size: 12px;
    }
    .header_top-middle_phones {
        display: flex;
        align-items: center;
    }
    .header_top-last>a {
        font-size: 12px;
    }
    .header_top {
        padding-bottom: 20px;
    }
    .header_bottom ul li a {
        font-size: 12px;
        padding: 0 12px;
        height: 40px;
    }
    .fixed .header_top-logo-text span {
        margin-bottom: 5px;
    }
    .fixed .header_top {
        padding-bottom: 10px;
    }
    .header_bottom ul li.parent:hover ul.child {
        padding: 10px;
    }
    .header_bottom ul li.parent ul.child li a {
        font-size: 12px;
        padding: 8px;
    }
    .header_bottom ul li.parent ul.child {
        padding: 0 10px;
    }
    .footer-col {
        padding: 0 10px;
    }
    .footer-col.col-1 {
        max-width: initial;
    }
    .footer-wr {
        margin: 0 -10px;
    }
    .footer-col.col-3 li.parent a,
    .footer-col.col-4 li.parent a {
        margin-bottom: 10px;
        font-size: 11px;
        line-height: normal;
    }
    .footer_main-menu ul li a {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .footer-wr a {
        font-size: 11px;
    }
    .footer-wr p {
        font-size: 11px;
        line-height: normal;
    }
    .footer-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }
    .footer_social {
        margin-bottom: 0px;
    }
    .footer-col.col-3 ul:last-child,
    .footer-col.col-4 ul:last-child {
        margin: 0px;
    }
    .footer-col.col-3 li.parent ul li:last-child a,
    .footer-col.col-4 li.parent ul li:last-child a {
        margin: 0px;
    }
    .footer-col.col-3 li.parent>a,
    .footer-col.col-4 li.parent>a {
        font-size: 12px;
    }
    .footer_addr p b {
        font-size: 12px;
    }
}

.mobile_header {
    display: none;
}

@media (max-width: 768px) {
    .header_top-last .mail--desktop {
        display: none;
    }
    .header_top-last .mail--mobile {
        display: block;
    }
    .hide_on_pc {
        display: none;
    }
    .mobile_header {
        display: flex;
        position: relative;
        padding-bottom: 15px;
        border-bottom: 1px solid #F8F8F8;
    }
    .mobile_header__menu {
        position: absolute;
        top: 100%;
    }
    .mobile_header_body {
        width: calc(100% - 14px - 48px);
        margin-left: 14px;
    }
    .mobile_header_logo {
        position: relative;
    }
    .mobile_header_logo a {}
    .mobile_header_body-top {
        display: flex;
        justify-content: space-between;
    }
    .header_top-logo-text em {
        display: none;
    }
    .header_top-logo-text span {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 12px;
        display: flex;
        align-items: center;
        color: #999999;
        margin-top: 14px;
        margin-bottom: 6px !important;
        line-height: 1;
    }
    .header_top-logo-text b {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 1;
        display: flex;
        align-items: center;
        letter-spacing: 0.08em;
        color: #132146;
    }
    .mobile_header_btn span {
        background: #132146;
        border-radius: 31px;
        width: 32px;
        height: 5.54px;
        display: block;
        transition: all .3s ease-in-out;
    }
    .mobile_header_btn {
        height: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 20px;
        margin-right: 15px;
    }
    .mobile_header_body-bottom {
        display: flex;
        justify-content: space-between;
        padding-top: 17px;
    }
    .header_top-middle_open {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 14px;
        display: flex;
        align-items: center;
        color: #333333;
        width: fit-content;
    }
    .header_top-middle_phones a {
        margin-right: 15px;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 700;
        font-size: 12px;
        line-height: 14px;
        /* identical to box height */
        color: #132146;
    }
    .mobile_header_logo img {
        width: 48px;
    }
    body {
        padding-top: 98px;
    }
    .footer-wr {
        flex-direction: column;
        position: relative;
        padding-bottom: 84px;
    }
    .mobile_header__menu {
        width: 100%;
        height: calc(100vh - 98px);
        background: white;
        transition: all .5s ease-in-out;
        max-height: calc(0vh);
        overflow: hidden;
    }
    .mobile_header__menu>ul {
        background: #F8F8F8;
        list-style: none;
        padding: 17px 0px;
    }
    li a {}
    .mobile_header__menu ul>li>a {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 100%;
        /* identical to box height, or 18px */
        display: flex;
        align-items: center;
        color: #000000;
        /* Inside auto layout */
        flex: none;
        order: 0;
        flex-grow: 0;
        text-decoration: none;
        padding: 15px;
    }
    li.parent {}
    .mobile_header__menu li.parent {
        position: relative;
    }
    .mobile_header__menu li.parent>input {}
    .mobile_header__menu li.parent>ul {
        position: absolute;
        top: 100%;
        list-style: none;
        background: #FFFFFF;
        border: 0px solid #CCCCCC;
        box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        left: 15px;
        width: calc(100% - 72px);
        padding: 0px 22px;
        max-height: 0px;
        overflow: hidden;
        transition: all .3s ease-in-out;
    }
    .mobile_header__menu li.parent>ul li a {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        /* identical to box height, or 16px */
        display: flex;
        align-items: center;
        color: #333333;
        padding: 10px;
    }
    footer {
        padding: 48px 0px;
    }
    .footer_logo img {
        width: 135px;
        height: 51px;
        margin-bottom: 40px;
    }
    .footer-subtitle {
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        margin-bottom: 24px;
    }
    .footer-wr p {
        font-size: 14px;
        line-height: 100%;
        margin-bottom: 16px;
    }
    .footer_addr p b {
        font-size: 16px;
        line-height: 140%;
    }
    .footer_addr {
        margin-bottom: 34px;
    }
    .footer-wr a {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 100%;
        /* identical to box height, or 14px */
        display: flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 12px;
        width: fit-content;
    }
    .footer_social {
        margin-top: 12px;
        margin-bottom: 40px;
    }
    .footer_btn button {
        margin-top: 24px;
        margin-bottom: 40px;
        width: 270px;
        max-width: 100%;
    }
    .footer_main-menu ul li a {
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        margin-bottom: 24px;
    }
    .footer_copyright {
        position: absolute;
        bottom: 0;
        left: 10px;
    }
    .footer_main-menu>p:last-child {
        margin-bottom: 40px;
    }
    .footer-col.col-3 li.parent>a,
    .footer-col.col-4 li.parent>a {
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        margin-bottom: 24px !important;
    }
    .footer-col.col-3 li.parent a,
    .footer-col.col-4 li.parent a {
        font-weight: 400;
        font-size: 14px;
        line-height: 100%;
        margin-bottom: 12px;
    }
    .footer-col.col-4 {
        margin-top: 40px;
    }
    header.openMobileMenu .mobile_header_btn span:first-child {
        transform: rotate(45deg);
        transform-origin: left;
    }
    header.openMobileMenu .mobile_header_btn span:nth-child(2) {
        width: 0px;
        left: 50%;
        opacity: 0;
    }
    header.openMobileMenu .mobile_header_btn span:last-child {
        transform: rotate(-45deg)translate(-3px, 3px);
        transform-origin: left;
    }
    header.openMobileMenu .mobile_header__menu {
        max-height: calc(100vh - 98px);
    }
    li.parent .parent_mobile_openbtn {
        position: absolute;
        width: 18px;
        height: 12px;
        background: url(/bitrix/templates/furniture_red/images/vt-metall-arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        right: 19px;
        top: 18px;
        cursor: pointer;
    }
    li.parent .parent_mobile_openbtn:before {
        width: calc(100% + 10px);
        height: calc(100% + 10px);
        top: -5px;
        left: -5px;
        content: '';
        position: absolute;
        cursor: pointer;
    }
}

.parent_mobile_openbtn.openParent+a {
    background: #132146;
    color: white;
}

.parent_mobile_openbtn.openParent:before {
    filter: invert(1) !important;
}

li.parent .parent_mobile_openbtn {
    z-index: 2;
    transition: all .3s ease-in-out;
}

.parent_mobile_openbtn.openParent {
    filter: invert(1);
    transform: rotateX(180deg);
}

.parent_mobile_openbtn.openParent~ul {
    max-height: 1000px !important;
}
