@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: #36c;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #3d464d;
}
html {
    overflow-x: hidden;
}
body {
    background-color: #fff;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    transition: all 0.3s;
}
a:hover {
    cursor: pointer;
}  
ul {
    list-style: none;
}    
ul li {
    list-style: none;
}
button {
    border: none;
}
header {
    background: var(--select-color);
}
.header_top {
    height: 34px;
    border-bottom: 1px solid #2e5cb8;
}
.header_top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.menu_top {
    display: flex;
    gap: 15px;
}
.menu_top li a {
    color: #9bf;
    font-size: 14px;
}
.menu_top li a:hover{
    color: #fff;
}
.my_account {
    position: relative;
}
.my_account_title {
    color: #9bf;
    font-size: 14px;
    padding: 0 5px;
    height: 34px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}
.my_account_title:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.my_account_title::after {
    content: url(../icons/arrow_down_wh.svg);
    opacity: 0.3;
    margin-left: 6px;
}
.my_account_list {
    right: 0;
}
.header_center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 104px;
}
.logo {
    margin-left: 24px;
}
.search {
    height: 40px;
    margin: 0 60px 0 60px;
    flex-grow: 1;
    display: flex;
}
.search_category {
    height: 100%;
    border: none;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    border-right: 1px solid #e5e5e5;
    padding: 0 30px 0 14px;
    font-size: 14px;
    max-width: 30%;
    cursor: pointer;
}
.search_input {
    border: none;
    height: 100%;
    padding: 0 17px;
    flex-grow: 1;
    font-size: 15px;
    flex-grow: 1;
}
.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 {
    width: 30px;
    cursor: pointer;
    background: #fff;
    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);
}
.phone_caption {
    font-size: 14px;
    color: #9bf;
    margin-bottom: 6px;
    text-align: right;
}
.header_phone a {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}
.menu_category {
    background: #fff;
    box-shadow: 0 0 0 2px var(--select-color);
    border-radius: 2px;
}
.header_bottom {
    height: 46px;
}

.menu_category {
    background: #fff;
    position: relative;
}
.menu_category_title {
    height: 42px;
    padding-right: 12px;
    padding-left: 17px;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: -2px;
}
.menu_category_title_text {
    font-size: 15px;
    font-weight: 500;
    margin-left: 10px;
}
.menu_category_title_icon {
    opacity: 0.5;
    transition: all 0.2s;
}
.menu_category_body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.2s;
    background: #fff;
    z-index: 1000;
    position: absolute;
    width: 100%;
    box-shadow: 2px 2px 0 0px var(--select-color), -2px 2px 0 0px var(--select-color);
    border-radius: 2px;
    border-top-left-radius: 0px;
    border-top-left-radius: 0px;
}
.menu_category_body_active {
    opacity: 1;
    overflow: visible;
}

