@font-face {
    font-family: "Roboto"; 
    src: url("../fonts/Roboto-Regular.ttf") format("truetype"); 
    font-weight: 400;
}
@font-face {
    font-family: "Roboto"; 
    src: url("../fonts/Roboto-Medium.ttf") format("truetype"); 
    font-weight: 500;
}
@font-face {
    font-family: "Roboto"; 
    src: url("../fonts/Roboto-Bold.ttf") format("truetype"); 
    font-weight: 700;
}
@font-face {
    font-family: "slick"; 
    src: url("../fonts/slick.ttf") format("truetype");
}
:root {
    --select-color: #ff3e3d;
    --addit-color: #025273;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #0e1f3d;
}
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    background-color: #fff;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}
a:hover {
    cursor: pointer;
}  
ul {
    list-style: none;
}    
ul li {
    list-style: none;
}
button {
    border: none;
    cursor: pointer;
}

.btn {
    color: #fff;
    background: var(--select-color);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    padding: 0 20px;
    transition: all 0.3s;
    text-align: center;
}
.btn:hover {
    box-shadow: 0 0 20px rgba(242, 49, 48, 0.4);
}
header {
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
}
.header_top {
    height: 40px;
    background: #f4f6fb;
}
.header_top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.menu_top {
    display: flex;
    gap: 15px;
    margin-left: 50px;
}
.menu_top li a {
    font-size: 14px;
}
.menu_top li a:hover{
    color: var(--select-color);
}
.header_contact {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
}
.header_contact svg {
    margin-right: 6px;
    height: 20px;
    width: 20px;
}
.header_contact:hover svg path{
    color: #0e1f3d;
    transition: all 0.3s;
}
.header_contact:hover {
    color: var(--select-color);
}
.header_contact:hover svg path{
    color: var(--select-color);
}
.header_contact_wrap {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 38px;
}
.header_bottom {
    display: flex;
    align-items: center;
    background: #fff;
    height: 90px;
}
.logo img{
    height: 40px;
    width: auto;
    margin-right: 30px;
}
.search {
    height: 48px;
    margin-left: 60px;
    flex-grow: 1;
    display: flex;
}
.search_input {
    border: none;
    height: 100%;
    padding: 0 17px;
    flex-grow: 1;
    font-size: 15px;
    flex-grow: 1;
    border: 2px solid #dfdfdf;
}
.search_input::placeholder {
    font-size: 16px;
    color:#0e1f3d;
}
.search_input:focus, .search_category:focus {
    outline: none;
}
.search_btn {
    width: 48px;
    height: 100%;
    cursor: pointer;
    background: #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search_icon {
    width: 25px;
    height: 25px;
}
.search_icon path{
    fill: #404356;
    transition: all 0.3s;
}
.search_btn:hover .search_icon path{
    fill: var(--select-color);
}
.catalog_btn {
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    height: 50px;
}
.catalog_btn_icon {
    height: 18px;
    width: 18px;
    margin-right: 15px;
}


