*,
*::after,
*::before {
    box-sizing: border-box;
}

@font-face {
    font-family: 'MerriweatherSans-Light';
    src: url('/fonts/MerriweatherSans-Light.woff') format('woff'),
        url('/fonts/MerriweatherSans-Light.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'MerriweatherSans-Regular';
    src: url('/fonts/MerriweatherSans-Regular.woff') format('woff'),
        url('/fonts/MerriweatherSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Merriweather-Light';
    src: url('/fonts/Merriweather-Light.woff') format('woff'),
        url('/fonts/Merriweather-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Merriweather-Regular';
    src: url('/fonts/Merriweather-Regular.woff') format('woff'),
        url('/fonts/Merriweather-Regular.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Merriweather-Bold';
    src: url('/fonts/Merriweather-Bold.woff') format('woff'),
        url('/fonts/Merriweather-Bold.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

html,
body {
    height: 100%;
}

body {
    min-width: 320px;
    font-family: 'Merriweather-Regular';
    color: #3A3A3A;
    /*line-height: 24px;*/
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
    padding-inline-start: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}


.wrapper-content {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main {
    flex-grow: 1;
}

.footer {
    padding: 40px 0;
}

.bread-crumb__list {
    padding: 10px 0;
}

.bread-crumb__item {
    display: inline;
    font-size: 18px;
}

.bread-crumb__list li+li:before {
    padding: 8px;
    color: #BBB;
    content: "/\00a0";
    font-size: 12px;
}

.bread-crumb__list li a {
    color: #BBB;
    font-family: Merriweather Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 138.3%;
    letter-spacing: 0.35px;
    text-decoration: none;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

/* Добавить цвет на наведении курсора мыши */
.bread-crumb__list li a:hover {
    color: #222222;

}

.over-hidden {
    overflow: hidden;
}

.heading-section {
    font-size: 60px;
    font-family: 'Merriweather-Light';
    text-align: left;
    line-height: 120%;
    margin: 40px 0;
    font-weight: 400;
}

.heading-section__left {
    text-align: left;
}

.section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.site-container {
    overflow: hidden;
}

li.products-card__item {
    list-style: none;
}

.visually-hidden {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 500;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #B1B3B2;
}

.preloader__back {
    font-family: 'Merriweather', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 360px;
    line-height: 453px;
    color: #fff;
    opacity: 0;
    transform: translateX(7%);
    transition: opacity 0.3s ease-in-out;
    animation: preloader 20s linear;
}

.preloader__forward {
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    font-family: 'Merriweather', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 72px;
    line-height: 91px;
    transform: translate(-50%, -20%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.770, 0.125, 0.265, 1.040), transform 0.3s cubic-bezier(0.770, 0.125, 0.265, 1.040);
}

.preloader__background {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 330px;
    height: 220px;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.preloader__background::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition: width 0.7s cubic-bezier(0.770, 0.125, 0.265, 1.040);
}

@keyframes preloader {
    0% {
        transform: translateX(7%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.preloader-animation .preloader__back {
    opacity: 0.15;
}

.preloader-animation .preloader__forward {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.preloader-animation .preloader__background::before {
    transition-delay: 0.5s;
    width: 330px;
}

.preloader-hidden .preloader__back {
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.770, 0.125, 0.265, 1.040), transform 0.3s cubic-bezier(0.770, 0.125, 0.265, 1.040);
}

.preloader-hidden .preloader__background::before {
    width: 0;
}

.preloader-hidden .preloader__forward {
    opacity: 0;
    transition-delay: 0.5s;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out;
}

.preloader-none {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

div#counter-favorite {
    top: -8px;
}

/*.mouse {
    position: fixed;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    z-index: 9999;
    pointer-events: none;
}

.mouse::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background: #D7D7D7;
    z-index: 2;
    box-shadow: 4px 4px 4px #CCCACA;
    transition: opacity 0.3s ease-in-out;
}

.mouse::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    border-radius: 100%;
    background: #CDCDCD;
    transition: opacity 0.3s ease-in-out;
}*/

.mouse__view {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background-color: #000;
    border-radius: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.view-visible .mouse__view {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.links-visible::after {
    border: 4px solid #cdcdcd;
    transform: translate(-50%, -50%) scale(0.5);
    background-color: transparent;
    transition: 0.3s;
}

.links-visible::before {
    opacity: 0;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 150;
    min-width: 320px;
    padding: 30px 0;
    opacity: 0;
    transform: translateY(100px);
}


.header-main {
    z-index: 1;
    min-width: 320px;
    padding: 30px 0;
    background-color: rgba(190, 139, 91, 0.15);

}

.header__container,
.header__content-left,
.header-icon__list {
    display: flex;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header__logo {
    color: #000;
    font-family: Merriweather;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;

}

.logo__letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    border-radius: 100%;
    width: 37px;
    height: 37px;
    margin-right: 10px;
}

.header-icon__link {
    display: inline-block;
    position: relative;
}

.header_counter-cart,
.header_counter-favorites {
    position: absolute;
    width: 20px;
    height: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 14px;
    background: rgb(190 139 91);
    color: #fff;
    top: -7px;
    right: -7px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.header-icon__list {
    margin: 0;
}

.burger-menu-btn {
    width: 16px;
    height: 30px;
    position: relative;
    z-index: 301;
    overflow: hidden;
    cursor: pointer;
    display: none;
}

.burger-menu-btn span {
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #222222;
    transition: all 0.5s;
}

.burger-menu-btn span:nth-of-type(2) {
    top: calc(50% - 6px);
}

.burger-menu-btn span:nth-of-type(3) {
    top: calc(50% + 6px);
}

.burger-menu_transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 400vh;
    padding: 15px;
    background-color: rgba(190, 139, 91, 1);
    transform: translateX(-100%);
    transition: transform 0.5s;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}

.burger-menu_transition.active {
    transform: translateX(0);
    z-index: 300;
}

.burger-menu_transition li {
    list-style-type: none;
    font-size: 18px;

}

.burger-menu_transition a {
    color: #fff;
}

.burger-menu_transition li:not(last-child) {
    padding-bottom: 15px;
}

/* Меняем гамбургер иконку, когда меню открыто */
.burger-menu-btn.active span:nth-of-type(1) {
    display: none;
}

.burger-menu-btn.active span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
    background: #fff;
}

.burger-menu-btn.active span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg);
    background: #fff;
}

.burger-menu__list {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.burger-menu__link {
    font-size: 20px;
    font-family: 'Merriweather-Light';
}

.nav__list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}



.nav__item:not(:last-child) {
    margin-right: 33px;
}

.header__nav {
    margin-left: 10%;
}

.nav__link {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Merriweather;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
}

.header__burger,
.header__content-left {
    margin-left: auto;
}


.search__input {
    width: 100%;
    min-width: 300px;
    padding: 12px 24px;

    background-color: transparent;
    transition: transform 250ms ease-in-out;
    font-family: 'MerriweatherSans-Light';
    font-size: 14px;
    line-height: 18px;

    color: #1C1C1C;
    background-color: rgb(255 255 255 / 70%);
    background-image: url("data: image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwIDIwTDE1LjA5NjIgMTUuMDk2Mk0xNS4wOTYyIDE1LjA5NjJDMTYuMjcyNSAxMy45MTk5IDE3IDEyLjI5NDkgMTcgMTAuNUMxNyA2LjkxMDE1IDE0LjA4OTkgNCAxMC41IDRDNi45MTAxNSA0IDQgNi45MTAxNSA0IDEwLjVDNCAxNC4wODk5IDYuOTEwMTUgMTcgMTAuNSAxN0MxMi4yOTQ5IDE3IDEzLjkxOTkgMTYuMjcyNSAxNS4wOTYyIDE1LjA5NjJaIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMS44IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");

    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: 95% center;
    border-radius: 50px;
    border: 1px solid rgb(216 216 216 / 50%);
    transition: all 250ms ease-in-out;
    backface-visibility: hidden;
    transform-style: preserve-3d;

}

.search__input::placeholder {
    color: #D9D9D9;
    letter-spacing: 1.5px;
}

.search__input:hover,
.search__input:focus {
    padding: 12px 0;
    outline: 0;
    border: 1px solid transparent;
    border-bottom: 1px solid #222222;
    border-radius: 0;
    background-position: 100% center;
    background-color: transparent;
}

.header-icon__list,
.header__content-left {
    gap: 20px;
}

.main-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    min-height: 750px;
    transition: background-color 1s;
}

.slide-1 {
    background-color: #b1b3b2;
}

.slide-2 {
    background-color: #f1f1f1;
}

.slide-3 {
    background-color: #b5b7b4;
}

.slide-4 {
    background-color: #b5b8c2;
}

.slide-5 {
    background-color: #c4c3c0;
}

.wrapper {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: space-between;
}

.slides-container__left {
    position: relative;
    width: 48%;
    flex-shrink: 0;
    padding-top: 67px;
}

.slides-container__slide {
    position: absolute;
    z-index: 20;
    width: 100%;
    left: 0;
    top: calc(67px + 50px);
    pointer-events: none;
    /* opacity: 0; */
}

.slides-container__slide--active {
    pointer-events: auto;
    opacity: 1;
}

.main-section__explore {
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(100px);
}

.slides-container__text {
    width: 100%;
    position: relative;
    flex-shrink: 0;
    z-index: 10;
}

.slides-container__title {
    margin: 0;
    margin-bottom: 70px;
    color: #000;
    font-family: 'Merriweather-Light';
    font-size: 120px;
    font-style: normal;
    font-weight: 300;
    line-height: 130px;
    opacity: 0;
    transform: translateY(100px);
}

.slides-container__title--dark {
    color: #000;
}

.designers-info {
    display: flex;
    opacity: 0;
    transform: translateY(100px);
    z-index: 0;
}

.designers-info__descr {
    margin-left: 30px;
}

.designers-info__country {
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.designers-info__by {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #727272;
}

.designers-info__image {
    width: 210px;
    height: 160px;
}

.designers-info__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.shapes {
    position: absolute;
    right: 0;
    top: 0;
    width: 33.5%;
    height: 100%;
}

.shapes__item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
}

.shapes__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shapes__item--current {
    opacity: 1;
    z-index: 11;
}

.slide-bg {
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    height: 680px;
    width: 57.4%;
    margin-left: -5.4%;
}

.slide-bg__inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
}

.index {
    z-index: 10;
}

.slide-bg__inner--current {
    opacity: 1;
    z-index: 11;
    pointer-events: auto;
}

.slide-bg__link {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


/* SECTION-CATALOG */

.section-catalog__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: minmax(400px, 600px) minmax(300px, 400px);
    gap: 30px;

}

.section-catalog__images {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.section-catalog__overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.42);
    transition: bottom 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: bottom 0.5s ease-in-out;
    -moz-transition: bottom 0.5s ease-in-out;
    -ms-transition: bottom 0.5s ease-in-out;
    -o-transition: bottom 0.5s ease-in-out;
}

.section-catalog__images:hover .section-catalog__overlay {
    bottom: 0;

}

.section-catalog__text {
    font-family: Playfair Display;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 138.3%;
    text-transform: uppercase;
    color: white;
    text-align: center;
}

.section-catalog__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-1 {
    grid-column: 1 / 4;

}

.item-2 {
    grid-column: 4 / 8;

}


.item-3 {
    grid-column: 1 / 3;


}

.item-4 {
    grid-column: 3 / 5;

}

.item-5 {
    grid-column: 5 / 8;
}





/* SECTION-CATALOG END*/



/* SECTION-CARD */

.cards {
    display: grid;
    /* Автоматически заполняем на всю ширину grid-контейнера */
    grid-template-columns: repeat(auto-fill, minmax(300px, 300px));
    justify-content: center;
    justify-items: center;
    /* Размещаем карточку по центру */
    column-gap: 30px;
    /* Отступ между колонками */
    row-gap: 30px;
    /* Отступ между рядами */
    margin: 0 auto;
    /*Центрирование*/
    place-content: baseline;
}

.card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: transparent;
    transition: transform 0.5s ease-in-out;
    -webkit-transition: transform 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
}


.card__image {
    height: 350px;
}


.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__image_zoom {
    overflow: hidden;
    transition: all .8s ease;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease;
}

.card__image_zoom:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}


.card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 0;
    flex-grow: 1;
}

.section-catalog__grid.section {
    padding-top: 30px;
}

.card__title {
    margin: 0;
    margin-bottom: 20px;
    font-family: 'Merriweather-Regular';
    font-size: 22px;
    font-style: normal;
    line-height: 120%;
    color: #3A3A3A;
    font-weight: 400;
}

.card__descr {
    margin: 0;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 150%;
}

.card__date {
    margin-top: auto;
    margin-left: auto;
    font-size: 14px;
    line-height: 150%;
    color: #898989;
}

.cards__item .card {
    height: 100%;
}

/* SECTION-CARD END*/


/* SECTION-FURNITURE */

.furniture__label {
    color: #616161;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    line-height: 150%;
}

.label-link {
    gap: 10px;
}

.label-link,
.furniture__label-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.furniture__body {
    position: relative;
}

.furniture__items {
    display: grid;
    grid-template-columns: auto;
    grid-auto-flow: column;
    align-items: center;
    gap: 16px;
}

.furniture__column {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -8px;
}

.furniture__column:first-child {
    justify-content: flex-end;
}

.furniture__row {
    display: inline-grid;
    padding: 0 8px;
    gap: 16px;
    grid-template-columns: auto;
    grid-auto-flow: column;

}

.furniture__row:not(:last-child) {
    margin: 0 0 16px 0;

}

.row-furniture_left-top {
    justify-content: end;
    align-items: end;
}

.row-furniture_left-bottom {
    justify-content: end;
    align-items: start;
}

.row-furniture_center {
    display: block;
}

.row-furniture_right-top {
    align-items: end;
}

.row-furniture_right-bottom {
    align-items: start;
}



.slider-container-mobile {
    display: none;
    position: relative;
}

.slides-mobile {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    transform: translateX(0px);
    transition: transform 0.3s ease-in-out;
    width: 100%;
    gap: 40px;

}




.product-details__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(740px, 1fr));
    grid-auto-rows: auto;

}

.images_position {
    position: relative;
    max-height: 630px;
    min-height: 400px;
    width: 100%;
}

.image-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url('/img/Blazer.jpg');
    background-size: contain;
    margin: 0 auto;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.product-images__list {
    order: -1;
}

.list-photo {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 190px;
    max-height: 630px;
    max-width: 190px;
    overflow: auto;
}

.item-photo {
    height: 190px;
    width: 190px;
    object-fit: cover;
}

.list-photo_flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
    ov
}

.list-photo_hidden {
    display: none;
}

.product-images img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    min-width: 80px;
}

