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

:root {
    --page-width: 100vw;
    --primary: #990000;
    --secondary: #0a2141;
    --accent: #14616C;

    /* Variations on this color scheme are created through code. Do not overwrite any of the color variations for primary, secondary and accent */
    --primary-dark: hsl(from var(--primary) h s calc(l* 0.75));
    --primary-medium: hsl(from var(--primary) h s calc(l* 1.5));
    --primary-light: hsl(from var(--primary) h s calc(l* 2.5));

    --secondary-dark: hsl(from var(--secondary) h s calc(l* 1));
    --secondary-medium: hsl(from var(--secondary) h s calc(l* 2.5));
    --secondary-light: hsl(from var(--secondary) h s calc(l* 4.5));

    --accent-light: hsl(from var(--accent) calc(h*2.5) calc(s* 2) calc(l + -5));

    --text: #000000;
    --gray: rgba(0, 0, 0, .6);
    --light-gray: #F4F4F4;
    --radius: 20px;
    font-size: 18px;
    --side-margin: calc((100vw - var(--page-width)) / -2);
    font-family: "Barlow", sans-serif;
    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 (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: 600;
    line-height: 1em;
    text-transform: none;
    color: var(--secondary);
    font-family: "Bitter", serif;
}

h1 {
    font-size: 40px;
}

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

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 22px;
}

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


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

a {
    color: inherit;
    text-decoration: none;
    transition: .125s color ease-in-out;
    border-bottom: 2px solid transparent;
}

a:is(:hover, :focus) {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid var(--primary);
    transition: .125s all ease-in-out;
}

.button-link {
    color: #fff;
    border: none;
    text-transform: capitalize;
    font-weight: 700;
    padding: .75em 2ch;
    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: 0px;
    white-space: nowrap;
    border: 0px;
}

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

.button-link:last-child {
    margin-bottom: 0;
}

.button-link:is(:hover, :focus) {
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    border: 0px;
}


/*--------------------------------------------------------
	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: calc(var(--side-margin) - var(--scrollbarWidth));
    width: 100vw;
}

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(min(275px, 100%), 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: 28px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.alt-text {
    font-size: 16px;
    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*/
}


/* 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;
}




/* Top Header */
#top-header {
    background: #545454;
    height: auto;
    padding: 10px 15px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 30px;
    color: #fff;
    font-weight: 500;
}
#top-header:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    z-index: -1;
    background: #545454;
}
#top-header ul {
    display: flex;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    list-style-type: none;
    gap: 1em;
    justify-content: flex-start;
    line-height: 1;
    text-transform: uppercase;
}
#top-header a:is(:hover, :focus) {
    color: #fff;
    border-bottom: 2px solid #fff;
}
ul.top-left-list {
    justify-content: flex-start;
}

ul.top-right-list {
    justify-content: flex-end;
}




/* Header */
header.wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 30px;
    top: 0;
    z-index: 10;
    background: white;
}
header > a > svg {
    vertical-align: middle;
}
a.logo-link {
    border: 0px;
}
.logo-link span {
    font-size: 30px;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
}
header>ul, header>ul ul {
    display: flex;
    justify-content: center;
    gap: 1rem 40px;
    float: none;
    margin: 0;
    align-items: center;
    list-style: none;
}


header>ul, header>ul ul a {
    font-weight: 500;
    font-size: 18px;
}





/* Navigation */

nav.wrapper {
    position: sticky;
    background: var(--primary);
    top: 0;
    display: block;
    z-index: 99;
}
nav.wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    background: var(--primary);
    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;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    /* Overwrite BS defaults */
    float: none;
    margin: 0;
    flex-wrap: wrap;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
}

#nav_menu a {
    color: #fff;
    text-decoration: none;
    transition: .125s all ease-in-out;
    border-bottom: 0px;
}

#nav_menu>.nav>li>a {
    font-size: 18px;
    font-weight: 700;
    padding: 25px 15px;
    position: relative;
    line-height: 1;
    text-transform: uppercase;
    border-bottom: 0px;
}
    @media (max-width: 1199px) {
        #nav_menu>.nav>li>a {
            font-size: 16px;
            padding: 25px 5px;
        }
    }



