body {
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    background-image: url(images/aycm-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
}


.info-container {
    display: flex;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px;
    flex-direction: row;
    align-items: center;
}

.logo {
    width: 50%;
}

.logo img {
    width: 100%;
    max-width: 120px;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 20px;
    position: relative;
}



h2 {
    font-size: 2.8rem;
    margin: 1.5rem 0;
}


button {
    color: #25A197;
    height: 50px;
    line-height: 48px;
    font-size: 1em;
    padding: 0 40px;
    background: #ffffff;
    margin-top: 10px;
    cursor: pointer;
}


/* Header */
header {
    padding: 20px 0;
    width: 100%;
}


.redirectionLink {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.redirectionLink a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.6rem;
    color: #ffffff;
}




/* Hero One */

#hero {
    /*background: #001F3F;*/
    padding: 200px 0 120px 0;
    text-align: center;
}

#hero h2 {
    text-align: center;
    font-size: 4.6em;
    
    margin-top: 0;
    line-height: 1;
    color: #29b496;
    font-weight: 300;
}

#hero h2:after {
    display: none;
}

#hero h3 {}

#hero p {
    color: #ffffff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: normal;
    line-height: 26px;
    text-align: center;
    width: 60%;
    display: block;
    margin: 0 auto;
    padding-bottom: 40px;
}

.highlight{
    font-size: 1.2rem;
    font-weight: 700;
}

#hero .button {
    border: 0;
    color: #fff;
    height: 50px;
    line-height: 48px;
    font-size: 0.9rem;
    padding: 5px 40px;
    background: #318b81;
    display: inline-block;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s linear;
}

#hero .button:hover{
    background: #ffffff;
    color: #318b81;
}

#hero .white {
    color: #fff;
    font-weight: 700;
}


@media all and (max-width: 550px) {


    .redirectionLink a {
        font-size: 1.4rem;
    }


    #hero button {
        margin-bottom: 20px;
    }

    #hero h2 {
        font-size: 2.2em;
    }

    #hero p {
        font-size: 0.8em;
        line-height: 21px;
        width: 100%;
    }
}

