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

:root {
    --page-width: 100vw;
    --primary: #064866;
    --secondary: #096c98;
    --accent: #9b2008;
    --primary-medium: hsl(from var(--primary) h s calc(l * 1.8));
    --secondary-medium: hsl(from var(--secondary) h s calc(l * 1.9));
    --primary-light: rgb(from var(--primary) r g b / 0.05);
    --secondary-light: rgb(from var(--secondary) r g b / 0.05);
    --text: #4d4d4d;
    --dark-text: #2c323f;
    --gray: rgba(0, 0, 0, .6);
    --light-gray: #F4F4F4;
    --radius: 20px;
    font-size: 16px;
    font-weight: 400;
    --side-margin: calc((100vw - var(--page-width)) / -2);
    font-family: "Nunito Sans", 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: 700;
    line-height: 1em;
    text-transform: none;
    color: var(--primary);
    font-family: "Geologica", sans-serif;
}

h1 {
    font-size: 30px;
}

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

h2 {
    font-size: 26px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
    font-weight: 500;
}

h6 {
    font-size: 17px;
    font-weight: 500;
}

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

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

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

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

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

.button-link:is(:hover, :focus) {
    background: var(--accent);
    color: white;
    text-decoration: none;
}


/*--------------------------------------------------------
	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:not(#gm-canvas .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:not(#gm-canvas .full-width)>.column {
    padding-left: 0;
    padding-right: 0;
}

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


.background-row:not(#mycanvas .background-row) {
    position: relative;
    padding-top: 35px;
    padding-bottom: 50px;
    margin-top: 100px;
    display: inline-block;
}
    @media (min-width: 768px) and (max-width: 1199px) {
        .background-row:not(#mycanvas .background-row) {
            margin-top: 50px;
        }
    }
    @media (min-width: 768px) and (max-width: 990px) {
        .background-row:not(#mycanvas .background-row) {
            padding-top: 0px;
            margin-top: 50px;
        }
    }

    @media (max-width: 767px) {
        .background-row:not(#mycanvas .background-row) {
            margin-top: 0px;
            padding-block: var(--gap);
        }
    }

.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: linear-gradient(to right, var(--primary-light), var(--secondary-light));
    z-index: -1;
    width: 100vw;
}
.background-row:not(#mycanvas .background-row)::after {
    content: '';
    position: absolute;
    display: block;
    z-index: -2;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 341.77 17.78' preserveAspectRatio='none'><path d='M48.56.07c52.51,1.11,120.46,15,189.4,16.7H0V4.6C10.62,1.73,22.68.38,35.91.07c4.11-.1,8.32-.09,12.64,0ZM264.6,16.78h77.17V6.71c-25.07,6.47-51.06,9.37-77.17,10.07Z' fill='white'/></svg>");
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 341.77 17.78' preserveAspectRatio='none'><path d='M48.56.07c52.51,1.11,120.46,15,189.4,16.7H0V4.6C10.62,1.73,22.68.38,35.91.07c4.11-.1,8.32-.09,12.64,0ZM264.6,16.78h77.17V6.71c-25.07,6.47-51.06,9.37-77.17,10.07Z' fill='white'/></svg>");
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100% 100px;
    -webkit-mask-size: 100% 100px;
    mask-position: top center;
    -webkit-mask-position: top center;
    width: 100vw;
    background: linear-gradient(to right, var(--primary-light), var(--secondary-light));
    margin-top: -94px;
}
    @media (min-width: 768px) and (max-width: 1199px) {
        .background-row:not(#mycanvas .background-row)::after {
            mask-size: 100% 65px;
            -webkit-mask-size: 100% 65px;
            margin-top: -61px;
        }
    }
    @media (max-width: 767px) {
        .background-row:not(#mycanvas .background-row)::after {
            position: relative;
        }
    }



.background-row:not(#mycanvas .background-row)>.column {
    background: transparent;
    color: inherit;
    max-width: 1200px;
    margin: auto;
}

.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 {
    }
}

@media (max-width: 992px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
    .full-width:not(#gm-canvas .full-width),
    .background-row:not(#mycanvas .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-caption {
    text-shadow: none;
}
.carousel {
    font-size: 20px;
}

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

.caption-text {
    font-size: 22px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    font-family: "Geologica", sans-serif;
}

.alt-text {
    font-size: 16px;
    color: #fff;
    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, #gm-canvas .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;
}


/* Header */
header.wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 30px;
    top: 0;
    z-index: 10;
    background: white;
}
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;
}
header svg {
    vertical-align: middle;
}
header .button-link {
    padding: .57em 2.2ch;
    margin: 0;
}





