<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*:before,
*:after {
    box-sizing: border-box;
}


/*
--------------------------------------------------------------------------
 Typography 
--------------------------------------------------------------------------
 */

 :root {
    font-size: 18px;
    font-family: 'Jost', sans-serif;
    overflow-x: hidden;
    --side-margin: 1rem;
    --text: #3b3d41;
    --blue: #0a2647;
    --light-blue: #2c74b3;
}

body {
    color: var(--text);
    position: relative;
    overflow: inherit;
}

body,
header,
footer,
main,
header nav {
    font-family: inherit !important;
    font-size: inherit !important;
    /* Prevent MMS pages with hard-coded fonts from overwriting this  */
}

p {
    margin: 0;
}

p:not(:last-child) {
    margin-bottom: .75em;
    color: inherit;
}

p+p {
    margin-top: .25em;
}

p:empty {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 .3em;
    padding: 0;
    font-weight: bold;
    color: var(--primary);
    line-height: 1;
}

h1:not(:first-child),
h2:not(:first-child),
h3:not(:first-child),
h4:not(:first-child),
h5:not(:first-child),
h6:not(:first-child) {
    margin-top: 1em;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 20px;
}

.subtitle {
    font-size: 1rem;
    font-weight: initial;
    display: block;
}


/*  Links -------------------

 */

a {
    color: var(--secondary);
    text-decoration: none;
    transition: .125s color ease-in-out;
}

a:hover,
a:focus {
    text-decoration: underline;
    color: var(--accent);
}

.button-link,
input[type="submit"]:not(#mms-main input),
.mobile-login button {
    /* :not exception needed to avoid messing with all sorts of different buttons in the MMS  */
    background: linear-gradient(111.02deg, #2c74b3, #144272);
    font-size: inherit;
    padding: .6em 2ch;
    padding: 1em 2.5ch;
    display: block;
    width: fit-content;
    color: white;
    border-radius: 0.5em;
    position: relative;
    border: none;
    text-align: center;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    transition: transform .125s ease-in-out;
    text-shadow: none;
    border: none;
}

.button-link.round {
    /* padding: 1em 2.5ch; */
    border-radius: 1.5em;
}

.button-link.hollow {
    background: transparent;
    outline: 2px solid currentColor;
}

#mycanvas .button-link.hollow {
    color: var(--blue);
}

.button-link:not(:last-child) {
    margin-bottom: 2em;
}

.button-link:not(:first-child) {
    margin-top: 1.5em;
}

.button-link:hover,
.button-link:focus {
    transform: scale(1.05);
    text-decoration: none;
    /* outline: none; */
    color: white;
}

header .button-link::after,
#welcome-row .button-link::after {
    content: '';
    background-image: url(../images/button-arrow.svg);
    display: inline-block;
    height: 1em;
    width: 1em;
    margin-left: 0.5ch;
    margin-bottom: -0.125em;
}

.links-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.5em 30px;
    justify-content: center;
}

#mms-main a {
    text-decoration: none;
}


/*
--------------------------------------------------------------------------
 Objects
--------------------------------------------------------------------------
 */

.all-caps {
    text-transform: uppercase;
}

.offscreen {
    /* This class allows an element to be read by a screenreader without appearing in the viewport  */
    position: absolute;
    left: -666vw;
}

.wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    position: relative;
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width:768px) {
    body {
        --side-margin: calc((100vw - 750px) / 2);
    }
    .wrapper {
        width: 750px;
    }
}

@media (min-width:991px) {
    body {
        --side-margin: calc((100vw - 956px) / 2);
    }
    .wrapper {
        width: 970px;
    }
}

@media (min-width:1200px) {
    body {
        --side-margin: calc((100vw - 1140px) / 2);
    }
    .wrapper {
        width: 1170px;
    }
}

.full-width {
    /* Make an element span the width of the viewport */
    position: relative;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    width: calc(100vw + 13px);
}

.img-responsive.full-width:not(#mycanvas img) {
    /* Make sure that when the system automatically adds the class .img-responsive that it doesn't break .full-width. This is not applied to images viewed on the Grid Editor page. */
    max-width: unset;
}

#gm-canvas .full-width {
    left: unset;
    right: unset;
    width: unset;
}

