html {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat';
}

#copyright {
    height: 90px;
    background-color: #EEF7F2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: 400;
}

#header {
    height: 154px;
    display: flex;
    align-items: center;
}

#header-img {
    height: 70px;
    width: 190px;
    margin-top: 10px;
    margin-left: 50px;
}

#header-img-center {
    max-width: 600px;
}

#footer-img {
    height: 120px;
    width: 280px;
    margin-left: 130px;
}

#footer {
    height: 350px;
    background-color: #275B83;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #C2EF7E;
    font-size: 50px;
    font-weight: normal;
}

.gray_horizontal_line {
    width: 715px;
    height: 5px;
    background: #EEF7F2;
    border-radius: 42px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#section-one {
    background-image: url("../img/index/lance-asper-first.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 800px;
    min-height: 50%;
    padding-top: 80px;
}

#section-two {
    height: 470px;
}

#section-three {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 470px;
    overflow: hidden;
}

#section-three img {
    width: 100%;
    height: auto;
}

#section-four {
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ocean-sunRays-blue-subtitle {
    font-weight: 600;
    font-size: 64px;
    color: #476F91;
}

.ocean-sunRays-green-subtitle {
    font-weight: 600;
    font-size: 90px;
    line-height: 65px;
    color: #85C871;
}

.content-align {
    justify-content: flex-start;
}

.green-link {
    color: #85C871;
}

/* NOTE - HERE IS WHERE MOBILE STYLES COULD BE ADDED as styles inside here come into action when screen size is smaller than 767 pixels */
@media only screen and (max-width: 767px) {
    #header {
        height: 100px;
    }

    #copyright {
        font-size: 15px;
    }

    #footer {
        height: 330px;
        font-size: 18px;
    }

    .ocean-sunRays-green-subtitle {
        font-size: 35px;
        line-height: 25px;
    }

    .ocean-sunRays-blue-subtitle {
        font-size: 24px;
    }

    #section-one {
        height: 140vw;
        padding-top: 30px;
    }

    #section-two {
        height: 220px;
    }

    #section-three {
        height: 60vw;
    }

    #section-four {
        height: 400px;
    }

    .gray_horizontal_line {
        width: 260px;
        height: 2px;
    }

    #header-img-center {
        max-width: 340px;
    }

    #header-img {
        height: 30px;
        width: 90px;
        margin-top: 12px;
        margin-left: 20px;
    }

    #footer-img {
        height: 43px;
        width: 120px;
    }

    .content-align {
        justify-content: center;
    }
}