
.slick-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    position:absolute;
    bottom: -48px !important;
    z-index: 1 !important;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li button::before {
    content: none !important;
}


.slick-dots button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 9999px; /* ✅ cần để hiển thị dot */
    background-color: #d1d5db; /* hoặc #000000 */
    transition: all 0.3s ease;
    border: none;
    font-size: 0;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    background-color: #d1d5db; /* hoặc #000000 */
}
.slick-dots .slick-active button {
    background-color: var(--primaryf-learning-orange800); /* hoặc #000000 */
}


@media (max-width: 668px) {
    .bottom-slider .image-box{
        height: 300px !important;
    }

}

@media (min-width: 668px) {
    .bottom-slider {
        height: 640px !important;
        display: flex !important;
        align-items: flex-end;  /* Cạnh dưới bằng nhau */
        justify-content: end;
    }
    .bottom-slider .image-box{
        max-height: 640px;
    }

}