@media (min-width: 767px) {
    /*The following styles are meant to give more space to the label column in contact forms that are too narrow for the entire label to be read normally*/
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-2 {
        width: 25%;
        padding-right: 1em;
    }
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-10 {
        width: 75%;
        padding-left: 0;
    }
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-offset-2 {
        margin-left: 25%;
    }
    /*^^Adjusts the form-group placement of the reCAPTCHA iframe and submit buttom to match the new widths from the styles above*/
}

blockquote {
    font-size: inherit;
    border-left-color: var(--secondary);
}

blockquote p {
    font-size: 1.05em;
}


/*Styles below are taken from Bootstrap's table style to ensure that tables on content pages are responsive and neat whether Bootstrap classes are added or not. :not added to prevent styling Google Custom Search tables*/

#subpage-main table {
    max-width: 100%;
    border-collapse: collapse;
    color: #212529;
    margin-bottom: 1em;
    font-size: 16px;
    border-bottom: 1px solid #dee2e6;
    margin-top: 2em;
}

#subpage-main thead {
    font-weight: bold;
}

#subpage-main td,
#subpage-main th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    text-align: inherit;
}

#subpage-main thead th {
    vertical-align: bottom;
    border-top: none;
}

#subpage-main table caption {
    color: currentColor;
    text-align: left;
    font-size: 1.375em;
    font-weight: bold;
    padding: 0;
}

#subpage-main tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, .075);
}

@media (max-width: 767px) {
    #subpage-main table {
        font-size: 14px;
    }
    #subpage-main td:first-child,
    #subpage-main th:first-child {
        padding-left: 5px;
    }
    #subpage-main td:last-child,
    #subpage-main th:last-child {
        padding-right: 5px;
    }
}

@media (max-width: 500px) {
    #subpage-main td,
    #subpage-main th {
        padding: 5px 2px;
    }
}

grammarly-btn {
    display: none;
    /*If someone copy/pastes text from Grammarly it will add this invisible button and cause the page to scroll horizontally. This style hides that.*/
}

.ui-widget {
    /* Part of some pages in the MMS, this style tells it not to overwrite the font with Verdana */
    font-family: revert;
}

.row-background:not(#mycanvas .row-background) {
    position: relative;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 15px;
}

.row-background:not(#mycanvas .row-background)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: var(--background);
}

