/* Apply a natural box layout model to all elements, but allowing components to change
Credit: Paul Irish
*/
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

/* Global Styles */
:root {
    --red: #eb4827;
    --yellow: #ddd413;
    --blue: #0387c8;
    --pink: #f5dbd9;
    --darkgreen: #264d3b;
    --brown: #936b3b;
    --black: #000;
    --white: #fff;
}

body {
    font-family: 'Raleway', sans-serif;
    letter-spacing: .015rem;
    font-size: 1.4rem;
    position: relative;
    margin: 0;
    font-weight: 400;
}

.background{
    width: 150%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
}

a {
    text-decoration: none;
    color: var(--black);
    border-bottom: 2px solid black;
    font-weight: 500;
    width: inherit;
}

h1, h2, h3, h4, h5 {
    line-height: 1.5em;
}

h1 {
    font-size: .8em;
    color: var(--darkgreen);
    margin: 0;
}

h2 {
    font-size: 1.55em;
    color: var(--darkgreen);
}

h3 {
    font-size: 1.25em;
    line-height: 1.6em;
    color: var(--brown);
}

h4 {
    font-size: 1.1em;
    margin: 0;
}

h5 {
    font-size: 1em;
    margin: 0;
}

p {
    margin: 1em 0 2em 0;
    line-height: 1.5em;
}

em {
    color: var(--yellow);
    font-style: normal;
}

.anchor {
}


/************************
 * Header Section Styling *
 ***********************/
header {
    display: flex;
    flex-direction: column;
    max-width: 80em;
    position: relative;
    z-index: 1;
    padding: 0;
    height: 12rem;
}

.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2em;
}

.logo-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.logo-container figure {
    padding: 0;
    margin: 0;
}

.logo {
    width: 25em;
    margin: 0;
}

.social-icons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 0 0 0 1em;
}

.social-icons a {
    font-size: 1.25em;
    padding: .5em .5em .25em .5em;
    border-bottom: none;
}

.social-icons a:hover {
    color: var(--yellow);
}



.fas.menu-icon, .fas.close-icon {
    display: none;
    color: var(--darkgreen);
}

.header-nav {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .95em;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header-nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    width: fit-content;
}

.nav-item {
    padding: .75em 2em .75em 0;
    margin: 0;
    font-size: .65em;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: black;
}


.nav-item:hover {
    color: var(--red);
    text-decoration: underline;
}

header a {
    border-bottom: none;
    width: fit-content;
    padding: 0;
}





/************************
 * Main Section Styling *
 ***********************/
main {
    white-space: nowrap;
    position: absolute;
    width: 100vw;
    height: calc(100vh - 12rem);
    overflow-y: hidden;
    margin-top: 12rem;
}

main a {
    border-bottom: 3px solid var(--yellow);
}

main a:hover {
    color: var(--blue);
    border-bottom: 3px solid var(--blue);
}

main a.no-link-style {
    border-bottom: none;
}

main > section {
    white-space: nowrap;
    display: inline-block;
    vertical-align: top;
    height: inherit;
    width: max-content;
    overflow-x: visible;
    margin-right: 10vw;
}

.col-container {
    height: inherit;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    white-space: normal;
    min-width: 80vw;
    padding: 0 2em;
}

.align-flexstart {
    display: flex;
    align-items: flex-start;
    width: fit-content;
}

.align-flexstart .col-align-offset {
    transform: translateY(-5.25rem);
}

.align-flexstart .col-align-offset-hfour {
    transform: translateY(-2rem);
}

.col {
    width: 100%;
    margin: 0 1em;
}

.col-text {
    padding: 0 2em 4em 2em;
    max-width: 32em;
}

.col-text-smallwidth {
    max-width: 28em;
    padding: 0 2em 4em 2em;
}

.col-text p {
    margin-bottom: 0;
}

.col-text-wide {
    max-width: 45em;
}

.col-img-h100, .col-img-center {
    max-width: unset;
    width: auto;
    height: 100%;
    display: flex;
}

.col img {
    height: 100%;
}

.col-img-h100 {
    height: 100%;
}

.col-img-h75 {
    height: 75%;
    padding: 0 5em;
    width: fit-content;
}

.col-img-h50 {
    height: 50%;
    margin-right: 20vw;
    padding: 0 5em;
    width: fit-content;
}

.col-img-h25 {
    height: 25%;
    padding: 0 5em;
    width: fit-content;
}

.col-img-center {
    margin: auto;
}

.col-img-padbottom {
    margin-bottom: 4em;
}

.col-nospace {
    margin-right: unset;
}

.col-space {
    margin-right: 20vw;
}

.col-halfspace {
    margin-right: 10vw;
}

.col-text-center {
    display: flex;
    flex-direction: column;
    height: 80vh;
}

.col-text-center div {
    margin: auto;
}

/************************
 * Hook Section Styling *
 ***********************/
#hook {
    padding-left: 2em;
}



/************************
 * Responsive Styling *
 ***********************/

@media screen and (max-width: 806px) {
    header {
        position: unset;
    }

    .fixed {
        position: fixed;
        top: 0;
        width: 100%;
        padding: .5em 2em;
        z-index: 1;
    }

    img.logo {
        width: 90%;
    }
    .logo-container {
        flex-direction: column;
    }

    .header-nav ul {
        flex-direction: column;
    }

    .header-nav {
        font-size: .95em;
        top: 25vh;
        left: 0;
    }

    header .header-nav .menu-icon {
        display: block;
        position: absolute;
        top: 2.5em;
        right: 1em;
        font-size: 1.25em;
    }

    header .main-nav.nav-open {
        position: absolute;
        width: 100vw;
        height: 100vh;
        top: 0;
        right: 0;
        z-index: 10;
        background-color: var(--darkgreen);
        padding: 3em 2em;
        color: white;
    }

    header .main-nav.nav-open ul {
        display: flex;
        top: unset;
        margin: 0;
    }

    .content-section {
        padding: 3em 2em 3em 7em;
        flex-direction: column;
    }

    .problem {
        padding-top: 8em;
    }
}

.anchor-tag {
    display: block;
    content: " ";
    visibility: hidden;
    margin-top: -12rem;
    height: 12rem;
    position: relative;
}

.anchor-tag span {
    position: absolute;
    top: -12rem;
    width: 98vw;
}