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

:root {
    --page-width: 100vw;
    --primary: #026050;
    --secondary: #cc5c28;
    --accent: #fa9f38;
    --text: #333333;
    --dark-text: #1a1a1a;
    --gray: rgba(0, 0, 0, .6);
    --dark-gray: #999999;
    --light-gray: #f2f4f7;
    --radius: 20px;
    font-size: 16px;
    --side-margin: calc((100vw - var(--page-width)) / -2);
    font-family: "Roboto Flex", sans-serif;
    overflow-x: clip;
    --footer-height: 89px;
}

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

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

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

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: 800;
    line-height: 1em;
    text-transform: none;
    color: var(--primary);
    font-family: "Playfair", serif;
    letter-spacing: -.04em;
}

h1 {
    font-size: 48px;
}

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

h2 {
    font-size: 45px;
}

h3 {
    font-size: 34px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

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

p {
    line-height: 1.5;
}


/*--------------------------------------------------------
	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: var(--dark-text);
    border: none;
    text-transform: capitalize;
    font-weight: 700;
    padding: .75em 2ch;
    display: block;
    width: fit-content;
    margin: 1.25em 0;
    transition: .125s background-color ease-in-out, .125s color ease-in-out;
    line-height: 1;
    text-decoration: none;
    background-color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 21px;
    white-space: nowrap;
}

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

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

.button-link:is(:hover, :focus) {
    background-color: #fff;
    border: 2px solid var(--accent);
    color: var(--text);
    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 {
    /* Make an element span the width of the viewport */
    position: relative;
    /* left: var(--side-margin);
    right: calc(var(--side-margin) - var(--scrollbarWidth)); */
    left: calc(var(--side-margin) - (var(--scrollbarWidth) / 2));
    right: calc(var(--side-margin) - (var(--scrollbarWidth) / 2));
    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: var(--primary);
}

.background-row>* {
    color: #fff;
}

.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(--primary);
}

.background-row:not(#mycanvas .background-row)>.column {
    background: transparent !important;
    font-size: 16px;
    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: 16px;
    }
}

@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: 16px;
        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 {
    position: relative;
    background: var(--primary);
    padding: 8px 15px;
    color: #fff;
}

#top-header:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    z-index: -1;
    background: var(--primary);
}

#top-header ul.social-list {
    justify-content: flex-end;
    align-items: center;
}

.social-list {
    list-style-type: none;
    padding-inline: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    gap: 1em;
    align-items: center;
}

.social-list a:is(:hover, :focus) path {
    fill: var(--accent);
}

.social-list svg {
    vertical-align: unset;
}


/* Header */

header.wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 30px;
    top: 0;
    z-index: 10;
    background: white;
    flex-wrap: wrap;
}

header>section {
    display: flex;
    justify-content: flex-start;
    gap: 4rem;
    float: none;
    margin: 0;
    align-items: flex-start;
}

header>section svg {
    vertical-align: unset;
}

header>ul {
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
    float: none;
    margin: 0;
    align-items: center;
    list-style-type: none;
    padding-inline: 0;
    margin-bottom: 0;
}

header>ul .button-link {
    margin: 0;
    padding: .6em 2ch;
}

header>ul>li:nth-child(odd) .button-link {
    background: #fff;
    border: 2px solid var(--accent);
    color: var(--text);
}

header>ul>li:nth-child(odd) .button-link:is(:hover, :focus) {
    background: var(--accent);
    border: 2px solid var(--accent);
    color: var(--dark-text);
}


/* Navigation */

#nav_menu {
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

#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: 1rem;
    /* Overwrite BS defaults */
    float: none;
    margin: 0;
    align-items: flex-start;
}

#nav_menu a {
    font-weight: 500;
    text-decoration: none;
    transition: .125s color ease-in-out;
    font-family: "Roboto Flex", sans-serif;
}

#nav_menu>.nav>li>a {
    font-size: 16px;
    padding: 0;
    position: relative;
    line-height: 1;
}

#nav_menu a:is(a:hover, a:focus) {
    color: #212121;
}

