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

:root {
    --page-width: 100vw;
    --primary: #00205b;
    --secondary: #bf0d3e;
    --accent: #1d3f77;
    --dark-accent: #0e3d89;
    --light-accent: #d3295e;
    --text: #4d4d4d;
    --text-accent: #151d28;

    --red: #DB0007;
    --yellow: #FFBC0D;
    --dark-red: #8F0F13;
    --gray: rgba(0, 32, 91, 0.10);
    --light-gray: #F4F4F4;
    --radius: 20px;
    font-size: 16px;
    --side-margin: calc((100vw - var(--page-width)) / -2);
    font-family: "Figtree", sans-serif;
    color: var(--text);
    overflow-x: clip;
    --header-height: 50px;
    --footer-height: 50px;
}

@media (min-width: 768px) {
     :root {
        --page-width: 750px;
    }
}

@media (min-width: 992px) {
     :root {
        --page-width: 970px;
    }
}

@media (max-width: 991px) {
     :root {
        --side-margin: 0px;
        --scrollbarWidth: auto !important;
    }
}

@media (min-width: 1201px) {
     :root {
        --page-width: 1170px;
    }
}


* {
    scroll-margin-top: var(--header-height);
}

body {
    color: var(--text);
    position: relative;
    max-width: 100%;
    overflow-x: inherit;
}

body,
header,
nav,
footer {
    font-family: inherit !important;
    font-size: inherit !important;
    /*^^ Overwrites mms_styles.css*/
}


/*--------------------------------------------------------
	H1 - H6
--------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    margin-bottom: .5em;
    padding: 0;
    font-weight: 400;
    line-height: 1em;
    color: #0f0f0f;
    font-family: "Sedan", serif;
}

h1 {
    font-size: 36px;
}

h1.title:empty {
    /*^^Hides the extra margin that is added on pages without a title*/
    display: none;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 20px;
}

p+h1,
p+h2,
p+h3,
p+h4 {
    margin-top: 1.25em;
}


/*--------------------------------------------------------
	LINKS
--------------------------------------------------------*/

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

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

.button-link,
#login-modal input[type="submit"],
.addl-text {
    color: #fff;
    border: none;
    text-transform: none;
    padding: .67em 1.75ch;
    display: block;
    width: fit-content;
    margin: 1.25em 0;
    transition: .125s background ease-in-out, .125s color ease-in-out;
    line-height: 1;
    text-decoration: none;
    background-color: var(--primary);
    border-radius: 0;
    white-space: nowrap;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.button-link.center {
    margin: 1.25em auto;
}

.button-link:first-child {
    margin-top: 0;
}

.button-link:last-child {
    margin-bottom: 0;
    padding: .67em 1.75ch;
}

#login-modal input[type="submit"] {
    margin: 0;
}

.button-link:is(:hover, :focus),
#login-modal input[type="submit"]:is(:hover, :focus) {
    background: var(--dark-accent);
    color: white;
    text-decoration: none;
}

.pink-btn {
    background: var(--secondary);
}
.pink-btn:is(:hover, :focus) {
    background: var(--light-accent);
}


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

.offscreen {
    position: absolute;
    left: -200vw;
}


/* Wrappers*/

.wrapper {
    /* .wrapper acts as a more symantic stand-in for <container><row><col-md-12></col-md-12></row></container> in sections of this build that don't require stacking columns  */
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    position: relative;
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
    width: calc(var(--page-width) - 30px);
    width: var(--page-width);
}

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

main:is(#homepage-main, #subpage-main) .full-width>.column {
    padding-left: 0;
    padding-right: 0;
}

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

.background-row {
    position: relative;
}

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

.background-row:not(#mycanvas .background-row)>.column {
    background: transparent !important;
    /* font-size: 25px;
    color: white;
    text-align: center;
    font-weight: bold; */
    max-width: 1200px;
    margin: auto;
    /* line-height: 1.3; */
}

.background-row:not(#mycanvas .background-row)>.column {
    /* Since element is extended past where the scrollbar is, extra padding is added to make sure it's content is not hidden under the scrollbar */
    padding-right: calc(15px + var(--scrollbarWidth));
}

