@font-face {
    font-family: "Roboto";
    font-weight: 400;
    src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Roboto";
    font-weight: 500;
    src: url("../fonts/Roboto-Medium.ttf") format("truetype");
}
@font-face {
    font-family: "Roboto";
    font-weight: 700;
    src: url("../fonts/Roboto-Bold.ttf") format("truetype");
}
@font-face {
    font-family: "slick"; 
    src: url("../fonts/slick.ttf") format("truetype"); 
} 
:root {
    --select-color: #fd1813;
    --gray: #f9f9f9;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #383838;
}
html {
    overflow-x: hidden;
}
body {
    background-color: #fff;
    overflow-x: hidden;
}
a {
    display: block;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}
a:hover {
    transition: all 0.3s ease-in;
}
ul {
    list-style: none;
}    
ul li {
    list-style: none;
}
button {
    border: none;
    background: transparent;
    cursor: pointer;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 50px;
    height: 50px;
    background: var(--select-color);
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}
.btn:hover {
    background-color: #e91712;
}
header {
    padding: 10px 0;
}
.header_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
}
.logo_icon {
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
}
.menu {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 15px;
         column-gap: 15px;
    margin-bottom: 10px;
}
.menu_item, .menu_item_btn {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
    height: 28px;
    line-height: 20px;
}
.menu_item:hover {
    color: var(--select-color);
}
.menu_item_btn {
    cursor: pointer;
    height: 28px;
    transition: all 0.3s;
}
.menu_item_btn:hover {
    color: var(--select-color);
}
.menu_item_btn:hover .arrow path{
    fill: var(--select-color);
}
.arrow {
    margin-left: 6px;
}
.arrow path {
    fill: #333333;
    transition: all 0.3s;
}
.city {
   font-size: 15px;
   display: flex;
   align-items: center;
   cursor: pointer;
}
.search {
    cursor: pointer;
}
.search_icon {
    width: 30px;
    height: 30px;
}
.search_icon path {
    fill: #383838;
    transition: all 0.3s;
}
.search:hover .search_icon path{
    fill: var(--select-color);
}
.phone_number {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.phone_number:hover {
    color: var(--select-color);
}
.phone_icon {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}
.search_dropdown {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s;
}
.search_form {
    display: flex;
    align-items: center;
    padding-top: 15px;
}
.search_input {
    flex: 1;
    margin-right: 8px;
    height: 40px;
    border: 1px solid #c2c3c8;
    border-radius: 2px;
    padding: 0 10px;
    font-size: 16px;
}
.search_btn {
    height: 40px;
}
.slider_wrap {
    background: var(--gray);
    margin-bottom: 20px;   
}
.slider {
    height: 600px;
}
.slider_item {
    height: 100%;
}
.slider_item .row{
    height: 100%;
}
.slider_text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.slider_title {
    font-size: 48px;
    font-weight: 700;
}
.slider_subtitle {
    font-size: 16px;
    line-height: 24px;
}
.slick-list, .slick-track {
    height: 100%;
}
.slick-slide > div{
    height: 100%;
}
.slick-prev:before, .slick-next:before {
    color: #bebebe;
    font-size: 24px;
}
.slick-prev {
    left: -30px;
}
.slick-next {
    right: -30px;
}
.slider_img {
    max-height: 530px;
    -o-object-fit: contain;
       object-fit: contain;
}

.title {
    font-size: 32px;
    color: #383838;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}
.advantages {
    padding: 20px 0;
}
.advantages .col {
    padding: 0 5px;
}
.advantages_wrap {
    margin: 10px 0 50px;
}
.advantages_item {
    background: var(--gray);
    border-radius: 30px;
    padding: 10px 14px;
    text-align: center;
    height: 100%;
}
.advantages_icon {
    max-height: 45px;
    width: auto;
}
.advantages_name {
    font-weight: 700;
    margin-top: 10px;
    font-size: 14px;
}
.categories_wrap {
    padding: 20px 0;
}
.category_item {
    width: 100%;
    height: 100%;
    background: var(--gray);
    border-radius: 30px;
    padding: 35px;
    max-height: 305px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.category_item:hover .category_img{
    -webkit-filter: none;
            filter: none;
    opacity: 1;
}
.category_item:hover .category_name{
    color: var(--select-color);
}
.category_img {
    width: 128px;
    height: 128px;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    opacity: .5;
    transition: all 0.3s;
    margin-bottom: 45px;
}
.category_name {
    transition: all 0.3s;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}
.category_item_all {
    background: var(--select-color);
}
.category_item_all .category_name {
    color: #fff;
}
.category_item_all:hover .category_name{
    color: #fff;
}

.services {
    padding: 30px 0;
}
.services_item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    background: var(--gray);
    border-radius: 30px;
    height: 100%;
}
.services_item:hover .services_title{
    color: var(--select-color);
}
.services_img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 305px;
    height: 100%;
    border-radius: 30px 0 0 30px;
}
.services_text {
    padding: 30px 33px 30px 20px;
}
.services_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.services_descr {
    font-size: 16px;
    line-height: 24px;
}
.btn_light {
    background-color: transparent;
    border: 1px solid #bababa;
    color: #bababa;
    margin: 0 auto;
    margin-top: 40px;
}
.btn_light:hover {
    background-color: var(--select-color);
    color: #fff;
    border-color:  var(--select-color);
}

.action {
    padding: 50px 0;
}
.action_wrap {
    width: 100%;
    background: var(--gray);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.action_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
}
.action_descr {
    font-size: 16px;
    line-height: 24px;
    display: block;
}
.action_icon {
    width: 106px;
    height: 106px;
    margin-left: 10px;
    -o-object-fit: contain;
       object-fit: contain;
}

.about {
    padding: 20px 0;
}
.about_img {
    width: 100%;
    height: 324px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 30px;
}
.about_descr {
    font-size: 16px;
    line-height: 24px;
}
.about_descr p {
    margin-bottom: 10px;
}
.about_descr span {
    font-weight: 700;
}
.about_btn {
    color: #000000;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    float: right;
}
.about_btn:hover {
    color: var(--select-color);
}
.about_descr ul {
    list-style: disc;
    padding-left: 28px;
}    
.about_descr ul li {
    list-style: disc;
}

.partners {
   padding: 30px 0; 
}
.partners_wrap {
    padding: 0 50px;
}
.partners_item {
    display: flex !important;
    justify-content: center;
    align-items: center;
    background: var(--gray);
    border-radius: 30px;
    height: 150px;
}
.partners_wrap .slick-slide{
    margin: 0 10px;
}
.partners_img {
    -o-object-fit: scale-down;
       object-fit: scale-down;
    width: 100%;
    max-width: 200px;
    max-height: 140px;
}
.partners_wrap .slick-prev {
    left: 0px;
}
.partners_wrap .slick-next {
    right: 0px;
}

.contacts {
    padding: 20px 0;
}
.contacts_descr {
    background: var(--gray);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: auto;
}
.contact_item {
    display: flex;
    align-items: start;
    font-size: 16px;
}
.contact_item span {
    font-weight: 700;
}
.contact_icon {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-right: 8px;
}
.social {
    margin-top: 20px;
    display: flex;
}
.social_item {
    margin-right: 5px;
}
.social_icon {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
}

.news {
    padding: 20px 0 60px;
}
.news_item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.news_item:hover .news_title{
    color: var(--select-color);
}
.news_date {
    font-size: 14px;
    color: #000000;
}
.news_title {
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
}
.news_text {
    color: #808080;
    font-size: 14px;
}
footer {
    padding-top: 50px;
    background: #383838;
}
.footer_top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}
.footer_menu_wrap {
    width: 15%;
}
.footer_menu_title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.footer_menu {
    margin-top: 20px;
}
.footer_item {
    font-size: 14px;
    margin-bottom: 10px;
    color: #fff;
}
.footer_item:hover {
    color: var(--select-color);
}
.footer_logo {
    width: 68px;
    height: auto;
}
.footer_right {
    display: flex;
    flex-direction: column;
    align-items: end;
}
.footer_bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .4);
}
.privacy {
    text-decoration: underline;
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
}

