@charset "UTF-8";
/* CSS Document */


/*@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300|Roboto:100,300,400,700');*/
/*@import url('https://fonts.googleapis.com/css?family=Playfair+Display:300,400,500,800|Merriweather:700|Roboto:100,300,400,500,700&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/* colors:

blue: #0081FF
chargeGreen: #25CC55

*/

body {
    margin: 0;
    padding: 64px 0 0;
    background-color: white;
    overflow-x: hidden;
    width: 100%;
}

h1 {
    font-family: 'Open Sans', sans-serif;
    /*font-weight: 800;
    margin: 0;*/
}

p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
}

a {
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

label {
    font-family: 'Open Sans', sans-serif;
}

/* banner */

banner {
    display: block;
    width: 100%;
    height: calc(100% - 64px);
    margin: 0;
    padding: 0;
    /*for testing purposes
    background-color: beige;*/
}

banner > section {
    display: inline-block;
    margin: 0;
    padding: 0;
    height: calc(100% - 64px);
    position: absolute;
}

.banner-title-sec {
    /*for testing purposes
    background-color: blueviolet;*/
    width: 38%;
    padding: 0 4% 0 8%;
}

.banner-title-sec > h1 {
    display: block;
    margin: 30% 0 0;
    padding: 0;
    font-size: 50px;
    line-height: 55px;
}

.banner-title-sec > p {
    display: block;
    margin: 25px 0 0;
    padding: 0;
    font-size: 17px;
    line-height: 25px;
}

.banner-title-sec > p > a {
    color: #0081FF;
}

.banner-title-sec > a {
    display: block;
    margin: 40px 0 0;
    padding: 12px 0;
    font-size: 17px;
    font-weight: 600;
    color: white;
    width: 150px;
    text-align: center;
    background-color: #0081FF;
    border-radius: 5px;
}

.banner-ss-sec {
    /*for testing purposes
    background-color: greenyellow;*/
    right: 0;
    width: 50%;
}

.banner-ss-sec > img {
    display: inline-block;
    position: absolute;
    height: 70%;
    width: auto;
    margin: 15% 0 0 25%;
}

.banner-ss-sec > .ss_2 {
    height: 50%;
    margin: 25% 0 0 55%;
}

.banner-ss-sec > .ss_3 {
    height: 50%;
    margin: 25% 0 0 7%;
}


@media screen and (max-width: 870px) {
    
    banner > section {
        display: block;
        position: inherit;
        height: auto;
    }
    
    .banner-ss-sec {
        width: 100%;
    }

    .banner-ss-sec > img {
        position: inherit;
        width: 60%;
        height: auto;
        margin: 7.5% 0 0 20%;
    }

    .banner-ss-sec > .ss_2 {
        position: absolute;
        z-index: -1;
        width: 50%;
        margin: 17.5% 0 0;
        right: 0;
    }

    .banner-ss-sec > .ss_3 {
        position: absolute;
        z-index: -1;
        width: 50%;
        margin: 17.5% 0 0 0;
    }
    
    .banner-title-sec {
        width: calc(100% - 60px);
        padding: 0 30px 25%;
        text-align: center;
    }

    .banner-title-sec > h1 {
        margin: 25px 0 0;
        font-size: 42px;
        line-height: 47px;
    }

    .banner-title-sec > p {
        margin: 20px 0 0;
    }

    .banner-title-sec > a {
        margin: 40px 0 0 calc(50% - 112.5px);
        padding: 15px 0;
        font-weight: 700;
        width: 225px;
    }
    
}


