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

:root {
    --page-width: 100vw;
    --primary: #46626e;
    --primary-transparent: hsla(from var(--primary) h s l / 0.85);
    --secondary: #713229;
    --secondary-dark: hsl(from var(--secondary) h s calc(l* .6));
    --accent: #946644;
    --accent-light: hsl(from var(--accent) h s calc(l* 1.75));
    /* --accent-light: #b7987b; */
    --text: #4d4d4d;
    --light-gray: #f2f2f2;
    --radius: 1px;
    font-size: 16px;
    --side-margin: calc((100vw - var(--page-width)) / -2);
    font-family: "Trirong", 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 {
    line-height: 1.3;
    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: .75em;
    text-transform: capitalize;
    color: var(--secondary);
    font-family: "Trirong", serif;
}

h1 {
    font-size: 32px;
}

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

h2 {
    font-size: 28px;
}

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(--primary);
    text-decoration: none;
    transition: .125s color ease-in-out;
}

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

.button-link {
    color: white;
    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(--primary);
    border-radius: .3rem;
    white-space: nowrap;
}

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

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

.button-link:is(:hover, :focus) {
    background-color: 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 {
    /* 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(--light-gray);
}

.background-row:not(#mycanvas .background-row, #feed-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, #feed-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: "Trirong", 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 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
    padding-block: 25px;
    /* padding-inline: 45px; */
}

@media (max-width: 992px) {
    header {
        align-items: center;
    }
}

header .logo-img {
    max-width: 100%;
    height: auto;
}

header #header-right {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 25px;
}

header #header-right-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

header .login-link {
    color: var(--secondary-dark);
    font-size: 16px;
    font-weight: 700;
}

header .login-link:is(:hover, :focus) {
    color: var(--accent);
    text-decoration: none;
}


/* Navigation */

header>nav {
    display: flex;
}

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

#nav_menu a {
    color: var(--secondary-dark);
    font-weight: 700;
    text-decoration: none;
    transition: .125s color ease-in-out;
    font-family: "Trirong", 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: 5px;
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: var(--size);
    background: var(--primary);
    opacity: 0;
    transition: .125s opacity ease-in-out;
    z-index: -1;
    border-radius: 5px;
}

#nav_menu>.nav>li>a:has(.caret)::before {
    margin-right: -15px;
}

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

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

#nav_menu .caret {
    position: absolute;
    color: var(--text);
    bottom: .4em;
    margin-left: 5px;
}

#nav_menu .dropdown-submenu .caret {
    bottom: unset;
    top: .7em;
    margin-left: 5px;
}

#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(--accent);
    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: 16px;
    }
}

@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: 16px;
    }
}


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

button.mobileMenuTrigger {
    background: none;
    border: none;
    padding-top: 7px;
    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;
}

#mobile-menu>li>a {
    font-weight: 700;
}

#mobile-menu>li>a:is(:hover, :focus) {
    text-decoration: none;
}

#mobile-menu .caret {
    border-top-color: var(--text);
}

.mDropdown a {
    font-size: 18px;
    font-weight: 700;
}

.mDropdown a:is(:hover, :focus) {
    text-decoration: none;
}

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

}

#mobileMenuWrapper .mobile-login {
    margin-top: 10px;
    margin-inline: auto;
}


/* Search */

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

.searchbox .search-input {
    padding: .5em 2ch;
    /* padding-left: calc(2ch + (var(--size))); */
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    width: 240px;
    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: 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) / 2);
}

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:not(#cta-row)>.column:not(:first-child) {
        margin-top: var(--gap);
    }
}

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

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

/*--------------------------------------------------------
						Homepage Styles
--------------------------------------------------------*/

/* slide-row */

#slide-row {
    padding-block: 0;
}

#slide-row img {
    width: 100%;
}

#slide-row .carousel-caption {
    background-color: var(--primary-transparent);
    padding-inline: 20px;
    border-radius: var(--radius);
    top: 25%;
    right: 45px;
    bottom: unset;
    left: unset;
    max-width: 500px;
}

@media (min-width: 1201px) and (max-width: 1500px) {
    #slide-row .carousel-caption {
        top: 20%;
    }
}

@media (max-width: 1201px) {
    #slide-row .carousel-caption {
        position: relative;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--primary);
        max-width: 100%;
        padding-bottom: 50px;
    }
}