#nav_menu>.nav>li>a::before {
    --size: 2px;
    content: '';
    position: absolute;
    bottom: calc(var(--size) * -2);
    left: 0;
    right: 0;
    height: var(--size);
    background: var(--accent);
    opacity: 0;
    transition: .125s opacity ease-in-out;
    z-index: -1;
}

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

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

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

#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:is(:hover, :focus) {
    color: var(--accent);
    background: transparent;
}

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

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


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

#mobileMenuWrapper {
    position: fixed;
    background: white;
    z-index: 100;
    top: 0;
    bottom: 0;
    left: -200vw;
    overflow-y: auto;
    overflow-x: hidden;
    width: 300px;
    transition: .125s left ease-in-out;
    padding: .5rem 2ch;
    box-shadow: 7px 0 5px rgba(0, 0, 0, 0.1);
}

#mobileMenuWrapper.open {
    left: 0;
}

@media (min-width: 992px) {
    .mobileMenuTrigger-wrap {
        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: .25rem;
    font-size: 20px;
    list-style-type: none;
    padding-inline-start: 0;
    margin-bottom: 0;
}

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

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

.mDropdown {
    display: none;
    list-style-type: none;
    padding-inline-start: 1em;
    margin-bottom: 0;
}

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

#mobile-menu li>a {
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
}

#mobile-menu li.visible-xs {
    margin-top: 0.5em;
}

#mobile-menu li.visible-xs .button-link {
    padding: .6em 2ch;
}

#mobile-menu li.visible-xs:nth-last-child(2) .button-link {
    background: #fff;
    border: 2px solid var(--accent);
    color: var(--text);
}

#mobile-menu li.visible-xs:nth-last-child(2) .button-link:is(:hover, :focus) {
    background: var(--accent);
    border: 2px solid var(--accent);
    color: var(--dark-text);
}

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

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


/* Search */

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

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

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


/* Main */

main {
    --gap: 90px;
    min-height: calc(100vh - 142px - 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) {
        margin-top: var(--gap);
    }
}

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

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


/* rows and columns margin inside grid+ */

#gm-canvas .row,
#gm-canvas .column {
    margin-top: 1em;
    margin-bottom: 1em;
}

.embed-wrapper {
    display: contents;
}


/* Home - Index */

#slideshow-row .item {
    opacity: 0;
    /* transition: .125s opacity ease-in-out; */
}

#slideshow-row .item.active {
    opacity: 1;
}


/* #slideshow-row .item .slide-wrapper {
    --inverted-side-margin: calc((var(--side-margin) * -1) + 15px);
    --overlap: calc(var(--inverted-side-margin) / 2);
    --caption-area: calc(100vw - var(--inverted-side-margin) - 900px);
    --photo-area: calc(900px - var(--overlap));
    display: grid;
    grid-template-columns: var(--inverted-side-margin) var(--caption-area) var(--overlap) var(--photo-area);
} */

#slideshow-row .item .slide-wrapper {
    --fifty-percent: calc((var(--page-width) - 30px) / 2);
    --fifty-percent: 570px;
    /* Half of the --page-width width */
    --inverted-side-margin: calc((var(--side-margin) * -1) + 15px);
    /* Side margin inverted so it is not a negative number */
    --total: calc(100vw - var(--inverted-side-margin));
    display: grid;
    --caption-area: calc(var(--total) - 900px);
    --photo-area: calc(var(--total) - var(--fifty-percent));
    --overlap: calc((var(--caption-area) + var(--photo-area)) - var(--total));
    grid-template-columns: var(--inverted-side-margin) var(--caption-area) var(--overlap) var(--photo-area);
    --overlap: 200px;
}

#slideshow-row .carousel-caption {
    position: relative;
    z-index: 100;
    text-align: left;
    text-shadow: none;
    margin: 0;
    display: flex;
    align-items: center;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
}

#slideshow-row .carousel-caption::before {
    /* Gradient fade between caption and image */
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right, white, transparent);
    display: block;
    z-index: -1;
    width: var(--overlap);
    grid-column: 3/4;
}