#subpage-main:has(.background-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>.background-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .background-row:not(#mycanvas .background-row)>.column {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
    .full-width,
    .background-row {
        /* left: var(--side-margin);
        right: var(--side-margin);
        width: calc(100vw + var(--scrollbarWidth)); */
    }
}
@media (min-width: 992px) and (max-width: 1201px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1201px) {
    .container {
        width: 1170px;
    }
}


/* Lists */

.three-column-grid {
    display: grid;
    gap: 1rem 20px;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
}

ul.three-column-grid {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* Tables */

#subpage-main table {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 990px) {
    #subpage-main table {
        max-width: 100%;
    }
}

@media (max-width: 550px) {
    #subpage-main table {
        font-size: 15px;
        line-height: 1.25em;
    }
}

#subpage-main *+table {
    margin-top: 2em;
}

#subpage-main table+* {
    margin-top: 3em;
}

#subpage-main table caption {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

#subpage-main table tr {
    border-left: .35em solid white;
    border-right: .35em solid white;
}

#subpage-main table *+strong {
    margin-top: .75em;
}

#subpage-main table tbody>tr:nth-of-type(even) {
    background: #F6F6F6;
    border-left: .35em solid #F6F6F6;
    border-right: .35em solid #F6F6F6;
}


/*Feed items */

[class*="item"] img[src=""] {
    /* Don't display a broken image if no image has been added to a feed item */
    display: none;
}

main [class*="item"] br {
    /* Remove gaps in description text of feed items */
    /* <main> included in selector to prevent the inclusion of ...-items in the footer*/
    display: none;
}


/* Slideshow defaults */

.carousel {
    font-size: 20px;
}

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

.caption-text {
    font-size: 20px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.alt-text {
    font-size: 16px;
    font-weight: 400;
    color: initial;
    margin-bottom: 10px;
}


/*Responsive Nivo Slideshow*/

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


/*Nivo slideshow 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: "›";
}


/*Misc. Objects */

.script-row:not(#mycanvas .script-row) {
    /* Allows scripts to be added via the Grid Editor without displaying the padding, etc that would be included on the published page */
    display: none;
}

address {
    margin-bottom: unset;
    /*Overwrites Bootstrap style*/
}


/*--------------------------------------------------------
						Login Modal
--------------------------------------------------------*/

.modal-header {
    /*Applies to any modal on the site*/
    border: none;
}

.close,
.close:hover {
    opacity: 1;
}

.close svg.menu-trigger {
    width: 30px;
    height: 30px;
}

.close svg.menu-trigger line {
    stroke-width: 4px;
}

.close svg.menu-trigger .line-1 {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.close svg.menu-trigger .line-4 {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
}

.close svg.menu-trigger .line-2 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}

.close svg.menu-trigger .line-3 {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}

#login-modal .modal-dialog {
    max-width: 260px;
    font-size: 16px;
}

#login-modal h2 {
    font-size: 1.4em;
    text-transform: capitalize;
    letter-spacing: -0.4px;
}

#login-modal label {
    position: absolute;
    left: -200vw;
}

#login-modal input[name="Username"],
#login-modal input[name="Password"] {
    width: 100%;
    padding-left: .25em;
    padding-right: .25em;
    margin-bottom: 0.5em;
    height: 2em;
}

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


/* Header */

header.wrapper {
    padding-top: 1.5rem;
    padding-bottom: .85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 30px;
    top: 0;
    z-index: 10;
    background: white;
}
    @media (max-width: 380px) {
        header.wrapper {
            flex-direction: column;
            gap: 0.5rem 10px;
        }
    }


.logo-link img,
.logo-link svg {
    max-width: 100%;
    vertical-align: unset;
}

header>section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem 10px;
}
header .button-link {
    margin: 0;
    font-size: 16px;
    margin-top: -2px;
}




/* Search */

.searchbox {
    position: relative;
    --size: 17.5px;
    width: 240px;
    max-width: 45vw;
    display: inline-block;
    vertical-align: middle;
    color: var(--text);
    padding: 5px 1ch;
    border: 1px solid #CCCCCC;
    border-radius: 0px;
    height: 36px;
    transition: all .25s ease-in-out;
}
    @media (max-width: 767px) {
        header>section .searchbox {
            display: none;
        }
    }

.search-input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    width: 100%;
    padding: inherit;
    background: #fff;
}

.search-button {
    color: transparent;
    background-color: transparent;
    border: none;
    background-image: url(../images/search-new.svg.php?fc=00205b);
    position: absolute;
    right: 0;
    top: -1px;
    bottom: 0;
    width: 36px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    transition: .25s all ease-in-out;
}






