.hero-banner {
    position: relative;
    color: var(--primary-white);
}

.hero-banner .bgImage {
    z-index: 2;
}

.hero-banner .bgImage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    /*background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 52.60%, rgba(0, 0, 0, 0.00) 100%);*/
	background: linear-gradient(180deg,rgba(0,0,0,0.00) 34%,#000 56%,#000 25%,rgba(0,0,0,0.00) 75%);

}

.hero-banner .video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner .wrapper {
    position: relative;
    min-height: calc(100vh - 250px);
    padding: 120px 0;
    margin: -12px 0;
}

.hero-banner .wrapper .item {
    padding: 12px 0;
}

.hero-banner .buttons {
    display: inline-block;
    width: 100%;
    margin: -12px;
}

.hero-banner .buttons .btn {
    margin: 12px;
}

.hero-banner .bgColor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: linear-gradient(0deg, rgba(21, 21, 21, 0.10) 0%, rgba(21, 21, 21, 0.10) 100%), linear-gradient(90deg, rgba(31, 53, 105, 0.65) 0%, rgba(31, 53, 105, 0.00) 100%);
}

.hero-banner .container-fluid {
    z-index: 4;
}

.hero-banner .scroll-btn {
    text-align: center;
}

.hero-banner .scroll-btn .icon-wrap {
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.hero-banner .scroll-btn .icon-wrap .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 30px;
}

.hero-banner .scroll-btn .label {
    position: relative;
    padding-top: 8px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Monda';
}

/* Animation style begin */
.hero-banner .transform-layer {
    opacity: 0;
    transform: translate3d(0, 150%, 0);
    transition: opacity 1.8s cubic-bezier(.6, 0, .3, 1), transform 1.5s cubic-bezier(.6, 0, .3, 1);
}

.hero-banner .entered .transform-layer {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.hero-banner .exited .transform-layer {
    opacity: 0;
    transform: translate3d(0, -150%, 0);
}

.hero-banner .transform-layer > * {
    transition: transform .8s cubic-bezier(.6, 0, .3, 1);
}

.hero-banner .entered .transform-layer .text,
.hero-banner .entered .transform-layer .buttons {
    transform: translate3d(0, 0, 0);
    transition-delay: 0.4s;
}

.hero-banner .exited .transform-layer .text,
.hero-banner .transform-layer .text {
    transform: translate3d(0, 60px, 0);
}

.hero-banner .exited .transform-layer .buttons,
.hero-banner .transform-layer .buttons {
    transform: translate3d(0, 120px, 0);
}

/* Animation style end */

@media (max-width: 1200px) {
    .hero-banner .scroll-btn .icon-wrap {
        width: 60px;
        height: 60px;
    }

    .hero-banner .scroll-btn .icon-wrap .icon {
        font-size: 30px;
    }
}

@media (max-width: 1024px) {
    .hero-banner .scroll-btn .icon-wrap {
        width: 50px;
        height: 50px;
    }

    .hero-banner .scroll-btn .icon-wrap .icon {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .hero-banner .scroll-btn {
        position: absolute;
        top: 90%;
        left: 50%;
        transform: translate(-50%, -90%);
    }
}

@media (max-width: 768px) {
    .hero-banner .scroll-btn .icon-wrap {
        width: 35px;
        height: 35px;
    }

    .hero-banner .wrapper {
        padding: 0;
        min-height: 60vh;
    }

    .hero-banner .scroll-btn {
        position: relative;
        display: inline-block;
        width: 100%;
    }
}