/* Navigation */

nav.wrapper {
    position: relative;
    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: flex-start;
    gap: 0.5rem 1.2rem;
    /* Overwrite BS defaults */
    float: none;
    margin: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}
    @media (min-width: 990px) and (max-width: 1199px) {
        #nav_menu>ul {
            gap: 0.5rem 0.5rem;
        }
    }

#nav_menu a {
    font-weight: 600;
    text-decoration: none;
    transition: .125s background ease-in-out, .125s color ease-in-out;
    font-family: "Nunito Sans", sans-serif;
}


#nav_menu>.nav>li>a {
    color: #fff;
    font-size: 16px;
    padding: 5px 30px 7px;
    position: relative;
    line-height: 1;
    border-radius: 14px;
}

#nav_menu a:is(a:hover, a:focus) {
    color: var(--primary);
    background: #fff;
}



#nav_menu>.nav>li>a:is(a:hover, a:focus)::before {
    opacity: 1;
}

#nav_menu>.nav>li>a:focus,
#nav_menu>.nav>li>a:hover {
    /* Overwrite BS defaults */
    background: #fff;
    border-radius: 14px;
}

#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: #fff;
    border-radius: 14px;
    color: var(--primary);
}



#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: 15px;
}

#nav_menu .dropdown-menu {
    top: calc(100% + 9px);
    border: none;
    font-size: 1rem;
}

#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(--primary);
    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);
    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);
    color: #fff;
    border-right: 2px solid var(--primary-medium);
}

#mobileMenuWrapper.open {
    left: 0;
}

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

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

.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;
}


#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 {
    display: none;
}

.mDropdown.open {
    display: block;
}

#mobile-menu>li>a {
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}

#mobile-menu>li>a.button-link {
    border: 1px solid #fff;
}
.mDropdown a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}


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


/* Search */

.searchbox {
    position: relative;
    --size: 17.5px;
}

.searchbox .search-input {
    padding: .32em 1.5ch;
    border-radius: 19px;
    font-size: 1rem;
    width: 100%;
    min-width: 220px;
    border: 1px solid #cccccc;
}

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


/* Main */

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

main>.row:not(main>.row#slideshow-row, main>.row.background-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;
    }
    main:is(#homepage-main, #subpage-main)>.row>.column:not(:first-child) {
        padding-bottom: var(--gap);
    }
}

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





/* rows and columns margin inside grid+ */
#gm-canvas .row, #gm-canvas .column {
    margin-top: 2em;
    margin-bottom: 2em;
}

.embed-wrapper { display: contents; }




/* Home - Slideshow */
#slideshow-row .carousel-caption {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: auto;
    padding: 0;
    bottom: 0;
}
    @media (max-width: 991px) {
        #slideshow-row .carousel-caption {
            position: relative;
            padding-top: 5px;
            margin-top: -100px;
        }
    }

