/* Reset */


*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html, body {
    height: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

#root, #__next {
    isolation: isolate;
}



/* Misc */


* {
    padding: 0rem;
    color: #2B3D46;
}

html {
    overflow-x: hidden;
}


/* Layout */


.main_container {
    position: relative;
    max-width: 48rem;
    margin: 3rem 1.5rem;
}

.about_intro, .contact_intro {
    margin-bottom: 3rem;
    gap: 3rem 3rem;
}

.contact_intro {
    align-items: center;
}

.contact_image {
    margin-bottom: 4rem;
}

.dividerline {
    border: none;
    height: 0.03125rem;
    

    /* Set the hr color */


    color: #2B3D46;  

    /* old IE */


    background-color: #2B3D46;  

    /* Modern Browsers */


    margin-bottom: 3rem;
}

.fourcards {
    margin-top: 3rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 1.5rem;
}

.fourcards img {
    width: 34.5rem;
}

.logo_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 3rem;
    gap: 1.5rem 1.5rem;
}

iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
}



/* Typography */





body {
    font-family: futura-pt, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.25rem; 

    /* 125% */


}

p {
    font-size: 1.25rem;
    line-height: 125%;
    margin-bottom: 1.5rem;
}




a {
    color: #2B3D46;
    text-underline-offset: 0.25em;
}

.subheader {
    margin-bottom: 3rem;
}

.caption_text {
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: solid #2B3D46 0.03125rem;
    font-weight: 500;
}

.centered_text {
    text-align: center;
}



/* Light/Type@36 */
.Type36 {
    font-size: 2.25rem;
    line-height: 2.75rem;
}



/* Light/Type@27 */
.Type27 {
    font-size: 1.6875rem;
    line-height: 2rem;
}



/* Light/Type@21 */
.Type21 {
    font-size: 1.3125rem;
    line-height: 1.75rem;
}



/* Light/Type@16 */
.Type16 {
    font-size: 1rem;
}

.poemtext {
    margin-bottom: 0;
    line-height: 2rem;
}

.entry_title {
    color: #D53927;
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 0;
}

.entry_date {
    font-weight: 500;
    font-style: normal;
}

.boldoblique {
    font-weight: 700;
    font-style: italic;
}

.oblique {
    font-style: italic;
}



/* Nav */

nav li {
    margin-bottom: 1.5rem;
}

nav a {
    list-style-type: none;
    list-style: none;
    text-decoration: none;
    text-transform: uppercase;
}

nav a:hover {
    text-decoration: underline;
    text-underline-offset: 0.25em;
}

a.active_link {
    font-weight: 700;
    font-style: normal;
}

a.active_link:hover {
    text-decoration: none;
}



/* Footer */


footer {
    background: #2B3D46;
    display: flex;
}

footer a {
    margin-bottom: 0rem;
}

footer .footer_container {
    padding: 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1.5rem 1.5rem;
}



/* Layout */


._5colimage {
    max-width: 27rem;
    margin-bottom: 3rem;
}

._6colimage {
    

    /* max-width: 34.5rem; */


    margin-bottom: 1rem;
}

.generic_flex_container {
    margin-bottom: 3rem;
}



/* Media Q */





/* Tablet */


@media (min-width: 48rem) {

	p {
	font-size: 1rem;
    margin-bottom: 1.5rem;
}

    .main_container {
        position: relative;
        max-width: 45rem;
        margin: 3rem auto;
    }

    footer .footer_container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        align-content: center;
        flex-wrap: wrap;
        max-width: 45rem;
        width: 100%;
        height: 20%;
        margin: 3rem auto;
    }
}



/* Desktop */


@media (min-width: 75rem) {
    .main_container {
        position: relative;
        max-width: 70.5rem;
        margin: 10rem auto;
    }

    header nav {
        border-bottom: 0.03125rem solid #2B3D46;
        margin-bottom: 3rem;
        background: white;
        max-width: 70.5rem;
        margin: 0 auto;
        padding-top: 3rem;
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    header nav ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        align-content: center;
        flex-wrap: wrap;
        width: 100%;
        height: 20%;
    }

    .generic_flex_container {
        display: flex;
        gap: 1.5rem 1.5rem;
        width: 70.5rem;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .video_container, .centered_container {
        justify-content: center;
        margin-bottom: 3rem;
    }

    ._8col_container {
        width: 46.5rem;
    }

    ._7col_container {
        width: 40.5rem;
    }

    ._6col_container {
        width: 34.5rem;
    }

    ._5col_container {
        width: 28.5rem;
    }

    ._4col_container {
        width: 22.5rem;
    }

    ._3col_container {
        width: 16.5rem;
    }

    .contact_intro {
        align-items: center;
    }

    ._5_6_gap_container {
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    ._8colimage {
        width: 46.5rem;
        margin-bottom: 0rem;
    }

    ._6colimage {
        min-width: 34.5rem;
        margin-bottom: 0rem;
    }

    ._5colimage {
        min-width: 28.5rem;
        margin-bottom: 0rem;
    }

    ._4colimage {
        min-width: 22.5rem;
        margin-bottom: 0rem;
    }

    ._3colimage {
        min-width: 16.5rem;
        margin-bottom: 0rem;
    }

   ._8coltext {
        width: 46.5rem;
    }

    ._6coltext {
        width: 34.5rem;
    }

    ._5coltext {
        width: 28.5rem;
    }

    ._4coltext {
        width: 22.5rem;
    }

    ._3coltext {
        width: 16.5rem;
    }

    ._2coltext {
        width: 10.5rem;
    }

    ._1coltext {
        width: 4.5rem;
    }
}
