* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Montserrat";
}

.container {
    width: 100%;
    /*  max-width: 1230px; */
    max-width: 1792px;
    margin: 0 15px;
    margin: auto;
    padding-right: 16px;
    padding-left: 16px;
}

body {
    padding-top: 116px;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #fff;
    z-index: 100;
    padding-top: 17px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 33px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

header .logo {
    width: 85px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

header .logowrap {
    max-width: 85px;
    width: 100%;
}

header.fixed {
    top: -54px;
}

header.fixed .logo {
    width: 52px;
}

header.fixed .container {
    border-bottom: 1px solid #DCDCDC;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

header.fixed .header_bot {
    border-color: transparent !important;
}

.header_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 14px;
    border-bottom: 1px solid #DCDCDC;
}

.header_content {
    width: 100%;
}

.header_top_list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
}

.header_top_list a {
    text-decoration: none;
    color: #323232;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.header_top_list a:hover {
    text-decoration: underline;
}

.header_top_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
}

.header_top_btns a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 11px;
    color: #323232;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    vertical-align: middle;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.header_top_btns a svg path {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.header_top_btns a:hover {
    color: #423E63;
}

.header_top_btns a:hover svg path {
    fill: #423E63;
}

.header_top_btns .header_top_number {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: right;
    vertical-align: middle;
    color: #423E63;
}

.header_bot {
    border-bottom: 1px solid #DCDCDC;
    height: 63px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header_bot ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 55px;
}

.header_bot ul a {
    font-weight: 700;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 1px;
    vertical-align: middle;
    text-transform: uppercase;
    text-decoration: none;
    color: #323232;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.header_bot ul a:hover {
    text-decoration: underline;
}

.header_bot_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.search_btn {
    width: 38px;
    height: 38px;
    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;
    cursor: pointer;
}

.btn {
    width: 177px;
    height: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #423E63;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    color: #fff;
    vertical-align: middle;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn:hover {
    color: #423E63;
    border: 1px solid #423E63;
    background: #F6F6F6;
}

.btn.zayavka_mob {
    display: none;
    width: 100%;
    margin-bottom: 20px;
}

.banner_section {
    margin-top: 25px;
}

.banner_section .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px;
    padding-bottom: 20px;
}

.banner_section .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    border-radius: 0;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: transparent;
}

.banner_section .swiper-pagination-bullet::before {
    content: '';
    width: 17px;
    height: 15px;
    border: 1px solid #fff;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    left: -4px;
}

.banner_section .swiper-pagination-bullet-active {
    background-color: #fff;
}

.banner_section .banner_slide_item {
    width: 100%;
    height: 467px;
    background-size: cover;
    padding-top: 74px;
    padding-left: 95px;
}

.banner_slide_item_title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 48px;
    line-height: 52px;
    letter-spacing: 0%;
    color: #F7F7F7;
}

.banner_slide_content {
    max-width: 554px;
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 35px;
}

.banner_slide_item_text {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #F7F7F7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.banner_slide_item_text_bord {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-right: 5px solid #fff;
    padding: 11px 0;
    padding-right: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.banner_slide_item_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.banner_slide_item_btns .wbtn {
    width: 255px;
    height: 40px;
    background-color: #fff;
    color: #423E63;
    text-decoration: none;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.banner_slide_item_btns .btn-row {
    width: 54px;
    height: 40px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.slider_nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32px;
    background-color: #fff;
    height: 32px;
    z-index: 10;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navleft {
    left: 20px;
}

.navright {
    right: 20px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.section_title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #323232;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.section_title span {
    color: #423E63;
    padding-left: 15px;
}

.section_title p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #323232;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    margin-left: 20px;
}

.section_title p b {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
    color: #423E63;
}

.mg60 {
    height: 60px;
    width: 100%;
}

.titlewrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.titlewrap a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #323232;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.titlewrap a:hover {
    text-decoration: underline;
}

.catalog_main_items {
    padding-top: 45px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.catalog_main_item {
    margin-bottom: 35px;
    height: 111px;
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: -6px 4px 24px 0px #00000014;
    box-shadow: -6px 4px 24px 0px #00000014;
    border-left: 5px solid #423E63;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 30px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    text-decoration: none;
    color: #323232;
    letter-spacing: 0%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.catalog_main_item:hover {
    border-left: 14px solid #423E63;
}

.about_section {
    border-top: 1px solid #DCDCDC;
    background: #F9F9F9;
    padding-top: 30px;
}

.about_company_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 12px;
    gap: 20px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    max-width: 90%;
    color: #323232;
    margin-bottom: 20px;
}

.about_company_blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #DCDCDC;
}

.about_company_blocks .about_company_block {
    width: 25%;
    height: 289px;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-right: 1px solid #DCDCDC;
    position: relative;
}

.about_company_blocks .about_company_block img {
    max-width: 100%;
}

.about_company_blocks .about_company_block .about_company_block_abs {
    bottom: -20px;
    right: -20px;
    position: absolute;
}

.about_company_blocks .about_company_block:nth-last-child(1) {
    border: none;
}

.about_company_blocks .about_company_block span {
    color: #423E63;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 118px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.about_company_blocks .about_company_block p {
    color: #323232;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
    text-align: center;
}

.napr_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.napr_item {
    padding-top: 30px;
    position: relative;
}

.napr_item span {
    position: absolute;
    width: 333px;
    height: 68px;
    color: #323232;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
    right: 10px;
    display: block;
    bottom: -30px;
    background-color: #fff;
    border-left: 5px solid #423E63;
    padding-top: 13px;
    padding-left: 23px;
    -webkit-box-shadow: -6px 4px 24px 0px rgba(0, 0, 20, 0.1);
    box-shadow: -6px 4px 24px 0px rgba(0, 0, 20, 0.1);
}

.brands_section {
    border-top: 1px solid #DCDCDC;
    background: #F9F9F9;
    padding-top: 30px;
    padding-bottom: 85px;
}

.brands_blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 970px;
    margin: auto;
}