/* Navigation */


nav:before {
    content: '';
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    background: var(--primary);
    position: absolute;
    z-index: -1;
}


#nav_menu {
    padding: 0;
}

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

#nav_menu>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    padding: 0;
    margin: 0;
    float: none;
}
#nav_menu>ul>li {
    border-left: 1px solid var(--accent);
    margin: 0;
    transition: .125s background ease-in-out;
}
#nav_menu>ul>li:first-child {
    border-left: 0px;
}

#nav_menu>ul>li>a {
    transition: background .125s ease-in-out;
    position: relative;
    font-weight: 400;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    text-transform: capitalize;
    padding: 0.7em 2.2ch;
}



#nav_menu>.nav>li>a:focus,
#nav_menu>.nav>li>a:hover {
    /* Overwrite BS defaults */
    background: var(--accent);
}

#nav_menu .nav .open>a,
#nav_menu .nav .open>a:focus,
#nav_menu .nav .open>a:hover {
    transition: .125s background ease-in-out;
    background-color: var(--primary);
    border: none;
}

#nav_menu .caret {
    margin-left: .5ch;
}

#nav_menu .dropdown-submenu .caret {
    bottom: unset;
    top: -1px;
}

#nav_menu .caret::after {
    /* content: url(../images/dropdown-arrow.svg); */
}

#nav_menu li:has(.caret) {
    /* Adjust width for absolutely positioned caret */
    padding-right: 0px;
}

#nav_menu .dropdown-menu {
    padding: 0;
    border: none;
    border-radius: 0;
    top: auto;
}
#nav_menu .dropdown-menu a {
    font-size: 16px;
    font-weight: 600;
    padding: .5em 1ch;
}

#nav_menu .dropdown-menu:is(.men-level-1, .men-level-2) {
    top: -7px;
    margin-left: 15px;
}

#nav_menu .dropdown-menu>li {
    position: relative;
}

#nav_menu .dropdown-menu>li>a:focus,
#nav_menu .dropdown-menu>li>a:hover {
    color: var(--red);
    background: transparent;
}

@media (max-width:990px) {
    #nav_menu {
        margin-bottom: 30px;
        display: block;
        /* Overwrite .collapse that hides desktop menu on smaller screens */
    }
    #nav_menu>.nav>li>a {
        font-size: 22px;
    }
}

@media (max-width:767px) {
    #nav_menu {
        margin-top: 0;
    }
}

@media (max-width:550px) {
    #nav_menu {
        margin-bottom: 18px;
    }
    #nav_menu>.nav>li>a {
        font-size: 14px;
    }
}


/* Site originally had no Mobile Navigation per design from outside designers, but this was abandoned by Ilana during Content Population */

#mobileMenuWrapper {
    position: fixed;
    background: var(--primary);
    border-right: 3px solid rgb(29, 63, 119);
    z-index: 100;
    top: 0;
    bottom: 0;
    left: -200vw;
    overflow-y: auto;
    overflow-x: hidden;
    width: 300px;
    transition: .125s left ease-in-out;
    box-shadow: 7px 0 5px rgba(0, 0, 0, 0.1);
}

#mobileMenuWrapper.open {
    left: 0;
}

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

button.mobileMenuTrigger {
    background: none;
    border: none;
    margin-left: auto;
    color: var(--primary);
}

.mobileMenuTrigger label {
    position: absolute;
    left: -200vw;
}

#mobile-menu {
    list-style: none;
    overflow-y: auto;
    overflow-x: visible;
    padding: 1em 0;
    color: #fff;
}
#mobileMenuWrapper #mobile-menu li {
    display: block;
    border-top: 1px solid var(--accent);
}
#mobileMenuWrapper #mobile-menu li.triggerClose {
    display: block;
    margin-left: auto;
    text-align: right;
    padding-right: 5px;
    border: 0px;
}

.triggerClose button {
    background: none;
    border: none;
    line-height: 1;
    font-size: 220%;
    margin-bottom: 0.5em;
}

.mDropdown {
    display: none;
}

.mDropdown.open {
    display: block;
    margin: 0;
    padding: 0;
}

#mobileMenuWrapper #mobile-menu a {
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 20px;
}

