@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

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

body {
    width: 100%;
    height: 100%;
    font-family: 'Lato', sans-serif;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 42px;
    font-weight: 300;
}

a {
    color: inherit;
    transition: all 0.3s ease;
    text-decoration: none;
}
a:hover {
    color: #00aaff;
}

header,
main,
footer {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content p {
    margin-bottom: 10px;
}

.divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

header .top-nav {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 14px 0;
}

header .top-nav .container {
    display: flex;
    justify-content: flex-start;
}

header .top-nav p {
    color: #999999;
    font-size: 13px;
    padding-right: 15px;
}

header .nav {
    padding: 20px 40px;
}

header .nav img {
    width: 100%;
    max-width: 214px;
}

main .hero {
    background: #11709c;
    width: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
}

main .content {
    padding: 80px 40px;
}

main .content p,
main .content a {
    color: #000000;
}
main .content a.highlight {
    text-decoration: underline;
}
main .content a:hover {
    color: #00aaff;
}

img.chevron-logo {
    width: 70px;
    margin-top: 20px;
}

footer {
    width: 100%;
    background: #011b3a;
    padding-bottom: 20px;
    color: #ffffff;
}

footer .left-col {
    width: 25%;
}
footer .right-col {
    width: 30%;
}

footer .left-col img {
    margin: 5px 20px 20px 0;
    width: 100%;
    max-width: 300px;
}

footer p.title {
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 30px;
    font-size: 24px;
    -webkit-font-smoothing: antialiased;
}

footer p {
    font-size: 14px;
    line-height: 20px;
    padding-right: 15px;
}

footer p.link {
    transition: all 0.3s ease;
    line-height: 20px;
    display: inline-flex;
    width: 100%;
    align-items: flex-start;
    margin-bottom: 30px;
}

footer p.link a {
    padding-left: 18px;
}

footer p.link svg {
    fill: #11709c;
    width: 20px;
    height: 20px;
}

footer p.link.map svg {
    width: 30px;
    margin-top: 4px;
}

footer p.link.mail svg {
    fill: none;
}
footer p.link.mail svg path {
    color: #11709c;
}
footer p.link.mail svg polyline {
    color: #11709c;
}

@media screen and (max-width: 900px) {
    header .top-nav {
        display: none;
    }
    footer .left-col,
    footer .right-col {
        width: 40%;
    }
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 38px;
    }
    header .nav {
        padding: 20px 20px;
    }
    footer .flex-col {
        flex-direction: column;
    }
    footer .left-col,
    footer .right-col {
        width: 100%;
    }
    footer .left-col {
        padding-bottom: 40px;
    }
    footer .right-col p:last-child {
        margin: 0;
    }
    .copyright p {
        font-size: 12px;
    }
}
