* {
    margin: 0;
    padding: 0;
    font-size: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

a {
    text-decoration: none;
}

header {
    background-color: #188d3e;
    color: white;
    padding: 15px;
    height: 25px;
}

header > span {
    margin-left: 40px;
}

#navButton {
    background-color: #2f2f2f;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 40px 41px 20px;
    text-align: center;
    cursor: pointer;
    color: white;
    z-index: 99;
}

#navButton img {
    float: left;
}

#navButton span {
    float: left;
    clear: both;
    width: 100%;
    text-transform: uppercase;
    margin-top: 20px;
}

#homepageHero {
    width: 100%;
}

.homepageHeroContainer {
    position: relative;
    max-height: 800px;
}

.homepageHeroImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepageHeroLogo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 60px auto 0;
}

.homepageHeroTextOverlay {
    position: absolute;
    left: 0;
    bottom: 0;
    color: white;
    padding: 0 0 110px 150px;
}

.homepageHeroTextOverlay h1 {
    font-size: 6em;
    font-weight: 500;
    max-width: 710px;
    line-height: 1em;
}

.homepageHeroTextOverlay h1::after {
    content: "";
    background-color: #188d3e;
    height: 10px;
    width: 220px;
    display: block;
    margin-top: 10px;
}

.homepageHeroTextOverlay h2 {
    margin-top: 10px;
    font-weight: 500;
    font-size: 2em;
}

.contentWhite {
    background-color: white;
    color: #242424;
    padding: 60px 0;
}

.contentCenter {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contentWhite h1 {
    font-weight: 500;
    font-size: 2em;
    margin-bottom: 20px;
}

.contentWhite h2 {
    margin-bottom: 20px;
}

.contentWhite p {
    margin-bottom: 10px;
}

#homepageFirstImage {
    max-width: 614px;
    width: 100%;
}

.homepageImageGrid {
    display: grid;
    grid-template-columns: repeat(3,33.3333%);
}

.homepageImageGrid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepageVideo {
    width: 100%;
    margin: 40px 0;
}

.moreButton {
    display: inline-block;
    text-align: center;
    color: #188d3e;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2em;
    border: 1px solid #2196f3;
    padding: 10px 40px;
    border-radius: 25px;
    transition: background-color 0.5s;
}

.moreButton:hover {
    background-color: #c1e4ff;
}

.homepage3Col {
    display: grid;
    grid-template-columns: repeat(3,29%);
    grid-column-gap: 6.5%;
    text-align: left;
    margin-top: 60px;
}

.homepage3Col img {
    width: 100%;
}

.homepage3Col h3 {
    font-weight: 500;
    font-size: 1.3em;
    margin-bottom: 20px;
}

.homepage3Col p {
    margin-bottom: 40px;
}

.contentGreen {
    padding: 60px 0;
    background-color: #188d3e;
    color: white;
}

.contentGreen h1 {
    font-weight: 400;
    font-size: 2.5em;
}

.homepageGallery {
    display: grid;
    grid-template-columns: repeat(4,22%);
    grid-column-gap: 4%;
    grid-row-gap: 40px;
    margin: 40px 0;
}

.homepageGallery img {
    width: 100%;
}

footer {
    font-family: 'Ubuntu', sans-serif;
    display: grid;
    grid-template-columns: repeat(5,auto);
    border-top: 1px solid #e0e3e7;
    padding: 40px 20px;
    justify-content: space-between;
    text-align: left;
}

footer > div {

}

footer img {

}

footer h2 {
    text-transform: uppercase;
    color: #1f2835;
    font-size: 1.3em;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 10px;
    color: #667386;
}

footer a {
    color: #667386;
}

footer a:hover {
    text-decoration: underline;
}