@keyframes bannerLetterSlideIn {
    from {
        transform: translateX(10px) translateY(-50%);
        opacity: 0;
    }
    to {
        transform: translateX(0) translateY(-50%);
        opacity: 1;
    }
}

.banner-container {
    position: absolute;
    top: 0;
    left: 0;    
    width: 100%;    
    max-width: 2560px;
    min-width: 1360px;
    height: 100%;    
    max-height: 600px;    
    background: #EEE;
}
@media(min-width: 1921px) {
    .banner-container {
        left: 50%;
        transform: translateX(-50%);
    }
}

.banner-items {    
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-link {
    position: absolute;
    top: 0;
    left: 0;    
    display: block;
    width: 100%;
    height: 100%;  
    max-width: 2560px;  
    min-width: 1360px;       
    margin: 0 auto;    
    background-position: 50% 0;
    background-repeat: no-repeat;
    transition: opacity 0.5s ease-in-out, z-index 0s 0.5s;
}
.banner-link.active {
    opacity: 1;
    z-index: 2;
}
.banner-items .banner-link:not(.active) * { visibility: hidden; }

.banner-content {
    position: relative;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    height: 100%;
}

.banner-content img {
    position: absolute;
}

.banner-link .option-slide {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.banner-link.active .option-slide {
    animation: bannerLetterSlideIn 0.3s ease-out forwards
}

.banner-controller-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1360px;    
    padding: 1rem;
    z-index: 3;    
}

.banner-controller {
    position: absolute;
    bottom: 0;
    left: 0;   
    height: 70px;
    padding: 1rem;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center; 
    gap: 20px;   
}

.banner-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.banner-button {    
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #787981;
    border: 1px solid #787981;
    transition: background 0.2s ease color 0.1s ease;
}

.banner-button:hover {
    background: #787981;
    color: var(--color-white);
}

.banner-button svg {
    width: 30px;
    height: 30px;
}

.banner-status {
    color: #787981;
}

.banner-status .current {
    color: var(--color-white);
}

.banner-indicators {
    display: flex;
    align-items: center;
    gap: 15px;
}

.banner-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;    
    background: #787981;
    transition: background 0.2s ease;
    cursor: pointer;
}
.banner-indicator:not(.active):hover {
    background: var(--color-white);
}

.banner-indicator.active {
    width: 40px;
    height: 15px;
    border-radius: 10px;
    background: #EEE;    
}