/* slider section */
.swiper-button-prev,
.swiper-button-next {
    background-color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: #E23333;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}


/* Thay đổi màu nền khi hover vào các nút */
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Tùy chỉnh biểu tượng của các nút điều hướng */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
    /* Kích thước biểu tượng */
    font-weight: bold;
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    margin-top: 0;
}


@media (max-width: 786px) {

    .swiper-button-prev,
    .swiper-button-next {
        background-color: white;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        color: #E23333;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 12px;
        /* Kích thước biểu tượng */
        font-weight: bold;
    }
}