.brands_block_big {
    width: 373px;
    height: 337px;
    background: #423E63;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 50px;
    padding-left: 25px;
    padding-right: 30px;
    gap: 15px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.brands_block_big span {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.brands_block_big p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #F7F7F7;
}

.brands_blocks_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.brands_blocks_items a {
    width: 178px;
    height: 160px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #F0F0F0;
    background-color: #fff;
}

.brands_slider_wrap_title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0%;
    color: #423E63;
}

.brands_slider_wrap {
    max-width: 970px;
    margin: auto;
    margin-top: 30px;
    position: relative;
}

.brands_slider_wrap .navright {
    right: -60px;
    top: 40px;
}

.brands_slider_wrap .navleft {
    left: -60px;
    top: 40px;
}

.brands_slider {
    margin-top: 15px;
}

.brands_slider .swiper-slide {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
}

.news_section {
    padding-top: 80px;
}

.news_items {
    padding-top: 31px;
    margin-bottom: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.news_item {
    max-width: 370px;
    -webkit-box-shadow: 3px 4px 13px 0px #00000012;
    box-shadow: 3px 4px 13px 0px #00000012;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.news_item:hover {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
}

.news_item img {
    max-width: 100%;
}

.news_item .news_item_img {
    width: 100%;
    position: relative;
}

.news_item .news_item_img span {
    width: 95px;
    background-color: #fff;
    height: 32px;
    left: 0;
    bottom: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #323232;
    position: absolute;
    padding-left: 10px;
}

.news_item .news_item_img span:before {
    content: '';
    width: 3px;
    height: 14px;
    background-color: #423E63;
    display: block;
    margin-right: 10px;
}

.news_item .news_item_content {
    padding: 25px 20px;
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
}

.news_item .news_item_content p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #949494;
}

.news_item .news_item_content a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #323232;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-decoration: none;
    border-bottom: 1px solid #423E63;
}

.news_item_title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0%;
    color: #423E63;
}

footer {
    background: #333333;
    padding-top: 34px;
    width: 100%;
}

footer .container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 105px;
}

.footer_menu_col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none;
    gap: 8px;
    max-width: 190px;
    padding-bottom: 34px;
}

.footer_menu_col a {
    color: #949494;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-decoration: none;
}

.footer_menu_col .ultitle {
    font-family: Montserrat;
    margin-bottom: 15px;
}

.footer_menu_col .ultitle a {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
    vertical-align: middle;
    color: #F7F7F7;
}