#nav_menu>.nav>li>a:focus,
#nav_menu>.nav>li>a:hover {
    /* Overwrite BS defaults */
    background: var(--primary-dark);
    border-bottom: 0px;
}

#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 .dropdown-submenu .caret {
    bottom: unset;
    top: -1px;
}

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



#nav_menu .dropdown-menu {
    top: 100%;
    border: none;
    margin: 0px;
    padding: 0;
}

#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 {
    color: var(--primary);
    font-weight: 600;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    padding: 5px 20px;
}
#nav_menu .dropdown-menu>li>a:focus,
#nav_menu .dropdown-menu>li>a:hover {
    color: #fff;
    background: var(--primary);
    border-bottom: 0px;
}




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

#mobileMenuWrapper {
    position: fixed;
    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);
    background: var(--primary-dark);
    color: #fff;
    border-right: 2px solid var(--primary);
}

#mobileMenuWrapper.open {
    left: 0;
}

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

button.mobileMenuTrigger {
    background: none;
    border: none;
    margin-left: auto;
}

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

#mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0.55rem .25rem;
    font-size: 16px;
    list-style: none;
    padding: 1em 1.5em;
}

.triggerClose {
    display: block;
    margin-left: auto;
}

.triggerClose button {
    background: none;
    border: none;
    font-size: 2em;
    line-height: 1;
}

.mDropdown {
    display: none;
}

.mDropdown.open {
    display: block;
}

#mobile-menu>li>a {
    font-weight: 500;
    color: #fff;
    border-bottom: 0px;
}
#mobile-menu li a,
#mobile-menu li a:hover,
#mobile-menu li a:focus {
    color: #fff;
    border-bottom: 0px;
}
#mobileMenuWrapper .mDropdown {
    list-style: none;
    padding: 0;
    background: none;
    font-weight: 500;
    margin-top: 5px;
}
#mobileMenuWrapper .mDropdown li {
    padding-top: 3px;
    padding-bottom: 3px;
}
.mDropdown a {
    font-size: 16px;
}

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



svg.home-icon {
    width: 20px;
    height: 20px;
    vertical-align: unset;
    margin-top: -3px;
}
    @media (max-width: 1199px) {
        svg.home-icon {
            height: 16px;
        }
    }
svg.home-icon path {
    fill: #fff;
}

#mobile-menu li.top-header-menu {
    display: contents;
}
#mobile-menu li.top-header-menu ul {
    list-style: none;
    padding: 0;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 0.55rem .25rem;
}
#mobile-menu .searchbox .search-input {
    width: 100%;
}
#mobile-menu li.login-link {
    order: 1;
}




/* Search */

.search-link svg {
    width: 20px;
    height: 20px;
}
.searchbox {
    position: relative;
    --size: 17.5px;
}
    @media (max-width: 767px) {
        header>section>div .searchbox {
        display: none;
        }
    }


.searchbox .search-input {
    padding: .5em 2ch;
    padding-left: calc(2ch + (var(--size)));
    border: none;
    border-radius: 0px;
    font-size: 1rem;
    width: 200px;
    max-width: 100%;
}

.searchbox .search-button {
    background: url(../images/search-new.svg.php?fc=000);
    background-color: #fff;
    background-size: 120%;
    height: var(--size);
    width: var(--size);
    position: absolute;
    left: calc(var(--size) / 1.5);
    top: calc(50% - (var(--size) / 2));
    color: transparent;
    border: none;
    outline: none;
}


/* Main */

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

main>.row:not(main>.row#slideshow-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: 990px) {
    main:is(#homepage-main, #subpage-main)>.row>.column:not(:first-child) {
    }
}

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

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


#mms-main, #subpage-main {
    padding-top: 2rem;
    padding-bottom: 2rem;
}




