@import "fonts.css";
:root {
    --white: #ffffff;
    --black: #000000;
    --dark: #1D1D1B;
    --dark-black: #181818;
    --orange: #2B3D77;
    --orange-transparent: #2b3d7733;
    --grey: #625F5F;
    --dark-grey: #ABABAB;
    --border-grey: #D3D3D3;
    --contact-grey: #4B4B4B;
    --bg-grey: #D9D9D9;
    --bg-light-grey: #EEEEEE;
}
* {
    box-sizing: border-box;
}
a, a:hover {
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
ul {
    padding: 0;
    margin: 0;
}
li{
    list-style-type: none;
}
p {
    margin: 0;
}
.mt-100{
    margin-top: 100px;
}
::-webkit-scrollbar {
    width: 3px;
    background-color: var(--black);
}
::-webkit-scrollbar-track {
    background-color: var(--white);
}
::-webkit-scrollbar-thumb {
    background-color: var(--white);
    border: 2px solid var(--orange);
}
input:focus,textarea:focus, select:focus {
    box-shadow: none;
    outline: none;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    font-family: mordoto-regular;
}
.wrapper {
    max-width: 1920px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
}
.main-padding{
    padding-left: 96px;
    padding-right: 96px;
}
.banner{
    position: relative;
    width: 100%;
    height: 969px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.banner:before{
    position: absolute;
    content: '';
    background-image: url("../images/icons/banner-down.png");
    width: 43px;
    height: 43px;
    bottom: 48px;
    left: 30%;
    z-index: 20;
}
.banner:after{
    position: absolute;
    content: '';
    background-image: url("../images/banner/banner-corner.png");
    width: 592px;
    height: 243px;
    bottom: 0;
    right: 0;
    z-index: 10;
}
.banner-scroll-icon{
    position: absolute;
    width: 66px;
    height: 67px;
    bottom: 135px;
    left: 50%;
    z-index: 1;
}
.banner-footer-line{
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 189px;
    object-fit: cover;
    object-position: left bottom;
}
.banner-footer-line img{
    height: 100%;
    width: 100%;
}
.home-banner{
    background-image:
        linear-gradient(180deg, #414141 -8.41%, rgba(217, 217, 217, 0) 156.41%),
        url('../images/banner/1.png');
}
.about-banner{
    background-image:
        linear-gradient(180deg, #414141 -8.41%, rgba(217, 217, 217, 0) 156.41%),
        url('../images/banner/8.png');
    margin-bottom: 30px!important;
}
.contact-banner{
    background-image:
        linear-gradient(180deg, #414141 -8.41%, rgba(217, 217, 217, 0) 156.41%),
        url('../images/banner/8.png');
}
.category-banner{
    background-image:
        linear-gradient(180deg, #414141 -8.41%, rgba(217, 217, 217, 0) 156.41%),
        url('../images/banner/5.png');
}
header{
    width: 100%;
    padding: 24px 0 0 63px;
}
.header-list{
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}
.header-logo{
    display: flex;
    justify-content: flex-start;
    width: 137px;
}
.header-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header-list-right{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.header-list-right-hat{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.burger-menu-icon{
    display: none;
    width: 40px;
    height: 40px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 999;
}
.burger-menu-icon img{
    width: 100%;
    height: 100%;
}
nav{
    border-bottom: 1px solid var(--white);
}
nav ul{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.nav-menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    margin: 0;
}
.nav-menu-item {
    list-style-type: none;
    height: 36px;
}
.nav-menu-item a, .nav-menu-item span {
    display: flex;
    align-items: center;
    width: 100%;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 18.75px;
    white-space: nowrap;
    letter-spacing: 1px;
    cursor: pointer;
}
.nav-menu-item a:hover{
    font-weight: 700;
}
.nav-menu-item.active > a{
    font-weight: bold;
}
.chevron-down{
    width: 6px;
    height: 11px;
    object-fit: contain;
}
.chevron-down-orange{
    display: none;
}
.dropper {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 999;
}
.dropdown-menu > .nav-menu__nested{
    display: flex;
    flex-direction: column;
    background-color: var(--orange);
    border-radius: 0 0 15px 15px;
    padding: 10px;
}
.hat-langbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-right: 24px;
}
.hat-social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.header-list-right-hat{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 32px;
}
.hat-langbar a{
    font-size: 16px;
    line-height: 18.4px;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
}
.hat-langbar a.active{
    font-weight: bold;
}
.dropper > a img{
    margin-left: 5px;
}
.dropper:hover .dropdown-menu{
    display: flex!important;
}
.dropper:hover .dropdown-menu > .nav-menu__nested{
    animation-name: dropdown;
    animation-duration: 0.3s;
}
.nav-menu__nested > .nav-menu-item{
    border-bottom: 1px solid var(--white);
    padding: 10px 0;
}
.nav-menu__nested > .nav-menu-item:last-child{
    border: none;
}
@keyframes dropdown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.banner-inner{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.banner-title{
    display: flex;
    width: calc(100% - 740px);
    justify-content: center;
    align-items: flex-start;
    padding-top: 150px;
}
.banner-slide{
    display: flex;
    width: 740px;
    min-height: 500px;
    justify-content: flex-end;
    align-items: center;
}
.banner-swiper{
    position: relative;
    z-index: 11;
}
.banner-swiper-button-next{
    position: absolute;
    bottom: 50px!important;
    top: unset!important;
    left: unset;
    right: 213px;
}
.banner-swiper-button-prev{
    position: absolute;
    bottom: 50px!important;
    top: unset!important;
    left: unset;
    right: 272px;
}
.banner-swiper-button-next:after{
    position: absolute;
    content: '';
    background-image: url("../images/icons/banner-slider-next.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 9px;
    height: 18px;
    padding: 13px 16px;
    background-color: var(--white);
    border-radius: 50%;
    right: 0;
}
.banner-swiper-button-prev:after{
    position: absolute;
    content: '';
    background-image: url("../images/icons/banner-slider-prev.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 9px;
    height: 18px;
    padding: 13px 16px;
    background-color: var(--white);
    border-radius: 50%;
}
.banner-swiper-slide-item{
    width: 319px;
    height: 766px;
}
.banner-swiper-slide-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.banner-title h3{
    font-size: 36px;
    font-weight: 700;
    line-height: 42.19px;
    color: var(--white);
}
.footer-corner{
    display: flex;
    width: 100%;
    height: 18px;
    background-color: var(--orange);
}
.footer-content-btn{
    padding: 5px 364px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #333333;
}
.footer-content-btn span{
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}
.footer-content-btn span a{
    width: 100%;
    height: 100%;
}
.footer-content-btn span a img{
    width: 100%;
    height: 100%;
}
.footer-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-contacts{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.copyrights {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
    gap: 10px;
    background: var(--orange);
    padding: 10px 250px;
}
.copyrights > div{
    margin-top: 5px;
}
.footer-details{
    width: 100%;
    padding: 98px 250px 45px 250px;
    background-color: #333333;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.footer-contacts-main{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 100px;
    margin-bottom: 50px;
}
.footer-contacts-item{
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 14.17px;
    color: var(--white);
}
.footer-content-title{
    font-weight: 700;
    margin-bottom: 25px;
}
.footer-contact-inner span{
    display: flex;
    align-items: center;
    font-weight: 400;
    margin-bottom: 5px;
}
.footer-contact-inner span img{
    margin-right: 5px;
    width: 22px;
    height: 22px;
}
.footer-contacts-details{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.footer-contacts-details-item{
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 30px;
    padding: 5px 25px 5px 14px;
}
.footer-contacts-details-item img{
    width: 44px;
    height: 44px;
    margin-right: 12px;
}
.footer-contacts-details-item p{
    font-size: 20px;
    font-weight: 500;
    line-height: 17.71px;
    color: var(--orange);
}
.nav-footer-menu{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nav-footer-menu a{
    color: var(--white);
}
.footer-social-inner{
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.footer-social-inner img{
    width: 28px;
    height: 28px;
}
.line-categories{
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}
.section-title{
    padding-bottom: 30px;
    font-family: montserratarm-regular;
    color: var(--orange);
    font-weight: 500;
    font-size: 36px;
    line-height: 25px;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: uppercase;

}
.section-title h3 {
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
}
.categories-gallery-items{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 22px;
    align-items: flex-start;
    justify-content: space-between;
}
.categories-gallery-items-inner{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.categories-gallery-item{
    width: 100%;
    height: 209px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}
.categories-gallery-item span a{
    padding: 8px 24px;
    font-size: 24px;
    line-height: 28.13px;
    font-weight: 700;
    color: var(--white);
    background-color: var(--orange);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}
.cube-categories{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 60px;
}
.cube-content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 156px;
}
.swiper{
    position: relative;
    width: 100%;
}
.cube-swiper-next{
    position: absolute;
    top: 38%!important;
    left: unset;
    right: 80px;
}
.cube-swiper-prev{
    position: absolute;
    top: 38%!important;
    left: 80px;
}
.cube-swiper-next:after{
    position: absolute;
    content: '';
    background-image: url("../images/icons/cube-slider-next.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 9px;
    height: 18px;
    padding: 13px 16px;
    background-color: var(--orange);
    border-radius: 50%;
    right: 0;
}
.cube-swiper-prev:before{
    position: absolute;
    content: '';
    background-image: url("../images/icons/cube-slider-prev.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 9px;
    height: 18px;
    padding: 13px 16px;
    background-color: var(--orange);
    border-radius: 50%;
}
.swipe-slide-cube{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.swipe-cube-item{
    max-width: 336px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.swipe-cube-item-image{
    width: 100%;
    height: 210px;
    overflow: hidden;
}
.swipe-cube-item-image > a {
    width: 100%;
    height: 100%;
}
.swipe-faq-item-image > a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swipe-cube-item-title{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
}
.swipe-cube-item-title span a{
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    line-height: 18.75px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
}
.solido-img-mobile{
    display: none;
}
.about{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-line{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about-content.home-style{
    flex-direction: row!important;
}
.about-content-inner{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 28px;
    padding-top: 28px;
}
.about-content-inner h2{
    font-size: 20px;
    font-weight: 500;
    line-height: 28.6px;
    color: var(--black);
}
.about-content-inner p{
    font-size: 16px;
    font-weight: 400;
    line-height: 22.88px;
    color: var(--black);
    margin-bottom: 32px;
}
.about-img{
    width: calc(100% - 936px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img img{
    max-width: 571px;
    width: 100%;
    object-fit: contain;
}
.doors{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 96px;
}
.doors-title-content{
    padding-left: 50px!important;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 50px;
}
.doors-title-content img{
    width: 8px;
    height: 14px;
    margin-left: 16px;
}
.swiper-wrapper-doors{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
}
.swipe-doors{
    margin-bottom: 48px;
}
.swipe-slide-doors{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.swipe-doors-item{
    width: 336px;
    height: 460px;
    border: 2px solid var(--orange);
    border-radius: 0 0 15px 15px;
    box-shadow: -1px 3px 5.7px 0px #00000040;
}
.swipe-doors-item-image{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.open-doors{
    width: calc(100% - 20px);
    height: 298px;
}
.swipe-doors-item-image::after{
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    right: 10px;
    bottom: 40px;
    background-image: url(../images/general/sale.png);
    z-index: 1;
    background-size: contain;
}
.open-doors img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.price-item-title{
    padding: 8px 23px 15px 8px;
}
.price-title{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 42px;
    font-size: 20px;
    font-weight: 400;
    line-height: 23.44px;
    margin-bottom: 11px;
    color: var(--dark);
}
.old-price{
    font-size: 16px;
    font-weight: 700;
    line-height: 18.75px;
    min-height: 20px;
    color: var(--dark);
    opacity: 25%;
    text-decoration: line-through;
}
.new-price{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    line-height: 28.13px;
    font-weight: 700;
    color: var(--dark);
}
.doors-more-btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 124px;
}
.doors-more-btn span{
    padding: 12px 26px;
    box-shadow: -1px 3px 5.7px 0px #00000040;
    border: 1px solid var(--orange);
    border-radius: 16px;
}
.doors-more-btn span a{
    font-size: 16px;
    font-weight: 400;
    line-height: 18.75px;
    color: var(--dark);
}
.laminate{
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #2B3D77;
    margin-bottom: 124px;
    padding-left: 96px;
}
.laminate-title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    color: var(--white);
    font-family: montserratarm-regular;
    font-weight: 400;
    font-size: 36px;
    line-height: 17px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;

}
.laminate-title img{
    margin-left: 16px;
    width: 6px;
    height: 14px;
}
.swipe-laminate{
    padding: 40px 0 115px 0;
}
.swiper-wrapper-laminate{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
}
.swipe-slide-laminate{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.swipe-laminate-item{
    width: 336px;
    height: 427px;
    border-radius: 0 0 15px 15px;
    border: 2px solid var(--orange);
    box-shadow: -1px 3px 5.7px 0px #00000040;
    background-color: var(--white);
}
.swipe-laminate-item-image{
    position: relative;
    width: 100%;
    height: 310px;
}
.swipe-laminate-item-image::after{
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    right: 10px;
    bottom: 10px;
    background-image: url(../images/general/sale.png);
    z-index: 1;
    background-size: contain;
}
.open-laminate{
    width: 100%;
    height: 100%;
}
.open-laminate img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swipe-laminate-item-title{
    padding: 0 23px 15px 8px;
}

.our-services{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 72px;
}
.our-services-title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-services-title span{
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 24.79px;
    font-weight: 700;
    color: var(--black);
    display: flex;
}
.our-services-title span p{
    margin-left: 10px;
    color: var(--orange);
    margin-bottom: 40px;
}
.our-services-texts{
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 26.88px;
    color: var(--black);
}
.our-services-images{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 198px;
    margin-top: 54px;
}
.our-services-images-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.our-services-images-inner-img{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 256px;
    height: 257px;
    width: 100%;
}
.our-services-images-inner-img img{
    margin-bottom: 40px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.our-services-images-title{
    width: 290px;
    font-size: 20px;
    font-weight: 700;
    line-height: 17.71px;
    color: var(--black);
    text-transform: uppercase;
    text-align: center;
}
.inner-page-banner{
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 130px;
    height: 620px;
}
.contact{
    margin-top: -130px;
}
.contact-content-map{
    margin-bottom: -180px;
}
.contact-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 150px;
}
.contact-content-title{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 120px;
    margin-bottom: 95px;
    margin-top: 18px;
}
.contact-content-title h3{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.13px;
    color: var(--orange);
    text-transform: uppercase;
}
.contact-content-title div{
    width: 40%;
}
.contact-content-hat{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 120px;
}
.contact-content-form{
    width: 60%;
    display: flex;
    justify-content: flex-end;
}
.contact-content-form form{
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 25px;
}
form input, textarea{
    outline: none;
    border: 1px solid var(--border-grey);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 5px 4px 12.8px 0px #00000014;
}
textarea{
    height: 130px;
}
form input, input::placeholder, textarea::placeholder{
    font-size: 16px;
    font-weight: 400;
    line-height: 16.67px;
    color: var(--dark)
}
.form-btn{
    color: var(--white);
    background-color: var(--orange);
}
.form-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.form-right{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 35px;
}
.contact-content-right{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 35px;
}
.contact-content-right-hat{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.contact-content-right-hat span{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 17.71px;
    font-weight: 500;
    color: var(--contact-grey);
}
.contact-content-right-hat span:last-child{
    font-weight: 700;
}
.contact-content-right-hat span img{
    margin-right: 5px;
    width: 18px;
    height: 18px;
}
.contact-content-right-item{
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 16px;
    padding: 5px 25px 5px 14px;
    box-shadow: 0px 2px 2.4px 0px #00000040;
}
.contact-content-right-item img{
    width: 44px;
    height: 44px;
    margin-right: 12px;
}
.contact-content-right-item p{
    font-size: 20px;
    font-weight: 500;
    line-height: 17.71px;
    color: var(--orange);
}
.contact-content-right-items{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.contact-content-right-social{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.contact-content-right-social img{
    width: 33px;
    height: 32px;
    object-fit: cover;
}
.about-content{
    width: 100%;
    max-width: 940px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 46px;
}
.breadcrumb{
    z-index: 11;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 50px;
    padding-left: 50px;
}
.breadcrumb ul{
    max-width: 584px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: left;
}
.breadcrumb ul li a{
    font-size: 16px;
    line-height: 14.17px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--dark);
    margin-right: 15px;
}
.breadcrumb ul li a.active{
    font-weight: 700;
}
.breadcrumb ul li img{
    margin-right: 15px;
    width: 7px;
    height: 13px;
}
.breadcrumb div{
    width: 50%;
}
.about-content-line{
    width: 100%;
    margin-bottom: 85px;
    display: flex;
}
.category{
    margin-top: 126px;
    margin-bottom: 98px;
}
.category-content{
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.category-content-items{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.category-content-item-price-list{
    max-width: 322px;
    width: 100%;
    min-height: 363px;
}
.category-content-item-price{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.category-content-item-price-image{
    width: 100%;
    height: 269px;
    background-color: var(--bg-grey);
}
.category-content-item-price-image-inner{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    padding: 25px 10px 10px;
}
.category-content-item-price-image-inner img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.category-price-item-title{
    border-bottom: 2px solid var(--orange);
    border-left: 2px solid var(--orange);
    border-right: 2px solid var(--orange);
    border-radius: 0 0 15px 15px;
}
.category-content-pagination{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    gap: 20px;
    position: relative;
}
.category-content-pagination span{
    width: 50%;
    display: flex;
    align-items: center;
}
.category-content-pagination span:first-child{
    justify-content: flex-end;
}
.category-content-pagination span:last-child{
    justify-content: flex-start;
}
.category-content-pagination span a{
    padding: 22px 26px;
    border: 2px solid var(--orange);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.75px;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-content-pagination span img{
    width: 26px;
    height: 18px;
}
.category-content-pagination span img:last-child{
    margin-left: 10px;
}
.category-content-pagination-pages{
    position: absolute;
    right: 0;
}
.category-content-pagination-pages{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.75px;
}
.category-content-pagination-pages input{
    margin-right: 10px;
    margin-left: 10px;
    border: 2px solid var(--orange);
    border-radius: 16px;
    padding: 12px 8px;
    width: 77px;
}
/*****************/
/*****PRODUCT*****/
/*****************/
#productBanner{
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-image:linear-gradient(180deg, #414141 -8.41%, rgba(217, 217, 217, 0) 156.41%),
    url('../images/banner/9.png');
    margin-bottom: 130px;
    height: 620px;
}
#productBanner:after{
    position: absolute;
    content: '';
    background-image: url("../images/banner/banner-footer-line.png");
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 189px;
    object-fit: cover;
    z-index: 12;
}
#product{
    width: 100%;
    min-height: 500px;
    position: relative;
    z-index: 20;
}
.banner-breadcrumbs{
    margin-top: 100px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.banner-breadcrumbs > a{
    color: var(--white);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 14px;
}
.banner-breadcrumbs > a:after{
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7px;
    height: 13px;
    background-image: url('../images/icons/breadcrumbs-arrow.png');
    background-size: contain;
    background-position: center;
    margin: 0 10px;
}
.banner-breadcrumbs > a:hover{
    color: var(--orange);
}
.banner-breadcrumbs > span{
    color: var(--orange);
    font-size: 16px;
    font-weight: 400;
    line-height: 14px;
}
.product-content{
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
}
.product-content-mobile-title{
    display: none;
}
.single-product-gallery{
    width: 50%;
}
.single-product-gallery-inner{
    width: 100%;
    height: 460px;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 2px 2px 4.3px 0px #00000040;
}
.single-product-gallery-thumb{
    width: 50%;
}
.single-product-slide-area{
    width: 100%;
    height: 100%;
}
.single-product-slide{
    height: 100%;
}
.single-product-slide-item{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-product-slide-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.single-product-slide-item-thumb{
    width: 105px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 0.5px solid #DE9500;
    border-radius: 16px;
    padding: 10px;

}
.single-product-slide-item-thumb img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.single-product-button-next{
    border: 1px solid var(--orange);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-product-button-next:after{
    position: absolute;
    content: '';
    background-image: url("../images/icons/banner-slider-next.png");
    background-repeat: no-repeat;
    background-position: center;
    padding: 13px 16px;
    background-color: var(--white);
    border-radius: 50%;
    right: 0;
}
.single-product-button-prev{
    border: 1px solid var(--orange);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-product-button-prev:after{
    position: absolute;
    content: '';
    background-image: url("../images/icons/banner-slider-prev.png");
    background-repeat: no-repeat;
    background-position: center;
    padding: 13px 16px;
    background-color: var(--white);
    border-radius: 50%;
}
.single-product-details{
    width: 50%;
    min-height: 450px;
    background: var(--white);
    box-shadow: 2px 2px 4.3px 0 #00000040;
    border-radius: 16px;
}
.single-product-details-hat{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.single-product-details-title{
    padding: 20px;
    color: var(--dark-black);
    font-weight: 500;
    font-size: 32px;
    line-height: 37px;
}
.product-available{
    padding: 0 20px;
    margin-bottom: 15px;
    color: var(--orange);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}
.product-price{
    padding: 0 20px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
}
.single-product-details-table{
    width: 100%;
}
.single-product-details-table tr:nth-child(even){
    background: var(--orange-transparent);
}
table{
    border-spacing: 0;
}
.single-product-details-table tr td{
    padding: 20px 80px;
    color: var(--dark-black);
}
.single-product-related{
    width: 100%;
    min-height: 300px;
    background: var(--white);
}
.mobile-categories{
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 16px;
}
.mobile-categories-title{
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.41px;
    width: 100%;
    text-align: center;
}
.mobile-categories-list{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.mobile-categories-item{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 5px 30px;
    background-color: var(--bg-light-grey);
    border-radius: 6px;
}
.mobile-categories-item a{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-categories-item-icon{
    width: 40px;
    height: 37px;
}
.mobile-categories-item-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mobile-categories-item > img{
    width: 6px;
    height: 14px;
}
.mobile-categories-item p{
    font-size: 14px;
    font-weight: 700;
    line-height: 16.41px;
    color: var(--orange);
}
.nav-mobile{
    right: 0!important;
}
#hideMobile{
    visibility: visible!important;
}
#hideDesktop{
    display: none;
}
.dropper-desktop{
    display: flex!important;
}
.dropper-mobile{
    display: none!important;
}
#hideDesktop li{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#hideDesktop li a{
    text-align: right;
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--dark-black);
    padding-right: 15px;
}
.footer-contacts-main-mobile{
    display: none;
}
.per-page-selector {
    margin-left: 15px;
}
.per-page-selector > a {
    color: black;
}
.per-page-selector > a.active {
    text-decoration: underline;
}
/******************/
/****RESPONSIVE****/
/******************/
@media only screen and (max-width: 1800px) {
    .swipe-laminate{
        padding: 20px 0 40px 0;
    }
}
@media only screen and (max-width: 1600px) {
    .footer-content-btn{
        padding: 5px 200px;
    }
    .category-content{
        padding-left: 0;
        padding-right: 0;
    }
    .main-padding{
        padding-left: 50px;
        padding-right: 50px;
    }
    .banner-slide{
        width: 500px;
    }
    .banner-title{
        width: calc(100% - 500px);
    }
    .banner-swiper-button-next{
        right: 45px;
    }
    .banner-swiper-button-prev{
        right: 105px;
    }
    .footer-details {
        padding: 75px 100px 45px 100px;
    }
    .banner:before{
        left: 20%;
    }
    .footer-corner:after{
        right: 15%;
    }
}
@media only screen and (max-width: 1440px) {
    .footer-content-btn{
        padding: 5px 100px;
    }
}
@media only screen and (max-width: 1366px) {

}
@media only screen and (max-width: 1280px) {
    .footer-content-btn{
        padding: 5px 50px;
    }
    .banner{
        height: 100vh;
    }
    .banner:after{
        display: none;
    }
    .section-title{
        padding-left: 50px;
    }
    .our-services-images{
        gap: 50px;
    }
    .footer-contacts-main{
        gap: 50px;
    }
    .contact-content-hat {
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
    }
    .contact-content-right{
        width: 100%;
        justify-content: center;
    }
    .contact-content-form{
        width: 100%;
        justify-content: center;
    }
    .contact-content-title div{
        display: none;
    }
    .about-content{
        margin-bottom: 0;
    }
    .banner-scroll-icon{
        display: none;
    }
    .doors-title-content{
        padding-left: unset;
    }
    .banner-swiper-slide-item{
        height: 600px;
    }
}
@media only screen and (max-width: 1024px) {
    .footer-content-btn{
        display: none;
    }
    header {
        padding: 24px 0 0 0;
    }
    .banner:before{
        display: none;
    }
    .categories-gallery-items {
        gap: 17px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .categories-gallery-items-inner{
        width: 100%;
    }
    .footer-details{
        gap: 50px;
        padding: 20px 30px;
        flex-direction: column;
    }
    .footer-contacts-main{
        gap: 30px;
    }
    .category-content-items{
        justify-content: center;
    }
    .banner-slide{
        display: none;
    }
    .banner-inner{
        height: 100%;
        justify-content: center;
    }
    .footer-corner:after{
        display: none;
    }
    .our-services-images-title{
        width: unset;
        font-size: 15px;
    }
}
@media only screen and (max-width: 768px) {
    #hideMobile{
        visibility: hidden!important;
    }
    #hideDesktop{
        display: flex;
        flex-direction: column;
    }
    .dropper-desktop{
        display: none!important;
    }
    .dropper-mobile{
        display: flex!important;
    }
    .main-padding {
        padding-left: 16px;
        padding-right: 16px;
    }
    header {
        padding: 10px 0 0 0;
    }
    .header-logo {
        width: 109px;
    }
    .header-list{
        padding-left: 16px;
    }
    .banner{
        max-height: 390px;
    }
    .banner-footer-line{
        height: 60px;
    }
    #productBanner:after{
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        bottom: unset;
        top: 212px;
    }
    .banner-title{
        display: none;
    }
    .line-categories{
        display: none;
    }
    .doors{
        padding-left: 0;
    }
    .header-list-right{
        position: fixed;
        flex-direction: column-reverse;
        background-color: var(--white);
        right: -100%;
        top: -35px;
        padding: 160px 16px;
        width: 280px;
        height: 100vh;
        z-index: 999;
        transition: 0.3s;
    }
    .hat-social{
        display: none;
    }
    .burger-menu-icon{
        display: flex;
    }
    nav {
        border-bottom: none;
    }
    .nav-menu{
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
        margin-bottom: 10px;
    }
    .nav-menu-item {
        height: 46px;
    }
    .nav-menu-item a, .nav-menu-item span{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        color: var(--dark-black);
        padding: 7px 10px;
        background-color: var(--orange-transparent);
        border-radius: 16px;
    }
    .dropper a{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between!important;
    }
    .hat-langbar{
        margin-right: 0;
    }
    .hat-langbar a{
        color: var(--dark-black);
    }
    .nav-menu-item{
        width: 100%;
        border: 2px solid var(--orange);
        border-radius: 20px;
        padding: 4px 3px;
        text-align: end;
    }
    .chevron-down-orange{
        display: block;
        margin-right: auto;
    }
    .chevron-down{
        display: none;
    }
    .mobile-categories{
        display: flex;
    }
    .cube-categories{
        display: none;
    }
    .section-title{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        line-height: 23.44px;
        padding-bottom: 16px;
    }
    .about-content-inner {
        padding-left: 0;
        padding-top: 0;
    }
    .about-content-inner h2{
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
        font-size: 14px;
    }
    .about-content-inner p{
        font-size: 14px;
        margin-bottom: 16px;
    }
    .doors-title-content{
        justify-content: center;
    }
    .swipe-doors-item{
        width: 171px;
        height: 262px;
    }
    .swipe-laminate-item{
        width: 171px;
        height: 262px;
    }
    .open-doors{
        width: 67px;
        height: 152px;
    }
    .open-laminate{
        width: 100%;
        height: 152px;
    }
    .swipe-doors-item-image{
        padding: 0;
    }
    .swipe-doors-item-image::after{
        width: 40px;
        height: 40px;
        bottom: 0;
    }
    .swipe-laminate-item-image::after{
        width: 40px;
        height: 40px;
        bottom: 0;
    }
    .swipe-laminate-item-image{
        padding: 0;
        height: unset;
    }
    .product-banner-padding{
        padding-right: 0!important;
        padding-left: 0!important;
    }
    .product-banner-breadcrumbs{
        padding-right: 16px;
        padding-left: 16px;
    }
    .price-title{
        font-size: 16px;
    }
    .old-price{
        font-size: 14px;
    }
    .new-price{
        font-size: 16px;
    }
    .doors-more-btn{
        display: none;
    }
    .laminate{
        border-radius: 64px 0 0 0 ;
        padding-left: 0;
        margin-bottom: 40px;
    }
    .laminate-title{
        padding-top: 24px;
        font-size: 16px;
    }
    .our-services-title span{
        font-size: 16px;
        margin-bottom: 40px;
    }
    .our-services-title span p{
        margin-bottom: 0;
    }
    .our-services-texts{
        text-align: unset;
        font-size: 14px;
    }
    .our-services-images{
        flex-direction: column;
        gap: 0;
        align-items: unset;
    }
    .our-services-images-inner:nth-child(1){
        align-items: flex-end;
    }
    .our-services-images-inner:nth-child(2){
        align-items: flex-start;
    }
    .our-services-images-inner:nth-child(3){
        align-items: flex-end;
    }
    .our-services-images-title{
        width: unset;
        font-size: 14px;
    }
    .our-services-images-inner-img{
        max-width: 203px;
        max-height: 177px;
    }
    .footer-logo{
        display: none;
    }
    .footer-contacts-main-mobile{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .footer-contacts-main{
        display: none;
    }
    .footer-contacts-item-mobile{
        display: flex;
        flex-direction: column;
        font-size: 16px;
        line-height: 14.17px;
        color: var(--white);
        text-align: center;
    }
    .footer-content-title-mobile{
        font-weight: 700;
        margin-bottom: 16px;
        color: var(--orange);
        text-align: center;
    }
    .footer-contact-inner span{
        justify-content: center;
    }
    .footer-social-inner{
        justify-content: center;
    }
    .nav-footer-menu{
        flex-direction: row;
        gap: 16px;
    }
    .footer-menu{
        margin-bottom: 30px;
    }
    .footer-contacts-details-item p{
        font-size: 16px;
    }
    .footer-contacts-details-item img{
        width: 28px;
        height: 28px;
    }
    .copyrights{
        padding: 10px 16px;
    }
    .solido-img-mobile{
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .solido-img-mobile-inner{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .solido-img-mobile-inner img{
        width: 100%;
        object-fit: contain;
        opacity: 0.7;
    }
    .breadcrumb{
        margin-bottom: 17px;
        margin-top: 0;
        padding-left: 0;
        justify-content: center;
    }
    .breadcrumb > div{
        display: none;
    }
    .breadcrumb ul li:first-child{
        display: none;
    }
    .breadcrumb ul li:last-child{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .breadcrumb ul li a{
        font-size: 14px;
        font-weight: 700;
        color: var(--orange);
    }
    .inner-page-banner{
        margin-bottom: 0;
    }
    .contact{
        margin-top: 0;
    }
    .contact-content-title{
        margin-bottom: 17px;
    }
    .contact-content-title h3{
        font-size: 14px;
    }
    .contact-content-title div{
        display: none;
    }
    .contact-content-right{
        width: 100%;
    }
    .contact-content-right-hat span{
        font-size: 16px;
    }
    .contact-content-right-item p{
        font-size: 14px;
    }
    .contact-content-right-item{
        border-radius: 30px;
    }
    .contact-content-right-item img {
        width: 28px;
        height: 28px;
    }
    .contact-content-right-social{
        display: none;
    }
    .contact-content-form{
        width: 100%;
        flex-direction: column;
    }
    .contact-content-form form{
        width: 100%;
        flex-direction: column;
        gap: 16px;
    }
    .form-left{
        width: 100%;
        gap: 16px;
    }
    .form-right{
        width: 100%;
        gap: 16px;
    }
    form input, form input::placeholder, form textarea, form textarea::placeholder{
        font-size: 12px;
    }
    .contact-content{
        margin-bottom: 30px;
    }
    .contact-content-map{
        margin-bottom: 30px;
        padding-left: 16px;
        padding-right: 16px;
        border-radius: 24px;
    }
    .contact-content-map iframe{
        height: 190px!important;
        border-radius: 24px!important;

    }
    .category-content-item-price-list {
        max-width: 171px;
        width: 100%;
        min-height: 243px;
    }
    .category-content-item-price-image {
         height: 169px;
     }
    .category-content-item-price-image-inner{
        padding: 13px 5px 5px;
    }
    .category-content{
        padding-left: 0;
        padding-right: 0;
    }
    .price-item-title {
        padding: 8px 10px 10px 8px;
    }
    #product{
        position: unset;
    }
    #productBanner{
        background: none;
        height: auto;
    }
    #productBanner:before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        background-image:linear-gradient(180deg, #414141 -8.41%, rgba(217, 217, 217, 0) 156.41%),
        url('../images/banner/9.png');
        height: 400px;
    }
    .product-content{
        flex-direction: column;
    }
    .single-product-gallery{
        width: 100%;
        padding: 0 16px;
    }
    .single-product-details{
        width: 100%;
        box-shadow: unset;
        border-radius: unset;
        min-height: unset;
    }
    .single-product-details-title{
        display: none;
    }
    .single-product-details-table tr td{
        padding: 20px 16px;
    }
    .single-product-details-table tr td:last-child{
        padding-left: 120px;
    }
    .single-product-details-hat{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .single-product-gallery-thumb{
        display: none;
    }
    .product-content-mobile-title{
        margin-top: 160px;
        text-align: center;
        margin-bottom: 8px;
        line-height: 30px;
    }
    #productBanner{
        margin-bottom: 0;
    }
    .doors{
        margin-top: 0;
    }
}
@media only screen and (max-width: 600px) {

}
@media only screen and (max-width: 570px) {

}
@media only screen and (max-width: 460px) {
.footer-contacts-details{
    flex-direction: column;
}
.contact-content-right-items{
    flex-direction: column;
}
}
@media only screen and (max-width: 320px) {

}