.product-images {
    grid-column: 1/2;
    display: flex;
    gap: 30px;
    overflow: hidden;
}

.product-images img.active {
    opacity: 0.5;
}


.details {
    padding-left: 30px;
    box-sizing: border-box;
}


.product__icon path {
    cursor: pointer;
    transition: all 0.8s ease-out;
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -ms-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
}

.product__icon:hover path {
    fill: rgba(171, 36, 36, 1);
    stroke: rgba(220, 60, 60, 1);
}

.product__icon:focus path {
    fill: rgb(199, 38, 38);
    stroke: rgba(220, 60, 60, 1);
}

.product__icon:active path {
    fill: rgba(171, 36, 36, 1);
    stroke: rgba(171, 36, 36, 1);
}


.product__name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product__name-heading {
    color: #000;
    font-family: 'Merriweather-Regular';
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.details .product-short-des {
    color: #4C4B4B;
    font-family: 'Merriweather-Regular';
    font-style: normal;
    font-weight: 400;
    line-height: 138.3%;
    letter-spacing: 0.49px;
}

.product__price-new {
    color: #3A3A3A;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-right: 20px;
}

.product__price-old {
    color: #B0B0B0;
    font-size: 16px;
    line-height: 150%;
    text-decoration: line-through;
    margin-right: 10px;
}

.product__discount {
    color: #ff7d7d;
    font-size: 16px;
}

.product__descriphion,
.product__btn {
    margin-bottom: 40px;
}

.product__social {
    display: flex;
    gap: 15px;
}

.product-sub-heading {
    font-size: 16px;
    font-family: 'Merriweather-Regular';

}

.product__btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

}