.catalog_wrap {
    padding-bottom: 60px;
}
.page_top {
    margin-bottom: 70px;
}
.breadcrumbs {
    padding: 40px 0 20px;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumbs li {
    display: flex;
}
.breadcrumbs_item {
    font-size: 16px;
    font-weight: 500;
    color: rgba(56, 56, 56, .5);
    display: flex;
}
.breadcrumbs_item:hover {
    color: var(--select-color); 
}
.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin: 0 10px;
    cursor: default;
    color: #000;
}
.page_title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}
.section_item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gray);
    border-radius: 30px;
    padding: 35px;
}
.section_item:hover .section_title{
    color: var(--select-color);
}
.section_title {
    transition: all 0.2s ease-in;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
    text-align: center;
}
.section_descr {
    color: #a5a2a2;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
}
.card_wrap {
    margin-bottom: 20px;
}
.card {
    background: var(--gray);
    border-radius: 30px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card_img {
    border-radius: 30px;
    height: 245px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 25px;
}
.card_text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
.card_title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    font-weight: 500;
    transition: all 0.3s;
}
.card_title:hover {
    color: var(--select-color);
}
.card_price {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
}
.filters {
    background: var(--gray);
    border-radius: 30px;
    padding: 20px 15px;
    margin-bottom: 10px;
}
.filter_wrap {
    margin-top: 10px;
}
.filter_price {
    display: flex;
    justify-content: space-between;
    color: #c4c4c4;
}
.filter_price input {
    width: 40%;
    border: 1px solid #c4c4c4;
    margin-right: 0 !important;
    font-size: 16px;
    border-radius: 2px;
    padding: 2px;
}
.filter_title {
    font-size: 16px;
    line-height: 24px;
    color: #1f1f1f;
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 5px 7px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 0, 0, .05);
    margin: 6px 0;
}
.filter_title svg {
    transform: rotate(180deg);
    transition: all 0.3s;
}
.filter_title_active {
    background: var(--select-color);
}
.filter_title_active svg{
    transform: rotate(0deg);
}
.filter_menu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}
.filter_menu input {
    margin-right: 8px;
    margin-bottom: 2px;
    cursor: pointer;
    accent-color: var(--select-color);
}
.filter_menu label {
    margin-bottom: 4px;
    font-size: 16px;
    color: #1f1f1f;
    cursor: pointer;
    display: flex;
    align-items: center;
}
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
input[type="number"] {
    -moz-appearance: textfield;
  }