.title_arrow {
    position: relative;
}
.title_arrow::after {
    content: url(../icons/arrow_down.svg);
    position: absolute;
    right: 10px;
    top: 13px;
}
.header_bottom_menu_list {
    display: none;
    background: #fff;
    padding: 10px 0;
    z-index: 100;
    position: absolute;
    top: 100%;
    box-shadow: 0 1px 15px rgba(0, 0, 0, .25);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.header_bottom_menu_list a {
    color: #3d464d;
    font-size: 14px;
    width: 100%;
    display: block;
    padding: 8px 24px 6px 16px;
    font-weight: 500;
}
.header_bottom_menu_list a:hover {
    background: #f2f2f2;
}
.header_bottom_menu_title:hover {
    background:rgba(255, 255, 255, 0.1);
}
.header_bottom_menu_title:hover~.header_bottom_menu_list {
    display: block;
}
.header_bottom_menu_list:hover {
    display: block;
}
.megamenu {
    padding: 26px 30px;
    background: #fff;
}
.megamenu a:hover {
    color:var(--select-color);
    background: transparent;
}
.megamenu_title {
    font-size: 16px !important;
}
.megamenu_title_margin {
    margin-top: 20px;
}
.megamenu_list {
    padding-top: 10px;
    border-top: 1px solid #e5e5e5;
}
.megamenu_list a {
    color: #5c6b73;
    font-weight: 400;
}

.main {
    background: #f4f6fb;
    margin-bottom: 40px;
}
.main .container {
    height: 100%;
}
.main_wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.main_banner {
    flex-grow: 1;
    position: relative;
}
.main_btn {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 25px;
    margin-left: 30px;
}
.main_title {
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
}
.main_title span {
    color: #025273;
    font-weight: inherit;
}
.main_img {
    height: 520px;
    padding-top: 20px;
}
.order {
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 1px solid;
    transition: all 0.3s;
}
.order:hover {
    color: var(--select-color);
}

.advantages {
    padding: 0;
}
.advantages_item {
    display: flex;
    flex-direction: column;
    align-items:start;
    justify-content: space-between;
    padding: 15px 20px;
    border: 1px solid #dcd8d8;
    height: 100%;
    position: relative;  
}
.advantages .col-6 {
    background: #fff;
}
.advantages .col-6:nth-child(even) {
    background: #e6e9f1;
}
.advantages_icon {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6fb;
}
.advantages_icon_wh {
    background: #fff;
}
.advantages_title {
    font-size: 17px;
    margin-top: 15px;
}
.advantages_number {
    position: absolute;
    right: 7px;
    top: 7px;
    font-size: 22px;
    font-weight: 700;
    color: #f4f6fb;
}

.title {
    font-size: 34px;
    font-weight: 700;
}
.catalog {
    padding: 40px 0 50px;
    background: #f4f6fb;
}
.catalog_wrap {
    margin-top: 20px;
}
.catalog_title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 6px;
    text-align: center;
}
.catalog_title span {
    margin-left: 3px;
    font-size: 12px;
    font-weight: 400;
    color: #9c9c9c;
}
.catalog_img {
    height:110px;
    width: 110px;
    object-fit: contain;
}
.catalog_item {
    padding: 20px;
    border: solid 1px #f4f6fb;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s;
    box-shadow: 0 0 20px rgba(101, 101, 101, 0);
    background: #fff;
}
.catalog_item:hover {
    box-shadow: 0 0 20px rgba(101, 101, 101, 0.25);
    z-index: 100;
}

.services {
    background: #f4f6fb;
    padding: 40px 0 50px;
}
.services_link {
    display: flex;
    align-items: center;
}
.services_icon {
    transition: all 0.8s;
}
.services_icon circle{
    fill: #fff;
    transition: all 0.3s;
}
.services_icon path{
    color: #0e1f3d;
    transition: all 0.3s;
}
.services_icon line{
    color: #0e1f3d;
    transition: all 0.3s;
}
.services_link:hover .services_icon circle{
    fill: var(--select-color);
}
.services_link:hover .services_icon path{
    color: #fff;
}
.services_link:hover .services_icon line{
    color: #fff;
}
.services_icon {
    width: 28px;
    height: 28px;
    margin-left: 15px;
}
.services_wrap {
    margin-top: 30px;
}
.services_item {
    display: block;
    padding: 25px;
    background: #fff;
    position: relative;
    height: 100%;
    transition: all 0.3s;
}
.services_title {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
}
.services_subtitle {
    font-size: 15px;
    color: #aeaeae;
}
.services_btn {
    height: 50px;
    margin-top: 30px;
    padding: 0 35px;
    border: 1px solid #f4f6fb;
    color: #ababa8;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    transition: all 0.3s;
}
.services_btn_icon {
    margin-left: 10px;
}
.services_btn_icon path{
    color: #ababa8;
}
.services_img {
    position: absolute;
    width: 30%;
    height: auto;
    right: 0;
    bottom: 0;
}
.services_item:hover {
    box-shadow: 0 0 20px rgba(101, 101, 101, 0.25);
}
.services_item:hover .services_btn{
    background: var(--select-color);
    color: #fff;
}
.services_item:hover .services_btn_icon path {
    color: #fff;
}