.btn {
    flex: 49%;
    height: 60px;
    padding: 10px;
    background: none;
    border: 1px solid #222222;
    color: #222222;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.btn:hover,
.btn:active,
.btn:focus {
    background: #222222;
    color: #fff;
}

.popup {
    display: none;
    position: fixed;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    max-width: 400px;
}

.heading_popup {
    font-size: 24px;
    font-family: 'Merriweather-Light';
    margin-bottom: 20px;
    line-height: 130%;
}

.popup img {
    max-width: 100%;
    max-height: 500px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.popup .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.popup .btn {
    font-size: 14px;
}

.cart-btn {
    background: #222222;
    color: #fff;
}

.cart-btn:hover,
.cart-btn:active,
.cart-btn:focus {
    background: #ffffff;
    color: #000000;
}



.product__options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}


.dsp-none {
    display: none !important;
}

.counter {
    display: flex;
    border: 1px solid #000;
    padding: 7px;
    text-align: center;
    height: 45px;

}

.count {
    display: inline-block;
    width: 30px;
}

.counter__input {
    display: block;
    width: 85px;
}

.counter__button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}



.counter__input input {
    text-align: center;
    border: none;
    background: transparent;
    width: 100%;
}

.center {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.select-menu-option {
    flex: 33%;
    height: 45px;
    position: relative;
}

.select-menu {
    width: 100%;
    position: absolute;
}

.select-menu .select-btn {
    position: relative;
    display: flex;
    height: 45px;
    border: 1px solid #000;
    background: #fff;
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Merriweather-Regular';
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.sBtn-text {
    font-family: 'Merriweather-Regular';
    color: rgba(0, 0, 0, 0.5);
}

.select-btn i {
    font-size: 25px;
    transition: 0.3s;
}

.select-menu.active .select-btn i {
    transform: rotate(-180deg);
}

.select-menu .options {
    padding: 20px;
    margin-top: 10px;
    border: 1px solid #000;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    display: none;

}

.select-menu.active .options {
    display: block;
    z-index: 1;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 40px;
}

.options .option {
    display: flex;
    height: 55px;
    cursor: pointer;
    padding: 0 16px;
    border-radius: 8px;
    align-items: center;
    background: #fff;
}

.options .option:hover {
    background: #F2F2F2;
}

.option i {
    font-size: 25px;
    margin-right: 12px;
}

.option .option-text {
    font-size: 14px;
    color: #333;
    font-family: 'Merriweather-Regular';

}

textarea:focus-visible {
    outline-color: unset;
    outline: 0;
}

.section-tabs {
    grid-column: 1/4;
}

.tab-header {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab-button {
    background-color: transparent;
    color: #222222;
    font-family: 'Merriweather-Regular';
    line-height: 130%;
    letter-spacing: 0.98px;
    font-size: 28px;
    border: none;
    outline: none;
    padding: 10px 0;
    text-align: start;
    cursor: pointer;
    flex: 0 0 30%;

}

.tab-button.active {
    color: #8E5E40;
}

.tab-button:hover {
    color: #8E5E40;
    ;
}

.tab-content {
    display: none;
}

.tab-content__heading {
    color: #000;
    font-family: 'Merriweather-Bold';
    line-height: 150%;
}

.tab-content__des {
    font-family: 'Merriweather';

}

/*CARD*/
.product-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 40px;

}

.product-container::-webkit-scrollbar {
    display: none;
}

.product-card_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;

}

.product-card {
    flex: 0 0 auto;
    width: 300px;
}

.product-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-tag {
    position: absolute;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    color: #ff7d7d;
    right: 10px;
    top: 10px;
    text-transform: capitalize;
}

.card-btn {
    position: absolute;
    width: 100%;
    font-size: 18px;
    display: flex;
    justify-content: center;
    bottom: 0;
    gap: 10px;
}


.product-card .product-image .card-btn .card-btn_one {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 50px;
    height: 50px;
    background: #fff;
    color: #333;
    opacity: 0;
    transition: all .7s ease;
    border: none;
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
}

.product-card .product-image:hover .card-btn .card-btn_one {
    opacity: 1;
    transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
}



.product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    flex-grow: 1;
    gap: 15px;
}