.footer_link {
    color: #F7F7F7;
    font-family: Montserrat;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
    vertical-align: middle;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 19px;
    text-decoration: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.footer_content .map {
    width: 344px;
    height: 176px;
    max-width: 100%;
    margin-top: 15px;
}

.footer_socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.footer_socials a {
    width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #949494;
}

.footer_bot {
    width: 100%;
    background: #151515;
}

.footer_bot .container {
    min-height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer_bot .container span {
    color: #949494;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    vertical-align: middle;
}

.footer_bot .container .conf {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #F7F7F7;
}

.footer_bot .container .spm {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 15.2px;
    line-height: 22.2px;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    color: #999999;
}

.content {
    padding-top: 50px;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.breadcrumb ul a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #323232;
    text-decoration: none;
}

.breadcrumb ul li {
    position: relative;
}

.breadcrumb ul li:not(:last-child)::after {
    content: '';
    width: 4px;
    height: 4px;
    background: #423E63;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -10px;
    border-radius: 10px;
}

.catalog {
    margin-top: 68px;
    margin-bottom: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.catalog_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.catalog_item {
    width: 275px;
    height: 161px;
    -webkit-box-shadow: -6px 4px 24px 0px #00000014;
    box-shadow: -6px 4px 24px 0px #00000014;
    border-left: 5px solid #423E63;
    padding-left: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 80px;
    text-decoration: none;
}

.catalog_item span {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0%;
    color: #323232;
}

.catalog_item img {
    position: absolute;
    top: -54px;
}

.catalog_tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 275px;
    width: 100%;
    border: 1px solid #DCDCDC;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.catalog_tab {
    list-style: none;
    width: 100%;
}

.catalog_tab * {
    list-style: none;
}

.catalog_tab a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #323232;
    text-decoration: none;
}

.catalog_tab img {
    padding: 7px;
    transition: all 0.2s;
}

.catalog_tab .main_tab {
    padding-right: 8px;
    border-bottom: 1px solid #DCDCDC;
}

.catalog_tab .main_tab.act {
    border-left: 5px solid #423E63;
}

.catalog_tab .main_tab.act>a {
    color: #423E63;
    font-weight: 700;
}

.catalog_tab .act>a img {
    rotate: 180deg;
}

.catalog_tab .main_tab.act>ul {
    display: block;
}

/*.catalog_tab .main_tab:nth-last-child(1) {
    border: none;
  }*/
.catalog_tab .main_tab>a {
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 18px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.catalog_tab .main_tab ul {
    display: none;
}

.catalog_tab .sub_tab {
    padding-left: 20px;
    padding-top: 14px;
    width: 100%;
}

.catalog_tab .sub_tab>a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 5px;
    border-bottom: 1px solid #DCDCDC;
    padding-left: 10px;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*.catalog_tab .sub_tab:nth-last-child(1) a {
    border: none;
  }*/
.catalog_tab .sub_tab.act {
    display: block;
}

.catalog_tab .sub_tab.act>ul {
    display: block;
}

.catalog_tab .sub_tab.act>ul a {
    border-bottom: 1px solid #DCDCDC !important;
}

.catalog_tab .sub_tab.act>a {
    font-weight: 700;
}

.catalog_brands {
    margin-top: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 110px;
}

.catalog_serial {
    width: 100%;
}


.catalog_brands_item {
    width: 373px;
    height: 164px;
    border: 1px solid #DCDCDC;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.catalog_brands_item:hover {
    border-left: 5px solid #423E63;
}

.news_page_head {
    background: #423E63;
    padding: 20px;
    padding-bottom: 35px;
    margin-bottom: 50px;
}

.news_page_head * {
    color: #fff !important;
}

.content .news_section {
    margin-top: 0;
    padding-top: 0;
}

.catalog_brands_wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.catalog_brands_item {
    width: 100%;
    min-height: 237px;
    border: 1px solid #DCDCDC !important;
    padding: 24px 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.catalog_brands_item_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 334px;
    width: 100%;
}

.serial {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #323232;
}

.catalog_brands_item_name {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0%;
    color: #423E63;
}

.catalog_brands_item_p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #000;
    margin-top: 8px;
}

.catalog_brands_item_info {
    width: 269px;
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
}

.catalog_brands_item_info .btn {
    width: 100%;
    text-decoration: none;
}

.catalog_brands_item_info_table {
    width: 100%;
}

.cb_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    border-bottom: 1px solid #DCDCDC;
}

.cb_row .cb_col {
    height: 29px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 0 9px;
    background: #F6F6F6;
}

.cb_row .cb_col:nth-child(1) {
    width: 70px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.cb_row:nth-last-child(1) {
    border-bottom: none !important;
}

.сb_row_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    border-bottom: none !important;
}

.сb_row_main .cb_col {
    color: #fff;
    background: #423E63;
}

.сb_row_main .cb_col:nth-child(1) {
    width: 70px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    border-right: 2px solid #fff;
}

.catalog_serial_card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 22px;
}

.img_wrap {
    width: 372px;
    height: 420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #DCDCDC;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.img_wrap img {
    max-width: 100%;
    max-height: 100%;
}

.catalog_serial_card_info_title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0%;
    display: block;
    margin-bottom: 20px;
}

.catalog_serial_card_info_p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
}

.docs_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 177px;
    height: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    color: #423E63;
    text-decoration: none;
    border: 1px solid #423E63;
}

.docs_btn:hover {
    text-decoration: underline;
}

.catalog_brands_item_info_table_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.catalog_serial_card_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.catalog_serial_card_info_inf {
    width: 100%;
}

.catalog_serial_tabs {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.catalog_serial_tabs .catalog_serial_tab {
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #DCDCDC;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    color: #949494;
}

.catalog_serial_tabs .catalog_serial_tab.act {
    color: #423E63;
    font-weight: 700;
    border-top: 5px solid #423E63;
}

.subtitle {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0%;
    color: #323232;
}

.catalog_serial .catalog_brands_wrap {
    margin-top: 24px;
}

.catalog_serial .catalog_brands_item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: auto;
}