/* Home - Slideshow */
#slideshow-row .slide img {
    width: 100%;
    max-width: 100%;
}
#slideshow-row .carousel-caption {
    position: absolute;
    z-index: 100;
    background: transparent;
    left: auto;
    top: 0;
    right: 0px;
    bottom: 0;
    width: 100%;
    text-align: left;
    text-shadow: none;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0px 3em;
    background: linear-gradient(to bottom, rgba(153, 0, 0,0.6),  rgba(10, 33, 65,0.7));
    padding-bottom: 40px;
}
    @media (max-width: 991px) {
        #slideshow-row .carousel-caption {
            position: relative;
            padding: 15px;
            background: linear-gradient(to bottom, rgba(153, 0, 0,0.9),  rgba(10, 33, 65,0.9));
            padding-bottom: 40px;
        }
    }

#slideshow-row .carousel-inner .item .carousel-caption:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    z-index: -1;
    overflow: hidden;
    min-height: 100%;
}
#slideshow-row .caption-wrapper {
    width: 1170px;
    margin: 0 auto;
}
#slideshow-row .caption-text {
    font-size: 4em;
    font-weight: 800;
    font-family: "Alumni Sans", sans-serif;
    line-height: 0.8em;
}
    @media (max-width: 990px) {
        #slideshow-row .caption-text {
            font-size: 3em;
        }
    }
    @media (max-width: 767px) {
        #slideshow-row .caption-text {
            font-size: 2.5em;
        }
    }

#slideshow-row .alt-text {
    color: #fff;
    font-size: 1.6em;
    line-height: 1.2em;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.2em 0;
    margin-bottom: 0px;
}
    @media (max-width: 767px) {
        #slideshow-row .alt-text {
            font-size: 1.2em;
        }
    }
#slideshow-row .alt-text a.button-link {
    font-size: 0.85em;
    padding-top: .6em;
}

#slideshow-row .carousel-indicators {
    bottom: 0px;
    margin-bottom: 10px;
}


/* CTA */
#cta-row:not(#gm-canvas #cta-row) {
    color: #fff;
    padding-bottom: 90px;
    background-color: var(--secondary);
}
#cta-row:not(#gm-canvas #cta-row):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: var(--secondary);
    z-index: -1;
}
#cta-row:not(#gm-canvas #cta-row) h1 {
    color: #fff;
    text-transform: none;
    font-weight: 700;
    font-size: 5em;
    display: flex;
    flex-direction: column;
    align-items: start;
    font-family: "Alumni Sans", sans-serif;
}
    @media (max-width: 990px) {
        #cta-row:not(#gm-canvas #cta-row) h1 {
            font-size: 4em;
        }
    }
    @media (max-width: 767px) {
        #cta-row:not(#gm-canvas #cta-row) h1 {
            font-size: 3.5em;
        }
    }
