/* SLIDER */
.custom-banner-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* TRACK */
.custom-banner-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* ITEM */
.custom-banner-item {
    flex: 0 0 calc(33.333% - 17px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.custom-banner-item a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

/* IMAGE */
.custom-banner-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

/* HOVER */
.custom-banner-item:hover img {
    transform: scale(1.05);
}

/* BUTTON */
.banner-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-white);
	color: var(--color-main);
    border-radius: 50%;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}

.banner-btn:hover {
    transform: translateY(-50%) scale(1.05);
	background: var(--color-main);
	color: var(--color-white);
}

.banner-prev {
    left: 10px;
}

.banner-next {
    right: 10px;
}

/* DOTS */
.custom-banner-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.custom-banner-dots span {
    width: 10px;
    height: 10px;
    background: #d2d2d2;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.custom-banner-dots span.active {
    width: 25px;
    background: var(--color-main);
}

/* TABLET */
@media(max-width:991px) {
    .custom-banner-item {
        flex: 0 0 calc(50% - 13px);
    }
}

/* MOBILE */
@media(max-width:767px) {
    .custom-banner-item {
        flex: 0 0 100%;
    }

    .banner-btn {
        display: none;
    }
}