#slideshow-row .item .slide-wrapper:not(:has(.carousel-caption))::after {
    /* Add org-name to caption area for slides with no caption */
    content: var(--org_name);
    position: relative;
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 60px;
    font-family: "Playfair", serif;
    color: var(--primary);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(to right, white var(--caption-area), transparent);
}

#slideshow-row .carousel-caption,
#slideshow-row .slide-wrapper::after {
    grid-column: 2/4;
    grid-row: 1;
}

#slideshow-row .item.active img {
    position: relative;
    grid-column: 3/5;
    grid-row: 1;
    /* width: 100%; */
    margin: unset !important;
    /* Overwrite inline style applied to slideshow images so it can sit in the grid */
}

#slideshow-row .caption-text {
    font-size: 60px;
    display: block;
    margin-bottom: 10px;
    font-family: "Playfair", serif;
    color: var(--primary);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
}

#slideshow-row .alt-text {
    font-size: 27px;
    color: var(--text);
    margin-bottom: 40px;
    line-height: 1.2;
}

#slideshow-row .button-link {
    font-size: 16px;
    font-weight: 500;
    margin-top: 2em;
}

#slideshow-row .carousel-indicators {
    text-align: left;
    bottom: 10px;
    left: 0px;
    right: unset;
    top: auto;
    z-index: 1;
    margin: 0px;
    padding: 0px 3em;
}

#slideshow-row .carousel-indicators li {
    background: var(--dark-gray);
    border: 1px solid var(--dark-gray);
    width: 14px;
    height: 14px;
    margin: 0px 0px 0px 5px;
}

#slideshow-row .carousel-indicators li.active {
    background: var(--secondary);
    border: 1px solid var(--secondary);
    width: 14px;
    height: 14px;
    margin: 0px 0px 0px 5px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    #slideshow-row .alt-text {
        margin-bottom: 3em;
    }
}

@media (max-width: 991px) {
    #slideshow-row .item.active .slide-wrapper {
        flex-direction: column;
    }
    #slideshow-row .carousel-caption {
        position: relative;
        padding: 1em;
        width: 100%;
    }
    #slideshow-row .carousel-inner .item .carousel-caption:after {
        background: #fff;
    }
    #slideshow-row .item.active .slide-wrapper:before {
        position: relative;
    }
    #slideshow-row .item.active img {
        width: 100%;
    }
    #slideshow-row .item.active .slide-wrapper:not(:has(.carousel-caption))::after {
        width: 100%;
        padding: 15px;
        margin-bottom: 1em;
        font-size: 2.5em;
    }
    #slideshow-row .carousel-indicators {
        padding: 0 1em;
    }
    #slideshow-row .caption-text {
        font-size: 2.5em;
    }
    #slideshow-row .alt-text {
        margin-bottom: 3em;
        font-size: 1.5em;
    }
}

@media (max-width: 767px) {
    #slideshow-row .caption-text,
    #slideshow-row .item.active .slide-wrapper:not(:has(.carousel-caption))::after {
        font-size: 2em;
    }
    #slideshow-row .alt-text {
        margin-bottom: 3em;
        font-size: 1em;
    }
}


/* Intro Row */

#intro-row,
#intro-row:not(#mycanvas #intro-row):before {
    background: linear-gradient(to right, white 45%, hsl(from var(--primary) h calc(s * 0.2) calc(l * 4.95)) 45%);
}

@media (max-width: 991px) {
    #intro-row,
    #intro-row:not(#mycanvas #intro-row):before {
        background: linear-gradient(to bottom, white 45%, hsl(from var(--primary) h calc(s * 0.2) calc(l * 4.95)) 45%);
    }
}

#intro-row:not(#mycanvas #intro-row) h2 {
    color: var(--primary);
}

#intro-row:not(#mycanvas #intro-row) * {
    color: var(--text);
}


/* CTA row */

#cta-row:not(#gm-canvas #cta-row, #mycanvas #cta-row) {
    text-align: center;
}

#cta-row:not(#gm-canvas #cta-row, #mycanvas #cta-row) h2 {
    margin-bottom: 1em;
}