@media (min-width: 992px) {
    .row-background:not(#mycanvas .row-background)&gt;.col-md-9 {
        width: calc(75% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-8 {
        width: calc(66.7% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-7 {
        width: calc(58.3% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-6 {
        width: calc(50% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-5 {
        width: calc(41.7% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-4 {
        width: calc(33.3% - 20px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-3 {
        width: calc(25% - 20px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-2 {
        width: calc(20% - 20px);
    }
}

@media (max-width: 990px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
    .full-width {
        --side-margin: -15px;
        left: var(--side-margin);
        right: var(--side-margin);
        width: calc(100vw + 30px);
    }
    .row-background:not(#mycanvas .row-background) {
        padding-right: 15px;
    }
    .row-background::before {
        left: 0;
        right: 0;
    }
}

@media (max-width: 767px) {
    .row-background {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}


/* Feed items */

.feed-item {
    padding: .25rem 20px;
    border-radius: 5px;
}

.feed-item h3 {
    font-size: 1.1rem;
}

.feed-item *:not(:last-child) {
    margin-bottom: .5rem;
}


/* Slideshows defaults */

.carousel {
    font-size: 20px;
}

.carousel-control.left,
.carousel-control.right {
    display: none;
}


/*--end slideshow-defaults---------*/


/*----------Responsive Nivo*/

div[id^=slider-container-FD],
div[id^=slider_FD],
.nivoSlider img {
    max-width: 100% !important;
    height: auto !important;
}


/*----------Nivo Controls*/

.nivo-prevNav,
.nivo-nextNav {
    background-image: none !important;
    width: 25px !important;
    top: 25% !important;
    /*Fallback for browsers that don't support calc*/
    top: calc( 50% - 50px) !important;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 75px;
    font-family: Arial, sans-serif;
    text-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
}

.nivo-prevNav:hover,
.nivo-nextNav:hover {
    text-decoration: none;
    color: #ae0e0d;
    text-shadow: none;
}

.nivo-prevNav {
    left: 10px !important;
}

.nivo-nextNav {
    right: 10px !important;
}

.nivo-prevNav:after {
    content: "â€¹";
}

.nivo-nextNav:after {
    content: "â€º";
}


/*  Modals ---------------------------------
    ----------------------------------------
 */

.modal-open .modal {
    display: flex;
}

.modal-dialog {
    max-width: 100%;
    font-size: 16px;
    margin: auto;
    width: 300px;
}

.modal-content {
    margin-top: 20px;
    border-radius: 0;
}

.modal-header,
.modal-body {
    padding: .5rem 1rem;
}

.modal-header .close {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.modal h2 {
    font-size: 24px;
    margin-top: 0;
}

.modal input[name="Username"],
.modal input[name="Password"] {
    width: 100%;
    padding-left: .25em;
    padding-right: .25em;
    margin-bottom: 0.5em;
    height: 2em;
    border: 1px solid rgba(68, 68, 68, .5);
}

.modal a {
    display: block;
    margin-bottom: .5em;
}


/*  Mobile Header Nav ----------------------
    ----------------------------------------
 */

@media (max-width: 990px) {
    #nav_menu {
        display: none !important;
    }
}

.mobileMenuTrigger label {
    display: none;
}

.menu-trigger {
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 30px;
    padding: 5px;
}

.menu-trigger:hover,
.menu-trigger:focus {
    color: var(--secondary);
}


/* Stuff that wasn't filed right */


/*  Mobile Menu-----------------------------
    ----------------------------------------
 */

#mobileMenuWrapper {
    position: fixed;
    background: white;
    top: 0;
    bottom: 0;
    z-index: 50;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 300px;
    box-shadow: 0 3px 14px -2px rgba(0, 0, 0, 0.4);
    box-shadow: 7px 0 5px rgba(0, 0, 0, 0.1);
    transition: left .125s ease-in-out;
    background-color: white;
}

#mobileMenuWrapper.open {
    left: 0;
}

#mobile-menu {
    list-style: none;
    overflow-y: auto;
    overflow-x: visible;
    padding: 1em 1.5em;
}

#mobileMenuWrapper li {
    display: block;
    margin-bottom: .7rem;
}

#mobileMenuWrapper&gt;ul&gt;li:last-child {
    margin-top: 2rem;
}


/* #mobileMenuWrapper #mobile-menu a {
    display: block;
    width: 100%;
    margin-bottom: .75em;
} */

#mobileMenuWrapper a {
    background-color: transparent;
    text-decoration: none;
    color: var(--blue);
}

#mobileMenuWrapper .mDropdown {
    display: none;
    list-style: none;
    padding: 0;
    background: none;
    border-top: 1px solid var(--blue);
    border-bottom: 1px solid var(--blue);
    padding-top: 0.75em;
    margin-bottom: 0.75em;
}

#mobileMenuWrapper .mDropdown.open {
    display: block;
}

.mDropdown&gt;li&gt;a {
    padding: 0;
}

#mobile-menu button {
    border: none;
}

.triggerClose {
    text-align: right;
}

.triggerClose button {
    border: none;
    font-size: 1.5rem;
    padding: 0;
    line-height: 1;
    font-weight: bold;
    background: transparent;
}


/*
--------------------------------------------------------------------------
 Main
--------------------------------------------------------------------------
 */

main {
    min-height: calc(100vh - 118px - 143px);
    position: relative;
}

.row {
    position: relative;
}

#homepage-main h2 {
    font-size: 44px;
}

@media (min-width: 767px) {
    #subpage-main .row,
    #homepage-main .row {
        /*These two styles can be tweaked if needed, but they are a handy default for spacing rows (and then columns once the screen hits the col-xs breakpoint on subpages*/
        /* margin-bottom: 2.5em; */
    }
    div[class^="col"]+.col-md-12 {
        margin-top: 2em;
    }
}


/* @media(max-width: 1200px) {
    #homepage-main article&gt;section,
    #subpage-main {
        padding: 3.5em 0;
    }
}

@media(max-width: 990px) {
    #homepage-main article&gt;section,
    #subpage-main {
        padding: 2.5em 0;
    }
    .col-md-6.col-sm-12+.col-sm-12 {
        margin-top: 30px;
    }
}

@media (max-width: 900px) {
    #subpage-main:not(.full-background),
    #mms-main {
        margin-bottom: 2em;
    }
    main div[id^="section-"] {
        padding: 3.5em 0;
    }
} */

@media (max-width: 767px) {
    /* #homepage-main article&gt;section,
    #subpage-main {
        padding: 1.5em 0;
    } */
    #subpage-main [class*="col-md"]+[class*="col-md"] {
        margin-top: 1rem;
    }
    #subpage-main div[class^="col-md"],
    #homepage-main div[class^="col-md"] {
        margin-bottom: 1em;
    }
    /* #homepage-main article&gt;section {
        padding: 3em 0;
    } */
}


/* @media (max-width: 450px) {
    #homepage-main article&gt;section {
        padding: 2em 0;
    }
} */


/*--------------------------------------------------------
    Header
--------------------------------------------------------*/

body&gt;header.wrapper {
    left: var(--side-margin);
    right: var(--side-margin);
    left: 0;
    right: 0;
    position: fixed;
    z-index: 3;
    transition: .125s transform ease-in-out;
}

body&gt;header.wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((var(--side-margin) * -1) - 15px);
    right: calc(var(--side-margin) * -1);
    background: white;
    z-index: -1;
    opacity: 0;
    transition: .125s opacity ease-in-out;
}

body:not(#homepage-body)&gt;header.wrapper::before {
    background: var(--blue);
    opacity: 1;
    transition: .125s background ease-in-out;
}

header&gt;section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem 30px;
    flex-wrap: wrap;
    color: white;
    position: relative;
    padding: .75rem 0;
}