#mobile-menu .caret {
    margin-left: .5ch;
}

.mDropdown a {
    font-size: 16px;
}

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



#mobileMenuWrapper #mobile-menu li.menu-search {
    margin-bottom: 20px;
    padding: 0px 20px;
    border: 0px;
}
.menu-search .searchbox {
    width: 100%;
    max-width: 100%;
    border: 0px;
}
#mobileMenuWrapper #mobile-menu li.home-link {
    border-top: 0px;
}




/* Main */

main {
    --gap: 70px;
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

main>.row {
    position: relative;
    padding-block: var(--gap);
    /* padding-top: var(--gap); */
}

main:is(#subpage-main, #mms-main)>.row {
    padding-block: calc(var(--gap) / 4);
}

main:is(#subpage-main, #mms-main)>.row:first-child {
    padding-top: var(--gap);
}

main:is(#subpage-main, #mms-main)>.row:last-child {
    padding-bottom: var(--gap);
}

@media (max-width: 767px) {   
    main:is(#homepage-main, #subpage-main) > .row > .column:not(:first-child) {
        margin-top: var(--gap);
    }
}


@media (max-width: 767px) {
    main {
        --gap: 45px;
    }
}

@media (max-width: 550px) {
    main {
        --gap: 24px;
    }
}





/* Slideshow */

#slideshow-row {
    padding: 0;
}
#slideshow-row:not(#gm-canvas #slideshow-row) * {
    color: #fff;
}
#slideshow-row img {
    width: 100%;
    max-width: 100%;
}
.carousel-caption {
    position: absolute;
    z-index: 100;
    background: rgba(15, 15, 15, 0.75);
    left: auto;
    top: auto;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: left;
    text-shadow: none;
    margin: 0;
    padding: 17px 0px 20px;
}
@media (max-width: 767px) {
    .carousel-caption {
        position: relative;
    }
}

.caption-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;
}
#slideshow-row .caption-text {
    margin-bottom: 5px;
}
#slideshow-row .alt-text {
    margin-bottom: 0;
}
#slideshow-row .button-link {
    margin: 10px auto 0;
    font-size: 16px;
    padding: .4em 1.45ch .6em;
    background: var(--dark-accent);
}
#slideshow-row:not(#gm-canvas #slideshow-row) .button-link:hover,
#slideshow-row:not(#gm-canvas #slideshow-row) .button-link:focus {
    background: #fff;
    color: var(--dark-accent);
}

#slideshow-row .carousel-indicators {
    display: none;
}
#slideshow-row .carousel-control {
    display: block;
    text-indent: -9999px;
    line-height: 0;
    transition: .25s all ease-in;
    height: 50px;
    width: 50px;
    color: #fff;
    top: 0px;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    background: transparent;
    vertical-align: middle;
    text-align: center;
    border-radius: 0px;
    border: 0px;
}
#slideshow-row .carousel-control.left {
    left: 0;
    padding-right: 0;
    margin-left: 7px;
    width: 0;
    height: 0;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-left: 35px solid var(--primary);
}
#slideshow-row .carousel-control.left:hover {
    border-left: 35px solid var(--dark-accent);
}
#slideshow-row .carousel-control.right {
    right: 0;
    padding-left: 0px;
    margin-right: 22px;
    width: 0;
    height: 0;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-right: 35px solid var(--primary);
}
#slideshow-row .carousel-control.right:hover {
    border-right: 35px solid var(--dark-accent);
}
#slideshow-row .carousel-control:after {
    width: 15px;
    height: 22px;
    display: block;
    text-indent: 0;
    position: relative;
}
#slideshow-row .carousel-control.left:after {
    content: url(../images/prev-btn.png);
    top: -10px;
    left: -30px;
}
#slideshow-row .carousel-control.right:after {
    content: url(../images/next-btn.png);
    top: -10px;
    left: 15px;
}
    @media (max-width: 991px) {
        #slideshow-row .carousel-control.left {
            margin-left: 0px;
        }
        #slideshow-row .carousel-control.right {
            margin-right: 0px;
        }
    }
    @media (max-width: 767px) {
        #slideshow-row .carousel-control.left,
        #slideshow-row .carousel-control.right {
            bottom: 60%;
            width: 35px;
            height: 35px;
        }
    }





