/*
 * ------------------------------------
 * main styles
 */

html{
    font-family: sans-serif;
    font-size: 10px;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body{
    margin: 0px;
    padding: 0px;
    min-height: 100vh;
    
    font-family: "m3_bc", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
    color: #FFFFFF;
}

a{
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

h1{
    padding: 0px;
    margin: 0px;
    margin-block-start: 0px;
    margin-block-end: 36px;
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 85px;
    letter-spacing: -1px;
}

h2{
    padding: 0px;
    margin: 0px;
    margin-block-start: 0px;
    margin-block-end: 32px;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
}

h3{
    padding: 0px;
    margin: 0px;
    margin-block-start: 12px;
    margin-block-end: 28px;
    font-size: 40px;
    font-weight: 400;
    line-height: 45px;
}

h4{
    padding: 0px;
    margin: 0px;
    margin-block-start: 0px;
    margin-block-end: 0px;
    font-size: 20px;
    font-weight: 700;
}

p{
    margin-bottom: 20px;
}

.m3_body_main_blue{
    background-image: linear-gradient(#009ace, #051c2c 30%, #051c2c 70%, #009ace 100%);
}

.m3_logo_img{
    width: 100%;
}

.m3_content_container{
    display: flex;
    flex-direction: row;
}

.m3_content_box{
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 0px;
}

.m3_content_h1_block{
    margin-bottom: 66px;
}

.m3_content_block{
    margin-bottom: 50px;
}

.m3_content_block_inner{
    margin-bottom: 32px;
}

.m3_bold{
    font-weight: 700;
}

.m3_text_link{
    color: #009ace;
    text-transform: none;
}

/*
 * ------------------------------------
 * header styles
 */

.m3_header{
    background-color: #051c2c;
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    box-sizing: border-box;
    padding: 0 30px;
    min-height: 70px;
    z-index: 100;
    
    display: flex;
    align-items: center;
}

.m3_header a{
    font-size: 15px;
}

.m3_header_content{
    width:100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.m3_header_logo{
    width: 80px;
}

/*
 * ------------------------------------
 * footer styles
 */

.m3_footer{
    position: relative;
    background-color: #051c2c;
    width: 100%;
    box-sizing: border-box;
    padding: 0 30px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.m3_footer a{
    color: #bbbcbc;
    font-weight: 300;
}

.m3_footer_content{
    box-sizing: border-box;
    padding: 84px 0px 23px 0px;
    width: 100%;
    max-width: 1140px;
}

.m3_footer_content a{
    text-transform: none;
}

.m3_footer_content_headline{
    font-weight: 700;
    margin-bottom: 20px;
}

.m3_footer_subline{
    box-sizing: border-box;
    padding: 20px 0px 26px 0px;
    margin-top: 20px;
    width: 100%;
}

.m3_footer_subline_content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.m3_footer_logoandrights{
    display: flex;
    flex-direction: row;
    align-items: center;
    
    box-sizing: border-box;
    margin-top: 0px;
}

.m3_footer_logo{
    width: 70px;
    box-sizing: border-box;
    margin-right: 30px;
    margin-bottom: 0px;
}

.m3_footer_copyright{
    font-size: 15px;
}

.m3_footer_content_box_right{
    text-align: left;
}



/*
 * ------------------------------------
 * content styles
 */

.m3_main{
    position: relative;
    width: 100%;
    min-height: calc(100vh - 70px);
    box-sizing: border-box;
    margin-top: 70px;
    padding: 0 30px;
    
    background-color: #051c2c;
    background-image: url(../images/AIM3_background_image.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    
    display: flex;
    justify-content: center;
}

.m3_main_blank{
    position: relative;
    width: 100%;
    min-height: calc(100vh - 70px);
    box-sizing: border-box;
    margin-top: 70px;
    padding: 0 30px;
    
    display: flex;
    justify-content: center;
    color: #051c2c;
}

.m3_main_content{
    width: 100%;
    max-width: 1140px;
    box-sizing: border-box;
    margin: 48px 0px 92px 0px;
}

.m3_main_content_box_left{
    width: 60%
}

.m3_main_content_box_right{
    display: flex;
    align-items: flex-end;
    width: 40%
}

.m3_main_content_textbox{
    max-width: 420px;
}

.m3_button{
    letter-spacing: .5px;
    background-color: #ea27c2;
    border-style: solid;
    border-width: 1px;
    border-color: #ea27c2;
    border-radius: 8px;
    padding: 6px 24px;
    transition: background-color .3s;
    
    margin-bottom: 32px;
}

.m3_button:hover{
    background-color: transparent;
    text-decoration: none;
}

.m3_image_button{
    display: flex;
    align-items: center;
}

.m3_lnicon{
    width: 20px;
    margin-left: 6px;
}



@media only screen and (max-width: 960px){
    .m3_content_container{
        flex-direction: column;
    }
    
    .m3_content_box{
        width: 100%;
        margin-bottom: 48px;
    }
    
    .m3_content_box:last-child{
        margin-bottom: 0px;
    }
    
    .m3_main_content_box_left{
        width: 100%;
    }

    .m3_main_content_box_right{
        width: 100%;
    }
    
    .m3_main_content_textbox{
        max-width: 100%;
    }
}


@media only screen and (max-width: 767px){
    h1{
        font-size: 40px;
        line-height: 1.1em;
    }
    
    h2{
        font-size: 30px;
        line-height: 1.1em;
    }
    
    h3{
        font-size: 30px;
        line-height: 1.1em;
    }
    
    h4{
        font-size: 18px;
        line-height: 1.1em;
    }
    
    .m3_footer_subline_content{
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .m3_footer_logoandrights{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        
        margin-top: 24px;
    }
    
    .m3_footer_logo{
        margin-bottom: 2px;
    }
}