.icon_right {
    margin-left: auto;
}
.menu_category_title:hover .menu_category_title_icon {
    opacity: 1;
}
.menu_category_body li{
    display: inherit;
}
.menu_category_link {
    /* display: block; */
    display: inherit;
    position: relative;
    padding: 10px 16px;
    font-size: 14px;
    line-height: 16px;
}
.menu_category_link:hover {
    background:#ececec;
}
.menu_category_link:hover~.header_bottom_menu_list {
    display: block;
}
.menu_category_link_arrow::after {
    content: url(../icons/arrow_right.svg);
    position: absolute;
    right: 12px;
}
.menu_category_body li {
    position: relative;
}
.category_megamenu {
    display: none;
    display: block;
    left: 100%;
    top: 0 !important;
}
.header_bottom_menu {
    display: flex;
}
.header_bottom_menu_item {
    position: relative;
    height: 100%;
}
.header_bottom_menu_title {
    font-size: 15px;
    color: #fff;
    padding: 14px 27px 14px 14px;
    display: block;
    border-radius: 2px;
}
.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_slider {
    position: relative;
    margin-top: 14px;
    height: 395px;
}
.slide_item {
    height: 395px;
}
.slide_1 {
    background: url(../img/slide_1.jpg) center center / cover no-repeat;
}
.slide_2 {
    background: url(../img/slide_2.jpg) center center / cover no-repeat;
}
.slide_3 {
    background: url(../img/slide_3.jpg) center center / cover no-repeat;
}
.slick-dots {
    bottom: 8px;
}
.slick-dots li {
    margin: 0;
}
.slick-dots li button:before {
    font-size: 12px;
    color: var(--select-color);
}
.slick-dots li.slick-active button:before {
    color: var(--select-color);
}
.main_slider_content {
    position: absolute;
    bottom: 46px;
    left: 46px;
    width: 400px;
}
.slider_title {
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}
.slider_descr {
    font-size: 16px;
    line-height: 26px;
}
.main_btn {
    background: var(--select-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: 2px;
    display: block;
    margin: 0 auto;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 4px;
}
.main_btn:hover {
    background: #3d464d;
}
.btn_big {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 40px 0 0 0; 
    padding: 13px 32px;
    font-weight: 500;
    font-size: 18px;                                                                                                                                                                                                 
}

.advantages {
    padding: 50px 0;
}
.advantages_item {
    display: flex;
    align-items:center;
    padding: 16px 24px;
    border: 2px solid #f0f0f0;
    height: 100%;
}
.advantages_icon {
    margin-right: 20px;
}
.advantages_title {
    font-size: 17px;
    font-weight: 700;
}
.advantages_descr {
    font-size: 14px;
}
.featured {
    margin-bottom: 50px;
}
.featured_top {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.top_divider {
    margin-left: 16px;
    flex-grow: 1;
    height: 2px;
    background: #ebebeb;
}
.featured_top_tabheader {
    margin-left: 12px;
    display: flex;
    font-size: 14px;
    font-weight: 500;
}
.featured_tabheader_item {
    cursor: pointer;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    padding: 2px 11px 1px;
    border-radius: 12px;
}
.featured_tabheader_item_active {
    box-shadow: inset 0 0 0 2px var(--select-color);
}

.card {
    height: 100%;
    padding: 18px;
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px #ededed;
    display: flex;
    flex-direction: column;
}
.card:hover {
    box-shadow: inset 0 0 0 2px #ededed;
}
.card_img {
    display: block;
    width: 100%;
    height: auto;
}
.card_img img {
    width: 100%;
}
.card_title:hover {
    color:var(--select-color);
}
.card_text {
    padding: 0 6px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card_price {
    margin-top: 14px;
    font-weight: 700;
    color: #3d464d;
}
.banner {
    height: 170px;
    margin-bottom: 50px;
}
.banner .container {
    height: 100%;
    width: 100%;
}
.banner_link {
    display: block;
    height: 100%;
    width: 100%;
    background: url(../img/banner_bg.jpg) center center / cover no-repeat;
}
.banner_title {
    padding-top: 28px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}
.banner_subtitle {
    margin-top: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
}

.title {
    font-size: 20px;
    font-weight: 700;
}
.slide {
    height: 395px;
}
.bestsellers {
    margin-bottom: 50px;
}
.bestsellers_wrap {
    display: grid;
    grid-template-columns: 38% 1fr 1fr 1fr;
    grid-template-rows: 370px 370px;
    gap: 16px 16px;
}
.card_big {
    grid-row: span 2;
}
.card_big .card_title {
    font-size: 17px;
}
.card_big .card_price {
    font-size: 20px;
    font-weight: 700;
}
.card .main_btn {
    margin: 0;
    margin-top: auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
}
.popular {
    padding: 50px 0 60px;
    background: #f9f9f9;
}
.popular_item {
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 1px 16px rgba(0, 0, 0, .04);
    padding: 24px 20px;
    display: flex;
    /* align-items: center; */
    margin-bottom: 20px;
    height: 224px;
}
.popular_img {
    width: 130px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    margin-right: 24px;
}
.popular_text {
    display: flex;
    flex-direction: column;
}
.popular_title {
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 14px;
    display: block;
}
.popular_title:hover {
    color: var(--select-color);
} 
.popular_subsection_item {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin: 4px 0;
}
.popular_subsection_item:hover {
    color: var(--select-color);
}
.popular_show {
    color: var(--select-color);
    font-size: 14px;
    margin-top: auto;
}
.popular_show:hover {
    text-decoration: underline;
}
.news {
    padding: 50px 0;
}
.news_wrap {
    display: flex;
    align-items: center;
}
.news_img {
    width: 240px;
    height: 160px;
    margin-right: 22px;
    -o-object-fit: cover;
       object-fit: cover;
}
.news_title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}
.news_title:hover {
    color: var(--select-color);
}
.news_date {
    margin-top: 6px;
    font-size: 14px;
    color: #adadad;
}
.news_descr {
    margin-top: 10px;
    font-size: 15px;
    line-height: 22px;
}

.brands_wrap {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 2px solid #f0f0f0;
    border-radius: 2px;
    height: 100%;
    padding: 18px;
}
.brands .container {
    height: 100%;
}

footer {
    margin-top: 30px;
    padding: 50px 0;
    border-top: 1px solid #ebebeb;
}
.footer_menu_title {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 20px;
}
.footer_menu_descr {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 16px;
}
.footer_menu_item {
    font-size: 15px;
    line-height: 28px;
    display: block;
}
.contact_item {
    display: block;
    margin: 10px 0;
}
.footer_icon {
    text-align: center;
    width: 22px;
    height: 15px;
    -o-object-fit:scale-down;
       object-fit:scale-down;
    margin-right: 2px;
}
footer a:hover {
    color:var(--select-color);
}

.catalog_main {
    padding-bottom: 30px;
}
.catalog_top {
    padding-bottom: 32px;
}
.catalog_title {
    font-weight: 700;
    font-size: 36px;
}
.breadcrumbs {
    margin-top: 16px;
    margin-bottom: 10px;
}
.breadcrumbs li {
    display: inline-block;
}
.breadcrumbs_item {
    font-size: 14px;
}
.breadcrumbs_item:hover {
    color: var(--select-color); 
}
.breadcrumbs li:not(:last-child)::after {
    content: url(../icons/arrow_right.svg);
    margin: 0 10px;
    cursor: default;
}
.catalog_left {
    padding: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 2px;
}
.catalog_left_title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}
.catalog_left_item {
    padding: 7px 10px 7px 0;
    position: relative;
}
.catalog_left_category {
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}
.catalog_left_category::before {
    content: url(../icons/arrow_right.svg);
    margin-right: 10px;
}
.catalog_left_category:hover {
    color: var(--select-color);
}
.catalog_left_button {
    position: absolute;
    top: 5px;
    right: 0;
    cursor: pointer;
    height: 20px;
    width: 20px;
    background: #f7f7f7;
}
.catalog_left_button::after {
    content: "+";
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 400;
    color: #b8bbbe;
}
.catalog_left_button_active::after {
    content: "-";
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 500;
    color: #b8bbbe;
}
.catalog_left_subcategory {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    list-style-type: circle;
    list-style-position: inside;
}
.catalog_left_subcategory li {
    list-style-type: circle;
    list-style-position: inside;
    padding-left: 26px;
}
.catalog_left_subcategory li::marker {
    color: #adadad;
}
.catalog_left_subcategory a {
    font-size: 15px;
    line-height: 26px;
}
.catalog_left_subcategory a:hover {
    color:var(--select-color);
}
.catalog_wrap_top {
    display: flex;
    align-items:center;
    margin-bottom: 20px;
}
.sorting {

    font-size: 15px;
    display: flex;
    align-items: center;
    margin-left: 24px;
}
.sorting_1 {
    margin-left: auto;
}
.sorting_title {
    margin-right: 8px;
}
.sorting select {
    padding: 5px 16px 5px 8px;
    border-radius: 2px;
    border: 1px solid #ced4da;
}
.sorting select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}
.catalog_wrap_content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 16px 16px;
    grid-auto-rows: auto;
}

