/* ============================================================
   SLIDESHOW
   ============================================================ */

.slideshow-container {
    position: relative;

    width: 100%;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden;

    background: #ffffff;
}


/* ============================================================
   SLIDE
   ============================================================ */

.slide {
    display: none;

    position: relative;

    width: 100%;

    margin: 0;
    padding: 0;

    line-height: 0;
}


.slide.active {
    display: block;
}


/* ============================================================
   SLIDE IMAGE
   ============================================================ */

.slide img {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;
    padding: 0;

    border: 0;

    object-fit: cover;
}


/* ============================================================
   ARROWS
   ============================================================ */

.arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 20;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: rgba(6, 25, 74, 0.70);

    font-size: 25px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.arrow:hover {
    background: #0b3c78;

    transform: translateY(-50%) scale(1.08);
}


/* Left */

.arrow.left {
    left: 20px;
}


/* Right */

.arrow.right {
    right: 20px;
}


/* ============================================================
   DOTS
   ============================================================ */

.dots {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 15px;

    z-index: 20;

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 8px;
}


.dot {
    width: 10px;
    height: 10px;

    display: inline-block;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.65);

    border: 1px solid rgba(6, 25, 74, 0.35);

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.dot:hover {
    transform: scale(1.2);
}


.dot.active {
    width: 28px;

    border-radius: 10px;

    background: #f5c542;

    border-color: #ffffff;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .arrow {
        width: 35px;
        height: 35px;

        font-size: 19px;
    }

    .arrow.left {
        left: 10px;
    }

    .arrow.right {
        right: 10px;
    }

    .dots {
        bottom: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

}