@font-face {
    font-family: "Montserrat"; 
    src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype"); 
}
@font-face {
    font-family: "slick"; 
    src: url("../fonts/slick.ttf") format("truetype"); 
} 
:root {
    --select-color: #e27368;
    --light-gray: #999999;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #333333;
}
html {
    overflow-x: hidden;
}
body {
    background-color: #fff;
    overflow-x: hidden;
}
a {
    display: block;
    text-decoration: none;
    transition: all 0.3s;
}
a:hover {
    cursor: pointer;
}  
ul {
    list-style: none;
}    
ul li {
    list-style: none;
}
button {
    border: none;
    cursor: pointer;
}

.header_top {
    height: 82px;
    border-bottom: 1px solid #f5f5f5;
}
.header_top .container {
    height: 100%;
    display: flex;
    align-items: center;
}
.search {
    height: 40px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 10px;
}
.search_input {
    border: 1px solid #ececec;
    background: #fafafa;
    height: 42px;
    padding: 0 17px;
    flex-grow: 1;
    font-size: 15px;
    flex-grow: 1;
    padding: 0 44px 0 16px;
    border-radius: 3px;
}
.search_input::-webkit-input-placeholder {
    color: #bfbfbf;
}
.search_input::-moz-placeholder {
    color: #bfbfbf;
}
.search_input:-ms-input-placeholder {
    color: #bfbfbf;
}
.search_input::-ms-input-placeholder {
    color: #bfbfbf;
}
.search_input::placeholder {
    color: #bfbfbf;
}
.search_input:focus, .search_category:focus {
    outline: none;
}
.search_btn {
    position: absolute;
    right: 6px;
    width: 30px;
    cursor: pointer;
    background: transparent;
    padding-right: 4px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}