.product-name {
    font-family: 'Merriweather-Regular';
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-align: center;
    word-break: break-all;
}


.product-prise {
    margin-top: auto;
    line-height: 150%;
    color: #898989;
}

.price {
    font-weight: 900;
    font-size: 20px;
}

.actual-price {
    margin-left: 20px;
    opacity: 0.5;
    text-decoration: line-through;
}

.tab-content-slider {
    position: relative;

}

.pre-btn,
.nxt-btn,
.next-btn,
.back-btn {
    border: none;
    width: 35px;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    cursor: pointer;
    z-index: 8;
}

.pre-btn,
.back-btn {
    left: 0;
    transform: rotate(180deg);
}

.nxt-btn,
.next-btn {
    right: 0;
}

.pre-btn img,
.nxt-btn img,
.back-btn img,
.next-btn img {
    opacity: 0.2;
}

.pre-btn:hover img,
.nxt-btn:hover img,
.back-btn:hover img,
.next-btn:hover img {
    opacity: 1;
}



/*SECTION PRODUCT END*/



/*CATALOG SECTION-CATALOG*/
.section-catalog__grid {
    display: grid;
    grid-template-columns: 2fr 6fr;


}

.section-catalog__left {
    grid-column: 1;

}

.section-catalog__right {
    grid-column: 2;
}