.catalog_serial .catalog_brands_item_info {
    padding-left: 57px;
    border-left: 1px solid #DCDCDC;
}

.catalog_brands_item_imgwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.catalog_serial_card_pricewrap p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #323232;
}

.catalog_serial_card_pricewrap p span {
    color: #CA4749;
}

.catalog_serial_card_pricewrap .price {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #323232;
    display: block;
    margin-top: 4px;
}

.card_name_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.card_name_wrap .docs_btn {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.card_name_wrap .catalog_serial_card_info_title {
    max-width: 275px;
}

.catalog_serial_card_info .price {
    font-size: 30px;
    color: #423E63;
}

.catalog_serial_card_info .catalog_serial_tabs {
    margin-bottom: 0;
}

.catalog_card_specific {
    margin-top: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2px;
}

.specific_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.specific_row span {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
}

.specific_row p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
}

.another_products_title {
    margin-bottom: 24px;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #323232;
    display: block;
}

.another_products_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.another_products_item {
    height: 95px;
    width: 100%;
    width: calc(33% - 11px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 13px;
    padding-left: 15px;
    -webkit-box-shadow: -6px 4px 24px 0px #00000014;
    box-shadow: -6px 4px 24px 0px #00000014;
    border-left: 5px solid #423E63;
    text-decoration: none;
    min-width: 297px;
}

.another_products_item span {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
    vertical-align: middle;
    color: #323232;
}

.catalog_serial .tab_content {
    display: none;
}

.tab_content .tab_text {
    color: #323232;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    margin-top: 12px;
}

.catalog_card_desk {
    margin-top: 18px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #323232;
}

.tabs_content {
    display: none;
}

.tabs_content.act {
    display: block;
}

.toptabs {
    margin-top: 42px;
    display: none;
}

.toptabs .another_products_title {
    margin-bottom: 12px;
}

.toptabs .catalog_serial_tabs {
    margin: 0;
}

.toptabs.act {
    display: block;
}

.catalog.mt34 {
    margin-top: 34px;
}

.menu_trigger {
    display: none;
}

.menu_trigger .noact {
    display: block;
}

.menu_trigger .act {
    display: none;
}

.menu_trigger.act .noact {
    display: none;
}

.menu_trigger.act .act {
    display: block;
}

.menu_mobile_list {
    padding-top: 12px;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding-bottom: 32px;
    background-color: #fff;
    display: none;
}

.menu_mobile_list a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    color: #323232;
}

.menu_mobile_list a b {
    text-transform: uppercase;
}

.fixed .menu_mobile_list {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.header_top_m {
    display: none;
    z-index: 20;
}

.main_tab>ul>.sub_tab:nth-child(1) {
    padding-top: 0;
}

.main_tab .sub_tab:nth-last-child(1) .sub_tab:nth-last-child(1) a {
    border-bottom: none !important;
}

.news_content .news_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
}

.news_content .news_header div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.news_content .news_header div span,
.news_content .news_header div h1 {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #323232;
    margin-bottom: 20px;
}

.news_content .news_header div p {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0%;
    color: #323232;
}

.news_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.news_text p {
    color: #323232;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
}

.mob {
    display: none;
}

.sertific_wrap_title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
    margin-bottom: 14px;
    display: block;
}

.sertific_wrap_p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
}

.sertific_items {
    width: 100%;
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.sertific_items .sertific_item {
    width: 100%;
    padding: 24px;
    border: 1px solid #DCDCDC;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 23px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.sertific_items .sertific_item .sertific_btn {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
}

.sertific_items .sertific_item span {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    margin-bottom: 6px;
    display: block;
}

.sertific_items .sertific_item p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    max-width: 522px;
}

.docs_items {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.docs_items .docs_item {
    width: 100%;
    padding: 10px 42px;
    border: 1px solid #DCDCDC;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.docs_items .docs_item div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
}

.docs_items .docs_item .docs_btn_link {
    cursor: pointer;
}

.docs_items .docs_item span {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
    color: #323232;
}

.catalog_pages_content {
    width: 100%;
}

.catalog_pages_content article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.catalog_pages_content article span {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
    color: #323232;
}

.catalog_pages_content article p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #323232;
}

.catalog_pages_content article p a {
    color: #423E63;
}

.enjering {
    margin-top: 48px;
    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;
}

.enjering_title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0%;
    color: #323232;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.enjering_item {
    position: relative;
    margin-bottom: 60px;
    max-width: 100%;
}

.enjering_item img {
    width: 100%;
}

