
/* fonts */
/* IBM Plex Sans */
@import url('../../css-1');

body, html{
    position: relative;
    width: 100%;
    font-family: 'IBM Plex Sans', sans-serif;  
}
.html--main, .body--main{
    overflow: hidden;
}

.html--main, .html--inner, .body--main, .body--inner{
    height:100%;
}

/* Text */
.text--color_cat_1 {
    color: #1C7CA7;
}
.text--color_cat_2 {
    color: #1063FF;
}
.text--color_cat_3 {
    color: #5C38BE;
}
.text--color_cat_4 {
    color: #878D96;
}

@media screen and (max-width: 1000px){
    .html--main, .body--main{
        overflow:auto;
    }
    .body--inner,.html--inner{
        height: auto;
        overflow: auto;
    }
}
.page {
    background-color: #0b172f  ;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    position: relative;
}
.page--light {
    background-color: #EBEBED;
}
.page--scroll{
    height: auto;
    min-height:100%;
}

@media screen and (max-width:1000px){
    .page{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        
    }
    .page--main{
        height: auto;
        min-height: 100%;
    }
}


.lock{
    height:100vh;
    overflow:hidden;
}

@media screen and (max-width:1000px){
    
    .lock{
        height:auto;
        overflow:auto;
    }
    .lock .content{
        display:none;
    }
    
    .lock .info__group{
        display:none;
    } 
    .page.lock .modal--inner{
        position: static;
    }
    .page.lock .modal__container{
        transform: translate(0,0);
        position: static;
        min-height:100vh;
        max-height: initial;
    }

}


/* --------------------------close -----------------------------------*/

.close {
    position:fixed;
        top:0;
        right:0;
        z-index:20;
   cursor:pointer;
    padding: 13px;
    display: inline-block;
    border-width: 3px;
    border-style: solid;
    -webkit-transition: border 500ms ease-out;
    -o-transition: border 500ms ease-out;
    transition: border 500ms ease-out;
    z-index:2;
}
.close:hover{
    border-color: white;
}
.close--color_cat_1 {
    background-color: #1C7CA7;
}

.close--color_cat_2 {
    background-color: #1063FF;
}

.close--color_cat_3 {
    background-color: #5C38BE;
}

.close--color_cat_4 {
    background-color: #878D96;
}

.close__img{
    width: 34px;
    display:block;
}
@media screen and (max-width: 1300px){
    .close{
        padding: 10px;
    }
    .close__img{
        width: 24px;
    }
}
@media screen and (max-width: 1000px){
    .close{
        position: absolute;
    }
}
/* --------------------------content -----------------------------------*/
.content {
    padding-top: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    height: 100%;
    
}
.content--bottom{
    padding-top: 0;
    height: 10vh;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#E0E0E0)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(top, #FFFFFF 0%, #E0E0E0 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #FFFFFF 0%, #E0E0E0 100%) 0% 0% no-repeat padding-box;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#FFFFFFef), to(#E0E0E0ef)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(top, #FFFFFFef 0%, #E0E0E0ef 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #FFFFFFef 0%, #E0E0E0ef 100%) 0% 0% no-repeat padding-box;
    position: fixed;
    bottom: 0;
    width:80vw;
    border-top: 5px solid #CAC5C4;
    z-index:2;
}

.content__logo > img{
    max-width:100px;
    width: 100%;
}
.content__left {
    width: 65%;
    padding: 0 74px;
}
.content__left--scroll{
    overflow-y: auto;

}
.content__left--border{
    border-bottom: 5px solid #CAC5C4;

}
.content__left--wide{
    padding-right: 0;
}
.content__full{
    width: 100%;
    padding: 0 74px;
    margin-bottom: 10vh;
}
.content__full--paddRight{
    padding-right: 28%;
}
/* .content__full--scroll{
    overflow-y: auto;

} */

.content__right{
    padding-left: 30px;
    width:35%;
    text-align:right;
    overflow: hidden;
}

.content__backPattern{
    background-image:url(../images/background-pattern-teal.png);
    background-position: bottom right;
    background-size: cover;
}