.calculation {
    padding: 60px 0;
}
.calculaton_wrap {
    margin-top: 30px;
}
.calculation_left {
    position: relative;
    background: url(/img/calculation.jpg) center center / cover no-repeat;
    height: 100%;
    min-height: 400px;
}
.calculation_title_left {
    position: absolute;
    top: 20px;
    left: 20px;
}
.calculation_title_right {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
}
.calc_left_text {
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}
.calculation_right {
    padding: 30px;
    background: #f4f6fb;
}
.calculation_title {
    font-size: 28px;
    font-weight: 700;
}
.calculation_subtitle {
    font-size: 16px;
    margin: 8px 0 20px;
}
.calculation_form {
    font-size: 18px;
}
.calculation_form input {
    height: 60px;
    width: 48%;
    border: none;
    border-bottom: 1px solid #dfdfdf;
    padding: 0px 20px;
    font-size: 18px;
}
.calculation_form input::placeholder, .calculation_form textarea::placeholder {
    color:#999;
}
.calculation_form input:focus-visible, .calculation_form textarea:focus-visible {
    outline-color: #999;
}
.calculation_form textarea {
    padding: 13px 20px;
    border: none;
    border-bottom: 1px solid #dfdfdf;
    margin: 20px 0;
    width: 100%;
    font-size: 18px;
}
.calculation_form_top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.btn_fill {
    width: 100%;
    font-size: 18px;
    height: 60px;
}
.calculation_note {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
}
.calculation_note a {
    color: #025273;
    display: inline;
}

.company_left {
    padding: 50px 70px 50px 0;
    border-right: 1px solid #dfdfdf;
}
.company_right {
    padding: 50px 0px 50px 70px;
}
.company_logo {
    height: 50px;
    width: auto;
    max-width: 100%;
    margin-top: 25px;
}
.company_descr {
    margin-top: 25px;
    font-size: 18px;
    color: #404356;
    line-height: 23px;
}
.partners_logo {
    padding: 40px 0 20px;
    display: flex;
}
.partners_logo_item {
    width: 25%;
    border: 1px solid #f4f6fb;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}
.partners_logo_icon {
    width: 98%;
}
.company_btn {
    height: 50px;
    margin-top: 30px;
    padding: 0 35px;
    border: 1px solid #f4f6fb;
    color: var(--select-color);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    transition: all 0.3s;
}
.company_btn_icon {
    margin-left: 10px;
}
.company_btn_icon path{
    color: var(--select-color);
}
.company_btn:hover {
    background: var(--select-color);
    color: #fff;
}
.company_btn:hover .company_btn_icon path {
    color: #fff;
}


footer {
    margin-top: 30px;
    background: #262a3c;
}
.footer_logo {
    height: 43px;
    width: auto;
    max-width: 100%;
    margin-bottom: 30px;
}
.footer_logo path {
    color: #fff;
}
.footer_menu {
    padding: 50px 30px;
}
footer .col-12 {
    border-right: 1px solid rgb(255, 255, 255, 0.1);
    border-left: 1px solid rgb(255, 255, 255, 0.1);
}
.footer_menu_title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}
.footer_menu_descr {
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    opacity: 0.5;
}
.footer_menu_item {
    font-size: 16px;
    font-weight: 500;
    display: block;
    color: #fffc;
    margin-bottom: 13px;
}
.contact_item {
    display: block;
    margin: 10px 0;
}
footer a:hover {
    color:var(--select-color);
}
.social_links {
    display: flex;
    gap: 10px;
}
.social_link {
    width: 44px;
    height: 44px;
    border: 1px solid #fff;
    opacity: 0.3; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.social_link path {
    color: #fff;
}
.social_link:hover {
    opacity: 1;
}
.contact_name {
    margin: 18px 0 5px 0;
    color: #fff;
    opacity: 0.8;
    font-size: 14px;
}
.contact_value {
    font-size: 16px;
    color: #fff;
    line-height: 22px;
}
.tel_value {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}
.tel_schedule {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
    position: relative;
    padding-left: 10px;
}
.tel_schedule::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    left: 0;
    top: 6px;
    background: #219653;
    border-radius: 100%;
}
.footer_bottom {
    border-top: 1px solid rgb(255, 255, 255, 0.1); 
}
.copyright {
    padding: 30px 0 40px;
}
.copyright_main {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    opacity: 1 !important;
    margin-right: 4px;
}
.copyright_descr {
    opacity: 0.5;
    font-size: 16px;
    color: #fff;
}

