:root {
    --brand-500: #e94e1b;
    --neutral-200: #e5e5e5;
    --neutral-800: #1a1a1a;
    --neutral-900: #000000;
}

.eci-ban-section *,
.eci-ban-section *::before,
.eci-ban-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.eci-ban-section {
    font-family: 'Urbanist', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    width: 100%;
    background: transparent;
    position: relative;
}

.eci-ban-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 1912 / 591;
    overflow: hidden;
    background: var(--neutral-900);
    border-radius: 0;
}

.eci-ban-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}

.eci-ban-slide.eci-ban-active {
    opacity: 1;
    pointer-events: all;
    z-index: 1;
}

.eci-ban-slide img,
.eci-ban-slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.eci-ban-slide video {
    background: #000;
}

.eci-ban-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0;
    background: rgba(255, 255, 255, .95);
    border: 2px solid var(--neutral-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-800);
    cursor: pointer;
    transition: all .2s ease;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.eci-ban-arrow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--brand-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
    z-index: 0;
}

.eci-ban-arrow:hover::before {
    transform: scaleX(1);
}

.eci-ban-arrow:hover {
    border-color: var(--brand-500);
    color: #fff;
}

.eci-ban-arrow:active {
    transform: translateY(-50%) scale(.95);
}

.eci-ban-arrow svg {
    position: relative;
    z-index: 1;
}

.eci-ban-arrow-left {
    left: 1.25rem;
    transform: translateY(-50%);
}

.eci-ban-arrow-right {
    right: 1.25rem;
    transform: translateY(-50%);
}

.eci-ban-arrow-right::before {
    transform-origin: right;
}

.eci-ban-viewport:hover .eci-ban-arrow {
    opacity: 1;
    pointer-events: all;
}

.eci-ban-arrow:focus-visible {
    outline: 2px solid var(--brand-500) !important;
    outline-offset: 2px !important;
}

@media (max-width: 767px) {
    .eci-ban-viewport {
        aspect-ratio: 16 / 9;
    }

    .eci-ban-arrow {
        width: 2.25rem;
        height: 2.25rem;
    }

    .eci-ban-arrow-left {
        left: .75rem;
    }

    .eci-ban-arrow-right {
        right: .75rem;
    }
}