#slideshow-row .carousel-caption:before {
    content: '';
    position: absolute;
    background: linear-gradient(to right, var(--primary), var(--primary-medium));
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100% 100px;
    -webkit-mask-size: 100% 100px;
    mask-position: top center;
    -webkit-mask-position: top center;
    width: 100%;
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 341.77 17.78' preserveAspectRatio='none'><path d='M48.56.07c52.51,1.11,120.46,15,189.4,16.7H0V4.6C10.62,1.73,22.68.38,35.91.07c4.11-.1,8.32-.09,12.64,0ZM264.6,16.78h77.17V6.71c-25.07,6.47-51.06,9.37-77.17,10.07Z' fill='white'/></svg>");
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 341.77 17.78' preserveAspectRatio='none'><path d='M48.56.07c52.51,1.11,120.46,15,189.4,16.7H0V4.6C10.62,1.73,22.68.38,35.91.07c4.11-.1,8.32-.09,12.64,0ZM264.6,16.78h77.17V6.71c-25.07,6.47-51.06,9.37-77.17,10.07Z' fill='white'/></svg>");
    height: 400px;
    left: 0;
    right: 0;
    z-index: -1;
}
    @media (min-width: 768px) and (max-width: 1199px) {
        #slideshow-row .carousel-caption:before {
            mask-size: 100% 65px;
            -webkit-mask-size: 100% 65px;
        }
    }

    @media (max-width: 767px) {
        #slideshow-row .carousel-caption:before {
            position: relative;
        }
    }

#slideshow-row .caption-wrapper {
    position: relative;
    display: block;
    background: linear-gradient(to right, var(--primary), var(--primary-medium));
    margin-top: 94px;
    padding-top: 2em;
    padding-bottom: 2em;
    padding-left: 15%;
    padding-right: 15%;
}
    @media (min-width: 768px) and (max-width: 1199px) {
        #slideshow-row .caption-wrapper {
            margin-top: 61px;
            padding-top: 1em;
        }
    }
    @media (max-width: 991px) {
        #slideshow-row .caption-wrapper {
            padding-left: 15px;
            padding-right:30px;
        }
    }
#slideshow-row .slide img {
    width: 100%;
    max-width: 100%;
}

#slideshow-row  .carousel-indicators {
    bottom: 10px;
}
#slideshow-row .carousel-indicators li,
#slideshow-row .carousel-indicators li.active {
    width: 30px;
    height: 4px;
    margin: 0 3px auto;
}
#slideshow-row .carousel-indicators li {
    background: var(--primary-medium);
    border: 1px solid var(--primary-medium);
}
#slideshow-row .carousel-indicators li.active {
    background: var(--secondary-medium);
    border: 1px solid var(--secondary-medium);
}











/* CTA row */
#cta-row:not(#gm-canvas #cta-row, #mycanvas #cta-row) {
    position: relative;
    display: flex;
    color: var(--secondary);
    padding-top: 2em;
    margin-top: 0px;
    padding-bottom: var(--gap);
}
    @media (max-width: 767px) {
        #cta-row:not(#gm-canvas #cta-row) {
            flex-direction: column;
            padding-left: 15px;
            padding-right: 15px;
            gap: 1.2em;
        }
    }
#cta-row:not(#gm-canvas #cta-row)::before {
    background: linear-gradient(to right, var(--primary), var(--primary-medium));
}
#cta-row:not(#gm-canvas #cta-row)::after {
    display: contents;
}
#cta-row:not(#gm-canvas #cta-row) .column {
    position: relative;
    box-shadow: 2.08px 3.12px 20.8px rgba(0, 0, 0, 0.2);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    margin: 0;
    border: 1px solid #e5e5e5;
    border-top-left-radius: 10px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 10px;
    transition: .125s all ease-in-out;
    margin-left: 15px;
    margin-right: 15px;
}
    @media (max-width: 767px) {
        #cta-row:not(#gm-canvas #cta-row) .column {
            margin: 0;
        }
    }

