body{
    font-family: "Arimo", sans-serif;
    overflow-x: hidden;
}

.banner{
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    padding: 36px 0 51px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: url("../img/bg.jpg") no-repeat top center /cover;
    background-color: #000;
}

.banner-zoom{
    transition: .6s ease;
    position: relative;
}

.banner:hover .banner-zoom{
    transform: scale(1.05);
}

.banner:hover h1{
    transform: scale(0.85);
}

.banner:hover h1 > span{
    transform: scale(0.9);
}

h1{
    font-weight: 500;
    font-size: 40px;
    line-height: 46px;
    text-align: center;
    color: #fff;
    margin-bottom: 51px;
    text-transform: uppercase;
    transition: transform .6s ease;
}

h1 > span{
    display: block;
    transition: transform .6s ease;
}

.container{
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 60px;
}

.banner-info{
    position: relative;
    z-index: 3;
}

.btn{
    display: block;
    width: fit-content;
    font-size: 16px;
    line-height: 18px;
    padding: 11px 36px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    background: linear-gradient(90deg, #8D7428 0%, #D0BE4D 35.53%, #F4E89E 49.18%, #F4E89E  50.18%, #D0BE4D 65.45%, #8D7428 100.56%);
    background-size: 200% 100%;
    background-position: 0;
    transition: .3s ease-out, transform .6s ease;
}

.btn:hover{
    background-position: 100% 0;
}

.title{
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    font-weight: 500;
    color: #000002;
    margin-bottom: 36px;
    text-transform: uppercase;
}

.categories{
    padding: 36px 0 144px;
}

.categories__items{
    display: flex;
    gap: 1px;
}

.categories__item {
    position: relative;
    overflow: hidden;
    background-color: #E1E1E1;
    flex-grow: 1;
}

.categories__item > img{
    height: 100%;
    width: 100%;
    transition: .15s linear;
    transform-origin: bottom;
}

.categories__item:hover > img, .special-product:hover > img, .video-cover:hover .video-poster{
    transform: scale(1.05);
}

.categories__name{
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #000002;

    position: absolute;
    z-index: 2;
    top: 24px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
}

.about{
    padding-bottom: 149px;
}

.about-title{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 24px;
}

.about-info{
    display: flex;
    gap: 48px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text, .about-awards{
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.about-text > p{
    font-size: 24px;
    line-height: 28px;
    color: #000002;
    max-width: 524px;
}

.special-products{
    display: flex;
    overflow: hidden;
    margin-bottom: 36px;
    --item-width: 500px;

}

.slide{
    display: flex;
    animation: 12s marquee linear infinite reverse;
    transition: .15s;
    width: calc(var(--item-width) * 8);
}

.slide:hover{
    animation-play-state: paused;
}

.special-product{
    width: var(--item-width);
    overflow: hidden;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100%{
        transform: translateX(calc(var(--item-width) * 4));
    }
}

.special, .feedback, .showroom{
    padding-bottom: 144px;
}


.special-product > img{
    transition: .15s linear;
    width: 100%;
    height: 100%;
}

.feedback-videos{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.feedback-video{
    position: relative;
    overflow: hidden;
    padding-top: 17.75%;
    flex-grow: 1;
}

.video-cover, .video-iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.video-iframe{
    z-index: 1;
    background-color: grey;
    opacity: 0;
    transition: .15s;
}

.video-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    cursor: pointer;
}

.video-cover > .video-poster{
    transition: .15s linear;
}

.video-cover.hidden{
    display: none;
}

.video-cover.hidden + .video-iframe{
    opacity: 1;
}

.video-poster{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.text{
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #000002;
    margin-bottom: 48px;
}

.showroom{
    background: url("../img/logo 2.svg") no-repeat center /100%;
}

.showroom-cover{
    display: block;
    margin: 0 auto 48px;
}

.footer{
    padding-bottom: 37px;
}

.footer > span{
    direction: ltr;
    display: block;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #000002;
}

@media(max-width: 1600px) {
    .about-info{
        gap: 24px;
    }
    .about-awards > img{
        max-width: 162px;
    }
}

@media(max-width: 1210px) {
    .categories__name{
        font-size: 18px;
    }
    .about-info{
        justify-content: center;
    }
    .about-text > p{
        max-width: unset;
    }
    .special-products{
        --item-width: 25%;
    }
    .banner-zoom{
        max-height: 306px;
    }
    .categories__name{
        top: 10px;
    }
}

@media(max-width: 1000px) {
    .banner{
        padding: 30px 0;
        min-height: 45vh;
    }
    h1{
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 30px;
    }
    .categories__items{
        flex-wrap: wrap;
        gap: 0;
    }
    .categories, .about, .special, .feedback, .showroom{
        padding-bottom: 72px;
    }
    .title{
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 24px;
    }
    .categories > .title{
        margin-bottom: 36px;
    }
    .logo{
        max-height: 40px;
    }
    .categories__name{
        font-size: 24px;
        top: 24px;
    }
    .about-text > img{
        max-width: 131px;
    }
    .categories__item{
        width: 256px;
    }
    .about-text > p{
        font-size: 18px;
        line-height: 22px;
    }
    .special-products{
        --item-width: 245px;
    }
    .video-btn{
        width: 30px;
        height: 30px;
    }
    .showroom-cover, .special-products, .text{
        margin-bottom: 24px;
    }
}

@media (max-width: 769px) {
    .special-products{
        --item-width: 200px;
    }
}

@media(max-width: 650px) {
    .container{
        max-width: unset;
        padding-right: 16px;
        padding-left: 16px;
    }
    h1, .categories > .title{
        margin-bottom: 24px;
    }
    .banner{
        padding: 28px 16px 24px;
    }
    .about-text > img{
        max-width: 99px;
    }
    .feedback-videos{
        flex-wrap: wrap;
        gap: 16px;
    }
    .categories{
        padding-top: 24px;
    }
    .categories__name{
        top: 14px;
    }
    .about-awards{
        gap: 16px;
    }
    .about-awards > img{
        width: 30%;
    }
    .video-btn{
        width: 48px;
        height: 48px;
    }
    .feedback-video{
        width: 100%;
        padding-top: 56.25%;
    }
    .categories__item{
        flex-basis: 50%;
    }
    .showroom{
        background-position: 50% 88%;
    }
}

@media (max-width: 450px) {
    .categories__name{
        font-size: 16px;
        line-height: 19px;
    }
    .about-text{
        gap: 12px;
        flex-wrap: wrap;
    }
    .showroom-cover{
        width: 100%;
    }
    .showroom{
        background-position: 50% 99%;
    }
}