.simple-fullpage-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.simple-fullpage-banner .slide {
    width: 100%;
}

.simple-fullpage-banner .slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- ARROWS --- */
.simple-fullpage-banner .slick-prev,
.simple-fullpage-banner .slick-next {
    position: absolute;
    top: 0;
    z-index: 20;

    width: 48px;
    height: 100%;
    border: none;
    background: rgba(255, 255, 255, 0);
    color: black;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    cursor: pointer;
    transition: opacity 0.25s ease, background 0.25s ease;

    font-size: 18px;

    outline: unset !important;
}

.simple-fullpage-banner:hover .slick-prev,
.simple-fullpage-banner:hover .slick-next,
.simple-fullpage-banner:focus-within .slick-prev,
.simple-fullpage-banner:focus-within .slick-next {
    opacity: 1;
}

.simple-fullpage-banner .slick-prev:hover,
.simple-fullpage-banner .slick-prev:focus-visible,
.simple-fullpage-banner .slick-next:hover,
.simple-fullpage-banner .slick-next:focus-visible {
    background: rgba(255, 255, 255, 0.11);
    color: #7b2481;
}

.simple-fullpage-banner .slick-prev {
    left: 0;
}

.simple-fullpage-banner .slick-next {
    right: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.simple-fullpage-banner .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
}

.simple-fullpage-banner .slick-dots li button {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease;
    font-size: 0;
}

.simple-fullpage-banner .slick-dots li button:hover,
.simple-fullpage-banner .slick-dots li button:focus,
.simple-fullpage-banner .slick-dots li.slick-active button {
    background: #fff;
}

/* .scroll-shift-banner {
    transition: transform 0.3s ease-out;
    will-change: transform;
    transition: transform 0s;
    position: relative;
} */