.filters_btn {
    margin-top: 10px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 54px;
    color: var(--select-color);
    font-size: 16px;
    background: #fff;
    border: 2px solid var(--select-color);
    border-radius: 5px;
    transition: all 0.3s ease-in;
    font-weight: 700;
}
.filters_btn:hover {
    background-color: var(--select-color);
    color: #fff;
}
.filters_show {
    width: 100%;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.page_item {
    font-size: 20px;
    font-weight: 500;
    border: 1px solid var(--select-color);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.page_item:hover {
    background: var(--select-color);
    color: #fff;
}
.page_item_active {
    color: var(--select-color);
}
.page_next {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
.page_next:hover {
    color: var(--select-color);
}
.catalog_descr_title {
    font-size: 24px;
    margin-bottom: 20px;
}
.catalog_descr_subtitle {
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 20px;
}
.catalog_descr p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 24px;
}
.product_wrap {
    margin-bottom: 60px;
}
.product_img {
    -o-object-fit: contain;
       object-fit: contain;
    max-height: 490px;
    height: auto;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 25px;
}
.product_descr {
    font-size: 16px;
    line-height: 24px;
}
.product_descr p{
    margin-bottom: 10px;
}
.product_bottom {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}
.product_price {
    font-size: 32px;
    font-weight: 700;
}
.tabcontainer {
    margin-top: 40px;
    margin-bottom: 60px;
}
.tabheader_items {
    display: flex;
    align-items: stretch;
    overflow-y: scroll;
}
.tabheader_item {
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    padding: 15px;
    margin-right: 5px;
    border: 1px solid #e5e5e5;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    background: #fff;
    display: flex;
    align-items: center;
}
.tabheader_item_active {
    color: var(--select-color);
    border-bottom: none;
}
.tabcontent {
    padding: 40px 30px 30px;
    border: 1px solid #e5e5e5;
    margin-top: -1px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding-top: 40px;
}
.tabcontent_title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}
.tabcontent_descr p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
}
.specif_section {
    margin-top: 30px;
}
.specif_item {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 16px;
}
.specif_value {
    font-weight: 500;
    margin-left: auto;
}
.divider {
    flex: 1 1;
    border-bottom: 1px dashed #505050;
    overflow: hidden;
    margin: 0 8px;
    font-size: 10px;
}
.document_link {
    font-size: 16px;
    display: flex;
    align-items: center;
}
.document_link:hover {
    color: var(--select-color);
}
.document_link:hover .document_link_icon{
    stroke: var(--select-color);
}
.document_link_icon {
    margin-left: 6px;
    width: 20px;
    height: 20px;
    stroke: #383838;
    transition: all 0.3s;
}
.delivery_title {
    font-size: 28px;
    margin-bottom: 30px;
}
.delivery_descr {
    font-size: 16px;
}
input:focus-visible {
    outline: solid 1px #c2c3c8;
}
.menu_dropdown {
    display: none;
    z-index: 1000;
    position: absolute;
    top: 100%;
    left: 0;
    width: 350px;
}
.menu_dropdown_item {
    position: relative;
}
.menu_dropdown_item_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    background: #f1f1f1;
    padding: 8px 10px;
}
.menu_dropdown_item_btn:hover, .submenu_item:hover {
    background: #ddd;
    color: var(--select-color);
}
.submenu_dropdown {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    font-size: 16px;
    background: #f1f1f1;
    width: 350px;
}
.submenu_item {
    padding: 8px 10px; 
}
.btn_dd:hover ~ .menu_dd{
    display: block;
}
.menu_dd:hover {
    display: block;
}
.city_wrap {
    position: relative;
    padding-bottom: 2px;
}
.city_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px;
    padding-left: 13px;
    background: var(--gray);
    margin-top: -1px;
    z-index: 1000;
}
.city_menu_item {
    margin-bottom: 10px;
    font-size: 15px;
    cursor: pointer;
}
.city_menu_item:hover {
    color: var(--select-color);
}
.city:hover ~ .city_menu{
    display: block;
}
.city_menu:hover{
    display: block;
}
.burger {
    padding: 8px 0;
    display: none;
    flex-direction: column;
    background-color: var(--select-color);
    height: 40px;
    width: 40px;
    justify-content: space-between;
    align-items: center;
    border-radius: 2px;
}
.burger span {
    display: block;
    background-color: #fff;
    width: 30px;
    height: 4px; 
}
.menu_open {
    display: none;
    position: fixed;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 320px;
    height: 100%;
    background: var(--gray);
    transition: 0.3s all;
    padding: 30px;
    z-index: 1000;
    font-size: 16px;
    overflow: scroll;
    box-shadow: 2px 0 18px rgba(0, 0, 0, .1);
}
.mobilemenu_logo {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 80px;
    margin: 0 auto;
    margin-bottom: 10px;
}
.mobilemenu_close {
    position: absolute;
    right: 20px;
    top: 20px;
}
.menu_open .menu_item {
    padding: 8px 10px;
    font-size: 16px;
    font-weight: 400;
}
.menu_dd_active{
    display: block;
}
.mobilemenu_dropdown, .mobilemenu_submenu_dropdown {
    display: none;
}
.menu_mobile .menu_dropdown{
    position: static;
}
.menu_mobile .submenu_dropdown{
    position: static;
}
.mobilemenu_item_btn, .mobilemenu_dropdown_item_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
}
.arrow_mobile {
    width: 20px;
    height: 20px;
    padding: 7px;
    flex-shrink: 0;
}
.hide {
    display:none;
}
.show {
    display:block !important;
}