.enjering_item div {
    padding: 11px 20px;
    width: 100%;
    max-width: 344px;
    -webkit-box-shadow: -6px 4px 24px 0px #00000014;
    box-shadow: -6px 4px 24px 0px #00000014;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
    color: #323232;
    border-left: 5px solid #423E63;
    background-color: #fff;
    position: absolute;
    right: 10px;
    bottom: -34px;
}

.catalog_brands_page .catalog_brands_item {
    max-width: calc(33% - 10px);
    height: 164px !important;
    min-height: auto;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.catalog_brands_page .catalog_brands_item:hover {
    border-left: 5px solid #423E63 !important;
}

.popup_bg {
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 101;
    display: none;
}

.popup {
    max-width: 555px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 102;
    padding: 42px 32px;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

.popup button {
    margin: auto;
    margin-top: 15px;
    height: 53px;
    font-size: 16px;
}

.popup form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}

.popup_close {
    top: 14px;
    right: 14px;
    position: absolute;
    cursor: pointer;
}

.popup_title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 32px;
    text-align: center;
    display: block;
}

.input_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
    width: 100%;
    max-width: calc(50% - 8px);
}

.input_wrap input {
    border: 1px solid #00000033;
    background-color: #fff;
    padding-left: 17px;
    height: 53px;
    width: 100%;
}

.input_wrap.textarea {
    max-width: 100%;
}

.input_wrap.textarea textarea {
    border: 1px solid #00000033;
    background-color: #fff;
    padding-left: 17px;
    height: 97px;
    width: 100%;
    padding-top: 17px;
}

.checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    gap: 12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
}

.checkbox input {
    width: 17px;
    height: 17px;
    border: 1px solid #C80B3B;
}

.popup_img {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: 103;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: none;
}

.popup_img .popup_img_src {
    max-width: 100%;
}

.popup_img_close {
    position: absolute;
    top: 21px;
    right: 21px;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    border-radius: 30px;
    cursor: pointer;
}

.search_wrap {
    width: 100%;
    border-bottom: 1px solid #495260;
    height: 142px;
    background-color: #fff;
    top: 0;
    left: 0;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    top: -1000px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.search_wrap.act {
    top: 0;
}

.search_input {
    width: 100%;
    max-width: 445px;
    height: 38px;
    border: none;
    outline: none;
    border-bottom: 1px solid #808080;
    border-radius: 0;
}

.search_wrap_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #423E63;
    width: 118px;
    height: 38px;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #423E63;
}

.about_page {
    padding: 0 100px;
    margin-bottom: 100px;
}

.about_page p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #323232;
}

.about_title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #423E63;
    position: relative;
    display: block;
    margin-bottom: 32px;
}

.about_title::before {
    content: '';
    width: 98px;
    height: 16px;
    background: #423E63;
    position: absolute;
    left: -120px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.about_page_content {
    padding-top: 58px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 120px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.apc_col {
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 415px;
    width: 100%;
}

.apc_col span {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    margin-bottom: 8px;
}

.apc_col ul {
    padding-left: 20px;
}

.apc_col span.apc_title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px !important;
    line-height: 25px !important;
    letter-spacing: 0%;
    color: #323232;
    display: block;
    margin-bottom: 35px !important;
}

.about_page_content2 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.about_page_content2 .apc_col span.apc_title {
    margin-bottom: 24px !important;
}

.about_cit {
    max-width: 624px;
    width: 100%;
    border: 3px solid #423E63;
    background-color: #fff;
    padding: 41px 32px;
    position: relative;
    top: -80px;
    left: 80px;
}

.about_cit p {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
    color: #323232;
}

.about_cit .about_cit_top {
    position: absolute;
    left: -13px;
    top: -32px;
}

.about_cit .about_cit_bot {
    position: absolute;
    right: -13px;
    bottom: -32px;
}

.search_wrap_btn {
    cursor: pointer;
    background-color: #fff;
}

.search_page_search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.search_page_search .search_wrap_btn {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    background-color: #fff;
}

.search_page_search input {
    max-width: 250px;
}

.title_search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 48px;
}