.catalog_main_wrap .container {
    display: flex;
}
.catalog_main {
    padding-bottom: 30px;
}
.catalog_top {
    padding-bottom: 40px;
}

.breadcrumbs {
    padding: 15px 0px;
    display: flex;
    gap: 20px;
}
.breadcrumbs li {
    display: flex;
    position: relative;
}
.breadcrumbs_item {
    color: #9c9c9c;
    font-size: 16px;
    display: flex;
}
.breadcrumbs_item:hover {
    color: var(--select-color); 
}
.breadcrumbs li:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    right: -11px;
    width: 4px;
    height: 4px;
    background: red;
    cursor: default;
    color: #b6b5b5;
}
.catalog_title_wrap {
    display: flex;
    align-items: end;
}
.page_title {
    font-size: 32px;
    font-weight: 700;
}
.counter {
    padding: 2px 6px 3px;
    margin-left: 8px;
    font-size: 14px;
}
.sorting {
    font-size: 16px;
    padding: 5px 5px 5px 0;
    cursor: pointer;
    position: relative;
    width: 220px;
}
.sorting_wrap {
    border-top: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
}
.sorting_title {
    padding: 10px 15px;
    border: solid 1px #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #404356;
}
.sorting svg path{
    color: #dfdfdf;
}
.sorting_menu {
    position: absolute;
    top: 46px;
    left: 0px;
    display: none;
    z-index: 100;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgb(182, 182, 182, 0.25);
    width: 100%;
}
.avail_wrap {
    padding: 10px 15px;
    border: solid 1px #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    margin-left: 14px;
}
.avail_wrap label{
    cursor: pointer;
    color: #404356;
}
.avail_wrap input {
    margin-right: 6px;
}
.visible {
    display: block;
}
.sorting_menu_item {
    display: block;
    padding: 14px 15px 14px 15px;
    white-space: nowrap;
}
.sorting_menu_item:hover {
    background-color: #f4f6fb;
}
.sidebar_top {
    height: 70px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dfdfdf;
}
.sidebar_title {
    font-size: 20px;
}
.sidebar {
    width: 25%;
    flex-basis: 25%;
    flex-shrink: 0;
    border: 1px solid #dfdfdf;
    height: max-content;
}
.sidebar_wrap {
    padding: 20px 15px;
}
.sidebar_section_title {
    font-size: 20px;
    color: #919cb5
}
.sidebar_section_link {
    display: flex;
    align-items: center;
}
.sidebar_section_icon {
    margin-right: 6px;
    transform: rotate(90deg);
}
.sidebar_section_icon path {
    color: #919cb5;
}
.sidebar_item {                   
    margin-right: 5px;
}
.sidebar_link {
    margin: 15px 0 0 25px;
    font-size: 18px;
    transition: all 0.2s;
    display: block;
    line-height: 22px;
}
.sidebar_link:hover{
    color: var(--select-color);
}
.sidebar_counter {
    font-size: 14px;
    color: #9c9c9c;
}
.card_top_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 6px;
}
.card {
    padding: 25px 25px 15px 25px;
    border: solid 1px #dfdfdf; 
    margin-right: -1px;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.card:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 20px 0px;
}
.card_img {
    width: 90%;
    max-height: 50%;
    margin-bottom: 20px;
}
.card_img img {
    width: 100%;
    max-height: 100%;
}
.card_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
.card_title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    margin: 15px 0 25px;
    display: block;
}
.card_title:hover {
    color: var(--select-color)
}
.card_availability {
    font-size: 14px;
    position: relative;
    margin-left: 10px;
    width: max-content;
}
.card_availability::before {
    content: "•";
    font-size: 25px;
    position: absolute;
    left: -12px;
    top: -5px;
    color: #5fa800;
}
.not_available::before {
    color: #e10000;
}
.card_article {
    font-size: 14px;
}
.card_article span {
    font-weight: 700;
}
.card_btn {
    padding: 11px;
    background-color: #025273;
    color: #ffffff;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    transition: all 0.3s;
    letter-spacing: 0.8px;
}
.card_btn:hover {
    background-color: var(--select-color);
}
.card_bottom_info {
    font-size: 15px;
    margin-bottom: 10px;
}
.card_bottom_info span {
    font-weight: 700;
}
.card_delivery {
    font-size: 15px;
    color: #219653;
}
.card_price_title {
    font-size: 18px;
    margin:25px 0 6px;
    font-weight: 700;
}
.card_price {
    font-size: 28px;
    font-weight: 800;
    color: #000;
}
.pagination {
    display: flex;
    margin-top: 20px;
}
.page_item {
    display: block;
    height: 60px;
    width: 60px;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    transition: all 0.3s;
}
.page_item_active {
    color: #fff;
    background: var(--select-color);
}
.page_item:hover {
    box-shadow: 0 4px 10px hsla(0, 0%, 67.1%, .25);
}
.page_next {
    background: #dfdfdf;
}
.page_next svg {
    transform: rotate(-90deg);
}