header&gt;section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((var(--side-margin) * -1) - 15px);
    right: calc(var(--side-margin) * -1);
    background: hsla(0, 0%, 100%, .1);
}

header&gt;section::after {
    content: '';
    position: absolute;
    left: calc((var(--side-margin) * -1) - 15px);
    right: calc(var(--side-margin) * -1);
    background: hsla(0, 0%, 100%, .1);
    bottom: unset;
    height: 250px;
    border-radius: 50%;
    top: -150px;
    right: calc((var(--side-margin) * -1) + 30px);
    right: calc(var(--side-margin) * -1);
    background: #425B76;
    z-index: -1;
    transform: scale(1.8);
    left: -15px;
    right: -15px;
}

header&gt;section&gt;ul {
    display: flex;
    gap: .5rem 30px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 1;
}

#homepage-body header&gt;section a {
    color: white;
    text-decoration: underline;
}

#homepage-body header&gt;section .button-link {
    padding: .6em 2ch;
}

header nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem 30px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

header nav img {
    max-width: 100%;
    display: block;
    width: 170px;
    transition: .125s width ease-in-out;
}

body&gt;header.scrolled&gt;section {
    display: none;
}

body&gt;header.scrolled::before {
    opacity: 1;
    box-shadow: 0 8px 16px rgba(10, 38, 71, .05), 0 4px 8px rgba(10, 38, 71, .05);
}

body:not(#homepage-body)&gt;header.scrolled::before {
    background: white;
}

@media (max-width: 990px) {
    header.scrolled nav img {
        width: 200px;
    }
    header&gt;section&gt;div,
    header&gt;section&gt;ul {
        display: none;
    }
}


/* Desktop menu  */

#nav_menu {
    padding: 1em 0;
    position: relative;
    z-index: 1;
    width: 730px;
    max-width: 100%;
}

#nav_menu&gt;ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

#nav_menu&gt;ul::before,
#nav_menu&gt;ul::after {
    content: none;
}

#nav_menu li {
    position: relative;
}

#nav_menu&gt;ul&gt;li&gt;a {
    transition: .125s color ease-in-out;
    position: relative;
    padding: 5px;
    text-transform: capitalize;
    color: var(--blue);
    color: white;
}

#homepage-body #nav_menu&gt;ul&gt;li&gt;a {}

#nav_menu&gt;ul&gt;li&gt;a::before {
    content: '';
    background: linear-gradient(111.02deg, #2c74b3, #144272);
    top: calc(100% + 0.5em);
    height: 0;
    left: 50%;
    right: 50%;
    display: block;
    position: absolute;
    transition: .125s left ease-in-out, .125s right ease-in-out, .125s height ease-in-out;
}

.scrolled #nav_menu&gt;ul&gt;li&gt;a {
    color: var(--blue);
}

#nav_menu a {
    text-decoration: none;
    background: transparent;
    transition: .125s color ease-in-out;
    color: var(--text);
}

