/*** Homepage Banner - .banner-1 ***/

.banner-1 .main_background_container {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    overflow: hidden;
}

.banner-1 .main_background_container.fade_out_transparent_main_background {
    background-image: none !important;
    background-color: transparent !important;
}
@keyframes textFadeOutBanner {
    from {opacity: 1;}
    to {opacity: 0;}
}
@media(max-width: 767.98px) {
    .banner-1 .main_background_container.fade_out_transparent_main_background::before {
        opacity: 0;
    }
    .banner-1 .main_background_container.fade_out_transparent_main_background h1 {
        opacity: 1;
        animation-name: textFadeOutBanner;
        animation-fill-mode: forwards;
        animation-delay: 1s;
        animation-duration: 1s;
    }
    .banner-1 .main_background_container.fade_out_transparent_main_background .small_heading {
        opacity: 1;
        animation-name: textFadeOutBanner;
        animation-fill-mode: forwards;
        animation-delay: 0.5s;
        animation-duration: 1s;
    }
}

.banner-1 .banner_1_buttons button.button.tertiary,
.banner-1 .banner_1_buttons button.button.tertiary:hover {
    padding-right: 25px;
}
.banner-1 .banner_1_buttons button.button.tertiary::before {
    display: none;
}
.banner-1 .banner_1_buttons button.button.tertiary::after {
    background-image: url('assets/arrow-circle.svg');
    background-size: contain;
    height: 40px;
    width: 40px;
    right: unset;
    margin-left: 12px;
}
@media(max-width: 1599.98px) {
    .banner-1 .banner_1_buttons button.button.tertiary::after {
        height: 34px;
        width: 34px;
    }
}



.banner-1 .banner_1_buttons button.button.play_mobile_background_video {
    display: none;
}
.banner-1 .banner_1_buttons button.button.play_desktop_popup_video {
    display: block;
}
@media(max-width: 767.98px) {
    .banner-1 .banner_1_buttons button.button.play_mobile_background_video {
        display: block;
    }
    .banner-1 .banner_1_buttons button.button.play_desktop_popup_video {
        display: none;
    }
}







.banner-1 .banner_1_buttons.royal-blue_background {
    background-color: transparent;
}

.banner-1 .banner_1_buttons button.button {
    margin: 0 auto;
}
.banner-1 .banner_1_buttons button.button::after,
.banner-1 .banner_1_buttons button.button:hover::after {
    /*background-image: url('assets/play.svg');*/
    /*height: 15px;*/
    /*width: 20px;*/
    /*opacity: 0.8;*/
}
.banner-1 .banner_1_buttons button.button:hover {
    opacity: 0.8;
    border-color: transparent;
}



.banner-1 .banner_1_buttons button.button.fade_out_button {
    opacity: 0!important;
    transition: ease all .5s!important;
}


.banner-1 .main_background_container::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    opacity: 60%;
    background-color: #0D182C;
}

.banner-1 .main_background_container::after {
    content: '';
    position: absolute;
    height: 40%;
    width: 100%;
    display: block;
    bottom: 0;
    left: 0;
    opacity: 85%;
    background: rgb(82,115,143);
    background: -moz-linear-gradient(0deg, rgba(82,115,143,1) 0%, rgba(97,135,168,0.13497899159663862) 70%, rgba(103,143,178,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(82,115,143,1) 0%, rgba(97,135,168,0.13497899159663862) 70%, rgba(103,143,178,0) 100%);
    background: linear-gradient(0deg, rgba(82,115,143,1) 0%, rgba(97,135,168,0.13497899159663862) 70%, rgba(103,143,178,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#52738f",endColorstr="#678fb2",GradientType=1);
}


.banner-1 .content_wrapper {
    height: 100%;
    width: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 60px;
    z-index: 3;
}

.banner-1 .content_wrapper .small_heading {
    color: #ffffff;
}

.banner-1 h1 {
    color: white;
}

.banner-1 .content_wrapper .banner_1_buttons {
    margin-top: 45px;
}

.banner-1 .content_wrapper .logo_container_flex {
    flex: unset;
}

.banner-1 .content_wrapper .featured_logos {
    margin-top: 190px;
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.banner-1 .content_wrapper .featured_logos .logo_column {
    width: calc(25% - 30px);
}


.banner-1 h1,
.banner-1 .small_heading,
.banner-1 div.banner_1_buttons a.button,
.banner-1 .logo_column,
.banner-1 .banner_1_buttons button.button.play_desktop_popup_video,
.banner-1 .banner_1_buttons button.button.play_mobile_background_video{
    opacity: 0;
    animation-name: textFadeIn;
    animation-fill-mode: forwards;
}


/** In order of appearance ***/
.banner-1 h1 {
    animation-duration: 1s;
    animation-delay: 1s;
}
.banner-1 .small_heading {
    animation-duration: 1s;
    animation-delay: 1.25s;
}
.banner-1 .banner_1_buttons button.button.play_desktop_popup_video {
    animation-duration: 1s;
    animation-delay: 1.5s;
}
.banner-1 .banner_1_buttons button.button.play_mobile_background_video {
    animation-duration: 1s;
    animation-delay: 1.5s;
}
.banner-1 div.banner_1_buttons a.button:nth-of-type(1) {
    animation-duration: 1s;
    animation-delay: 2s;
}
.banner-1 div.banner_1_buttons a.button:nth-of-type(2) {
    animation-duration: 1s;
    animation-delay: 2.3s;
}

.banner-1 .logo_column:nth-of-type(1) {
    animation-duration: 1s;
    animation-delay: 2s;
}
.banner-1 .logo_column:nth-of-type(2) {
    animation-duration: 1s;
    animation-delay: 2.2s;
}
.banner-1 .logo_column:nth-of-type(3) {
    animation-duration: 1s;
    animation-delay: 2.4s;
}
.banner-1 .logo_column:nth-of-type(4) {
    animation-duration: 1s;
    animation-delay: 2.6s;
}


@keyframes textFadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}


/*** Video Positioning ***/
.banner-1_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;
}


.banner-1_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-1_video_background > video {
        max-height: 100%;
    }
}

@keyframes videoFadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@media(max-width: 1599.98px) {
    .banner-1 h3.small_heading {
        font-size: 30px;
    }
}


@media(max-width: 1199.98px) {
    .banner-1 .main_background_container {
        max-height: 1100px;
    }
    .banner-1 .content_wrapper {
        padding-top: 0px;
    }
}


@media(max-width: 991.98px) {
    .banner-1 .main_background_container {
        max-height: 800px;
    }
}

@media(max-width: 767.98px) {
    .banner-1 .content_wrapper .banner_1_buttons a.button.primary,
    .banner-1 .content_wrapper .banner_1_buttons a.button.secondary {
        width: 100%;
    }
}


@media(max-width: 575px) {
    .banner-1 .content_wrapper .featured_logos .logo_column {
        width: calc(50% - 30px);
    }

    .banner-1 .content_wrapper .featured_logos {
        margin-top: 15px;
    }

    .banner-1 .content_wrapper .banner_1_buttons {
        margin-top: 40px;
    }
}


.banner-1 .down-arrow {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 20px;
    height: 30px;
    background-image: url('assets/down-arrow.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
@media(max-width: 767.98px) {
    .banner-1 .down-arrow {
        bottom: 120px;
    }
}

@media(min-width: 1200px) and (max-height: 650px) {
    .banner-1 .down-arrow {
        display: none;
    }
}