.product_slider {
    height: 400px;
    display: flex;
    padding-top: 2px;
}
.slider-nav {
    width: 15%;
    margin-right: 5%;
    padding-top: 2px;
}
.slider-nav .slick-list {
    padding-top: 2px;
}
.slider-nav .slick-list .slick-track{
    padding-top: 2px;
}
.slider-nav img {
    padding: 3px;
    height: auto;
    max-height: 100%;
}
.slider-nav .slick-slide {
    margin-top: 2px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.slider-for {
    width: 80%;
    padding: 10px 30px;
}
.slider-for a {
    width: 100%;
    height: auto;
}
.slider-for img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}
.slick-list {
    max-width: 100%;
    max-height: 100%;
}
.slider-nav .slick-current {
    box-shadow: inset 0 0 0 1px var(--addit-color);
}
.product_main {
    padding-bottom: 40px;
}
.product_descr {
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 8px;
    margin-top: 24px;
}
.product_about {
    font-size: 18px;
    font-weight: 800;
    color: var(--addit-color);
    margin-bottom: 10px;
}
.product_attribute {
    margin: 12px 0 0;
    display: flex;
    flex-wrap: wrap;
    color: #999;
    font-size: 14px;
}
.attribute_item {
    margin-right: 18px;
}
.attribute_item span {
    color: #28a745;
}
.product_bottom_wrap {
    margin-top: 28px;
}
.specif_name {
    flex-shrink: 0;
    color: #404356;
}
.specif_item {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 20px;
    color: #404356;
}
.specif_value {
    margin-left: auto;
    color: #404356;
}
.divider {
    flex: 1 1;
    border-bottom: 1px solid #dfdfdf;
    overflow: hidden;
    margin: 0 8px;
    font-size: 10px;
}
.more_specif {
    display: block;
    font-size: 20px;
    color: #404356;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-top: 14px;
}
.more_specif:hover {
    color: var(--select-color);
}
.product_info {
    padding: 20px;
    box-shadow: 0 0 10px 0 rgb(118, 118, 118, 0.25);
}
.product_top_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 4px;
}
.product_article {
    font-size: 18px;
    color: #404356;
}
.product_article span {
    font-weight: 700;
    color: #404356;
}
.product_availability {
    font-size: 20px;
    position: relative;
    color: #404356;
    margin-left: 10px;
}
.product_availability::before {
    content: "•";
    font-size: 25px;
    position: absolute;
    left: -12px;
    top: -2px;
    color: #5fa800;
}
.product_not_available::before {
    color: #e10000;
}
.product_price_title {
    font-size: 20px;
    color: #0e1f3d;
}
.product_price {
    font-size: 48px;
    font-weight: 800;
    color: #0e1f3d;
    margin: 6px 0 28px;
}
.add_cart {
    font-size: 22px;
    font-weight: 700;
}
.product_delivery {
    padding: 25px 40px;
    margin-top: 40px;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
}
.delivery_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.delivery_city {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}
.delivery_city svg {
    margin-right: 5px;
}
.delivery_city svg path {
    color: var(--select-color);
}
.delivery_item {
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.delivery_title {
    font-size: 20px;
    color: #404356;
}
.delivery_title span {
    font-weight: 700;
    color: #404356;
}
.delivery_icon {
    margin-right: 20px;
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.attributes {
    margin: 60px 0;
}
.specif_row {
    padding: 0 25px;
    margin-top: 20px;
}

.request {
    padding-bottom: 50px;
}
.request_wrap {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    background: #f4f6fb;
    border-radius: 10px;
    padding: 40px;
}
.request_form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.request_form input {
    height: 60px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #dfdfdf;
    padding: 0px 20px;
    font-size: 18px;
}
.request_form input::placeholder, .calculation_form textarea::placeholder {
    color:#999;
}
.request_form input:focus-visible, .calculation_form textarea:focus-visible {
    outline-color: #999;
}
.request_subtitle {
    font-size: 20px;
    margin-top: 20px;
    font-weight: 700;
}
.request_mark {
    margin: 40px 0 13px;
    font-size: 16px;
}
.request_info {
    flex-grow: 1;
    background: #fff;
    box-shadow: 0 0 30px rgb(112, 112, 112, 0.2);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
}
.request_info_item {
    display: flex;
}
.request_info_number {
    flex-shrink: 0;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--addit-color);
    font-size: 18px;
}
.request_info_title {
    font-size: 24px;
    margin-bottom: 5px;
}
.request_info_subtitle {
    font-size: 18px;
}
.mobile_show {
    display: none;
}
.header_mobile {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_mobile img{
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.header_mobile_right, .header_mobile_left {
    display: flex;
    align-items: center;
}
.header_mobile_left {
    height: 100%;
}
.header_mobile_right {
    gap: 12px;
}
.hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 32px;
    height: 32px;
    z-index: 10;
    padding: 5px 6px;
    border-radius: 4px;
    border: 1px solid var(--addit-color);
}
.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--addit-color);
    transition: 0.5s all;
    z-index: 10; 
}