@media (max-width: 992px) {
    .lg_none {
        display: none;
    }
    .burger {
        display: flex;
    }
    .logo_icon {
        height: 50px;
    }
    .slider_title {
        font-size: 30px;
    }
    .footer_top {
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer_menu_wrap {
        width: 45%;
    }
    .filter_wrap {
        display: none;
    }
}
@media (max-width: 768px) {
    .services_item {
        flex-direction: column;
    }
    .services_img {
        width: 100%;
        height: 170px;
        border-radius: 30px 30px 0 0;
    }
    .services_title {
        font-size: 20px;
        line-height: 26px;
    }
    .services_descr {
        font-size: 14px;
    }
    .logo {
        order: 1;
    }
    .phone_number {
        order: 2;
    }
    .search {
        order: 3;
    }
    .burger {
        order: 4;
    }
    .header_wrap {
        -moz-column-gap: 0;
             column-gap: 0;
    }
}
@media (max-width: 576px) {
    .sm_none {
        display: none;
    }
    .phone_number {
        font-size: 15px;
    }
    .slider_title {
        font-size: 20px;
    }
    .slider_subtitle {
        font-size: 14px;
    }
    .slider {
        height: 400px;
    }
    .category_item {
        padding: 25px;
    }
    .action_wrap {
        padding: 25px;
    }
    .title {
        font-size: 25px;
    }
    .tabcontent_title, .delivery_title, .page_title, .product_price {
        font-size: 25px;
    }
    .tabcontent {
        padding: 30px 20px 20px;
    }
    .card_price {
        font-size: 20px;
    }
}
@media (max-width: 430px) {
    .xs_none {
        display: none;
    }
    .footer_menu_wrap {
        width: 100%;
    }
}