.section-catalog__blog {
    grid-column: 1/3;
}

.sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}

.sidebar-heading {
    margin-bottom: 10px;
}

.sidebar-heading h3 {
    font-family: 'Merriweather-Regular';
    font-size: 28px;
    font-style: normal;
    line-height: 138.3%;
    letter-spacing: 0.98px;
    text-transform: uppercase;
    font-weight: 400;
}


.sibebar__item {
    font-size: 20px;
    word-wrap: break-word;
}

.sibebar__item a {
    display: inline-block;
    word-wrap: break-word;
    width: 100%;
}

.sibebar__item a.active_link {
    color: #8E5E40;
}

.button-sidebar-mobile {
    visibility: hidden;
    position: fixed;
    top: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    transition: all .3s ease;
    transform: translateX(0px);
    z-index: 40;

}

.button-sidebar-mobile svg {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transition: all .3s ease;
}

.button-sidebar-mobile.active {
    background-color: #fff;
}

.button-sidebar-mobile.active svg {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.sidebar-mobile-left {
    width: 290px;
    padding-top: 50px;
    position: fixed;
    overflow-x: scroll;
    top: 0;
    background-color: rgb(245 238 231);
    color: #000000;
    transition: all .3s ease;
    height: 100%;
    z-index: 4;
    left: -300px;
    opacity: 0;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

.sidebar-mobile-left.active {
    left: 0px;
    opacity: 1;
    width: 400px;
}

.button-sidebar-mobile.active {
    transform: translateX(275px);
}

.sidebar-mobile-left__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.overlay-sidebar {
    position: fixed;
    width: 120%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 1;
}

.overlay-sidebar.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-mobile-left__link {
    font-size: 20px;
    font-family: 'Merriweather-Light';
}



.product-card__catalog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 300px));
    grid-gap: 30px;
    grid-template-rows: auto;
    place-content: center;
}