.mobile_logo {
    height: 100%;
    width: auto;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile_logo img {
    max-height: 35px;
    max-width: 160px;
    height: 100%;
}
.header_mobile_right svg {
    width: 22px;
    height: auto;
}
.header_mobile_right svg path {
    color:#0e1f3d;
}

.show_flex {
    display: flex;
}
.menu_open {
    position: fixed;
    top: 0;
    left: -100%;
    width: 500px;
    height: 100%;
    background: #fff;
    transition: 0.6s all;
    z-index: 100;
    box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.45);
    overflow-y: scroll;
}
.menu_open_active {
    left: 0;
}
.mobile_link_wrap {
    position: relative;
}
.mobile_link_btn {
    position: absolute;
    padding: 5px;
    top: 12px;
    right: 5px;
    background: none;
    transition: all 0.3s;
}
.mobile_link_title {
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    background: #f7f5f7;
    display: block;
}
.mobile_link_dropdown {
    padding-left: 15px;
    border-bottom: 1px solid #dfdfdf;
    transition: all 0.3s;
}
.mobile_item {
    font-size: 16px;
    font-weight: 400;
    padding: 15px 35px 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile_item_wrap {
    position: relative;
}
.mobile_subitem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    padding: 12px 20px 12px 25px;
}
.mobile_subitem{
    border-top: 1px solid #dfdfdf;
}
.mobile_link_dropdown {
    overflow: hidden;
    max-height: 0;
}
.mobile_quant {
    font-size: 12px;
    color: #9c9c9c;
    margin-left: 3px;
}
.mobile_link_button_active {
    transform: rotate(180deg);
}
.mobile_link_contact {
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid #dfdfdf;
}
.mobile_link_contact .tel_schedule {
    color: #0e1f3d;
    margin-top: 3px;
}
.mobile_link_contact .header_contact{
    font-weight: 400;
}
.menu_pop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .5);
    transition: 0.6s all;
}
.mobile_search_wrap {
    height: 50px;
    width: 100%;
    position: fixed;
    top: 0;
    display: none;
    background: #fff;
    z-index: 1000;
}
.mobile_search_wrap .search {
    margin: 0;
    height: 50px;
}
.search_close {
    background: #fff;
}
.search_close img {
    padding: 10px 8px 12px 6px;
    height: 100%;
    border-left: 1px solid #ebebeb;
}
.hide {
    display:none
}
.show {
    display:block
}
@media (max-width: 1400px) {
    .services_btn {
        padding: 0 15px;
    }
}
@media (max-width: 992px) {
    .lg_none {
        display: none;
    }
    .logo {
        margin: 0;
        height: 20px;
    }
    .logo img {
        height: 100%;
    }
    .header_center {
        height: 54px;
    }
    .search_input {
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
    }

    .product_slider {
        height: 300px;
    }
    .product_delivery {
        padding: 25px 0;
    }
    .mobile_show {
        display: block;
    }
    .company_left {
        padding: 0 0 20px;
        border-bottom: 1px solid #dfdfdf;
        border-right: none;
    }
    .company_right {
        padding: 20px 0 0;
    }
    footer .col-12 {
        border-bottom: 1px solid rgb(255, 255, 255, 0.1);
        border-left: none;
        border-right: none;
    }
    .footer_menu {
        padding: 30px 10px;
    }
    .catalog_main_wrap .container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
    .sidebar_link {
        margin-top: 10px;
    }
    .sidebar_wrap {
        padding: 15px;
    }
    .sorting_wrap {
        border-top: none;
        border-right: none;
        border-bottom: none;
        margin: 20px 0 10px 0;
        padding: 0;
    }
    .sidebar_top {
        height: 50px;
    }

}
@media (max-width: 768px) {
    .search {
        margin: 0 0 0 10px;
    }
    .product_right {
        margin-top: 20px;
    }
    .specif_row {
        padding: 0;
        margin-top: 0;
    }
    .request_wrap {
        flex-direction: column;
        gap: 20px;
    }
    .request_info {
        gap: 14px;
    }
    .main_title {
        font-size: 28px;
    }
    .main_btn {
        flex-direction: column-reverse;
        margin-left: 0;
        gap: 15px;
    }
    .calc_left_text {
        font-size: 22px;
    }
    .menu_open {
        width: 300px;
    }
    .sidebar_link {
        font-size: 16px;
        margin-top: 6px;
    }
    .catalog_top {
        padding-bottom: 20px;
    }
}
@media (max-width: 575px) {
    .sm_none {
        display: none;
    }
    .search_btn_sm {
        display: block;
        background: transparent;
    }
    .search_icon_sm path{
        fill: #fff;
    }
    footer {
        padding: 20px 0;
    }
    .footer_menu_title {
        margin-top: 20px;
        margin-bottom: 16px;
    }
    .catalog_wrap_top {
        flex-wrap: wrap;
    }
    .request_wrap {
        padding: 15px;
    }
    .page_title, .title {
        font-size: 24px;
    }
    .product_price {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .btn_fill {
        height: 50px;
    }
    .attributes {
        margin: 10px 0 30px;
    }
    .request_info {
        padding: 15px;
    }
    .add_cart {
        font-size: 18px;
    }
    .more_specif {
        font-size: 18px;
    }
    .request_mark {
        margin-top: 20px;
    }
    .main_banner {
        min-height: 400px;
    }
    .main_title {
        font-size: 22px;
    }
    .main_img {
        position: absolute;
        bottom: 0;
        right: -40px;
        height: 60%;
        z-index: 0;
    }
    .main_btn {
        align-items: start;
    }
    .advantages_title {
        font-size: 15px;
    }
    .services_item {
        padding: 10px;
    }
    .services_title {
        font-size: 20px;
    }
    .services_btn {
        height: 40px;
        padding: 0 10px;
        font-size: 14px;
    }
    .calc_left_text {
        font-size: 14px;
    }
    .calculaton_wrap {
        margin-top: 10px;
    }
    .calculation_form_top {
        flex-direction: column;
    }
    .calculation_form input {
        width: 100%;
    }
    .partners_logo {
        flex-wrap: wrap;
    }
    .partners_logo_item {
        width: 50%;
    }
    .footer_menu {
        padding: 10px 10px;
    }
    .card {
        padding: 15px;
    }
    .card_title {
        font-size: 15px;
        margin: 10px 0 15px;
    }
    .card_price_title {
        margin-top: 20px;
        font-size: 16px;
    }
    .card_price {
        font-size: 20px;
    }
    .card_btn {
        margin-top: 15px;
    }
}
@media (max-width: 430px) {
    .sorting {
        width: max-content;
    }
    .sorting_title svg {
        margin-left: 5px;
    }
}