/*
* BANNER
*/
.banner-area {
    background: #fff;
    margin-top: 100px;
    margin-bottom: 50px;
    overflow: hidden;
    width: 100%;
}

.banner-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.banner-track {
    display: flex;
    transform: translate3d(0, 0, 0);
    transition: transform .65s cubic-bezier(.22, .61, .36, 1);
    width: 100%;
    will-change: transform;
}

.banner-slide {
    flex: 0 0 100%;
    min-width: 0;
}

.banner-link {
    display: block;
    width: 100%;
}

.banner-image {
    display: block;
    height: auto;
    max-width: none;
    width: 100%;
}

.banner-control {
    align-items: center;
    background: rgba(0, 0, 0, .42);
    border: 0;
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 1.4rem;
    height: 46px;
    justify-content: center;
    opacity: .82;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color .2s ease, opacity .2s ease;
    width: 46px;
    z-index: 2;
}

.banner-control:hover,
.banner-control:focus-visible {
    background: rgba(0, 0, 0, .7);
    color: #fff;
    opacity: 1;
}

.banner-control-prev {
    left: clamp(10px, 2vw, 30px);
}

.banner-control-next {
    right: clamp(10px, 2vw, 30px);
}

.banner-indicators {
    bottom: 14px;
    display: flex;
    gap: 8px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 2;
}

.banner-indicator {
    background: rgba(255, 255, 255, .68);
    border-radius: 999px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .28);
    display: block;
    height: 9px;
    transition: background-color .2s ease, width .2s ease;
    width: 9px;
}

.banner-indicator.active {
    background: #fff;
    width: 28px;
}

@media (max-width: 991px) {
    .banner-area {
        margin-top: 80px;
        margin-bottom: 35px;
    }

}

@media (max-width: 576px) {
    .banner-area {
        margin-top: 60px;
        margin-bottom: 25px;
    }

    .banner-control {
        font-size: 1rem;
        height: 36px;
        width: 36px;
    }

    .banner-indicators {
        bottom: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .banner-track {
        transition: none;
    }
}

/*
* HOME PRODUCTS
*/
.home-products-section {
    padding-bottom: 3.5rem;
}

.home-products-section--featured {
    padding-top: 0;
}