.section-catalog__right .product-card,
.section-favorites .product-card {
    width: 100%;
    height: 100%;
    margin: 0;
}



/*BLOG_DETAIS*/

.blog-details-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-blog-details {
    width: 85%;
    margin: 0 auto;
}

.content-blog-img {
    width: 100%;
    margin: 0 auto;
}

.content-blog-img img {
    width: 100%;
    max-height: 750px;
    min-height: 200px;
    object-fit: cover;
}

.item-benefits::marker,
.heading-benefits,
.des-post {
    font-size: 18px;
    margin: 35px 0;
    line-height: 150%;
}

.list-benefits {
    padding-left: 20px;
}

.item-benefits::marker {
    font-weight: 700;
}

.content-blog-details__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
}

.social-seti {
    display: flex;
    gap: 15px;
}

.day-post,
.share {
    color: #898989
}

.page-reviews__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 410px));
    gap: 30px;
    place-content: center;
}

.card__image_large {
    height: 500px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 20px;
}

.card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.card__content_align {
    align-items: normal;
}

.user-name {
    margin-top: 0;
    margin-bottom: 0;
}

.user-icon {
    object-fit: cover;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
}

.user-icon .user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;

    object-fit: cover;
    object-position: center;
}

.page-reviews__item .card {
    height: 100%;
}


/*BLOG_DETAIS END*/


/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    top: 25%;
    width: 80%;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 500px;
    background: #fff;
}

.close-button {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 30px;
    color: #222222;
    cursor: pointer;
}

.slider {
    width: 50%;
    height: 100%;
}

.slider img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider img.active-slide {
    display: block;
}

.info {
    width: 50%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    color: #222222;
}

.author-name {
    font-size: 20px;
    font-weight: bold;
}

.review-headind {
    font-size: 16px;
    font-family: 'Merriweather-Light';
}

.top-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.description {
    font-size: 16px;
}

.prev_modal,
.next_modal {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 2em;
    padding: 10px;
    cursor: pointer;
}



.buttons {
    display: flex;
    justify-content: space-between;
}

.prev_modal {
    order: 1;
}

.next_modal {
    order: 2;
}

/* section-contacts */
/* new */

.img-contacts {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 20% 20%;
    height: 450px;
}

.desc-contacts__text {
    max-width: 700px;
    font-size: 20px;
    font-family: Merriweather;
    text-align: center;
    line-height: 120%;
    letter-spacing: 2px;
    margin: 0 auto;
}

.desc-contacts {
    font-size: 18px;
}

.contacts-list-row {
    display: flex;
    flex-direction: column;
    gap: 60px;
}