.content__title{
    margin-top:20px;
    font-size: 36px;
    position: relative;
    overflow: visible;
    position: relative;
    padding-left: 80px;
}
.content__title::before{
    
    content:"";
    position: absolute;
    background-size: contain;
    width: 50px;
    height: 50px;
    display:inline-block;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.content__title--cat_1::before{
    background-image: url("../images/icons/Cat1-Story-Icon.svg");
}
.content__title--cat_2::before{
    background-image: url("../images/icons/Cat2-Story-Icon.svg");
}
.content__title--cat_3::before{
    background-image: url("../images/icons/Cat3-Story-Icon.svg");
}
.content__title--cat_4::before{
    background-image: url("../images/icons/Cat4-Story-Icon.svg");
}

.content__subtitle{
    font-size:28px;
    line-height:40px;
    font-weight:normal;
}
.content__summary{
    font-size:18px;
    line-height:24px;
    font-weight:500;
}
.content__summary--color_cat_1 {
    color: #1C7CA7;
}
.content__summary--color_cat_2 {
    color: #1063FF;
}
.content__summary--color_cat_3 {
    color: #5C38BE;
}
.content__summary--color_cat_4 {
    color: #878D96;
}

.content__header {
    font-size: 22px;
    margin: 30px 0 0 0;
}

.content__header--color_cat_1 {
    color: #1C7CA7;
}

.content__header--color_cat_2 {
    color: #1063FF;
}

.content__header--color_cat_3 {
    color: #5C38BE;
}

.content__header--color_cat_4 {
    color: #878D96;
}

.content__text{
    font-size:16px;
    line-height:24px;
    margin-top:16px;
    margin-bottom:0;
}

.content__subheader{
    font-size:18px;
    line-height:24px;
    font-weight:700;
    margin: 20px 0 10px 0;
}

.content__quote{
    font-size: 18px;
    line-height: 20px;
}
.content__quote--color_cat_1, .content__subheader--color_cat_1 {
    color: #1C7CA7;
}

.content__quote--color_cat_2, .content__subheader--color_cat_2 {
    color: #1063FF;
}

.content__quote--color_cat_3, .content__subheader--color_cat_3 {
    color: #5C38BE;
}

.content__quote--color_cat_4, .content__subheader--color_cat_4 {
    color: #878D96;
}

.content__brand{
    margin-left: auto;
    max-width: 200px;
    margin-right: 70px;
}
.content__img{
    width:100%;
    display:block;
}
.content__img{
    max-width: 600px;
}
.content__img--left{
    float: left;
    max-width: 450px;
    padding-right: 30px;
}
.content__img--right{
    float: right;
    max-width: 450px;
    padding-left: 30px;
}
.content__img--left:after, .content__img--right:after{
    content: "";
    clear: both;
    display: table;
}

.content__link {
    color: #1C7CA7;
}
.content__link:hover, .content__link:visited {
    color: #1C7CA7;
}

.content__link--color_cat_2{
    color: #1063FF;
}
.content__link--color_cat_2:hover, .content__link--color_cat_2:visited {
    color: rgb(0, 71, 204);
}
.content__citation{
    font-size: 12px;
    font-weight: 300;
    font-style:italic;
    margin:0;
}

.content__graphic{
    margin: 25px auto;
    max-width: 700px;

}
@media screen and (max-width: 1550px){
    .content{
        padding-top: 65px;
    }
    .content--bottom{
        padding-top: 0;
    }
    .content__left--wide{
        padding-left: 0;
        padding-right: 0;
    }
    .content__brand{
        margin-right: auto;
        max-width: 200px;
        margin-left: 20px;
    }

    .content__right{
        text-align: left;
    }
}
@media screen and (max-width:1300px) {
    .content{
        padding-top: 0px;
    }
    .content--bottom{
        padding-top: 0;
    }
    .content__left {
        width: 80%;
        padding: 24px;
    }
    .content__full{
        padding: 24px;
    }
    .content__left--wide{
        padding-left: 0;
        padding-right: 0;
    }
    .content__right{
        padding-left: 0;
    }
    .content__title {
        font-size: 25px;
    }

    .content__subtitle {
        font-size: 20px;
        line-height: 30px;
    }
    .content__summary{
        font-size:14px;
    }
    .content__text{
        margin-top: 5px;
    }
     
}
@media screen and (max-width: 1000px){
    .content{
        -ms-flex-wrap:wrap;
            flex-wrap:wrap;
        height:auto;
        padding-top: 0;
        padding-bottom: 0;
    }
    .content--bottom{
        position:relative;
        border-top: none;
        background:transparent;
        width: 100%;
    }
    .content__left{
        width:100%;
        -webkit-box-ordinal-group:2;
            -ms-flex-order:1;
                order:1;
        padding-top: 0;
    }
    .content__right{
        width:100%;
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
        max-height: 150px;
        overflow: hidden;
        padding: 0;
    }
    .content__img{
        float:none;
        padding: 0;
        padding-top: 15px;
    } 
    .content__banner{
        display:block;
        /* transform: translateY(-50%); */
        width: 100%;
    }
    .content__brand{
        display:none;
    }
    .content__full{
        margin-bottom :0;
    }
}

@media screen and (max-width:700px){
    .content__title{
        padding-left: 0;
    }
    .content__title::before{
        background-image: none;
    }
}
/* --------------------------navigation -----------------------------------*/

.nav {
    /* position:absolute; */
    background-color: rgb(31, 31, 31);
    background-image: url('../images/Main-Menu-Bg.png');
    background-position: center;
    background-size: cover;
    width: 20vw;
    overflow-y: auto;
    position: fixed;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background-color: #101826;
    z-index: 20;
    height:100%;
}
.nav__collapse{
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -ms-flex-preferred-size: 30px;
        flex-basis: 30px;
}
.nav__gradient{
    height: 13px;
    width: 100%;
    background: transparent -webkit-gradient(linear, left top, right top, from(#5C38BE), to(#1063FC)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(left, #5C38BE 0%, #1063FC 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(90deg, #5C38BE 0%, #1063FC 100%) 0% 0% no-repeat padding-box;
    position:absolute;
    top:0;
    left:0;
}
.nav__logo{
    width:30%;
}
.nav__logo >img{
    min-width: 60px;
    width: 100%;
    max-width:100%;
}
.nav__logo,.nav__brand{
    padding-top: 15px;
}
.nav__brand >img {
    max-width: 100%;
}
.nav__container{
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
    padding: .8vw 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -ms-flex-wrap:nowrap;
        flex-wrap:nowrap;
    height: 100%;
}


.nav__intro{
    color: #F7F3F2;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    -ms-flex-negative:0;
        flex-shrink:0;
}

.nav__greeting{
    font-weight: 500;
    font-size: 25px;
}
.nav__group{
    -ms-flex-negative:0;
        flex-shrink:0;
    margin-top: auto;
}
.nav__btn{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-line-pack:center;
        align-content:center;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    margin-bottom: 10px;
    width: 180px;
    text-align: left;
    padding: 12px 15px;
    color: white;
    opacity: 1;
}

.nav__btn--shorter{
    padding: 6px 15px 5px 15px;

}
.nav__hamburger{
    display:none;
}

.nav__subnav{
    display:none;
}
.nav__subnav.active{
    display:block;
    margin-top: 15px;
}
.nav__subnav--main.active{
    display:none;
}
@media screen and (max-width:1300px){
    .nav__container{
        padding: .8vw 1.5vw;
    }
    .nav__intro{
        font-size: 13px;
    }
    .nav__btn{
        padding: 6px;
    }

    .nav__btnIcon {
        display: none;
    }
    
    .nav__collapse{
        -ms-flex-preferred-size: 10px;
            flex-basis: 10px;
    }
    .nav__gradient{
        height:6px;
    }
    .nav__greeting{
        font-size: 18px;
    }
}

@media screen and (max-width: 1000px){
    .nav{
        position:static;
        width:100%;
        height:auto;
        -ms-flex-negative:0;
            flex-shrink:0;
        text-align:center;
        overflow-Y: visible;
        background-image: none;
        background-color: #101826;
    }
    .nav--main{
        background: transparent -webkit-gradient(linear, left top, left bottom, from(#101826FF), to(#10182600)) 0% 0% no-repeat padding-box;
        background: transparent -o-linear-gradient(top, #101826FF 0%, #10182600 100%) 0% 0% no-repeat padding-box;
        background: transparent linear-gradient(180deg, #101826FF 0%, #10182600 100%) 0% 0% no-repeat padding-box;
    }
    .nav__gradient{
        top:auto;
        bottom: 0;
    }
    .nav__container{
        padding: 0;
        -webkit-box-orient:horizontal;
        -webkit-box-direction:normal;
            -ms-flex-flow:row;
                flex-flow:row;
        -ms-flex-wrap:wrap;
            flex-wrap:wrap;
        -webkit-box-pack:center;
            -ms-flex-pack:center;
                justify-content:center;
        padding-bottom: 10px;
    }
    .nav__group{
        -webkit-box-ordinal-group:-1;
            -ms-flex-order:-2;
                order:-2;
        margin-top: 0;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-orient:horizontal;
        -webkit-box-direction:normal;
            -ms-flex-flow:row;
                flex-flow:row;
        -ms-flex-wrap:nowrap;
            flex-wrap:nowrap;
        width:100%;
        -ms-flex-negative:0;
            flex-shrink:0;
    }
    .nav__btn{
        display:inline-block;
        width:25%;
        margin: 0;
        font-size:11px;
        text-align:center;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
    }
    
    .nav__logo >img{
        width:100%;
    }
    .nav__brand >img {
        width:100%;
    }

    .nav__logo{
        width: 10%;
        max-width: 70px;
        min-width: 50px;
    }
    .nav__brand{
        width: 60%;
        max-width:250px;
        margin-left: 10px;
        margin-right:auto;
    }
    .nav__logo,.nav__brand{
        padding-top: 15px;
        display:inline-block;
    }
    .nav__intro{
        padding: 0 10px;
        max-width:600px;
        width: 100%;
    }
    .nav__subnav{
        position:relative;
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
        margin-right:auto;
    }
    .nav__hamburger{
        padding-top: 10px;
        display:block;
        background-color: transparent;
    }
    .nav__subnav.active{
        display:block;
        margin-top:0;
    }
}

@media screen and (max-width: 350px){
    .nav__brand{
        width: 50%;
    }
}
/* ---------------------------------------subnav --------------------------------*/
.subnav {
    border-top: 14px solid white;
    margin: 0 -3vw;
    padding: 0 1.6vw;
    color: white;
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 26px;
}

.subnav--color_cat_1{
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#1C7CA7), to(#083280)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(top, #1C7CA7 0%, #083280 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #1C7CA7 0%, #083280 100%) 0% 0% no-repeat padding-box;
}
.subnav--color_cat_2{
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#1063FC), to(#1C7CA7)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(top, #1063FC 0%, #1C7CA7 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #1063FC 0%, #1C7CA7 100%) 0% 0% no-repeat padding-box;
}
.subnav--color_cat_3{
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#5C38BE), to(#1063FC)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(top, #5C38BE 0%, #1063FC 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #5C38BE 0%, #1063FC 100%) 0% 0% no-repeat padding-box;
}
.subnav--color_cat_4{
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#878D96), to(#878D96)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(top, #878D96 0%, #878D96 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #878D96 0%, #878D96 100%) 0% 0% no-repeat padding-box;
}

.subnav__header{
    font-size: 24px;
    line-height: 40px;
    text-transform:uppercase;
    margin: 26px 0;
}

.subnav__group {
    border-left: 3px solid white;
    padding-left: 28px;
}

.subnav__link {
    color: white;
    margin: 10px 0;
    display:block;
    text-decoration:none;
}
.subnav__link:hover, .subnav__link.active{
    text-decoration:underline;
}

.subnav__btn {
    width: 17px;
    height: 17px;
    background-color: #C6C6C6;
    cursor: pointer;
    margin-right: 9px;
    margin-top: 23px;
}
.subnav__btn:hover, .subnav__btn.active{
    background-color: white;
}
.subnav__page{
    display:none;
}
.subnav__page.active{
    display:block;
}
@media screen and (max-width: 1550px){
    .subnav{
        padding: 0 1vw 26px 1vw;
    }
    .subnav__header{
        font-size: 20px;
        line-height: 20px;
        margin: 1.2em 0;
    }
    .subnav__group{
        padding-left: 15px;
    }
}
@media screen and (max-width: 1300px){
    .subnav{
        margin: 0 -1.5vw;
    }
    .subnav__header{
        font-size: 18px;
    }
}
@media screen and (max-width: 1000px){
    .subnav{
        display:none;
        width: 200px;
        text-align:left;
        border-top: 0;
        position:absolute;
        top:100%;
        left:0;
        margin: 0;
        padding: 0 2vw 26px 2vw;
    }
    .subnav.active{
        display:none;
    }
    .subnav__btn{
        display:none;
    }
    .subnav__page{
        display:block !important;
    }
    .subnav__group{
        border-left: 0;
        padding-left: 0;
    }
    .subnav__header{
        font-size: 16px;
        line-height: 20px;
        font-weight: 500;
        margin-bottom: 15px;
    }
    .subnav__header:after{
        content:":"
    }
}
@media screen and (min-width: 1000px){
    .subnav.active{
        display:block !important;
    }
}
/* ---------------------------------------main area --------------------------------*/
.main {
    position: relative;
    /* height: 100%; */
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-left: 20vw;
    width: 100%;
}
/* delete main__corner surrounding things */
.main__corner{
    text-align:right;  
}
.main--story{
    background-image: url("../images/backgrounds/Story-Bg.png");
    background-size: cover;
    background-position:center;
}

.main--storyVid{
    background-image: url("../images/backgrounds/Story-Video-Bg.png");
    background-size: cover;
    background-position:center;
}

@media screen and (max-width: 1000px){
    .main{
        margin-left: 0;
        min-height: 400px;
    }
}
/* ---------------------------------------main border --------------------------------*/

.border {
    height: 13px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index:2;
}

.border--color_cat_1 {
    background-color: #1C7CA7;
}

.border--color_cat_2 {
    background-color: #1063FF;
}

.border--color_cat_3 {
    background-color: #5C38BE;
}

.border--color_cat_4 {
    background-color: #878D96;
}


@media screen and (max-width:1300px) {

    .border {
        height: 6px;
    }
}

@media screen and (max-width: 1000px) {

    .border {
        display:none;
    }
}

/* ---------------------------- background styling */
.bg{
    width: 0;
    height:0;
}
/* -------------------------video styling------------------------------- */
.bg__contain {
    position: absolute;
    top: 0;
    left: 10vw;
    width: 100%;
    height: 100%;
    display:none;
}
.bg__contain.active{
    display:block;
}
    .bg__video, .bg__image {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
    }
    .bg__image{
        max-width:none;
        display:none;
    }
    .bg__image.active{
        display:block;
    }

    
@media screen and (max-aspect-ratio: 2000/1080) {
    .bg__video, .bg__image {
        height: 100%;
    }
}

@media screen and (min-aspect-ratio: 2000/1080) {
    .bg__video, .bg__image {
        width: 100%;
    }
}

@media screen and (aspect-ratio: 2000/1080) {
    .bg__video, .bg__image {
        width: 100%;
    }
}

@media screen and (max-width:1000px){
    .bg__video{
        display:none;
    }
    .bg__contain{
        
        left: 0;
        overflow:hidden;
    }
    .bg__image {
        top: 60%;
        height: 75%;
        /* transform: translate(-60%, -15%);
        -webkit-transform: translate(-60%, -15%); */
    }
}

@media screen and (max-width:500px){
    .bg__image {
        top: 65%;
        height: 40%;
    }
    /* .bg__image {
        top: 45%;
        height: 80%;
        transform: translate(-60%, -15%);
        -webkit-transform: translate(-60%, -15%);
    } */
}

.bg__video{
    opacity: 0;
}

.bg__video.active{
    opacity:1;
}

/* -------------------------------------- arrows home page -------------------------- */
.arrow {
    display: inline-block;
    border: 1px solid white;
    padding: 15px 10px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
    background-color: transparent;
}

    .arrow > img {
        width: 20px;
        display: block;
    }

    .arrow:disabled{
        opacity:.2;
        cursor: default;
    }
.arrow--left {
    left: 45px;
}

.arrow--right {
    right: 45px;
}


.arrow--color_cat_1 {
    background-color: #1C7CA7;
}

.arrow--color_cat_2 {
    background-color: #1063FF;
}

.arrow--color_cat_3 {
    background-color: #5C38BE;
}

.arrow--color_cat_4 {
    background-color: #878D96;
}

@media screen and (max-width: 700px) {
    .arrow {
        top: 0;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }
}
/* --------------------------------- btn -------------------------------------- */
.btn {
    max-width: 100%;
    cursor: pointer;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: white;
    font-size: 14px;
    border-style: solid;
    text-decoration: none;
}

.btn:focus{
    outline-color: rgb(93, 177, 255); 
    border-radius: 0 !important;
}
    .btn > img {
        max-width: 100%;
    }

.btn--main {
    border-width: 3px;
    border-color: transparent;
    -webkit-transition: border 1s;
    -o-transition: border 1s;
    transition: border 1s;
}

.btn--secondary {
    margin: 5px 0;
    border: none;
    padding: 12px 16px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-line-pack:center;
        align-content:center;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
}

.btn--color_cat_1 {

    background-color: rgba(28, 122, 166,.7);
    border-color: rgba(28, 122, 166,.7);
}

.btn--color_cat_2 {
    
    background-color: rgba(16, 99, 255,.7);
    border-color: rgba(16, 99, 255,.7);
}

.btn--color_cat_3 {
    
    background-color: rgba(92, 56, 190,.7);
    border-color: rgba(92, 56, 190,.7);
}

.btn--color_cat_4 {
    
    background-color: rgba(135, 141, 150,.7);
    border-color: rgba(135, 141, 150,.7);
}


.btn--color_cat_1:hover {
    background-color: rgba(28, 122, 166,1);
    border-color: rgba(28, 122, 166,1);
}

.btn--color_cat_2:hover {
    background-color: rgba(16, 99, 255,1);
    border-color: rgba(16, 99, 255,1);
}

.btn--color_cat_3:hover {
    background-color: rgba(92, 56, 190,1);
    border-color: rgba(92, 56, 190,1);
}

.btn--color_cat_4:hover {
    background-color: rgba(135, 141, 150,1);
    border-color: rgba(135, 141, 150,1);
}

.btn--main:hover, .btn--main.active {
    opacity: 1;
    border: 3px solid white;
}

.btn--secondary:hover {
    opacity: .8;
}

.btn__icon {
    width: 29px;
    text-align: center;
    margin-top: auto;
    margin-left: auto;
    margin-bottom: auto;
    padding-left: 10px;
}

@media screen and (max-width: 1300px){
    .btn__icon{
        width: 25px;
        
        padding-left: 8px;
        margin-top: auto;
        margin-left: auto;
        margin-bottom: auto;
    }
}
@media screen and (max-width: 700px){
    .btn__icon{
        display: none;
    }
}

/* .btn::after {
    content: "";
    clear: both;
    display: table;
} */

/* ---------------------------- stage ------------------------------------------------- */
.stage {
    display: none;
}

    .stage.active {
        display: block;
    }
/* ----------------------------- hotspot ---------------------------------------------- */
.hotspot {
    position: absolute;
}

    

.hotspot.highlight{
    -webkit-animation: pulse 1.2s alternate infinite ease-in-out;
            animation: pulse 1.2s alternate infinite ease-in-out;
} 

.hotspot.highlight > .hotspot__btn{
    /* opacity:.9; */
}
.hotspot.active, .hotspot:hover {
    z-index: 10;
    -webkit-animation:none;
            animation:none;
}     
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(.9);
                transform: scale(.9);
    }

    100% {
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }
}

@keyframes pulse {
    0% {-webkit-transform: scale(.9);transform: scale(.9);}
    100% {-webkit-transform: scale(1.1);transform: scale(1.1);}
}

.hotspot.highlight > .hotspot__btn {
    opacity: 1;
    /* border: white solid; */
    
}


/* .hotspot.highlight > .btn--color_cat_1 {
    background-color: rgba(28, 122, 166,.85);
    box-shadow: 0px 0px 40px 15px rgb(28, 122, 166);
}

.hotspot.highlight > .btn--color_cat_2 {
    background-color: rgba(16, 99, 255,.85);
    box-shadow: 0px 0px 40px 15px rgb(16, 99, 255);
}

.hotspot.highlight > .btn--color_cat_3 {
    background-color: rgba(92, 56, 190,.85);
    box-shadow: 0px 0px 40px 15px rgb(92, 56, 190);
}

.hotspot.highlight > .btn--color_cat_4 {
    background-color: rgba(135, 141, 150,.85);
    box-shadow: 0px 0px 40px 15px rgb(135, 141, 150);
}

.hotspot.active > .hotspot__btn , .hotspot:hover  > .hotspot__btn{
   box-shadow: none;
}    */

.hotspot__btn {
    width: 8vw;
    height: 8vw;
    padding: 0;
    border: 0;
    z-index: 1;
    position: relative;
    background-color: transparent;
    overflow:hidden;
}
.hotspot__icon{
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    
}

.hotspot:hover > .hotspot__btn > .hotspot__icon, .hotspot.active > .hotspot__btn > .hotspot__icon  {
   -webkit-transform: scale(2);
       -ms-transform: scale(2);
           transform: scale(2);
}

.hotspot__openIcon{
    width: 100%;
    height: 100%;
    opacity:0;
    position:absolute;
    top:0;
    left:0;
    -webkit-transform:scale(.5);
        -ms-transform:scale(.5);
            transform:scale(.5);
    -webkit-transition: opacity .2s, -webkit-transform .5s;
    transition: opacity .2s, -webkit-transform .5s;
    -o-transition: transform .5s, opacity .2s;
    transition: transform .5s, opacity .2s;
    transition: transform .5s, opacity .2s, -webkit-transform .5s;
}

.hotspot:hover > .hotspot__btn > .hotspot__openIcon, .hotspot.active > .hotspot__btn > .hotspot__openIcon{
    opacity:1;
    -webkit-transform:scale(1);
        -ms-transform:scale(1);
            transform:scale(1);
}

.hotspot__banner {
    overflow: hidden;
    position: relative;
}

.hotspot__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .54;
}

/* .hotspot__overlay--color_cat_1 {
    background-color: #1C7CA7;
}

.hotspot__overlay--color_cat_2 {
    background-color: #1063FF;
}

.hotspot__overlay--color_cat_3 {
    background-color: #5C38BE;
}

.hotspot__overlay--color_cat_4 {
    background-color: #878D96;
} */

.hotspot__img {
    margin-left: 8vw;
    height:8vw;
    display: block;
}


.hotspot__reveal {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s, visibility 0.4s;
    -o-transition: opacity 0.4s, visibility 0.4s;
    transition: opacity 0.4s, visibility 0.4s;
}

@media screen and (min-width:1000px) {

    .hotspot:hover .hotspot__reveal, .hotspot__reveal.active, .hotspot.active .hotspot__reveal {
        visibility: visible;
        opacity: 1;
    }
}


.hotspot__panel {
    background-color: white;
    position: absolute;
    width: 23vw;
    top: 0;
    left: 0;
    max-width: 450px;
}

.hotspot__container {
    padding: 0 22px 14px 22px;
}

.hotspot__gradient{
    width: 100%;
    height: 6px;
    background: transparent -webkit-gradient(linear, right top, left top, from(#5C38BE), to(#1063FC)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(right, #5C38BE 0%, #1063FC 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(270deg, #5C38BE 0%, #1063FC 100%) 0% 0% no-repeat padding-box;
}
.hotspot__header {
    font-size: 16px;
    line-height: 20px;
    margin: 14px 0;
    font-weight: 600;

}

.hotspot__txt {
    font-size: 11px;
    line-height: 16px;
}

.hotspot__glow {
    height: 415px;
    width: 415px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-45%, -45%);
        -ms-transform: translate(-45%, -45%);
            transform: translate(-45%, -45%);
    pointer-events: none;
    opacity: .65;
}

.hotspot__glow--color_cat_1 {
    background: transparent -o-radial-gradient(50% 50%, closest-side, #1C7CA7 0%, #1C7CA7DB 21%, #1C7CA700 100%) 0% 0% no-repeat padding-box;
    background: transparent radial-gradient(closest-side at 50% 50%, #1C7CA7 0%, #1C7CA7DB 21%, #1C7CA700 100%) 0% 0% no-repeat padding-box;
}

.hotspot__glow--color_cat_2 {
    background: transparent -o-radial-gradient(50% 50%, closest-side, #1063FF 0%, #1063FFDB 21%, #1063FF00 100%) 0% 0% no-repeat padding-box;
    background: transparent radial-gradient(closest-side at 50% 50%, #1063FF 0%, #1063FFDB 21%, #1063FF00 100%) 0% 0% no-repeat padding-box;
}

.hotspot__glow--color_cat_3 {
    background: transparent -o-radial-gradient(50% 50%, closest-side, #5C38BE 0%, #5C38BEDB 21%, #5C38BE00 100%) 0% 0% no-repeat padding-box;
    background: transparent radial-gradient(closest-side at 50% 50%, #5C38BE 0%, #5C38BEDB 21%, #5C38BE00 100%) 0% 0% no-repeat padding-box;
}

.hotspot__glow--color_cat_4 {
    background: transparent -o-radial-gradient(50% 50%, closest-side, #A2A9B0 0%, #A2A9B0DB 21%, #A2A9B000 100%) 0% 0% no-repeat padding-box;
    background: transparent radial-gradient(closest-side at 50% 50%, #A2A9B0 0%, #A2A9B0DB 21%, #A2A9B000 100%) 0% 0% no-repeat padding-box;
}

@media screen and (max-width:1300px) {
    .hotspot__header {
        font-size: 14px;
        line-height: 20px;
        margin: 10px 0;
    }

    .hotspot__btn {
        width: 80px;
        height: 80px;
    }

    .hotspot__img{
        margin-left: 80px;
        width: 80%;
        height:auto;
        max-height:none;
        position: absolute;
        left:0;
        top:0;
    }
    .hotspot__img--mobileCenter{
        top:50%;
        -webkit-transform:translateY(-50%);
            -ms-transform:translateY(-50%);
                transform:translateY(-50%);
    }
    .hotspot__banner {
        height: 80px;
        overflow:hidden;
        position: relative;
    }

    .hotspot__txt {
        margin: 2px 0;
    }
    .hotspot__panel{
        width: 30vw;
    }
}

@media screen and (max-width:1000px){
    .hotspot__panel{
       width: 0;
       height: 0;
       overflow:hidden;
    }
}

/* ------------------------------------------- hotspot location ---------------------------------------------- */
#hotspot--1 {
    left: 25%;
    top: 50%;
}

#hotspot--2 {
    left: 40%;
    top: 25%;
}

#hotspot--3 {
    left: 55%;
    top: 10%;
}

#hotspot--4 {
    left: 60%;
    top: 52%;
}

#hotspot--5 {
    left: 24%;
    top: 13%;
}

#hotspot--6 {
    left: 25%;
    top: 58%;
}

#hotspot--7 {
    left: 45%;
    top: 45%;
}

#hotspot--8 {
    left: 55%;
    top: 20%;
}

#hotspot--9 {
    left: 45%;
    top: 8%;
}

#hotspot--10 {
    left: 28%;
    top: 15%;
}

#hotspot--11 {
    left: 24%;
    top: 52%;
}

#hotspot--12 {
    left: 60%;
    top: 50%;
}

@media screen and (max-width: 700px) {
    #hotspot--1 {
        left: 70%;
        top: 45%;
    }

    #hotspot--2 {
        left: 20%;
        top: 35%;
    }

    #hotspot--3 {
        left: 40%;
        top: 5%;
    }

    #hotspot--4 {
        left: 45%;
        top: 60%;
    }

    #hotspot--5 {
        left: 60%;
        top: 65%;
    }

    #hotspot--6 {
        left: 40%;
        top: 30%;
    }

    #hotspot--7 {
        left: 15%;
        top: 52%;
    }

    #hotspot--8 {
        left: 45%;
        top: 5%;
    }

    #hotspot--9 {
        left: 40%;
        top: 10%;
    }

    #hotspot--10 {
        left: 15%;
        top: 45%;
    }

    #hotspot--11 {
        left: 50%;
        top: 35%;
    }

    #hotspot--12 {
        left: 65%;
        top: 58%;
    }
}

