.bg-overlay-new {
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    padding-left: 4%;
    padding-right: 0;
}

@media (max-width: 1650px) {
    .bg-overlay-new {
        padding-left: 8%;
    }
}

@media (max-width: 1300px) {
    .bg-overlay-new {
        padding-left: 5%;
    }
}

.bg-overlay-blue {
    width: 100%;
    height: 100vh;
    background-color: rgba(0,75,135,0.85);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
}

.hero-img {
    height: 100vh;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 992px) {
    .hero-img {
        background-attachment: initial;
    }
}

.hero-img-1 {
    animation-delay: 0s;
}

.hero-img-2 {
    animation-delay: -1s;
}

.hero-img-3 {
    animation-delay: -5s;
}

.hero-img-4 {
    animation-delay: -10s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    33% {
        opacity: 1;
    }
    53% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

@keyframes fade-first-image {
    0% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    33% {
        opacity: 1;
    }
    53% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.hero-img-fade {
    -webkit-animation-name: fade;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 21s;
    animation-name: fade;
    animation-iteration-count: infinite;
    animation-duration: 21s;
}

.hero-img-fade-first-image {
    -webkit-animation-name: fade-first-image;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 21s;
    animation-name: fade-first-image;
    animation-iteration-count: infinite;
    animation-duration: 21s;
}

.container-new {
    width: 100%;
    height: 100vh;
    float: left;
    background-color: #ccc;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
}

.mobile-warning-panel {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1000;
}

@media (max-width: 992px) {
    .mobile-warning-panel {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }
}

.text-mobile-alert {
    display: none;
}

@media (max-width: 992px) {
    .text-mobile-alert {
        display: block;
    }
}

.hide-at-992 {
    display: block;
}

@media (max-width: 992px) {
    .hide-at-992 {
        display: none;
    }
}