.section-contacts {
    background-color: rgba(190, 139, 91, 0.15);
    background-image: url(/img/vector_13-1.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;

    padding: 30px 0 30px;
}





.list-soc-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.soc-links {
    display: flex;
    grid-column: repeat;
    flex-wrap: wrap;
    gap: 15px;
}

.email {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Merriweather;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: #A4947A;
    margin: 0;
    margin-bottom: 10px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;

}

.card-contacts {
    max-width: 350px;
    width: 80%;
    flex: 1;
    align-self: stretch;
    padding: 1.5em;
    background-color: #FFF9EF;
    border-radius: 15px;
    box-sizing: border-box;
    -webkit-border-radius: ;
    -moz-border-radius: ;
    -ms-border-radius: ;
    -o-border-radius: ;
}

/*contacts-end */

/* uslugi */

.section-contacts-form {
    background-color: rgba(190, 139, 91, 0.15);
    background-image: url(/img/vector_13-1.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 30px 0 30px;
}

.contacts-form {
    display: grid;
    grid-template-columns: 1fr;
    margin: 5% auto;
    gap: 20px;
}

.list-contacts {
    max-width: 680px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 40px;

    padding: 2em;
}

.contacts__heading-form {
    font-size: 32px;
    line-height: 120%;
    font-weight: 400;
    font-family: Merriweather;
}

.form-contacts__desc {
    color: #393939;
    font-family: Merriweather;
    font-size: 20px;
    font-style: normal;
    font-weight: 100;
    line-height: 138.3%;
    letter-spacing: 0.35px;
    margin: 0;
}


.btn:hover {
    color: #fff;
}

.btn.btn-primary {
    background: #000;
    color: #fff;
    padding: 10px 32px;
    font-size: 16px;
    text-transform: none;
    font-family: Merriweather;
    min-width: 200px;
}

.btn,
.form-control,
.custom-select {
    height: 50px;
}

.form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    padding-left: 0;
    padding: 0;
    border-radius: 0px;
    background-color: transparent;

    font-family: Merriweather;
    width: 100%;
}

.col-md-12 {
    width: 100%;
}

.col-md-6 {
    width: 50%;
}

form#contactForm {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

li.item-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.row {
    display: flex;
    gap: 30px;
}

.contacts-form-right,
.contacts-form-left {
    display: flex;
}

/*FOOTER*/
.footer:before {
    content: '';
    display: block;
    border-top: 1.2px solid #D8D8D8;
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    min-width: 300px;
}


.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;


}

.footer__title {
    color: #000;
    display: inline-block;
    margin-bottom: 0;
}

.footer__item:not(:first-child) {
    padding-top: 20px;
}


.footer__development {
    margin-top: 40px;
}

.footer__title,
.footer__link-sitezone,
.contacts__soc {
    font-family: 'Merriweather-Regular';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.footer__menu-link {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #616161;
    margin: 0;
}

.footer__nav {
    padding: 100px 0;
}

.footer__link-sitezone {
    color: #8E5E40;
    display: block;
    text-align: right;
}







/*FOOTER END*/














@media (max-height: 749.9px) {
    .main-section {
        min-height: 640px;
    }

    .slides-container__title {
        font-size: 85px;

        margin-bottom: 40px;
    }

    .slide-bg {
        height: 450px;
        width: 50%;
    }

    .heading-section {
        font-size: 22px;
    }
}

@media (max-width: 1199px) {

    .header__nav,
    .search-box,
    .sidebar__list {
        display: none;
    }

    .container {}


    .burger-menu-btn {
        display: block;
    }


    .section-catalog__grid {
        grid-template-columns: 1fr;
    }

    .section-catalog__right {
        grid-column: 1/3;
    }

    .button-sidebar-mobile {
        visibility: visible;
    }

    .product-details__list {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 40px;
    }

    .product-images {
        grid-column: 1/4;
    }

    .details {
        padding-left: 0;
        grid-column: 1/4;
    }



}


/* new */

@media(max-width:1089px) {
    .card-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        justify-items: center;
    }
}

@media (max-width: 992px) {
    .mouse {
        display: none;
    }

    .heading-section {
        font-size: 25px;
    }

    .section-catalog__overlay {
        bottom: 0;
    }

    *,
    *::after,
    *::before {
        box-sizing: border-box;
        cursor: auto !important;
    }

    .preloader__forward {
        width: 500px;
        text-align: center;
        font-size: 55px;
        line-height: 70px;
    }

    .designers-info__image {
        width: 40%;
        min-width: 150px;
    }



    .tab-button {
        font-size: 20px;
    }

    .furniture__body {
        display: none;
    }

    .slider-container-mobile {
        display: block;
    }
}

@media (max-width: 829px) {
    .container {
        padding: 0 30px;

    }

    .details {
        padding-left: 0;
    }

    .tab-button {
        font-size: 20px;
        flex: 0 0 50%;
    }

    .tab-content__heading {
        font-size: 16px;
    }

    .btn {
        font-size: 14px;
        padding: 5px;
        height: 50px;
    }

    .select-menu .select-btn,
    .counter__input input {
        font-size: 12px;
    }




}


