
/* ============================= */
/* MAIN CAROUSEL */
/* ============================= */

.axalis-carousel {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================= */
/* HEADER */
/* ============================= */

.axalis-carousel-header {
    text-align: center;
    margin-bottom: 18px;
}

.axalis-carousel-header h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #173b70;
}

.axalis-carousel-header div {
    margin-top: 5px;
    font-size: 15px;
    color: #55708f;
    font-weight: 500;
}

/* ============================= */
/* CAROUSEL WINDOW */
/* ============================= */

.axalis-carousel-window {
    position: relative;
    width: 100%;
    overflow: hidden;

    background: #eef7ff;

    border: 1px solid #d6e8f7;

    border-radius: 12px;

    box-shadow:
        0 4px 15px rgba(40, 100, 160, 0.10);
}

/* ============================= */
/* TRACK */
/* ============================= */

.axalis-carousel-track {
    display: flex;

    width: 100%;

    transition:
        transform 0.7s ease-in-out;
}

/* ============================= */
/* SLIDES */
/* ============================= */

.axalis-carousel-slide {
    min-width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 10px;

    box-sizing: border-box;
}

.axalis-carousel-slide img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;

    border-radius: 8px;
}

/* ============================= */
/* PREVIOUS / NEXT BUTTONS */
/* ============================= */

.axalis-carousel-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 1px solid #d1e2f2;

    background: rgba(255,255,255,0.92);

    color: #174a85;

    font-size: 22px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 3px 10px rgba(0,0,0,0.10);

    transition: all 0.2s ease;

    z-index: 5;
}

.axalis-carousel-btn:hover {
    background: #ffffff;

    transform:
        translateY(-50%)
        scale(1.08);
}

.axalis-prev {
    left: 15px;
}

.axalis-next {
    right: 15px;
}

/* ============================= */
/* DOTS */
/* ============================= */

.axalis-carousel-dots {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 8px;

    margin-top: 14px;
}

.axalis-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #c5d9ec;

    cursor: pointer;

    transition:
        all 0.3s ease;
}

.axalis-dot.active {
    width: 25px;

    border-radius: 10px;

    background: #1683e8;
}



@media (max-width: 768px) {

    .axalis-carousel-header h2 {
        font-size: 21px;
    }

    .axalis-carousel-header div {
        font-size: 13px;
    }

    .axalis-carousel-btn {
        width: 34px;
        height: 34px;

        font-size: 17px;
    }

    .axalis-prev {
        left: 8px;
    }

    .axalis-next {
        right: 8px;
    }

}