.slider-for {
    width: 100%;
}
.slider-for a {
    width: 100%;
    height: auto;
}
.slider-for img {
    width: 100%;
    height: 372px;
    padding: 20px;
    -o-object-fit: contain;
       object-fit: contain;
    box-shadow: inset 0 0 0 2px #f2f2f2;
}
.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: 12px;
    border-radius: 2px;
    box-shadow: inset 0 0 0 2px #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;
}
.product_main {
    padding-bottom: 40px;
}
.product_title {
    font-size: 24px;
    font-weight: 700;
}
.product_descr {
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 8px;
    margin-top: 24px;
}
.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_price {
    margin-top: 26px;
    margin-bottom: 18px;
    font-size: 28px;
    font-weight: 700;
    color: #3d464d;
}
.product_bottom_wrap {
    margin-top: 28px;
}
.quantity_title {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    color: #6c757d;
    padding-bottom: 2px;
}
.quantity_wrap {
    margin: 4px 0;
    display: flex;
    flex-wrap: wrap;
}
.quantity {
    margin-right: 8px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	padding: 0;
    display: flex;
    align-items: center;
    border-radius: 2px;
    border: 1px solid #ced4da;
}
.quantity-minus, .quantity-plus {
	width: 20px;
	height: 100%;
	line-height: 40px;
	display: block;
	background: none;
	text-decoration: none;
    color: #ced4da;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    padding: 4px;
}
.quantity-minus:hover, .quantity-plus:hover {
	color:var(--select-color);
}
.quantity-text{
    display: block;
    width: 88px;
    padding: 0 4px;
    text-align: center;
    font-size: 20px;
	background: none;
	outline: none;
	border: none;
}
.quantity_wrap .btn_big {
    margin: 0;
}
.tabcontainer {
    margin-top: 40px;
}
.tabheader_items {
    display: flex;
    align-items: center;
    justify-content: center;
}
.tabheader_item {
    padding: 14px 30px;
    border-bottom: 2px solid transparent;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}
