/***Style****/

.nextSection {
    position: relative;
    z-index: 999999999;
}

body {
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
}

.clipped-video {
    width: 100%;
    height: 100%;
}

.hbancontainer {
    position: relative;
    overflow: hidden;
    height: 105vh;
}

.video-bg-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* or any height */
    overflow: hidden;
}

.video-bg-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.BannerSVGSec {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

#onNav {
    position: fixed;
    top: 125px;
    top: 0;
    margin: 46px 0 0;
    z-index: 1;
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#onNav.onsticky {
    opacity: 1;
    z-index: 99999999999;
}