@media (max-width: 991px) {
    #slide-row .carousel-caption {
        padding-bottom: 30px;
    }
}

#slide-row .caption-text {
    text-align: left;
    font-size: 28px;
}

#slide-row .alt-text {
    color: white;
    text-align: left;
    font-size: 18px;
}

#slide-row .carousel-indicators {
    top: 15px;
    right: 45px;
    bottom: unset;
    left: unset;
    width: unset;
}

#slide-row .carousel-indicators li {
    width: 12px;
    height: 12px;
    margin: 0 0 0 5px;
    background-color: white;
}

#slide-row .carousel-indicators .active {
    background-color: var(--secondary);
}

/* cta-row */

#cta-row:not(#mycanvas #cta-row, #gm-canvas #cta-row) {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding-bottom: 0;
}

#cta-row:not(#mycanvas #cta-row, #gm-canvas #cta-row) .column {
    position: relative;
    margin-top: -100px;
    background-color: white;
    padding: 25px;
    transition: .125s all ease-in-out;
}

#cta-row:not(#mycanvas #cta-row, #gm-canvas #cta-row) .column:is(:hover, :focus) {
    background-color: var(--primary);
    color: white;
}

#cta-row:not(#mycanvas #cta-row, #gm-canvas #cta-row) .column:is(:hover, :focus) :is(h1, h2, h3, h4, h5, h6, p) {
    color: white;  
    transition: .125s all ease-in-out;
}

#cta-row svg {
    float: left;
    margin-right: 15px;
}

#cta-row:not(#mycanvas #cta-row, #gm-canvas #cta-row) .column :is(h1, h2) a::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#cta-row:not(#mycanvas #cta-row, #gm-canvas #cta-row) .column :is(h1, h2) a {
    color: var(--primary);
}

#cta-row:not(#mycanvas #cta-row, #gm-canvas #cta-row) .column :is(h1, h2) a:is(:hover, :focus) {
    color: white;
    text-decoration: none;
}

#cta-row :is(h1, h2) {
    font-size: 28px;
    padding-top: 5px;
    padding-bottom: 15px;
}

@media (min-width: 991px) and (max-width: 1201px) {
    #cta-row:not(#mycanvas #cta-row, #gm-canvas #cta-row) .column {
        border: 2px solid white;
    }    
}

@media (max-width: 991px) {
    #cta-row {
        flex-direction: column;
        gap: 5px;
        padding-bottom: var(--gap);
        padding-inline: 15px;
    }

    #cta-row:not(#mycanvas #cta-row, #gm-canvas #cta-row) .column {
        margin-top: unset;
    }

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

/* image-row */

#image-row .column:first-of-type img{
    margin-bottom: 10px;
}

#image-row .column:first-of-type br {
    display: none;
}

#image-row .column:first-of-type .row .column:first-of-type {
    padding-right: 5px;
}

#image-row .column:first-of-type .row .column:last-of-type {
    padding-left: 5px;
}

@media (min-width: 991px) {
    #image-row .column:first-of-type img{
        width: 555px !important;
        height: 200px !important;
        aspect-ratio: 555/200;
        object-fit: cover;
    }  

    #image-row .column:first-of-type>.row img{
        width: 273px !important;
        height: 200px !important;
        aspect-ratio: 273/200;
        object-fit: cover;
    }
}

@media (max-width: 991px) {
    #image-row .column:first-of-type img{
        margin-bottom: unset;
    }

    #image-row .column:first-of-type img:not(last-of-type) {
        margin-bottom: 14px;
    }

    #image-row .column:first-of-type br {
        display: unset;
    }

    #image-row .column:first-of-type .row .column:first-of-type {
        padding-right: 15px;
    }

    #image-row .column:first-of-type .row .column:last-of-type {
        padding-left: 15px;
    }

    #image-row .column:first-of-type>.row {
        display: flex;
    }

    #image-row .column:first-of-type>.row .column:first-of-type {
        padding-right: 7px;
    }

    #image-row .column:first-of-type>.row .column:last-of-type {
        padding-left: 7px;
    }
}

/* feed-row news-feed */

#feed-row .news-feed {
    width: 50%;
    min-height: 87px;
    padding: 15px 25px;
    transition: .125s background-color ease-in-out, .125s background-image ease-in-out;
}