.tabheader_item_active {
    border-bottom-color: var(--select-color);
}
.tabcontent {
    padding: 40px 50px;
    border: 2px solid #f0f0f0;
    border-radius: 2px;
}
.tabcontent_descr_title {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 21px;
}
.tabcontent_descr p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
}
.specif_title {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}
.specif_section {
    margin-top: 30px;
}
.specif_section_title {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 12px;
}
.specif_row {
    padding: 8px 12px;
    display: flex;
    border-bottom: 1px solid #ebebeb;
    font-size: 15px;
}
.specif_name {
    width: 230px;
    flex-shrink: 0;
    color: #999;
    padding-right: 30px;
}
.show_flex {
    display: flex;
}
.hamburger {
    display: none;
    margin-right: 10px;
}
.search_btn_sm {
    display: none;
}
.menu_open {
    position: fixed;
    flex-direction: column;
    top: 0;
    left: -100%;
    width: 290px;
    height: 100%;
    background: #fff;
    transition: 0.6s all;
    z-index: 100;
}
.mobilemenu_top {
    height: 55px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
}
.mobilemenu_title {
    padding: 0 20px;
    font-weight: 700;
    flex-grow: 1;
}
.mobilemenu_close {
    border: none;
    background: transparent;
    height: 54px;
    width: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-left: 1px solid #ebebeb;
}
.mobilemenu_close img {
    width: 20px;
    height: auto;
}
.mobilemenu_content {
    flex-grow: 1;
    overflow-y: scroll;
}
.mobile_link_item {
    border-bottom: 1px solid #ebebeb;
    overflow: hidden;
}
.mobile_link_title {
    padding: 12px 20px;
    font-size: 16px;
    display: inline-block;
}
.mobile_link_btn {
    border: none;
    height: 43px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ebebeb;
    display: inline-block;
    background: transparent;
    float: right;
}
.mobile_link_dropdown_item {
    display: block;
}
.mobile_link_dropdown {
    background: #f7f7f7;
    max-height: 0;
}
.mobile_link_dropdown_item {
    display: block;
    border-bottom: 1px solid #ebebeb;
    padding: 13px 20px;
    font-size: 14px;
}
.menu_open_active {
    left: 0;               
}
.menu_pop {
    display: none;
}
.mobile_search {
    height: 54px;
    width: 100%;
    position: fixed;
    top: 0;
    display: none;
}
.mobile_search .search {
    margin: 0;
    background: #fff;
}
.mobile_search .search_input {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.mobile_search .search_btn {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.search_close {
    background: #fff;
}
.search_close img {
    padding: 8px 6px 12px 4px;
    height: 100%;
    border-left: 1px solid #ebebeb;
}
.hide {
    display:none
}
.show {
    display:block
}
@media (max-width: 991px) {
    .lg_none {
        display: none;
    }
    .bestsellers_wrap {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 370px 370px 370px;
        gap: 16px 16px;
    }
    .card_big {
        grid-column: span 3;
        grid-row: 1;
        flex-direction: row;
    }
    .card_big .card_img {
        width: auto;
    }
    .card_big img {
        height: 100%;
        width: auto;
    }
    .popular_item {
        flex-direction: column;
        height: auto;
    }
    .popular_text {
        margin-top: 6px;
    }
    .popular_img {
        margin-right: 0;
    }
    .brands_wrap {
        flex-wrap: wrap;
    }
    .brands_wrap img {
        margin: 0 20px;
    }
    .featured .card {
        padding: 6px;
    }
    .featured .main_btn {
        margin-top: 6px;
    }
    .news_wrap {
        margin-bottom: 20px;
    }
    .logo {
        margin: 0;
        height: 20px;
    }
    .logo img {
        height: 100%;
    }
    .header_center {
        height: 54px;
    }
    .hamburger {
        display: block;
    }
    .search_input {
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
    }
}
@media (max-width: 767px) {
    .search {
        margin: 0 0 0 10px;
    }
    .featured .card {
        flex-direction: row;
        height: 160px;
        padding: 16px;
        margin-bottom: 6px;
    }
    .featured .card img {
        height: 100%;
        width: auto;
        margin-top: auto;
    }
    .featured .card_img {
        width: auto;
    }
    .featured .card .main_btn {
        margin-top: auto;
    }
    .bestsellers_wrap {
        grid-template-rows: 300px 300px 300px;
    }
    .catalog_wrap_content {
        grid-template-columns: 1fr 1fr;
        gap: 12px 12px;
    }
    .product_right {
        margin-top: 20px;
    }
}
@media (max-width: 575px) {
    .main_slider_content {
        width: auto;
        background: rgba(255, 255, 255, 0.5);
        left: 0;
        padding-left: 20px;
    }
    .sm_none {
        display: none;
    }
    .search_btn_sm {
        display: block;
        background: transparent;
    }
    .search_icon_sm path{
        fill: #fff;
    }
    .featured .featured_top {
        flex-wrap: wrap;
    }
    .featured_top_tabheader {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
    }
    footer {
        padding: 20px 0;
    }
    .footer_menu_title {
        margin-top: 20px;
        margin-bottom: 16px;
    }
    .news_img {
        width: 170px;
    }
    .bestsellers_wrap {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 370px 370px 370px;
        gap: 12px 12px;
    }
    .card_big {
        grid-column: span 2;
        grid-row: span 2;
        flex-direction: column;
    }
    .card_big img {
        height: auto;
        width: 100%;
    }
    .bestsellers_wrap {
        grid-template-rows: auto;
    }
    .popular_item {
        flex-direction: row;
    }
    .catalog_wrap_top {
        flex-wrap: wrap;
    }
    .showing {
        width: 100%;
    }
    .sorting_1 {
        margin-left: 0;
    }
    .sorting {
        margin-top: 16px;
    }
}
@media (max-width: 430px) {
    .catalog_wrap_content {
        grid-template-columns: 1fr;
    }
    .catalog_wrap_content .card {
        flex-direction: row;
    }
}