.search_icon path{
    transition: all 0.3s;
}
.search_btn:hover .search_icon path{
    fill: var(--select-color);
}
.header_phone {
    font-size: 15px;
    font-weight: 700;
}
.header_mail {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    color: var(--select-color);
    text-decoration: underline;
    margin-top: 3px;
}
.header_bottom {
    height: 100px;
    border-bottom: 1px solid #f5f5f5;
}
.header_bottom .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.logo {
    height: 95px;
    width: auto;
    margin-right: 30px;
}
.logo img {
    height: 100%;
}
.menu {
    display: flex;
    align-items: center;
    gap: 16px;
}
.menu_item {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.8px;
    color: #222222;
    padding: 38px 12px 41px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.menu_item_icon {
    margin-right: 10px;
}
.menu_item_icon path {
    transition: all 0.3s;
}
.menu_item:hover {
    color: var(--select-color);
}
.menu_item:hover .menu_item_icon path{
    fill: var(--select-color);
}


.dropdown_menu {
    display: none;
    position: absolute;
    width: 100%;
    border-radius: 0 0 3px 3px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    padding: 37px 40px 10px;
    background: #fff;
    z-index: 1000;
    align-items: start;
    flex-wrap: wrap;
    top: 99px;
}
.dropdown_menu a:hover {
    color: var(--select-color);
}
.dropdown_menu_icon {
    width: 46px;
    height: 46px;
    -o-object-fit: contain;
       object-fit: contain;
}
.dropdown_menu_wrap {
    width: 25%;
    display: flex;
    margin-bottom: 32px;
}
.dropdown_submenu_title {
    font-size: 15px;
    color: #222222;
    padding-bottom: 6px;
    padding-left: 7px;
}
.dropdown_subitem {
    font-size: 13px;
    color: #666666;
    padding-top: 8px;
    padding-left: 7px;
}
.dropdown_menu_active {
    display: flex;
}

.main_wrap {
    padding: 32px 0;
}
.main_wrap .container {
    display: flex;
}
.sidebar {
    width: 244px;
    flex-basis: 244px;
    flex-shrink: 0;
    margin-right: 20px;
    border: 1px solid #f2f2f2;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.sidebar_wrap {
    padding: 11px 16px 11px 14px;
    position: relative;
}
.sidebar_wrap:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
}
.sidebar_icon {
    width: 24px;
    height: 24px;
    -o-object-fit: scale-down;
       object-fit: scale-down;
    margin-right: 4px;
}
.sidebar_item {
    font-size: 13px;
    margin-left: 13px;
    transition: all 0.2s;
}
.sidebar_link {
    display: flex;
    align-items: center;
}
.sidebar_link:hover .sidebar_item{
    color: var(--select-color);
}
.sidebar_arrow {
    margin-bottom: 6px;
    padding: 3px;
    cursor: pointer;
    position: absolute;
    right: 11px;
    top: 7px;
}
.sidebar_arrow path{
    fill: #333333;
    transition: all 0.2s;
}
.sidebar_arrow:hover path{
    fill: var(--select-color);
}
.sidebar_menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.sidebar_subitem {
    font-size: 12px;
    padding: 4px 0;
    line-height: 18px;
}
.sidebar_subitem:hover {
    color: var(--select-color);
}
.main_slider {
    height: 340px;
}
.slider_item {
    height: 340px;
    flex-shrink: 1;
    position: relative;
}
.slider_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -10;
}
.slider_text {
    width: 50%;
    margin-left: 10%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slider_title {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
    color: #0f265c;
    margin-bottom: 16px;
}
.slider_subtitle {
    font-size: 14px;
    line-height: 25px;
    text-transform: uppercase;
    color: #ff6051;
    margin-bottom: 29px;
}
.slider_btn {
    background-color: #0f265c;
    color: #ffffff;
    font-size: 10px;
    padding: 16px 26px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 3px;
    transition: all 0.3s;
}
.slider_btn:hover {
    background-color: #e78b82;
}
.slick-dots {
    bottom: 0;
}
.slick-dots li button:before {
    color: var(--select-color);
}
.slick-dots li.slick-active button:before {
    color: var(--select-color);
}
.banner_wrap {
    margin-top: 20px;
}
.banner_link {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.banner_img {
    width: 100%;
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.3s;
}
.banner_img:hover {
    transform: scale(1.1);
}
.section_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.title {
    font-size: 24px;
}
.top_all {
    font-size: 10px;
    color: var(--light-gray);
    text-transform: uppercase;
    margin-left: 10px;
}
.top_all:hover {
    color: var(--select-color);
}
.solutions {
    padding: 58px 0;
}
.solutions_wrap {
    border: 1px solid #ececec;
    position: relative;
}
.solutions_left {
    padding: 49px;
    display: flex;
    align-items:center;
    border-right: 1px solid #ececec;
}
.solutions_card {
    padding: 13px 19px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ececec;
}
.solutions_card:hover {
    color: var(--select-color);
}
.solutions_card_img {
    width: 80px;
    height: 80px;
    text-align: center;
    -o-object-fit: contain;
       object-fit: contain;
    flex-shrink: 0;
}
.solutions_card_name {
    font-size: 13px;
    line-height: 18px;
    margin-left: 9px;
}
.solutions_card:hover {
    color: var(--select-color);
}
.subtitle {
    font-size: 10px;
    color: var(--light-gray);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.solutions_left_img {
    width: 50%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    max-height: 400px;
}
.solutions_left_text {
    padding-left: 49px;
    width: 50%;
}
.solutions_title {
    font-size: 20px;
    margin-bottom: 26px;
}
.solutions_descr {
    font-size: 15px;
    line-height: 25px;
}
.solutions_btn {
    width: 100%;
    background: #fafafa;
    padding: 16px 26px 16px;
    text-transform: uppercase;
    border-bottom: 1px solid #ececec;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    font-size: 11px;
    text-align: center;
    transition: all 0.6s;
}
.solutions_btn:hover {
    background: #e78b82;
    color: #fff;
}
.solutions_top_tabheader {
    margin-left: auto;
}
.solutions_tabheader_item {
    color: #666666;
    font-size: 13px;
    margin-right: 24px;
    margin-top: -5px;
    padding-bottom: 4px;
    display: inline-block;
    cursor: pointer;
}
.solutions_tabheader_item:hover {
    color: #333333;   
}
.solutions_tabheader_item_active{
    color: #333333;
    border-bottom: 2px solid var(--select-color);
}

.post_wrap {
    margin-bottom: 32px;
}
.post {
    display: flex;
    flex-direction: column;
    border: 1px solid #ececec;
    border-radius: 3px;
    height: 100%;

}
.post:hover {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
.post_img {
    height: 160px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.post_text {
    padding: 23px 24px 20px;
}
.post_subtitle {
    color: var(--light-gray);
    margin-bottom: 6px;
    font-size: 10px;
    text-transform: uppercase;
}
.post_title {
    font-size: 14px;
    line-height: 25px;
}

footer {
    padding: 59px 0 58px;
    background: #333333;
}
.footer_item {
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s;
}
.footer_item:hover {
    opacity: 0.5;
}
.footer_subitem {
    font-size: 13px;
    color: var(--light-gray);
    padding: 4px 0;
    transition: all 0.3s;
}
.footer_subitem:hover {
    color: #fff;
}
.footer_center {
    padding-left: 50px;
}
.contact_item {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
}
.contact_img {
    width: 10px;
    height: auto;
    -o-object-fit: scale-down;
       object-fit: scale-down;
    margin-right: 14px;
    -o-object-position: center;
       object-position: center;
}
.contact_text {
    font-size: 16px;
    color: #ffffff;
}

.catalog_title {
    margin-top: 42px;
    display: flex;
    align-items: center;
}
.page_title {
    font-size: 32px;
}
.counter {
    padding: 2px 6px 3px;
    border: 1px solid rgba(153, 153, 153, 0.35);
    margin-left: 8px;
    border-radius: 3px;
    font-size: 13px;
    color: var(--light-gray);
}
.breadcrumbs {
    padding: 15px 0px 40px;
}
.breadcrumbs li {
    display: inline-block;
}
.breadcrumbs_item {
    color: #b6b5b5;
    font-size: 13px;
    display: inline-block;
}
.breadcrumbs_item:hover {
    color: var(--select-color); 
}
.breadcrumbs li:not(:last-child)::after {
    content: "-";
    margin: 0 10px;
    cursor: default;
    color: #b6b5b5;
}
.section_card {
    border: 1px solid #ececec;
    padding: 24px 25px;
    display: flex;
    align-items: start;
}
.section_card:hover {
    color: var(--select-color);
}
.section_card_img {
    height: 40px;
    width: 40px;
    -o-object-fit: contain;
       object-fit: contain;
}
.section_card_text {
    margin-left: 20px;
}
.section_card_title {
    font-size: 15px;
    margin-bottom: 6px;
}
.section_card_quantity {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
}
.sorting {
    font-size: 13px;
    padding: 5px 5px 5px 0;
    margin: 14px 0 20px;
    cursor: pointer;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: relative;
}
.sorting img {
    padding-bottom: 2px;
    padding-left: 3px;
}
.sorting_menu {
    position: absolute;
    top: 32px;
    left: 0px;
    display: none;
    z-index: 100;
    background-color: #ffffff;
    box-shadow: 0 1px 12px 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}
.visible {
    display: block;
}
.sorting_menu_item {
    display: block;
    padding: 14px 15px 14px 15px;
    white-space: nowrap;
}
.sorting_menu_item:hover {
    background-color: #f8f8f8;
}
.filters {
    display: flex;
    align-items: start;
    border-top: 1px solid #ececec;
    padding: 11px 0;
}
.filter_icon {
    width: 14px;
    height: auto;
    margin-right: 16px;
    margin-top: 8px;
}
.filters_block {
    display: flex;
    flex-wrap: wrap;
}
.filter_wrap {
    position: relative;
}
.filter_item {
    border: 1px solid #ececec;
    padding: 5px 26px 5px 9px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 3px;
    margin: 4px;
    position: relative;
    white-space: nowrap;
    transition: all 0.2s;
}
.filter_item:hover {
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}
.filter_item img {
    position: absolute;
    right: 10px;
    top: 10px;
}
.filter_menu {
    z-index: 100;
    position: absolute;
    padding: 19px;
    min-width: 230px;
    border-radius: 3px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    background: #fff;
    top: calc(100% - 4px);
}
.filter_menu input {
    margin-right: 8px;
    cursor: pointer;
    accent-color: var(--select-color);
}
.filter_menu label {
    margin-bottom: 4px;
    font-size: 13px;
    padding-top: 2px;
    cursor: pointer;
    display: block;
    display: flex;
    align-items: center;
}
.catalog_wrap {
    margin-bottom: 40px;
}
.card {
    padding: 25px 25px 15px 25px;
    border: solid 1px #ececec; 
    margin-right: -1px;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 20px 0px;
}
.card_img {
    width: 100%;
    max-height: 50%;
    margin-bottom: 20px;
}
.card_img img {
    width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.card_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
.card_title {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 8px;
}
.card_title:hover {
    color: var(--select-color)
}
.card_availability {
    color: #5fa800;
    border-bottom: 1px dotted;
    font-size: 12px;
    margin-bottom: 8px;
    position: relative;
    margin-left: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.card_availability::before {
    content: "•";
    font-size: 25px;
    position: absolute;
    left: -12px;
    top: -10px;
}
.not_available {
    color: #e10000;
}
.card_article {
    color: #999;
    font-size: 12px;
}
.card_btn {
    padding: 9px;
    background-color: #e27368;
    color: #ffffff;
    text-transform: uppercase;
    width: 100%;
    font-size: 11px;
    text-align: center;
    margin-top: 14px;
    border-radius: 3px;
    transition: all 0.3s;
    letter-spacing: 0.8px;
}
.card_btn:hover {
    opacity: 0.8;
}

.product_wrap {
    padding: 27px 12px 31px;
    border: 1px solid #ececec;
}
.info_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.info_article {
    font-size: 13px;
    color: var(--light-gray);
}
.info_logo {
    height: 32px;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
}
.property_title {
    font-size: 14px;
    margin-bottom: 13px;
}
.property_wrap {
    display: flex;
    margin-bottom: 12px;
}
.property_name {
    color: #999;
    font-size: 13px;
    position: relative;
    margin-right: 20px;
}
.property_name::after {
    position: absolute;
    right: -26px;
    content: "-";
    margin: 0 10px;
    color: #999;
    top: 8px;
    transform: translateY(-50%);
}
.property_value {
    font-size: 13px;
    margin-left: 5px;
}
.info {
    padding: 15px 15px 40px 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px 0px;
    border-radius: 4px;
    position: relative;
}
.info_title {
    margin-bottom: 26px;
    font-size: 16px;
    font-weight: 700;
}
.info_descr {
    font-size: 13px;
    line-height: 16px;
    color: #787878;
    margin-bottom: 20px;
}
.info_warranty {
    font-size: 13px;
    color: #666666;
    margin-bottom: 7px;
}
.info_btn {
    border-radius: 4px;
    background-color: var(--select-color);
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 30px 10px 30px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s;
}
.info_btn:hover {
    opacity: 0.8;
}
* {
    min-height: 0;
    min-width: 0;
}
.product_slider {
    margin-bottom: 20px;
}
.slider-for {
    width: 100%;
}
.slider-for a {
    width: 100%;
    height: auto;
}
.slider-for img {
    width: 100%;
    height: auto;
    padding: 20px;
    -o-object-fit: contain;
       object-fit: contain;
}
.slick-list {
    max-width: 100%;
    max-height: 100%;
}
.slider-nav {
    width: 100%;
    height: auto;
    margin-top: 14px;
}
.slider-nav img {
    height: 100%;
    width: auto;
    padding: 2px;
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px #f2f2f2;
    cursor: pointer;
}
.slider-nav .slick-current img {
    box-shadow: inset 0 0 0 2px var(--select-color);
}
.slider-nav .slick-slide {
    margin: 0 5px !important;
}
.slick-prev:before, .slick-next:before {
    color: #bfbfbf;
    z-index: 100;
}
.slick-prev {
    margin-left: 8px;
    z-index: 100;
}
.slick-next {
    margin-right: 8px;
    z-index: 100;
}
.tabcontainer {
    padding: 47px 0;
}
.tabheader {
    margin-bottom: 40px;
}
.tabheader_item {
    display: inline-block;
    margin: 3px;
    background-color: #fafafa;
    border: 1px solid #ececec;
    border-radius: 3px;
    cursor: pointer;
    padding: 16px 24px 15px;
    font-size: 11px;
    text-transform: uppercase;
}
.tabheader_item:hover {
    background-color: #fff;
    transition: all 0.3s;
}
.tabheader_item_active {
    background-color: #fff;
    box-shadow: inset 0 2px 0 var(--select-color);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.tabcontent_descr {
    font-size: 15px;
    color: #555;
    line-height: 25px;
}
.dropdown {
    display: none;
}
.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;
}

.specif_title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 26px;
}
.specif_column {
    margin-bottom: 40px;
}
.specif_item {
    display: flex;
    justify-content: space-between;
    color: #555555;
    font-size: 15px;
    padding: 10px 5px;
    border-top: solid 1px #dddddd;
}
.specif_item:nth-child(odd) {
    background: #f2f2f2;
}
.specif_name {
    margin-right: 8px;
}
.specif_item:last-child {
    border-bottom: solid 1px #dddddd;
}
.tabcontent_descr ol {
    margin: 26px 0 36px 23px;
}
.header_mobile {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_mobile img{
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.header_mobile_right, .header_mobile_left {
    display: flex;
    align-items: center;
}
.header_mobile_left {
    height: 100%;
}
.header_mobile_right {
    gap: 12px;
}
.burger {
    height: 18px;
    width: 16px;
    -o-object-fit: contain;
       object-fit: contain;
}
.mobile_logo {
    height: 100%;
    width: auto;
    margin-left: 8px;
}
.mobile_phone {
    width: 22px;
    height: auto;
    opacity: 0.42;
}
.mobile_mail {
    width: 22px;
    height: auto;
    opacity: 0.42;
}
.mobile_search {
    width: 22px;
}
.menu_open {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    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: 6px;
    right: 10px;
    background: none;

}
.mobile_link_title {
    padding: 14px 46px 14px 15px;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid #f2f2f2;
}
.mobile_link_dropdown {
    padding-left: 15px;
    border-bottom: 1px solid #f2f2f2;
    transition: all 0.3s;
}
.mobile_item {
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px 10px 15px;
}
.mobile_subitem {
    font-size: 13px;
    padding: 8px 20px 8px 25px;
}
.mobile_link_dropdown {
    overflow: hidden;
    max-height: 0;
}
.mobile_search_pop {
    height: 54px;
    width: 100%;
    position: fixed;
    top: 0;
    display: none;
}
.mobile_search_pop .search {
    margin: 0;
    background: #fff;
}
.mobile_search_pop .search_input {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    width: 100%;
}
.mobile_search_pop .search_btn {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    right: 40px;
}
.search_close {
    background: #fff;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 5px;
}
.search_close path {
    fill: #adadad;
}
.dp_bg {
    display: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color:rgba(0, 0, 0, .5);
    position: fixed;
    z-index: 1;
}
.mobile_show {
    display: none;
}
.hide {
    display:none
}
.show {
    display:block
}
@media (max-width: 1200px) {
    .solutions_left {
        flex-direction: column;
    }
    .solutions_left_img {
        width: 100%;
    }
    .solutions_left_text {
        padding-left: 0px;
        width: 100%;
    }
}
@media (max-width: 992px) {
    .lg_none {
        display: none;
    }
    .banner {
        margin-bottom: 24px;
    }
    .mobile_show {
        display: block;
    }
}
@media (max-width: 768px) {
    .section_top {
        position: relative;
        padding-bottom: 20px;
    }
    .solutions_top_tabheader {
        position: absolute;
        bottom: -20px;
    }
    .solutions_tabheader_item {
        margin-right: 16px;
    }
    .solutions_tabheader_item:last-child {
        margin-right: 0;
    }
    .footer_center {
        padding-left: calc(var(--bs-gutter-x)* 0.5);
    }
    .col-sm-3 {
        margin-bottom: 18px;
    }
}
@media (max-width: 576px) {
    .solutions_left {
        border-bottom: 1px solid #ececec;
    }
    .slider_text {
        margin-left: 10px;
    }
    .slider_title {
        font-size: 16px;
        line-height: normal;
    }
    .slider_subtitle {
        font-size: 13px;
        line-height: normal;
    }
    .slider_btn {
        padding: 10px 14px;
    }
    .post {
        flex-direction: row;
    }
    .post_img {
        height: 100px;
        width: 100px;
        flex-shrink: 0;
        padding-top: 14px;
    }
    .post_text {
        padding: 14px 12px;
    }
}