#feed-row .news-feed:not(:last-of-type) {
    border-bottom: 2px solid white;
}

#feed-row .news-feed p:not(.feed-right p) {
    margin-bottom: 0;
}

#feed-row .news-feed .news-title-link {
    font-size: 16px;
    font-weight: 500;
}

#feed-row .news-feed .news-title-link:is(:hover, :focus) {
    text-decoration: none;
}

#feed-row .news-feed .feed-right {
    display: none;
    position: absolute;
    height: 100%;
    min-height: 250px;
    top: 0;
    left: calc(50% - 7px);
    padding: 25px;
    overflow-y: auto;
    background-color: white;
}

#feed-row .news-feed time {
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
}

#feed-row .news-feed time::before {
    content: url('../images/calendar-icon.svg');
    margin-right: 10px;
}

#feed-row p:has(.news-more-info-link) {
    margin-bottom: 0;
}

#feed-row .news-more-info-link {
    color: var(--primary);
    border: 1px solid var(--primary);
    text-transform: capitalize;
    font-weight: 500;
    padding: .5em 1.5ch;
    display: block;
    width: fit-content;
    margin: 20px 0 0;
    transition: .125s background-color ease-in-out, .125s color ease-in-out, .125s border ease-in-out;
    line-height: 1;
    text-decoration: none;
    background-color: white;
    border-radius: .3rem;
    white-space: nowrap;
}

#feed-row .news-more-info-link:is(:hover, :focus) {
    color: white;
    background-color: var(--primary);
    border-color: white;
}

/* default to first one shows */
#feed-row .news-feed:first-of-type {
    background-image: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 95%);
}

#feed-row .news-feed:first-of-type .feed-right {
    display: block;
}

/* on hover show the right side and hover effects */
#feed-row .column>.row>.column:has(.news-feed):is(:hover, :focus) .news-feed {
    background: unset;
}

#feed-row .news-feed:is(:hover, :focus) {
    background-image: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 95%) !important;
}

#feed-row .news-feed:is(:hover, :focus) .feed-right {
    display: block;
    z-index: 2;
}

@media (max-width: 1201px) {
    #feed-row .news-feed {
        min-height: 102px;
    }
}

@media (min-width: 650px) and (max-width: 991px) {
    #feed-row .news-feed .feed-right {
        margin-right: 15px;
    }
}

@media (max-width: 650px) {
    #feed-row .news-feed {
        width: 100%;
        background-color: white;
    }

    #feed-row .news-feed:first-of-type {
        background-color: white;
    }

    #feed-row .news-feed:not(:last-of-type) {
        margin-bottom: 5px;
        border-bottom: unset;
    }

    #feed-row .news-feed .feed-right {
        display: block;
        position: unset;
        padding-inline: 0;
        padding-block: 15px 0;
        margin-bottom: 0;
    }

    #feed-row .column>.row>.column:has(.news-feed):is(:hover, :focus) .news-feed {
        background-color: white !important;
    }

    #feed-row .news-feed p:not(.feed-right p) {
        margin-bottom: 10px;
    }
}

/* feed-row event-feed */

#feed-row .event-feed {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 25px;
    background-color: white;
    padding: 10px 25px;
    margin-bottom: 5px;
}

#feed-row .event-feed time {
    font-size: 16px;
    line-height: 1.1;
    text-align: center;
    color: var(--secondary);
    padding-right: 20px;
    border-right: 2px solid var(--accent-light);
    min-width: 70px;
}

#feed-row .event-feed time span {
    display: block;
    font-size: 26px;
    color: var(--text);
}

#feed-row .event-feed p {
    margin-bottom: 0;
}

#feed-row .event-feed .ev-title-link {
    font-size: 16px;
    font-weight: 500;
}

#feed-row .event-feed .ev-title-link:is(:hover, :focus) {
    text-decoration: none;
}

@media (max-width: 1201px) {
    #feed-row .event-feed {
        min-height: 97px;
    }
}

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

/* Footer */

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    padding-block: 25px;
}

footer .social-list {
    list-style-type: none;
    padding-inline: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: fit-content;
}

footer .social-list svg rect {
    display: none;
}

@media (max-width: 767px) {
    footer {
        flex-direction: column;
    }
}

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