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

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

.banner-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease;
    will-change: transform;
}

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

.banner-slide a {
    display: block;
    line-height: 0;
}

.banner-slide .banner-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 600;
    object-fit: cover;
    object-position: center;
}

.banner-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.banner-slider-dots li {
    display: inline-block;
}

.banner-slider-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    font-size: 0;
    line-height: 0;
}

.banner-slider-dots button.is-active {
    background: #fff;
    border-color: #fff;
}

.banner-slider .nav-btn {
    z-index: 6;
}

.banner-slider .nav-btn .glyphicon {
    font-size: 18px;
    color: #fff;
    line-height: 1;
}