:root {
    --slider-arrow-vertical-position: 0px;
}

.banner-container {
    position: relative;
}

.banner-image {
}

.banner-image-inner {
    width: 100%;
    object-fit: cover;
}

.banner-gradiant-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(95.58deg, rgba(64, 124, 202, 0.7) 0.55%, rgba(122, 37, 130, 0.7) 99.31%), rgba(18, 18, 18, 0.54);
    z-index: 15;
}

.banner-gradiant-overlay-clear-img {
    position: absolute;
    right: 50%;
    background: linear-gradient(90deg, rgba(122, 37, 130, 0.50) 0%, rgba(0, 51, 141, 0.50) 50%, rgba(0, 51, 141, 0.03) 100%);
}

.title-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 1080px;
    z-index: 18;

    h1 {
        color: #FFF;
        text-align: center;

        /* Header/H1 */
        font-size: 80px;
        font-style: normal;
        font-weight: 500;
        line-height: 100px; /* 125% */
    }

    h5 {
        color: white;
        font-size: 24px;
        font-weight: 500;
        line-height: 30px;
    }

    .cta-button {
        margin-top: 50px;
        padding: 16px 34px;
        color: #FFC800;
        border: 1px solid #FFC800;
        border-radius: 4px;
        gap: 12px;
        transition: all ease-in-out;
        transition-duration: 300ms;
        font-size: 20px;
        font-weight: 500;


        text-align: center;

        /* btn-lg */
        font-style: normal;
        line-height: 28px; /* 140% */

        &:hover {
            text-decoration: none;
            background-color: #FFC800;
            color: #000000;
        }

        svg {
            margin-left: 12px;
        }
    }
}

.title-container-text-aside {
    max-width: 500px;
    padding-bottom: 50px;

    h1 {
        color: #FFF;
        text-align: left;


        font-size: 36px;
        font-style: normal;
        font-weight: 500;
        line-height: 38px; /* 105.556% */
    }

    h5 {
        color: #FFF;

        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        margin-top: 18px;
    }

    .cta-button {
        margin-top: 14px;
        color: #FFC800;
        border-radius: 4px;
        gap: 6px;
        transition: all ease-in-out;
        transition-duration: 300ms;
        font-size: 20px;
        font-weight: 500;
        display: flex;
        align-items: center;
        text-transform: capitalize;


        text-align: center;

        /* btn-lg */
        font-style: normal;
        line-height: 28px; /* 140% */

        &:hover {
            text-decoration: none;
            color: #ffe500;
        }

        svg {
            height: 20px;
            width: 20px;
        }
    }
}

.text-aside-container {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 18;
}

.slider-control-container {
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 17;

    .container {
        height: 100%;
        position: relative;
        pointer-events: none;
    }

    [data-hero-banner-dots-container="1"] {
        pointer-events: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 6px;
    }

    [data-hero-banner-arrow-container="1"] {
        pointer-events: auto;
        position: absolute;
        left: var(--slider-arrow-vertical-position);
        right: var(--slider-arrow-vertical-position);
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-item .fade-in-up-animation {
    opacity: 0;
}

.slick-active .fade-in-up-animation {
    animation-name: fade-in-up;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-delay: 300ms;
    animation-fill-mode: forwards;
}