#cta-row:not(#gm-canvas #cta-row, #mycanvas #cta-row) ul {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem 30px;
    padding: 0;
    list-style: none;
    margin-bottom: 2em;
}

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

#cta-row:not(#gm-canvas #cta-row, #mycanvas #cta-row) ul li {
    text-align: center;
}

#cta-row:not(#gm-canvas #cta-row, #mycanvas #cta-row) ul li img {
    margin: 0 auto 2em;
    border-radius: 100%;
    width: 271px !important;
    height: 271px !important;
    object-fit: cover;
    object-position: center;
}

#cta-row:not(#gm-canvas #cta-row, #mycanvas #cta-row) ul a:is(:hover, :focus) {
    color: var(--primary);
}


/* Upcoming Events - Recent News */

#events-row:not(#gm-canvas #events-row, #mycanvas #events-row) .column,
#news-row:not(#gm-canvas #news-row, #mycanvas #news-row) .column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem 25px;
    margin-bottom: 0;
    text-align: left
}

@media (max-width: 767px) {
    #events-row:not(#gm-canvas #events-row, #mycanvas #events-row) .column,
    #news-row:not(#gm-canvas #news-row, #mycanvas #news-row) .column {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0;
    }
}

#events-row:not(#gm-canvas #events-row, #mycanvas #events-row) .column>div:not(.heading-button),
#news-row:not(#gm-canvas #news-row, #mycanvas #news-row) .column>div:not(.heading-button) {
    display: contents;
}

#events-row h2 {
    color: #fff;
}

.heading-button:not(#mycanvas .heading-button) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2em;
    grid-column: 1 / -1;
}

.heading-button:not(#mycanvas .heading-button) h2,
.heading-button:not(#mycanvas .heading-button) .button-link {
    margin-bottom: 0px;
    margin-top: 0px;
}

.feed-item {
    background: #FFFFFF;
    border-radius: 3px;
    margin-bottom: 20px;
    padding: 2em 20px;
}

.feed-item time {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 1em;
    display: block;
}

.feed-item h4 {
    margin-bottom: 1.2em;
    line-height: 1.2;
}

a.ev-title-link {
    color: var(--text);
}

.feed-item a.more-link {
    background: transparent;
    border: 0px;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    color: var(--dark-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.feed-item a.more-link:after {
    content: url(../images/arrow-icon.svg);
    position: relative;
    left: 10px;
    background: var(--secondary);
    border-radius: 100%;
    width: 16px;
    height: 16px;
    display: flex;
    padding-left: 6.5px;
    align-items: end;
    padding-top: 5px;
}

.feed-item a.more-link:is(:hover, :focus) {
    color: var(--secondary);
}

#news-row .feed-item {
    background: var(--light-gray);
    border-radius: 3px;
    padding: 0px;
}

#news-row .feed-item img {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    width: 100%;
    max-width: 100%;
}

#news-row .feed-item>div {
    padding: 2em 1.5em;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

#news-row .feed-item h4 {
    margin-bottom: 0.5em;
}

#news-row .feed-item p {
    margin-bottom: 1.8em;
}

#news-row a.news-title-link:is(:hover, :focus) {
    color: var(--primary);
}

@media (max-width: 767px) {}


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

footer {
    position: relative;
    color: #fff;
    padding: 1.85rem 15px 1.75em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 30px;
    font-size: inherit;
    font-family: inherit;
    background: var(--primary);
}

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 a {
    color: #fff;
    text-decoration: underline;
}

footer a:is(:hover, :focus) {
    color: var(--accent);
}

footer p {
    margin: 0;
    line-height: 2em;
}

footer span.footer-privacy {
    border-left: 1px solid #ffffff;
    margin-left: 12px;
    padding-left: 12px;
}

@media (max-width: 767px) {
    footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 50px 0px;
        width: 100%;
    }
    footer p {
        margin-bottom: 0;
        line-height: 1.15em;
    }
    footer span.footer-privacy {
        display: block;
        border-left: 0px;
        padding-left: 0px;
        margin-left: 0px;
        padding-top: 0.4em;
    }
}


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