@media (max-width: 768px) {
    .main-section {
        padding-top: 100px;
        height: auto;
        min-height: 100vh;
    }

    .wrapper {
        flex-direction: column-reverse;
        justify-content: initial;
    }

    .main-section__explore {
        display: none;
    }

    .slides-container__slide--active {
        position: relative;
    }

    .slides-container__slide {
        top: -90px;
    }



    .slides-container__title {
        margin-bottom: 10px;
        line-height: 100%;
    }

    .slide-bg {
        width: 100%;
        height: 75vh;
        margin-left: 0;
    }



    .slides-container__left {
        width: 100%;
        /*padding-top: 0;*/
    }

    .shapes {
        display: none;
    }

    .designers-info__image {
        width: auto;
    }

    .section-catalog__list {
        grid-template-rows: minmax(300px, 300px) minmax(200px, 200px);
        gap: 30px;
    }

    .card__title,
    .footer__title,
    .footer__link-sitezone {
        font-size: 20px;
    }

    .card__descr,
    .footer__menu-link {
        font-size: 16px;
    }

    .card__date {

        font-size: 14px;
    }

    .pre-btn,
    .nxt-btn,
    .next-btn,
    .back-btn {
        background: transparent;
    }

    .section-catalog__text {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .slide-bg {
        height: 65vh;
        margin-top: 10px;
    }

    .section-catalog__images {
        height: 300px;
    }

    .slides-container__title {
        font-size: 60px;
        /*line-height: 100%;*/
        padding-top: 20px;
    }

    .preloader__forward {
        width: 90%;
        font-size: 35px;
        line-height: 45px;
    }

    .content-blog-details {
        width: 100%;
        margin: 0 auto;
    }



    .section-catalog__list {

        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: 1fr;
        gap: 30px;

    }

    .tab-button {
        flex: 0 0 100%;
    }

    .section-catalog__item {
        grid-column: 1;
    }

    .product__btn {
        flex-wrap: wrap;
    }

    .product-container {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
    }

    .section {
        padding-top: 30px;
        padding-bottom: 0;
    }

    .card__image_large {
        height: 420px;
    }

    .item-photo {
        height: 145px;
        width: 190px;
        object-fit: cover;
    }

    .list-photo {
        display: none;
    }

    .product-images {
        flex-direction: column;
    }

    .product-images__list {
        order: 0;
    }

    .list-photo_flex {
        display: flex;
        flex-direction: row;
        justify-content: center;
        max-width: min-content;
    }

    .image-slider {
        background-position: center;
    }

    .logo__name {
        display: none;
    }

    .contacts__heading-form {
        font-size: 26px;
    }


}

@media (max-width: 420px) {
    .slides-container__title {
        font-size: 60px;
        margin-bottom: 30px;
    }

    .slides-container__slide {
        top: -65px;
    }

    .designers-info__image {
        width: 40%;
    }

    .heading-section {
        font-size: 20px;
    }

    .product__name-heading {
        font-size: 20px;
    }

    .card__title,
    .footer__title,
    .footer__link-sitezone {
        font-size: 18px;
    }

    .card__descr,
    .footer__menu-link {
        font-size: 14px;
    }

    .card__date,
    .btn {
        font-size: 12px;
    }

    .product__icon {
        width: 25px;
    }

    .share {
        display: none;
    }

    .contacts__heading-form {
        font-size: 18px;
    }

    .form-contacts__desc {
        font-size: 16px;
    }

    .contacts__soc {
        font-size: 20px;
    }

    .email {
        font-size: 16px;
    }

}


@media (any-hover:none) {

    .furniture__body {
        overflow: auto;
    }
}

@media (any-hover:hover) {
    .furniture__items {
        justify-content: center;
    }

    .row-furniture__item img {
        transition: all 0.8s ease 0s;
        filter: grayslace(1);
    }

    .row-furniture__item:hover img {
        filter: grayslace(0);
    }
}


@media (any-hover:hover) {

    .row-furniture__item img {
        transition: all 0.8s ease 0s;
        filter: grayc(1);
        -webkit-filter: grayscale(1);
    }

    .row-furniture__item:hover img {
        filter: grayscale(0);
        -webkit-filter: grayscale(0);
    }
}

.slides-container__slide.slides-container__slide--active {
    display: block;
}

.slides-container__slide {
    display: none;
}

.slide-bg__inner {
    display: none;
}

.slide-bg__inner.slide-bg__inner--current {
    display: block;
}

.sz-wishlist-element.active path {
    fill: red;
    stroke: red;
}