/* Global */

@font-face {
    font-family: Archia;
    src: url(fonts/archia-regular-webfont.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: #F6F6F6;
    overflow-y: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

li {
    list-style-type: none;
}

.topnav ul li a, .hero h1 {
    font-family: 'Archia';    
}

.topnav ul li a, .hero h1, .hero p {
    color: #F6F6F6;
}

.container {
    max-width: 1600px;
    margin: auto;
}

iframe {
    border: none;
    width: 100%;
    padding-top: 48px;
}

/* Header */

.topnav {
    position: fixed;
    background-color: #05323d;
    width: 100%;
    padding: 0px 16px;
    z-index: 99;
}

.topnav nav {
    height: 48px;
}

.topnav nav, .topnav ul, .topnav li {
    display: flex;
    align-items: center;
}

.topnav-logo {
    height: 30px;
    margin-right: 16px;
}

.topnav ul, .topnav li {
    height: inherit;
}

.topnav li {
    line-height: 48px;
    text-align: center;
    border-bottom: 2px solid transparent;
}

.topnav li:hover {
    border-bottom: 2px solid #00c77b;
}

.topnav ul li a {
    font-size: 0.875em;
    font-weight: 600;
    cursor: pointer;
    padding: 16px;
}

/* Hero */

.hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 0 16px;
    position: absolute;
    width: 100%;
    top: 0;
}

.hero_content {
    display: flex;
    flex-direction: column;
    height: inherit;
    margin-top: 48px;
    overflow-y: scroll;
    padding-bottom: 68px;
}

.hero_content::-webkit-scrollbar {
    display: none;
}

.hero h1 {
    font-size: 2.5em;
    margin: 3rem 16px 16px 16px;
    color: #003254;
}

#info_boxes {
    display: flex;
    flex-wrap: wrap;
}

.info_box {
    flex-basis: 23%;
    background: #05323d;
    padding: 3rem 2rem;
    border-radius: 4px;
    margin: 1%;
    cursor: pointer;
    height: fit-content;
}

.info_box i {
    font-size: 4.6rem;
    margin-bottom: 16px;
    width: 100%;
    text-align: center;
}

.info_box h2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info_box span {
    margin-left: 8px;
}

.description {
    margin-top: 16px;
    line-height: 1.7;
    text-align: center;
}

.description p {
    margin-bottom: 26px;
}

.description a {
    background: #00c77b;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
}

/* Footer */

footer {
    background-color: #7f97a8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    z-index: 99;
    padding: 8px;
    font-size: 14px;
    line-height: 1.7;
}

/* Media Queries */

@media only screen and (max-width: 769px) {
    .topnav ul {
        display: none;
    }

    .hero h1 {
        font-size: 2em;
    }

    .info_box {
        flex-basis: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.5em;
        margin: 16px;
    }
}