#nav_menu a:hover,
#nav_menu a:focus,
#nav_menu .nav .open&gt;a,
#nav_menu .nav .open&gt;a:focus,
#nav_menu .nav .open&gt;a:hover {
    background: transparent;
}

#nav_menu&gt;ul&gt;li&gt;a:hover::before,
#nav_menu&gt;ul&gt;li&gt;a:focus::before {
    left: 0;
    right: 0;
    height: 3px;
}

#nav_menu li.greyed a {
    opacity: .75;
}

#nav_menu .caret {
    margin-left: .5ch;
    /* Convert Bootstrap style into em's so carets scale with type */
    border-top: .2em dashed;
    border-right: .2em solid transparent;
    border-left: .2em solid transparent;
}

#nav_menu .dropdown-menu {
    /* Dropdown menu  */
    font-size: inherit;
    padding: 0.5em 0;
    border: none;
    border-radius: 0;
    top: 2rem;
    border-radius: 1em;
    max-height: 0;
    opacity: 0;
    transition: .125s max-height ease-in-out, .125s opacity ease-in-out;
    /* transition-delay: .125s; */
    display: block;
    overflow: hidden;
}

@media (min-width: 1201px) {
    #nav_menu .dropdown-menu {
        /* Dropdown menu  */
        min-width: 220px;
    }
}

#nav_menu .dropdown:hover .dropdown-menu {
    max-height: 100vh;
    opacity: 1;
}

#nav_menu .dropdown-menu a {
    text-decoration: none;
    transition: .125s color ease-in-out;
    padding: .5em 1ch;
    font-size: 16px;
    padding: 1em;
}

#nav_menu .dropdown-menu li+li a {
    border-top: 1px solid #eee;
}

#nav_menu .dropdown-menu a:hover,
#nav_menu .dropdown-menu a:focus {
    color: var(--blue);
}

#nav_menu .dropdown-menu:not(.men-level-):not(.men-level-0) {
    top: 0;
}

@media (max-width: 1200px) {
    #nav_menu&gt;ul {
        display: flex;
        justify-content: space-between;
    }
    #nav_menu&gt;ul&gt;li&gt;a,
    #nav_menu .dropdown-menu a {
        padding: .5em 1ch;
    }
}


/* Mobile menu trigger  */

.mobileMenuTrigger:not(.triggerClose) {
    border: 2px solid currentColor;
    padding: 2px;
    color: white;
    transition: color .125s ease-in-out;
    display: inline-flex;
    border-radius: 5px;
    background: transparent;
}

.scrolled .mobileMenuTrigger:not(.triggerClose) {
    color: var(--blue);
}

.mobileMenuTrigger:not(.triggerClose):hover,
.mobileMenuTrigger:not(.triggerClose):focus {
    color: var(--light-blue);
    outline: none;
}

.menu-trigger {
    width: 30px;
}

@media (min-width: 991px) {
    .mobileMenuTrigger:not(.triggerClose) {
        display: none;
    }
}


/*--------------------------------------------------------
    Main
--------------------------------------------------------*/

#subpage-main,
#mms-main {
    padding-top: 13rem;
    padding-bottom: 2rem;
    min-height: calc(100vh - 174px - 680px);
}

main:not(#mms-main) .row {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

#subpage-main:not(#mms-main) .row {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

main:not(#mms-main) #welcome-row {
    padding: 0;
}

@media (max-width: 990px) {
    main:not(#mms-main) .column+.column {
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    #homepage-main h2 {
        font-size: 32px;
    }
}


/* Welcome row  */

#homepage-main #welcome-row::after {
    content: '';
    position: absolute;
    background: #425B76;
    height: 250px;
    border-radius: 50%;
    z-index: 2;
    width: 100vw;
    left: 1vw;
    right: 0;
    top: calc(100vh - 85px);
}

#welcome-row figure {
    position: relative;
}

#welcome-row:not(#mycanvas .row) video {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
}

#welcome-row:not(#mycanvas .row) figcaption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20vh 16vw;
    color: white;
    text-align: center;
    z-index: 1;
}

#welcome-row:not(#mycanvas .row) figcaption::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    background: var(--blue);
    opacity: .5;
    z-index: -1;
}

#welcome-row h1 {
    font-size: 72px;
    color: inherit;
    line-height: 1.15;
}

#welcome-row .subtitle {
    margin-top: 1em;
}