/* Welcome - Join */
#join-section-wrap .button-link.pink-btn {
    display: block;
    width: 100%;
    padding: .78em 1.75ch;
}







/* Upcoming Events */
#events-section-outer-wrap:not(#gm-canvas #events-section-outer-wrap) {
    padding-top: 20px;
    padding-bottom: 20px;
}
#events-section-wrap:not(#gm-canvas #events-section-wrap) {
    position: relative;
}
#events-section-wrap:not(#gm-canvas #events-section-wrap):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: rgba(21, 29, 40, 0.80);
    z-index: -1;
}
.events-inner-wrap:not(#mycanvas .events-inner-wrap) h2 {
    color: #fff;
    margin-bottom: 1.2em;
}
#events-section-wrap:not(#gm-canvas #events-section-wrap) > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: -2;
    max-width: 100%;
    background-position: top;
    background-size: cover;
    object-fit: cover;
    object-position: top;
}
#events-section-wrap:not(#gm-canvas #events-section-wrap) .events-inner-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.3rem 30px;
    position: relative;
    z-index: 2;
    padding-top: 4.5em;
    padding-bottom: 4.5em;
}
    @media (max-width: 767px) {
        #events-section-wrap:not(#gm-canvas #events-section-wrap) .events-inner-wrap {
            grid-template-columns: repeat(1, 1fr);
        }
    }

.events-inner-wrap:not(#mycanvas .events-inner-wrap) h2, .events-inner-wrap:not(#mycanvas .events-inner-wrap) .btn-wrap {
    grid-column: 1 / -1;
}
.events-item {
    background: #FFFFFF;
    border-radius: 0px;
    margin-bottom: 20px;
    border: 1px solid #F2F2F2;
    padding: 24px 20px;
}
.events-item date img {
    margin-top: -3px;
}
.events-item date span {
    padding-left: 10px;
}
.events-item h3 {
    font-size: 17px;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    line-height: 1.3em;
    margin-top: 0.8em;
}
a.ev-title-link {
    color: #514653;
}
a.ev-title-link:hover,
a.ev-title-link:focus {
    color: var(--text-accent);
}
#events-section-wrap .button-link {
    background: var(--dark-accent);
}
#events-section-wrap .button-link:hover,
#events-section-wrap .button-link:focus {
    background: #fff;
    color: var(--dark-accent);
}







/* Recent News */
.news-item date img {
    margin-top: -3px;
}
.news-item date span {
    padding-left: 10px;
}
.news-item {
    border-bottom: 1px solid rgba(0, 32, 91, 0.12);
    padding-top: 20px;
    padding-bottom: 15px;
}
#news-section-wrap .news-item:nth-last-child(2) {
    border: 0;
}
.news-item h3 {
    font-size: 20px;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    margin-top: 0.35em;
    line-height: 1.3em;
}
a.news-title-link {
    color: #4d4d4d;
}
a.news-title-link:hover,
a.news-title-link:focus {
    color: var(--text-accent);
}




@media (max-width: 767px) {
    #fb-section-wrap {
        padding-top: 2em;
        padding-bottom: 2em;
    }
}




/* Sponsors Slideshow */
#sponsor-slideshow:not(#gm-canvas #sponsor-slideshow) {
    position: relative;
}
#sponsor-slideshow:not(#gm-canvas #sponsor-slideshow):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background: rgba(0, 32, 91, 0.10);
    z-index: -1;
}
#sponsor-slideshow .item {
    margin-top: 20px;
    margin-bottom: 30px;
}
#sponsor-slideshow .carousel-indicators {
    bottom: 0;
    margin-bottom: 0;
}
#sponsor-slideshow .carousel-indicators li,
#sponsor-slideshow .carousel-indicators li.active {
    margin: 0 2px auto;
    width: 10px;
    height: 10px;
}


@media (max-width: 990px) {
    #sponsor-slideshow:not(#gm-canvas #sponsor-slideshow) .col-sm-2 img {
        margin-bottom: 1em;
    }
}

@media (min-width: 568px) and (max-width: 990px) {
    #sponsor-slideshow:not(#gm-canvas #sponsor-slideshow) .col-sm-2 {
        width: 33.333%;
        display: inline-block;
    }
}

@media (min-width: 420px) and (max-width: 567px) {
    #sponsor-slideshow:not(#gm-canvas #sponsor-slideshow) .col-sm-2 {
        width: 50%;
        display: inline-block;
    }
}