.title_search .section_title {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.search_items {
    margin-bottom: 110px;
}

.search_items .catalog_brands_item {
    min-height: auto;
}

.search_items .catalog_brands_item .catalog_brands_item_text {
    max-width: 100%;
}

.search_items .catalog_brands_item .catalog_brands_item_info {
    padding-left: 57px;
    border-left: 1px solid #DCDCDC;
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: calc(100% - 30px);
    }

    .header_top_btns a span {
        display: none;
    }

    .header_bot ul a {
        font-size: 10px;
    }

    .header_bot ul {
        gap: 20px;
    }

    .catalog_serial_card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media screen and (max-width: 950px) {
    .about_page_content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }

    .about_page_content .apc_col {
        max-width: 100%;
    }

    .about_page_content .apc_col img {
        max-width: 100%;
    }

    .about_cit {
        position: relative;
        left: 0;
        top: 0;
        margin-top: 60px;
    }

    .about_page {
        padding: 0;
    }

    .catalog_main_items .catalog_main_item {
        width: 45%;
    }

    .news_header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 32px !important;
    }

    .news_text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .news_content .news_header div span {
        font-family: Montserrat;
        font-weight: 600;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

@media screen and (max-width: 850px) {
    .btn.zayavka_mob {
        display: flex;
    }

    .card_name_wrap.mob .docs_btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 45px;
        height: 45px;
    }

    .card_name_wrap.mob {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .title_search {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 40px;
    }

    .title_search .search_page_search {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .title_search .section_title span {
        width: 100%;
        padding-left: 0;
        margin-top: 12px;
    }

    .mg60 {
        height: 32px;
    }

    .menu_mobile_list.act {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .catalog_brands_wrap_dop img {
        width: 96px !important;
    }

    .catalog_brands_wrap_dop .catalog_brands_item {
        gap: 16px !important;
    }

    .catalog_brands_wrap_dop .catalog_brands_item_name {
        font-family: Montserrat;
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0%;
    }

    .catalog_brands_wrap_dop .catalog_brands_item_info {
        border-left: none;
        padding-left: 0;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-top: 1px solid #DCDCDC;
        padding-top: 16px;
    }

    .catalog_brands_wrap_dop .catalog_brands_item_info .btn {
        width: 147px;
    }

    .catalog_brands_wrap_dop .catalog_brands_item_info p {
        font-size: 10px;
    }

    .catalog_brands_wrap_dop .catalog_brands_item_info .price {
        font-family: Montserrat;
        font-weight: 600;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .catalog_serial_tabs {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 0;
        gap: 10px;
    }

    .catalog_serial_tabs .catalog_serial_tab {
        width: calc(50% - 10px);
    }

    .mob.catalog_brands_item_info_table {
        margin-bottom: 32px;
    }

    .mob {
        display: block;
    }

    .desk {
        display: none !important;
    }

    .catalog_brands_item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 20px;
    }

    .catalog_brands_item img {
        max-width: 70%;
        width: 100%;
        margin: auto;
    }

    .catalog_brands_item .catalog_brands_item_text,
    .catalog_brands_item .catalog_brands_item_info {
        max-width: 100%;
        width: 100%;
    }

    .catalog_brands_item .btn {
        margin-top: 24px;
    }

    .menu_trigger {
        display: block;
        margin-right: 18px;
    }

    .header_top {
        display: none;
    }

    .header_bot ul {
        display: none;
    }

    .header_bot {
        height: auto;
        border: none;
    }

    .header_bot {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    header .container {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 20px;
        gap: 0;
    }

    header .logo {
        width: 54px;
    }

    header {
        -webkit-box-shadow: 0px 2px 13px 0px #00000014;
        box-shadow: 0px 2px 13px 0px #00000014;
        padding-top: 0;
        top: 30px;
    }

    .header_top_m {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        height: 30px;
        background: #423E63;
        position: fixed;
        top: 0;
    }

    .header_top_m .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .header_top_m a {
        font-family: Montserrat;
        font-weight: 400;
        font-size: 10px;
        line-height: 22px;
        letter-spacing: 0px;
        vertical-align: middle;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-decoration: none;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 11px;
    }

    header.fixed .container {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    header.fixed {
        top: 0;
    }

    .about_company_items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-top: 0;
        margin-top: 24px;
        margin-bottom: 40px;
    }

    .about_company_items .about_company_item {
        width: 100%;
    }

    .about_company_blocks {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .about_company_blocks .about_company_block {
        width: 50%;
        padding: 6px;
        border-bottom: 1px solid #DCDCDC;
    }

    .about_company_blocks .about_company_block:nth-child(3) {
        border-bottom: none;
    }

    .about_company_blocks .about_company_block .about_company_block_abs {
        bottom: 0;
        right: 0;
    }

    .about_company_blocks .about_company_block .about_company_block_img {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .napr_items {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-x: scroll;
        padding-bottom: 55px;
    }

    footer .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        padding-bottom: 32px;
        gap: 24px;
    }

    footer .container .footer_menu_col {
        padding-bottom: 0;
    }

    footer .container .footer_content {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 15px;
    }

    .footer_bot {
        padding: 16px 0;
    }

    .news_items {
        gap: 24px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.catalog_filters {
    display: none;
}

.project {
  display: grid;
  grid-template-columns: 27% 1fr;
  gap: 20px;
  align-items: flex-start;
   padding-top: 48px;
}

.projectSwiper {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.projectSwiper  .slider_nav {
    border: 1px solid #423E63;
}

.project__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}

.project__img {
    width: 100%;
}


@media (max-width: 768px) {
    .project {
        grid-template-columns: 1fr;
    }
    
    .project__img {
        max-height: 100%;
        max-width: 100%;
        width: auto;
    }
    
    .projectSwiper {
        order: 2;
    }
}


.project_content {
    width: 100%;
    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-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.task_desc {
    width: 100%;
    -webkit-box-shadow: -6px 4px 24px 0px #00000014;
    box-shadow: -6px 4px 24px 0px #00000014;
    border-left: 8px solid #423E63;
    padding: 24px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.task_desc p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
}

.task_desc span {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
    color: #323232;
}

.project_result {
    width: 100%;
    padding: 24px 20px;
    background: #423E63;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.project_result p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
}

.project_result span {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
}

.project .cb_col {
    height: auto;
    padding-top: 0 !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.project .сb_row_main .cb_col {
    height: 29px;
    padding-top: 3px;
}

.project .cb_row .cb_col:nth-child(2) {
    max-width: 246px;
}

.project .cb_row .cb_col:nth-child(1),
.project .cb_row .cb_col:nth-child(2) {
    border-right: 2px solid #fff;
}

.btn_project {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #423E63;
    border: 1px solid #423E63;
    height: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 177px;
    margin-top: 70px;
    cursor: pointer;
}

.contacts_page_title {
    display: block;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1%;
    margin-bottom: 66px;
    width: 100%;
    color: #323232;
}

.contacts_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 100px;
    max-width: 430px;
    width: 100%;
}

.contacts_block * {
    color: #323232;
}

.contacts_block .footer_socials a {
    background-color: #423E63;
}

.contacts_page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 60px;
    max-width: 80%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contacts_block_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 19px;
    margin-bottom: 24px;
}

.contacts_block_info span {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0%;
}

.contacts_block_info p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
}

.contacts_block_title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #323232;
    margin-bottom: 25px;
}

.contacts_name_span {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #323232;
    margin-bottom: 25px;
}

.contacts_block_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    text-decoration: none;
    margin-bottom: 16px;
}

.contacts_name p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    margin-bottom: 25px;
}

.catalog_tabs_close {
    display: none;
}

.banner_slide_item_desk,
.banner_slide_item_mob {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
}

.banner_slide_item_mob {
    display: none;
}

@media screen and (max-width: 700px) {
    .banner_slide_item_mob {
        display: block;
    }

    .banner_slide_item_desk {
        display: none;
    }

    .search_items .catalog_brands_item_info {
        padding-left: 0 !important;
        border-left: none !important;
        border-top: 1px solid #DCDCDC;
        padding-top: 16px;
    }

    .search_items .catalog_brands_item img {
        max-width: 96px;
    }

    .search_items .catalog_brands_item_name {
        font-size: 14px;
    }

    .search_items .catalog_brands_item {
        gap: 14px;
    }

    .search_items .catalog_brands_item_info {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .search_items .catalog_brands_item_info .catalog_serial_card_pricewrap .price {
        font-size: 18px;
    }

    .search_items .catalog_brands_item_info .catalog_serial_card_pricewrap p {
        font-size: 10px;
    }

    .search_items .catalog_brands_item_info .btn {
        width: 147px;
        margin-top: 0;
    }

    .section_title span {
        padding-left: 5px;
    }

    .catalog_tabs.act {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        background-color: #fff;
        position: absolute;
        max-width: 100%;
        width: calc(100% - 30px);
        z-index: 10000;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .catalog_tabs.act .catalog_tab {
        border-top: 1px solid #DCDCDC;
    }

    .catalog_tabs.act .catalog_tabs_close {
        display: block;
    }

    .search_input {
        max-width: 150px;
        height: 29px;
    }

    .catalog_serial_tab {
        font-size: 10px !important;
    }

    .about_company_block_abs {
        width: 60px;
    }

    .search_wrap.act {
        top: 68px;
        padding-left: 20px;
        padding-right: 60px;
        position: static;
        padding-top: 0;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        padding-bottom: 32px;
        border-bottom: none;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .search_wrap.act .popup_close {
        top: 77px;
    }

    .fixed .search_wrap.act {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
        padding-top: 15px;
    }

    .fixed .search_wrap.act .popup_close {
        top: 0;
    }

    .another_products_item {
        width: 100% !important;
    }

    .card_name_wrap.mob .catalog_serial_card_info_title {
        margin-bottom: 10px;
    }

    .contacts_page {
        padding-left: 0;
        padding-top: 30px;
    }

    .contacts_block_title {
        font-size: 24px !important;
    }

/*     .project {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
} */

    .contacts_block {
        margin-bottom: 50px;
    }

    .btn_project {
        width: 100%;
        margin-top: 32px;
    }

    .catalog_brands_page .catalog_brands_item {
        width: 100% !important;
        max-width: 100%;
    }

    .catalog_brands_page .catalog_brands_item img {
        max-width: 190px;
    }

    .docs_item {
        padding: 12px 20px !important;
    }

    .docs_item div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .img_wrap {
        width: 100%;
    }

    .img_wrap img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .catalog_serial_card_info_title.mob {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 0;
    }

    .catalog_serial_card_info_title.mob .docs_btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 45px;
        height: 40px;
    }

    .section_title {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .section_title p {
        width: 100%;
        margin-top: 20px;
        margin-left: 0;
    }

    .catalog_tabs {
        display: none;
    }

    .catalog_tabs_pages {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: 100%;
    }

    .catalog_pages {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 100% !important;
    }

    .catalog_filters {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 4px;
        width: 100%;
        margin-bottom: 20px;
    }

    .catalog {
        margin-top: 32px;
    }

    .fltrbtn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-grid-column-align: center;
        justify-self: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 6px 8px;
        border: 1px solid #423E63;
        height: 34px;
        color: #423E63;
        font-family: Arial;
        font-weight: 400;
        font-size: 12px;
        line-height: 100%;
        letter-spacing: 5%;
        cursor: pointer;
    }

    .catalog_item {
        width: calc(50% - 10px);
        height: 150px;
        margin-bottom: 30px;
    }

    .catalog_item span {
        font-family: Montserrat;
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0%;
        vertical-align: middle;
    }

    .catalog_item img {
        height: 82px;
        width: auto;
        top: -12px;
    }

    .about_company_blocks .about_company_block span {
        font-family: Montserrat;
        font-weight: 600;
        font-size: 54px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
    }

    .about_company_block {
        height: 160px !important;
    }

    .about_company_blocks .about_company_block p {
        font-family: Montserrat;
        font-weight: 600;
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 1%;
        text-align: center;
    }

    .section_title {
        font-family: Montserrat;
        font-weight: 600;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .brands_blocks {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .brands_block_big {
        padding: 32px 22px;
        width: 100%;
        height: auto;
    }

    .brands_block_big span {
        font-family: Montserrat;
        font-weight: 600;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .titlewrap a {
        display: none;
    }

    .news_page_head {
        margin-bottom: 0;
    }

    .news_section_main .news_items .news_item {
        display: none;
    }

    .news_section_main .news_items .news_item:nth-child(1) {
        display: block;
    }

    .brands_blocks_items a {
        width: calc(50% - 10px);
        height: 149px;
    }

    .brands_slider_wrap .navright,
    .brands_slider_wrap .navleft {
        display: none;
    }

    .brands_section {
        padding-bottom: 32px;
    }

    .catalog_main .titlewrap a {
        display: none;
    }

    .catalog_main .catalog_main_items {
        padding-top: 30px;
    }

    .catalog_main .catalog_main_items .catalog_main_item {
        width: 47%;
        height: 152px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding-bottom: 24px;
        padding-left: 14px;
        gap: 8px;
    }

    .catalog_main .catalog_main_items .catalog_main_item span {
        font-size: 14px;
        line-height: 20px;
    }

    .catalog_main .catalog_main_items .catalog_main_item img {
        height: 82px;
        width: auto;
    }

    .banner_slide_item {
        padding: 20px !important;
        padding-top: 40px !important;
    }

    .banner_slide_item .banner_slide_item_text {
        font-size: 16px;
    }

    .banner_slide_item .banner_slide_content {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .banner_slide_item .banner_slide_item_btns {
        position: absolute;
        bottom: 90px;
    }

    .banner_slide_item_title {
        font-family: Montserrat;
        font-weight: 600;
        font-size: 26px;
        line-height: 28px;
        letter-spacing: 0%;
        text-align: center;
    }
}

span.error {
    font-size: 10px;
    color: red;
}

.block_text h2,
.block_text h3,
.block_text h4,
.block_text h5 {
    font-weight: 600;
    letter-spacing: 1%;
    margin-bottom: 14px;
}

.block_text p {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0px;
    margin-bottom: 14px;
}

.block_text a {
    color: #423E63;
}

.block_text ul,
.block_text ol {
    margin-bottom: 14px;
    font-size: 12px;
    padding-left: 30px;
}

.block_text table {
    margin-bottom: 14px;
    width: 100%;
    border-collapse: collapse;
}

.block_text table th,
.block_text table td {
    border: 1px solid #ddd;
    padding: 3px;
    text-align: left;
}

.block_text table thead {
    background-color: #f2f2f2;
}

.block_text table tr:nth-child(even) {
    background-color: #fafafa;
}

.block_text table tr:hover {
    background-color: #f1f1f1;
}

.contact_map {
    height: 550px;
}

.breadcrumb img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
}

.catalog_serial_card_info .docs_btn {
    margin-bottom: 10px;
}