@media (max-width: 900px) {
    #welcome-row:not(#mycanvas .row) figcaption {
        padding: 200px 30px;
        bottom: 0;
        top: unset;
    }
    #welcome-row:not(#mycanvas .row) figcaption::before {
        left: 0;
        right: 0;
    }
    #welcome-row h1 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    /* Adjust decorative circle position */
    header&gt;section::after {
        right: calc((var(--side-margin) + 15px) * -1);
    }
}

@media (max-width: 500px) {
    #welcome-row:not(#mycanvas .row) figcaption {
        padding: 100px 30px;
    }
}


/* Spacer Row */

main:not(#mms-main) #spacer-row {
    /* This row exists only because the row following the #welcome-row will extend itself behind #welcome-row to the top of the page. It has something to do with the video, but I can't figure it out */
    padding: 0;
    margin-bottom: -.5rem;
    font-size: 0;
    pointer-events: none;
}


/* Member Row */

#member-row {
    /* Cover up the elipse at the bottom of the #welcome-row */
    z-index: 2;
}

main:not(#mms-main) #member-row {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

#member-row:is(#homepage-main #member-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    background: linear-gradient(111.02deg, #2c74b3, #144272);
    z-index: -1;
    display: block;
}

#member-row:is(#homepage-main #member-row) .column {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem 30px;
}

#member-row:is(#homepage-main #member-row) h2 {
    color: white;
    margin: 0;
}

#member-row .big-button {
    color: #3b3d41;
    background: white;
    position: relative;
    padding-left: calc(3em + 15px);
    padding-right: calc(2em + 15px);
    text-align: left;
    margin: 0;
}

@media (min-width: 1199px) {
    #member-row .big-button {
        width: 438px;
    }
}

#member-row .big-button::before {
    content: '';
    background-image: url(../images/camps-us-logo2.png);
    background-size: cover;
    width: 2em;
    height: 2em;
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    left: 1em;
    margin-right: 1em;
    border-radius: 50%;
}

#member-row .big-button::after {
    content: '';
    background-image: url(../images/big-button-arrow.svg);
    background-size: cover;
    width: 1em;
    height: 1em;
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    right: 1em;
    top: calc(50% - 0.5em);
}

.big-button .highlight {
    color: #0a2647;
    display: block;
}

@media (max-width: 990px) {
    #member-row .all-caps {
        text-transform: unset;
        text-align: center;
    }
}

@media (max-width: 767px) {
    #member-row .big-button {
        padding: 1em 1.5ch;
    }
    #member-row .big-button::before,
    #member-row .big-button::after {
        content: none;
    }
    .big-button .highlight {
        display: inline;
    }
}


/* Card row */

.card-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
    gap: 1rem 30px;
}

.card-list&gt;li {
    background-image: url(../images/blue-background.webp);
    padding: 1em;
    border-radius: 1.25em;
    color: white;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 4em;
    position: relative;
}

.card-label {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
}

.card-label&gt;li:first-child,
.news-item p {
    background: linear-gradient(111.02deg, #2c74b3, #144272);
    padding: .2rem .4rem;
    width: max-content;
    color: white;
    font-weight: bold;
}

.card-list section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-list section h3,
.card-list section p {
    margin: 0;
}

.card-list section a {
    font-size: .8em;
    border: 2px solid white;
    border-radius: 8px;
    position: absolute;
    bottom: 1.5em;
    padding: 5px 10px;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .card-list section h3 {
        font-size: 26px;
    }
}


/* Events row */

#events-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    height: 20px;
    background: linear-gradient(111.02deg, #2c74b3, #144272);
    display: block;
}

#events-row:not(#mycanvas #events-row)&gt;.column {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(385px, 1fr));
    gap: 1rem 30px;
}

#events-row h2 {
    text-align: center;
}

.event-item {
    background: linear-gradient(111.02deg, #2c74b3, #144272);
    color: white;
    box-shadow: 0 16px 32px rgba(44, 116, 179, .2), 0 8px 16px rgba(44, 116, 179, .2);
    padding: 1rem 1.2rem;
    padding-right: calc(1.2rem + 1.2em);
    font-size: 16px;
    border-radius: 1em;
    position: relative;
    display: flex;
    gap: .5rem 1.2em;
}

.event-item:nth-of-type(3),
.event-item:nth-of-type(4),
.event-item:nth-of-type(7),
.event-item:nth-of-type(8) {
    background: var(--blue);
}

.event-item::after {
    content: '';
    background-image: url(../images/big-button-arrow-white.svg);
    background-size: cover;
    width: 1.2em;
    height: 1em;
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    right: 1em;
    top: calc(50% - 0.5em);
}

#events-row h2,
#events-row .button-link {
    grid-column: 1/-1;
}