/* Quicklinks */
#quicklinks-section-wrap h6 {
    margin-bottom: 10px;
    font-family: "Figtree", sans-serif;
    font-weight: 700;
}
#quicklinks-section-wrap ul {
    display: flex;
    position: relative;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    list-style-type: none;
    gap: 0.85em 2em;
    line-height: 1;
    flex-direction: column;
}

    @media (max-width: 767px) {
        main:is(#homepage-main, #subpage-main) > .row#quicklinks-section-wrap .column {
            margin-top: 0px;
        }
        #quicklinks-section-wrap ul {
        margin-bottom: 2em;
    }
    }

    @media (max-width: 580px) {
        #quicklinks-section-wrap ul {
            flex-direction: column;
        }

    }








/* Footer */

footer {
    position: relative;
    color: #fff;
    padding: 3.5rem 15px 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 30px;
    font-size: inherit;
    font-family: inherit;
    margin-top: 0px;
    text-align: center;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    z-index: -1;
    background: var(--primary);
}
footer * {
    color: #fff;
}
footer p {
    line-height: 1.6em;
}
footer a {
    text-decoration: none;
    transition: all 0.2s ease;
}
footer a:hover,
footer a:focus {
    color: #fff;
}


.social-list {
    display: flex;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    list-style-type: none;
    gap: 0.5em;
    justify-content: flex-end;
    line-height: 1;
}

.social-list svg {
    width: 36px;
    height: 36px;
    transition: .125s background ease-in-out, .125s border-color ease-in-out;
    color: white;
    vertical-align: unset;
}

.social-list svg:hover rect,
.social-list svg:focus rect {
    opacity: 0.5;
}



.footer-menu-links ul {
    display: flex;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 20px 0;
    margin: 0;
    list-style-type: none;
    gap: 1.5em 2em;
    justify-content: center;
    line-height: 1;
    flex-wrap: wrap;
}
    @media (max-width: 767px) {
        .footer-menu-links ul {
            /*flex-direction: column;*/
        }
    }



/*--------------------------------------------------------
						Subpage Styles
--------------------------------------------------------*/

/* sub-menu for use on long pages with anchor link menus */
.page-menu {
    padding: 25px;
    background-color: var(--primary);
    margin-bottom: var(--gap);
}

.page-menu p {
    margin-bottom: 0;
}

.page-menu p:not(:first-of-type) a {
    border-top: 1px solid var(--accent);
}

.page-menu a {
    color: white;
}

.page-menu a:not(#gm-canvas a) {
    display: inline-block;
    margin-bottom: 0;
    padding: 8px 20px;
    width: 100%;
    text-decoration: none;
    font-weight: 500;
    text-transform: capitalize;
}

/* image square collage */

.square-collage:not(#gm-canvas .square-collage) {
    display: flex;
    justify-content: center;
    gap: 10px
}

.square-collage:not(#gm-canvas .square-collage) .column {
    width: fit-content;
    padding: 0;
}

.square-collage:not(#gm-canvas .square-collage) .column:first-of-type {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.square-collage .column:first-of-type img {
    height: 100% !important;
    width: auto !important;
    object-fit: cover;
}

/* award recipients page */

.portrait-row img {
    width: 250px !important;
    height: 270px !important;
    object-fit: cover;
}



/*--------------------------------------------------------
						MMS Styling
--------------------------------------------------------*/

#mms-main *[face] {
    font-family: inherit;
    font-size: inherit;
}

#mms-main *[style*="erdana"],
#mms-main *[font-family*="erdana"],

/*^^Targets both elements with Verdana and verdana spec'd*/

#mms-main div,
#mms-main span:not([class^="fa"]),

/*Allows the Font Awesome icons in the Grid Editor to show*/

#mms-main td,
#mms-main tr,
#mms-main table,
#mms-main input,
#mms-main textarea,
#mms-main label
/*^^Styles are meant to overwrite the MMS styles that set everything to Verdana*/

{
    font-family: inherit !important;
}


/*-----------Grid Page Editor-------------*/

#mycanvas a {
    text-decoration: none;
}

#mycanvas a::before {
    position: initial;
    bottom: initial;
    left: initial;
    right: initial;
    background: initial;
    height: initial;
    transition: initial;
    display: initial;
    z-index: initial;
}