/* -------------------------------------- info panel ---------------------------- */
.info{
    text-align:left;
    z-index:20;
}
.info__group {
    background: transparent -webkit-gradient(linear, left top, right top, from(#1063FF), to(#BE95FF)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(left, #1063FF 0%, #BE95FF 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(90deg, #1063FF 0%, #BE95FF 100%) 0% 0% no-repeat padding-box;
    padding: 10px 18px;
    position:absolute;
    top:0;
    right:0;
}

.info__btn {
    background-color: white;
    padding: 12px;
    color: #1063FF;
    text-align: left;
    font-size: 14px;
    display:-webkit-inline-box;
    display:-ms-inline-flexbox;
    display:inline-flex;
}

    .info__btn:hover {
        background-color: rgba(256,256,256,.95)
    }

@media screen and (max-width: 1300px){
    .info__group{
        padding: 10px;
    }
    .info__btn{
        padding: 8px;
    }
}

@media screen and (max-width: 1000px){
    .info__group{
        position: fixed;
        bottom: 20px;
        left: 50%;
        right: auto;
        top:auto;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        padding: 5px;
        z-index: 3;
    }
    .info__panel {
        position: fixed;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        max-width:100vw;
        width: 100vw;
        height: 100vh;
        padding: 15px 40px;
        display:inline-block;
    }
}
/* ------------------------------------------modal ----------------------------------- */
.modal{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s, visibility 0.4s;
    -o-transition: opacity 0.5s, visibility 0.4s;
    transition: opacity 0.5s, visibility 0.4s;
    
    z-index: 20;
}

.modal--inner{
    position:fixed;
    left: 20vw;
    width: 80vw;
}
.modal__before,.modal__after{
    display:none;
}
.modal__before.active,.modal__after.active{
    display:block;
}
.modal__container {
    position: absolute;
    background-color: #343A3F;
    color: white;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    width: 1100px;
    max-width: 80vw;
    padding: 15px 100px;
    
    text-align:center;
}
.modal:before{
    content:"";
    position: absolute;
    width:100%;
    height: 100%;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#1063FF), to(#004144)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(top, #1063FF 0%, #004144 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #1063FF 0%, #004144 100%) 0% 0% no-repeat padding-box;
    opacity: .77;
    top:0;
    left: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
    .modal.active {
        opacity: 1;
        visibility: visible;
    }

.modal__gradient {
    position: absolute;
    background: transparent -webkit-gradient(linear, right top, left top, from(#5C38BE), to(#1063FC)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(right, #5C38BE 0%, #1063FC 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(270deg, #5C38BE 0%, #1063FC 100%) 0% 0% no-repeat padding-box;
    width:100%;
    left: 0;
    top: -13px;
    height: 14px;
}

.modal__header {
    color: white;
    font-weight: 400;
    text-transform: uppercase;
    margin: .5em 0;
}

.modal__txt {
    font-size: 14px;
    line-height: 18px;
    max-width: 600px;
    margin: auto;
    margin-bottom: .5em;
}
.modal__txt--wide{
    max-width:860px;
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 20px;
    background-color: transparent;
    cursor: pointer;
}

@media screen and (max-width:1000px){
    .modal--inner{
        width:100%;
        left:0;
    }
    .modal__container{
        top: auto;
        left: 50%;
        bottom: 0;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        max-width: 100%;
        max-height: 100vh;
        overflow: auto;
        padding: 50px 20px;
    }
    .modal:before{
        display:none;
    }
    .modal{
        position:fixed;
        z-index:60;
    }
}

/* ---------------------------------------- intro btn ----------------------------------------- */

.btn__intro{ 
    margin: 5px 0;
    padding: 12px 16px;
    margin-top: 150px;
    position: relative;
}

.btn__intro:before{
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url(../images/icons/Cat_1-Icon.svg);
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: center;
    opacity: .5;
}
.btn__intro:hover:before{
    opacity:1;
}

.btn__intro--icon_cat_1:before{

    background-image: url(../images/icons/Cat_1-Icon.svg);
}

.btn__intro--icon_cat_2:before{
    
    background-image: url(../images/icons/Cat_2-Icon.svg);
}

.btn__intro--icon_cat_3:before{
    
    background-image: url(../images/icons/Cat_3-Icon.svg);
}

@media screen and (max-width: 1000px){
    .btn__intro{
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}
    /* ------------------------------------------- form ----------------------------------------- */
.form__label {
    position: relative;
    font-size: 14px;
    line-height: 18px;
    
}

.form__checkbox {
    position: absolute;
    opacity: 0;
}

.form__label--checkbox {
    cursor: pointer;
}

.form__checkbox:checked + .form__label--checkbox:before, .form__label--checkbox:hover:before {
    content: '';
    border: 2px solid transparent;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: white;
    position: absolute;
    top: 50%;
    right: 47px;
    width: 8px;
    height: 8px;
    -webkit-transform: translate(-50%,-45%);
        -ms-transform: translate(-50%,-45%);
            transform: translate(-50%,-45%);
}

.form__label--checkbox:hover:before {
    background-color: rgba(255, 255, 255, 0.5);
}

.form__label--checkbox:after {
    content: '';
    margin-left: 6px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    border: 2px solid #08BDBA;
    border-radius: 2px;
    margin-right: 45px;
}

.form__input {
    height: 34px;
    font-size: 12px;
    width: 280px;
    margin-right: 10px;
    padding-left: 22px;
    max-width: 100%;
    line-height: 34px;
}

.form__input::-webkit-input-placeholder {
    color: #BEBEBE;
    overflow: visible;
    /* top:50%;
    transform: translateY(-50%); */
}

.form__input::-moz-placeholder {
    color: #BEBEBE;
    overflow: visible;
    /* top:50%;
    transform: translateY(-50%); */
}

.form__input:-ms-input-placeholder {
    color: #BEBEBE;
    overflow: visible;
    /* top:50%;
    transform: translateY(-50%); */
}

.form__input::-ms-input-placeholder {
    color: #BEBEBE;
    overflow: visible;
    /* top:50%;
    transform: translateY(-50%); */
}

.form__input::placeholder {
    color: #BEBEBE;
    overflow: visible;
    /* top:50%;
    transform: translateY(-50%); */
}

.form__label--checkbox, .form__input, .form__btn {
    margin-top: 15px;
    display: inline-block;
}

.form__btn {
    padding: 8px 16px;
    font-size: 14px;
    line-height: 18px;
    min-width: 150px;
    text-align: left;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-width: 2px;
}

.form__btn.hide{
    display:none;
}

.form__no{
    background-color: transparent;
    color: white;
    font-size: 14px;
    text-decoration: underline;
    font-style:italic;
    cursor: pointer;
    margin-top: 15px;
}
@media screen and (max-width:1000px){
    .form__label--checkbox:after {
        margin-right: 20px;
    }
    .form__checkbox:checked + .form__label--checkbox:before, .form__label--checkbox:hover:before {
        
        right: 22px;
        -webkit-transform: translate(-50%,-45%);
            -ms-transform: translate(-50%,-45%);
                transform: translate(-50%,-45%);
    }
    .form__input{
        font-size:initial;
    }
}
@media screen and (max-width:700px){
    .form__btn{
        text-align:center;
    }
}
/* ------------------------ cta ------------------------------- */
.cta{
    height: 70px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -ms-flex-wrap:nowrap;
        flex-wrap:nowrap;
    background-color: #878D96;
    color: white;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.cta--color_cat_1{
    border-bottom: 5px solid #1C7CA7;
}
.cta--color_cat_2{
    border-bottom: 5px solid #1063FF;
}
.cta--color_cat_3{
    border-bottom: 5px solid #5C38BE;
}
.cta--color_cat_4{
    border-bottom: 5px solid #697077;
}

.cta__left{
    height: 100%;
}

.cta--color_cat_1 .cta__left{
    background-color: #1C7CA7;
}
.cta--color_cat_2 .cta__left{
    background-color: #1063FF;
}
.cta--color_cat_3 .cta__left{
    background-color: #5C38BE;
}
.cta--color_cat_4 .cta__left{
    background-color: #697077;
}

.cta__left, .cta__right{
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.cta__bold{
    font-size: 26px;
    font-weight: Bold ;
    padding: 0 16px;
    margin: 0;
    display:-webkit-inline-box;
    display:-ms-inline-flexbox;
    display:inline-flex;
    height:100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.cta__desc{
    font-size: 14px;
    line-height: 16px;
    padding: 20px 45px; 
}
.cta__capitalize{
    text-transform: capitalize;
}

.cta__btn {
    background-color: white;
    padding: 10px;
    color: #1C7CA7;
    text-align: left;
    font-size: 14px;
    margin-right: 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .cta__btn:hover {
        background-color: rgba(256,256,256,.95)
    }

    .cta--color_cat_1 .cta__btn{
            color: #1C7CA7; 
    }
    .cta--color_cat_2 .cta__btn{
        color: #1063FF 
    }
    .cta--color_cat_3 .cta__btn{
    color: #5C38BE; 
}
.cta--color_cat_4 .cta__btn{
    color: #878D96; 
}

@media screen and (max-width: 1650px){
    .cta{
        height: 58px;
    }
    .cta__bold {
        font-size: 20px;
    }
    .cta__desc{
        padding: 10px;
    }
    .cta__btn{
        margin-right: 5px;
    }
}

@media screen and (max-width: 1300px){
    .cta__left{
        width: 160px;
    }
    .cta__bold{
        font-size: 18px;
        line-height: 20px;
    }
    .cta__desc{
        padding: 15px;
    }
    
}

@media screen and (max-width: 1000px){
    .cta{
        -ms-flex-wrap:wrap;
            flex-wrap:wrap;
        background-color: #A2A9B0;
        margin: 0 24px;
        margin-bottom: 80px;
        height:auto;
        
    }
    .cta__left,.cta__right,.cta__middle{
        width:100%;
    }
    .cta__btn{
        display:none;
    }
    .cta__bold{
        margin: 1em 0;
        font-size: 26px;
    }
    .cta__desc{
        font-size: 16px;
    }
}


/* ------------------------------------- toggling images  */
.toggleImg .toggleImg__default{
    display:block;
}
.toggleImg .toggleImg__active{
    display:none;
}

.toggleImg.active .toggleImg__default{
    display:none;
}
.toggleImg.active .toggleImg__active{
    display:block;
}

/* --------------------------------- grid styling --------------------------- */
.grid{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
        -ms-flex-flow:row;
            flex-flow:row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px 0;
}
.grid--justifyBtw{
    -webkit-box-pack:justify;
        -ms-flex-pack:justify;
            justify-content:space-between;
}
.grid__item{
    min-width: 200px;
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    display:block;
    text-decoration: none;
}
.grid__item--3{
    min-width: 200px;
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
}
.grid__item--2{
    min-width: 200px;
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    margin-bottom: 30px;
}
.grid__item--full{
    -ms-flex-preferred-size:100%;
        flex-basis:100%;
}
.grid__stage{
    background-color: #878D96;
    padding: 5px 20px; 
    color: white;
    margin: 0;
    display: block;
    -ms-flex-preferred-size: 180px;
        flex-basis: 180px;
    min-width: 140px;
    text-align: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.grid__stage--color{
    background-color: #1063FF; 
}
.grid__row{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}
.grid__row--fullheight{
    height:100%;
}
.grid__panel{
    padding: 0 20px;
    -ms-flex-preferred-size: 180px;
        flex-basis: 180px;
    min-width: 140px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative:0;
        flex-shrink:0;
}

.grid__panel--img{
    padding:0;
    overflow:hidden;
    position:relative;
}
.grid__imgSide{
    min-width:100%;
    min-height:100%;
    max-width: initial;
    position:absolute;
    display:block;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.grid__imgSide--mobile{
    display:none;
}
.grid__panel--dark{
    background-color: #001D6C;
    color:white;
}



.grid__panel--color_cat_1{
    background-color: #1C7CA7;
}
.grid__panel--color_cat_2{
    background-color: #002D9C;
}

.grid__panel--color_cat_3{
    background-color: #1192E8;
}


.grid__title{
    background-color: #E5E5E5;
    color: #1C7CA7;
    margin :0;
    font-size: 24px;
    padding: .7em;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
}
.grid__banner{
    max-width:100%;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
}
.grid__banner--gradient{
    background: transparent -webkit-gradient(linear, left top, right top, from(#5C38BE), to(#1063FC)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(left, #5C38BE 0%, #1063FC 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(90deg, #5C38BE 0%, #1063FC 100%) 0% 0% no-repeat padding-box;
}
.grid__banner> .grid__bannerImg{
    width: 100%;
    display:block;
}
.grid__banner--bgImg{
    background-image: url("../images/intermediate/story4/Cat2-Story4-Step-Title-Bg.png");
    background-size: cover;
    background-position: center;
    padding: 20px;
    color: white;
}



.grid__header{
    text-transform: uppercase;
    font-weight: 600;
}
.grid__box{
    padding: 30px;
    position: relative;
    color: white;
    -webkit-box-flex:1;
        -ms-flex-positive:1;
            flex-grow:1;
}
.grid__box--fullHeight{
    height:100%;
}
.grid__box--center{
    text-align: center;
}
.grid__box--gradient_main{
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#1192E8), to(#007D79)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(top, #1192E8 0%, #007D79 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #1192E8 0%, #007D79 100%) 0% 0% no-repeat padding-box;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    min-height: 150px;
}

.grid__box--gray{
    background-color: #DBDBDB;
    color: #001D6C;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    min-height: 150px;
}
.grid__box--dark{
    background-color: #001D6C;
}

.grid__box--resource{
    /* background-color: #001D6C; */
    /* background: transparent linear-gradient(180deg, #002D9C 0%, #00174E 100%) 0% 0% no-repeat padding-box; */
    color:white;
    min-height: 300px;
    padding-bottom: 30px;
    position: relative;
}
.grid__box--bg{
    background-color: #001D6C;
    background-image: url('../images/backgrounds/Cat2-Story1-Phase-Bg-Img.png') ;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

.grid__box--gradient_1{
    background:  -webkit-gradient(linear, left top, left bottom, from(#1C7CA7), to(#0E3E54))no-repeat ;
    background:  -o-linear-gradient(top, #1C7CA7 0%, #0E3E54 100%)no-repeat ;
    background:  linear-gradient(180deg, #1C7CA7 0%, #0E3E54 100%)no-repeat ;
    background-image: url("../images/intermediate/story2/Cat2-Story2-Teal-Bg.png") ;
    
}

.grid__box--gradient_2{
    background:  -webkit-gradient(linear, left top, left bottom, from(#1063FF), to(#083280)) no-repeat;
    background:  -o-linear-gradient(top, #1063FF 0%, #083280 100%) no-repeat;
    background:  linear-gradient(180deg, #1063FF 0%, #083280 100%) no-repeat;
    background-image: url("../images/intermediate/story2/Cat2-Story2-Blue-Bg.png");

}
.grid__box--gradient_3{
    background:  -webkit-gradient(linear, left top, left bottom, from(#5C38BE), to(#2E1C5F))  no-repeat;
    background:  -o-linear-gradient(top, #5C38BE 0%, #2E1C5F 100%)  no-repeat;
    background:  linear-gradient(180deg, #5C38BE 0%, #2E1C5F 100%)  no-repeat;
    background-image: url("../images/intermediate/story2/Cat2-Story2-Purple-Bg.png");

}
.grid__box--gradient_4{
    background: -webkit-gradient(linear, left top, left bottom, from(#878D96), to(#44474B))no-repeat;
    background: -o-linear-gradient(top, #878D96 0%, #44474B 100%)no-repeat;
    background: linear-gradient(180deg, #878D96 0%, #44474B 100%)no-repeat;
    background-image: url("../images/intermediate/story2/Cat2-Story2-Gray-Bg.png");

}
.grid__box--gradient_5{
    background: -webkit-gradient(linear, left top, left bottom, from(#4F5358), to(#101112))  no-repeat ;
    background: -o-linear-gradient(top, #4F5358 0%, #101112 100%)  no-repeat ;
    background: linear-gradient(180deg, #4F5358 0%, #101112 100%)  no-repeat ;
    background-image: url("../images/intermediate/story2/Cat2-Story2-Black-Bg.png");

}

.grid__box--gradient{
    min-height:250px;
    background-position:center;
    background-size: cover; 
}
.grid__number{
    position:absolute;
    top: 0;
    left: 0;
    padding: 4px 10px;
    background-color: white;
    color: black;
}
.grid__number > p{
    margin: 0;
    font-weight: bold;
}
.grid__text{
    font-size: 18px;
    margin:0;
}
.grid__text--spaced{
    line-height: 1.5em;
}
.grid__list{
    margin : 0;
    list-style-type: none;
    padding: 10px;
}

.grid__arrow{
    position:absolute;
    bottom: 10px;
    right: 10px;
}
.grid__list > li{
    margin: 0 0 .5em 0;
}
/* .grid__list > li > b {
    color: #5C38BE;
} */

.grid__icon{
    height: 80px;
    margin-bottom: 15px;
}
.grid__icon--text{
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    line-height: 2rem;
    text-align:center;
}

.grid__icon--smaller{
    font-size: 1rem;
    line-height: 1.2rem;
}

.grid__icon--block{
    display:block;
}
@media screen and (max-width: 1500px){
    .grid__title{
        font-size: 22px;
    }
    .grid__list{
        padding-right: 20px;
    }
}

@media screen and (max-width:1400px){
    .grid__item--2{
        -ms-flex-preferred-size:100%;
            flex-basis:100%;
        margin-bottom: 20px;
    }
    .grid__panel, .grid__stage{
        -ms-flex-preferred-size: 20%;
            flex-basis: 20%;
    } 
    .grid__banner{
        -ms-flex-preferred-size: 80%;
            flex-basis: 80%;
        min-height:100px;
        overflow:hidden;
    }
    .grid__banner > .grid__bannerImg{
        width:100%;
        min-height:100%;
    }
    .grid__icon--text{
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 1000px){
    .grid__item{
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    }
    .grid__item--2{
        -ms-flex-preferred-size:100%;
            flex-basis:100%;
        margin-bottom: 20px;
    }
    .grid__item--full{
        -ms-flex-preferred-size:100%;
            flex-basis:100%;
    }
    
    .grid__list{
        padding: 0;
    }
    .grid__item--3{
        min-width: 200px;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        
    }
    .grid__banner--gradient{
        display:none;
    }
}
@media screen and (max-width: 700px){
    .grid__imgSide{
        position: relative;
        display:none;
    }
    
    .grid__imgSide--mobile{
        display:block;
        max-width:100%;
    }
    .grid__panel, .grid__banner{
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        min-height: 0;
    }
    .grid__panel--sm{
        -ms-flex-preferred-size: 20%;
            flex-basis: 20%;
    }
    .grid__icon{
        padding: 20px;
    }
    .grid__row--Smwrap{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .grid__panel--dark{
        padding: 20px;
        width:100%;
    }
    
    .grid__banner > .grid__bannerImg{
        /* height:100%; */
        /* width:auto; */
        /* max-width: none; */
    }
}
@media screen and (max-width: 580px){
    .grid__item{
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%
    }
    
}

/* ------------------------------------------ top hover leave ------------------------------- */
.topHover{
    position: absolute;
    height: 3px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}

@media screen and (max-width:1000px){
    .topHover{
        display:none;
    }
}

.hr--color_cat_2{
    border-top: 2px solid #1063FF;
}

/* ------------------------------------ border ------------------------------- */
.borderTop{
    border-top: transparent 10px solid;
}
.borderTop--color_cat_2{
    border-color: #1063FF;
}

/* ----------------------------- resources ----------------------------- */
.resource{
    cursor: pointer;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#002D9C), to(#00174E)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(top, #002D9C 0%, #00174E 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #002D9C 0%, #00174E 100%) 0% 0% no-repeat padding-box;
    padding:0;
}
.resource:hover {
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#1063FC), to(#1C7CA7)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(top, #1063FC 0%, #1C7CA7 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #1063FC 0%, #1C7CA7 100%) 0% 0% no-repeat padding-box;

}

#vidyard-popbox-constraint{
    max-width: initial;
}



/* --------------------------- mobile show hide */

@media screen and (min-width: 1000px){
    .mobile-show{
        display: none;
    }
    
    
}
@media screen and (max-width: 1000px){
    .mobile-hide{
        display:none;
    }
}
@media screen and (max-width: 1000px){
    .mobile-noHeight{
        height:0;
    }
}
