
.banner-15 p.h5style {
    opacity: 0.7;
}
.banner-15 .image-16by9 {
    height: calc(100vh - var(--navbar-height));
    min-height: 800px;
    padding-bottom: 0;
}
@media(max-width: 1399.98px) {
    .banner-15 .image-16by9 {
        min-height: 600px;
    }
}
@media(max-width: 1199.98px) {
    .banner-15 .image-16by9 { /* relative position nav height change of banner */
        height: calc(100vh - 68px);
    }
}


.banner-15 .container-fluid.banner-15-content {
    position: absolute;
    top: 0px;
    z-index: 2;
    height: 100%;
    background-color: transparent;
}
.banner-15 .container.framed_mobile.framed_desktop,
.banner-15 .container.framed_mobile.framed_desktop .row {
    height: 100%;
}
.banner-15 .content-bottom {
    position: absolute;
    bottom: 60px;
}
.banner-15 .banner_15_button a:last-of-type {
    margin: 0px;
}
.banner-15 .container-fluid:first-of-type:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    bottom: 0;
    left: 0;
    opacity: 1;
    background: rgba(0,0,0,0.2);
}

.banner-15 .banner_buttons {
    margin-top: 60px;
}

@media(max-width: 1366.98px){
    .banner-15 .content-bottom,
    .banner-15 .desktop_button {
        bottom: 45px;
    }
}
@media(max-width: 991.98px){
    .banner-15 .content-bottom,
    .banner-15 .desktop_button {
        bottom: 40px;
    }
}
@media(max-width: 767.98px){
    .banner-15 .content-bottom,
    .banner-15 .desktop_button {
        bottom: 30px;
    }
}
@media(max-width: 575.98px){
    .banner-15 .content-bottom {
        position: relative;
        bottom: unset;
        padding-top: 15px;
        margin-bottom: 30px;
    }
    .banner-15 .main_row {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}




/*** Video Positioning ***/
.banner-15_video_background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;

    z-index: 2;
}


.banner-15_video_background > video {
    min-width: 100%;
    min-height: 100%;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    animation-name: videoFadeIn;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@media(orientation: portrait) {
    .banner-15_video_background > video {
        max-height: 100%;
    }
}

@keyframes videoFadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