.event-item img {
    width: 50px;
    max-width: 100%;
    display: block;
    height: auto;
    margin: auto 0;
}

.event-item img:not([src^="https"]):not([src^="http"]) {
    display: none;
}

.event-item h3 {
    font-size: 1rem;
    /* margin: 0; */
}

.event-item p {
    margin: 0;
}

.event-item a:not(#mycanvas a)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


/* News row */

main:not(#mms-main) #events-row+#news-row {
    padding-top: 0rem;
}

#news-row:not(#mycanvas #news-row)&gt;.column {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
    gap: 1rem 30px;
}

#news-row .row-intro {
    text-align: center;
    max-width: 100%;
    width: 550px;
    margin-left: auto;
    margin-right: auto;
    grid-column: 1/-1;
}

#news-row .row-intro::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(111.02deg, #2c74b3, #144272);
    display: block;
    margin: 1.5em auto;
}

#news-row h2 {
    color: var(--blue);
    margin-bottom: .75em;
}

#news-row .subtitle {
    font-size: 22px;
    margin-bottom: 1em;
    color: var(--text);
}

.news-item {
    box-shadow: 0 16px 32px rgba(10, 38, 71, .05), 0 8px 16px rgba(10, 38, 71, .05);
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    font-size: 16px;
}

.news-item img {
    width: 100%;
    transition: .125s transform ease-in-out;
}

.news-item:hover img,
.news-item:focus img {
    transform: scale(1.05);
}

.news-item div {
    padding: 1em 1.2em;
    padding-bottom: 3.5em;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .news-item p {
        font-size: 14px;
    }
}

.news-item h3 {
    font-size: 1rem;
    color: var(--blue);
    margin: 0;
}

.news-item a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.news-item time {
    position: absolute;
    bottom: 1em;
}

#news-row .button-link {
    color: var(--light-blue);
    grid-column: 1/-1;
    margin: 0 auto;
}

#events-row .button-link::after,
#news-row .button-link::after {
    content: ' &gt;';
}

#homepage-main #news-row .button-link {
    top: 3rem;
}


/*--------------------------------------------------------
    Footer
--------------------------------------------------------*/

footer {
    padding-top: 7rem;
    padding-bottom: 5rem;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    height: 20px;
    background: linear-gradient(111.02deg, #2c74b3, #144272);
    display: block;
}

footer ul {
    padding: 0;
    list-style: none;
    margin: 0;
    font-size: 16px;
}

footer&gt;ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 1rem 30px;
}

footer&gt;ul&gt;li&gt;ul&gt;li {
    /* Footer menu items */
    font-size: 18px;
}

footer&gt;ul&gt;li&gt;ul&gt;li+li {
    /* Footer menu items */
    margin-top: .75em;
}

footer&gt;ul:not(.social-list)&gt;li:first-child {
    grid-column: 1/3;
}

footer&gt;.social-list {
    display: flex;
    margin-top: 1rem;
}

footer h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--blue);
    font-weight: initial;
}

#footer-bottom {
    border-top: 1px solid #e3e6ec;
    padding-top: 30px;
    margin-top: 5rem;
    font-size: 16px;
    display: flex;
    gap: 1rem 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

#footer-bottom ul {
    display: flex;
    gap: .5rem 30px;
}

@media (max-width: 1200px) {
    footer&gt;ul:not(.social-list)&gt;li:first-child {
        grid-column: 1/-1;
        margin-bottom: 1rem;
    }
}


/*--------------------------------------------------------
    MMS Styles
--------------------------------------------------------*/


/* MMS Member Menu icons */

@media (min-width: 1200px) {
    .nav-tabs li.dropdown {
        width: 190px;
    }
}

@media (min-width: 990px) and (max-width: 1200px) {
    .nav-tabs li.dropdown {
        width: 155px;
    }
}

@media (min-width: 767px) and (max-width: 990px) {
    .nav-tabs li.dropdown {
        width: 120px;
    }
}</pre></body></html>