#cta-row:not(#gm-canvas #cta-row) h1 span {
    font-family: "Barlow", sans-serif;
    font-size: 0.4em;
    line-height: 1.4em;
    font-weight: 500;
}
#cta-row:not(#gm-canvas #cta-row) ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    list-style-type: none;
    gap: 1em;
    justify-content: flex-start;
    line-height: 1;
    text-transform: uppercase;
}
#cta-row:not(#gm-canvas #cta-row) ul li {
    padding: 0.5em 3.5em;
    font-size: 24px;
    font-weight: 700;
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    position: relative;
    transition: .125s all ease-in-out;
}
#cta-row:not(#gm-canvas #cta-row) ul li:nth-child(1) {
    background: linear-gradient(to right, var(--secondary-dark),  var(--secondary-medium));
}
#cta-row:not(#gm-canvas #cta-row) ul li:nth-child(1):hover,
#cta-row:not(#gm-canvas #cta-row) ul li:nth-child(1):focus {
    background: linear-gradient(to left, var(--secondary-dark),  var(--secondary-medium));
    transition: .125s all ease-in-out;
}
#cta-row:not(#gm-canvas #cta-row) ul li:nth-child(2) {
    background: linear-gradient(to right, var(--primary-medium),  var(--secondary-medium));
}
#cta-row:not(#gm-canvas #cta-row) ul li:nth-child(2):hover,
#cta-row:not(#gm-canvas #cta-row) ul li:nth-child(2):focus {
    background: linear-gradient(to left, var(--primary-medium),  var(--secondary-medium));
    transition: .125s all ease-in-out;
}
#cta-row:not(#gm-canvas #cta-row) ul li:nth-child(3) {
    background: linear-gradient(to right,  var(--primary-dark),  var(--primary-medium));
}
#cta-row:not(#gm-canvas #cta-row) ul li:nth-child(3):hover,
#cta-row:not(#gm-canvas #cta-row) ul li:nth-child(3):focus {
    background: linear-gradient(to left, var(--primary-dark),  var(--primary-medium));
    transition: .125s all ease-in-out;
}
#cta-row:not(#gm-canvas #cta-row) ul li a {
    color: #fff;
    border: 0px;
}
#cta-row:not(#gm-canvas #cta-row) ul li:hover a,
#cta-row:not(#gm-canvas #cta-row) ul li:focus a {
    color: #fff;
    border: 0px;
}
#cta-row:not(#gm-canvas #cta-row) ul li a:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}





/* News */
#news-row:not(#mycanvas #news-row) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem 5px;
    margin-bottom: 0;
    text-align: left;
}
    @media (min-width: 768px) and (max-width: 990px) {
        #news-row:not(#mycanvas #news-row) {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 767px) {
        #news-row:not(#mycanvas #news-row) {
            grid-template-columns: repeat(1, 1fr);
        }
    }

#news-row:not(#mycanvas #news-row) h2 {
    margin: 0;
}
#news-row:not(#mycanvas #news-row) > .news-heading-button {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1em;
}
    @media (max-width: 767px) {
        #news-row:not(#mycanvas #news-row) > .news-heading-button {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5em;
        }
    }
.news-item {
    position: relative;
    width: 100%;
}
.news-item img {
    min-height: 400px;
    height: 400px;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: -1;
}
.news-item>section {
    position: absolute;
    top: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 3em 2em;
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    color: #fff;
    transition: all .3s ease;
    width: 100%;
}
.news-item>section:hover,
.news-item>section:focus {
    background: var(--primary);
}
a.news-title-link {
    font-family: "Bitter", serif;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
    border-bottom: 0px;
}
#news-row .news-item>section a::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
#news-row .news-item>section .button-link {
    color: #fff;
    border: 1px solid #fff;
    text-transform: uppercase;
}
#news-row .button-link {
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}
#news-row .button-link:hover,
#news-row .button-link:focus {
    background: var(--primary);
    color: #fff;
}


.news-item>section date,
.news-item>section p,
.news-item>section .button-link {
    opacity: 0;
    transition: opacity .3s ease;
}
.news-item>section:hover date,
.news-item>section:hover p,
.news-item>section:hover .button-link,
.news-item>section:focus date,
.news-item>section:focus p,
.news-item>section:focus .button-link  {
    opacity: 1;
    transition: opacity .3s ease;
}

    @media (max-width: 767px) {
        .news-item>section date, .news-item>section p, .news-item>section .button-link {
            opacity: 1;
        }
        .news-item>section {
            background: var(--primary);
            position: relative;
            padding: 1em 15px 2em;
        }
    }




/* Events */
#events-outer-row:not(#gm-canvas #events-outer-row) {
    color: #fff;
    background-color: var(--primary);
}
#events-outer-row:not(#gm-canvas #events-outer-row):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: var(--primary);
    z-index: -1;
}
#events-row:not(#mycanvas #events-row) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem 15px;
    margin-bottom: 0;
    text-align: left;
}
    @media (min-width: 768px) and (max-width: 990px) {
        #events-row:not(#mycanvas #events-row) {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 767px) {
        #events-row:not(#mycanvas #events-row) {
            grid-template-columns: repeat(1, 1fr);
        }
    }

