.banner-section {
    background: url(../images/home_background.jpg?v=3232349) no-repeat 50% 50%/cover;
}
.bg-dark {
    background-color: #000000 !important;
}

.video-section {
    background: url(../images/background-banner-01.jpg?v=32329) no-repeat 50% 50%/cover;
}

.video-wrapper,
.banner-wrapper {
    background-color: rgba(0, 0, 0, 0.7);
}

.featured-section {
    background: url(../images/background-banner-02.jpg?v=32329) no-repeat 50% 50%/cover;
}

.featured-wrapper {
    background-color: rgba(0, 0, 0, 0.7);
}

.splash {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* ensure it's above other content */
}
.splash.active{
    display: flex;
}

.splash .spinner-container {
    position: relative;
}

.splash .splash-icon {
    border: 5px dotted #50a5f1;
    border-radius: 50%;
    border-top-color: rgba(255, 255, 255, 0.25);
    box-sizing: border-box;
    display: block;
    height: 40px;
    width: 40px;
    animation: splash-spinner 1.2s linear infinite;
}

.splash .loading-text {
    color: #50a5f1;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}

@keyframes splash-spinner {
    0% {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}