#cta-row:not(#gm-canvas #cta-row) .column:hover,
#cta-row:not(#gm-canvas #cta-row) .column:focus {
    background: var(--accent);
    color: #fff;
    transition: .125s all ease-in-out;
}
#cta-row:not(#gm-canvas #cta-row) h5 a {
    color: var(--primary);
    text-decoration: none;
    text-transform: capitalize;
}
#cta-row:not(#mycanvas #cta-row, #gm-canvas #cta-row) h5 a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
#cta-row:not(#gm-canvas #cta-row) p {
    color: #666666;
    margin-bottom: 0;
}
#cta-row:not(#gm-canvas #cta-row) .column:hover,
#cta-row:not(#gm-canvas #cta-row) .column:focus {
    background: var(--accent);
    color: #fff;
}
#cta-row:not(#gm-canvas #cta-row) .column:hover *,
#cta-row:not(#gm-canvas #cta-row) .column:focus * {
    color: #fff;
}



/* Mission */
#mission-row:not(#gm-canvas #mission-row) {
    padding-top: 30px;
}
    @media (max-width: 991px) {
        #mission-news-row:not(#gm-canvas #mission-news-row) {
        }
    }
    


/* News */
#news-row:not(#gm-canvas #news-row) {
    position: relative;
    background: var(--secondary-light);
    padding: 30px;
    border-top-left-radius: 15px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 15px;
}
    @media (max-width: 991px) {
        #news-row:not(#gm-canvas #news-row) {
            margin-top: var(--gap);
            padding: 30px 15px;
            border-radius: 0px;
        }
    }

#news-row:not(#gm-canvas #news-row) .feed-item.featured-news {
    display: flex;
    gap: 1em 2.5ch;
    position: relative;
    margin-bottom: 25px;
    border-top: 0px;
}
    @media (max-width: 767px) {
        #news-row:not(#gm-canvas #news-row) .feed-item.featured-news {
            flex-direction: column;
            margin-bottom: 0px;
        }
    }
#news-row:not(#gm-canvas #news-row) .featured-news img {
    min-height: 205px;
    height: 205px;
    max-width: 100%;
    width: 330px;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
    position: relative;
}
a.news-title-link {
    color: var(--dark-text);
}
a.news-title-link:hover,
a.news-title-link:focus {
    color: var(--accent);
}
.news-section p {
    margin-bottom: 0px;
}


.feed-item {
    border-top: 1px solid #e6e6e6;
    padding-top: 15px;
    margin-top: 15px;
}
.feed-item:first-of-type {
    border-top: 0px;
}




/* Intro - Events */

#intro-row:not(#gm-canvas #intro-row){
    padding-top: 40px;
    padding-bottom: 40px;
}
    @media (max-width: 767px) {
        #intro-row:not(#gm-canvas #intro-row) {
            padding-top: 15px;
            padding-bottom: 15px;
        }
    }

#events-row:not(#gm-canvas #events-row) {
    position: relative;
    background: #fff;
    padding: 40px 30px;
    border-top-left-radius: 15px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 15px;
}
    @media (max-width: 991px) {
        #events-row:not(#gm-canvas #events-row) {
            padding: 40px 15px;
            border-radius: 0px;
            background: transparent;
        }
    }

#events-row:not(#gm-canvas #events-row) .feed-item > div {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
a.ev-title-link {
    color: var(--dark-text);
}
a.ev-title-link:hover,
a.ev-title-link:focus {
    color: var(--accent);
}








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




/* Footer */
footer {
    position: relative;
    background: var(--primary);
    color: #fff;
    padding: 3.2rem 15px 2.7rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem 30px;
    font-size: inherit;
    font-family: inherit;
    margin-top: 0px;
}
    @media (max-width: 767px) {
        footer {
            flex-direction: column;
        }
    }
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 p {
    margin-bottom: 1em;
}
footer p a {
    text-decoration: underline;
    transition: .125s all ease-in-out;
}
footer p a:hover,
footer p a:focus {
    color: var(--secondary-medium);
    text-decoration: underline;
    transition: .125s all ease-in-out;
}
footer span.privacy-policy {
    border-left: 1px solid #ffffff;
    margin-left: 12px;
    padding-left: 12px;
}

.social-list a:hover svg .cls-1,
.social-list a:focus svg .cls-1 {
    fill: var(--secondary-medium);
}



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