#events-row:not(#mycanvas #events-row) > h2 {
    grid-column: 1 / -1;
    font-family: "Bitter", serif;
    text-transform: none;
    font-weight: 600;
    color: #fff;
}
.events-item {
    display: flex;
    gap: 1em 1.5ch;
    line-height: 1.2;
    position: relative;
    transition: .125s all ease;
}
.events-item:hover,
.events-item:focus {
    background: var(--primary-dark);
}
.events-item date {
    border: 1px solid #fff;
    border-radius: 0px;
    color: white;
    text-align: center;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    padding-top: 3px;
    padding-bottom: 3px;
    min-height: 85px;
}
.events-item date span {
    font-size: 28px;
}
.events-item>section {
    padding-right: 5px;
}
.events-item section h3 {
    line-height: 0.7;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}
a.ev-title-link {
    font-family: "Barlow", sans-serif;
    font-size: 1rem;
    text-transform: none;
    font-weight: 400;
    color: #fff;
}
a.ev-title-link:hover,
a.ev-title-link:focus {
    border-bottom: 0px;
}
a.ev-title-link:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
#events-row:not(#mycanvas #events-row) > .button-link {
    grid-column: 1 / -1;
    margin: 20px 0 0 auto;
    background: transparent;
    border: 1px solid #fff;
    font-weight: 500;
}
    @media (max-width: 767px) {
        #events-row:not(#mycanvas #events-row) > .button-link {
            margin-left: 0;
        }
    }

#events-row:not(#mycanvas #events-row) > .button-link:hover,
#events-row:not(#mycanvas #events-row) > .button-link:focus {
    background: var(--primary-dark);
}
.events-item:hover date,
.events-item:focus date {
    background: #fff;
    color: var(--primary);
}





/* Featured List */
#featuredlist-row {
    position: relative;
    text-align: center;
}
#featuredlist-row h4 {
    font-size: 64px;
    color: #990000;
    display: inline-block;
    font-family: "Bitter", serif;
    font-weight: 600;
    margin-bottom: 10px;
}
#featuredlist-row h4::after {
    content: '';
    position: relative;
    border-bottom: 10px solid #990000;
    height: 10px;
    display: block;
}
#featuredlist-row p {
    color: #4b4b4b;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    display: block;
    width: 140px;
    margin: 0 auto 10px;
}









/* Social Media */
.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;
}





/* Footer */
footer {
    position: relative;
    background: var(--secondary);
    color: #fff;
    padding: 2.5rem 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 30px;
    font-size: inherit;
    font-family: inherit;
    text-align: center;
    margin-top: 0px;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    z-index: -1;
    background: var(--secondary);
}
footer a {
    transition: .125s all ease;
}
footer a:hover,
footer a:focus {
    color: #fff;
    border-bottom: 2px solid #fff;
}
footer p {
    margin: 0;
}
footer ul {
    display: flex;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    list-style-type: none;
    gap: 0.5em;
    justify-content: center;
    line-height: 1;
    flex-wrap: wrap;
}
footer ul li {
    border-right: 1px solid #fff;
    padding-left: 10px;
    padding-right: 10px;
}
footer ul li:first-child {
    padding-left: 0px;
}
footer ul li:last-child {
    padding-right: 0px;
    border-right: 0px;
}
ul.social-list li {
    border: 0px;
    padding: 0;
}
footer section {
    font-size: 12px;
}
footer .social-list svg {
    width: 30px;
    height: 30px;
}
footer .social-list rect {
    fill: transparent;
}
footer .social-list a:hover path,
footer .social-list a:focus path {
    fill: var(--primary);
}
footer .social-list a:hover,
footer .social-list a:focus {
    border-bottom: 2px solid transparent;
    text-decoration: none;
}
footer .social-list path {
    fill: #fff;
}
footer .social-list svg.x-twitter-icon {
    padding: 5px;
}
footer .social-list svg.ig-icon rect {
    display: none;
}




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


/*--------------------------------------------------------
						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;
}