.banners {
    width: 100%;
    height: calc(100vh - 147px);
    background: #EEE;
    position: relative;
    overflow: hidden;
}

.slick-list, .slick-track{
    width: 100%;
    height: calc(100vh - 179px);
}

.banner{
    width: 100%;
    height: calc(100vh - 179px) !important;
    max-height: calc(100vh - 179px) !important;
    position: relative;
    text-align: center;
}

.banner__image{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
}

.banner__image img{
    width: 100%;
    height: auto;
    margin: 0;
    object-fit: cover;
    object-position: center;
}

.banner__content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 179px) !important;
    z-index: 1000;
    background: rgba(10,10,10,0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    overflow: hidden;
}

.banner__content-inner{
    max-width: 1920px;
    color: #fff;
    opacity: 0;
    transform: translateX(-40px);
    padding: 0 20px;
}

.animate-in {
    animation: slideIn 1.5s forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-out {
    animation: slideOut 0.5s forwards;
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-40px);
    }
}

.banner__headline{
    color: #fff;
    margin-bottom: 25px;
    font-size: 6.5em;
    line-height: 0.8em;
}

.banner__subtitle{
    font-size: 1.75em;
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.3em;
}

.banner__button{
    background: #ba0a2f;
    color: #fff;
    letter-spacing: 3px;
    font-weight: 500;
    font-size: 1.6em;
    padding: 10px 25px;
    font-family: Eng Schrift !important;
    text-transform: uppercase;
    margin-top: 20px;
    display: inline-block;
}

.banner__button:hover{
    background: #ba0a2f;
    color: #fff !important;
}

.slick-dots{
    display: none;
}

.banner__arrow{
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 9999;
    display: flex;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    opacity: 0;
    transition: all 0.5s ease;
}


.banners:hover .banner__arrow{
    opacity: 0.66;
}


.banner__arrow:hover, .banners:hover .banner__arrow:hover{
    opacity: 1 !important;
}

.banner__arrow button{
    color: #FFF;
    background-color: transparent;
    border: 0;
    padding: 40px;
    font-size: 4em;
    font-weight: 400;
    font-family: 'Eng Schrift';
}

.banner__arrow--prev{
    left: 0;
    background-image: url('../assets/img/arrow-prev.svg');
}

.banner__arrow--next{
    right: 0;
    background-image: url('../assets/img/arrow-next.svg');
}

