@font-face {
    font-family: 'Archive';
    src: url("archive.woff2") format('woff2');
}

body {
    font-family: "Segoe UI", "Ubuntu", sans-serif;
    margin: 0;
    color: #CCC;
    background-color: #030F2B;
    font-size: 16px;
}

a {
    color: white;
}

.center-bound {
    display: flex;
    justify-content: center;
    position: relative;
}

.center-bound > * {
    max-width: 1000px;
    width: 100%;
    box-sizing: border-box;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    font-style: normal;
    margin: 0 0 50px;
}

header {
    display: flex;
    font-family: "Archive", sans-serif;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

header img {
    height: 62px;
}

header ul {
    display: flex;
    margin-right: 20px;
}

header ul li {
    margin: 0 25px;
    list-style: none;
}

.splash-banner {
    font-family: "Archive", sans-serif;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 100px;
    font-weight: normal;
}

.splash-banner h1 {
    font-size: 3.5rem;
    margin: 0 100px 0 0;
    min-width: 100px;
}

.splash-banner img {
    width: 300px;
}

.parallax-banner {
    height: 700px;
    overflow: hidden;
}

.parallax-banner img {
    width: 100vw;
}

section {
    display: flex;
    flex-direction: row;
    align-items: start;
    padding: 50px 100px;
}

section img {
    margin-top: 30px;
    margin-left: 30px;
    width: 200px;
    height: auto;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 4rem;
}

section ul {
    padding-left: 20px;
}

section ul li {
    margin-bottom: 15px;
}

section ul.grid-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style-type: none;
}

section ul.grid-list li {
    box-sizing: border-box;
    padding: 15px;
}

.calendly-inline-widget {
    width: 1000px;
    height: 700px;
    margin: 0 auto;
    margin-bottom: 100px
}

@media (max-width: 800px) {
    header {
        flex-direction: column;
    }


    .splash-banner {
        flex-direction: row;
        padding: 10vw;
    }

    .splash-banner h1 {
        font-size: 2.5rem;
        margin: 0;
    }

    .splash-banner img {
        width: 120px;
    }


    .parallax-banner {
        height: 250px;
    }

    .parallax-banner img {
        width: 100vw;
    }

    section {
        padding: 10vw;
    }

    section img {
        display: none;
    }

    section ul.grid-list {
        display: flex;
        flex-direction: column;
        grid-template-columns: unset;
        padding: unset;
    }

    .calendly-inline-widget {
        width: 100vw;
        height: 90vh;
        margin: 0;
    }

}