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

:root {
    --page-width: 100vw;
    --primary: #2A455B;
    --secondary: #FF1957; /* also change the color of right-arrow-icon-hover.svg fill */
    --black-transparent: hsla(from black h s l / 0.7);
    --secondary-transparent: hsla(from var(--secondary) h s l / 0.25); 
    /*--accent: #8F0F13;*/
    --text: #3C3C3C;
    --gray: #DADDE0;
    --radius: 5px;
    font-size: 16px;
    --side-margin: calc((100vw - var(--page-width)) / -2);
    font-family: "Work Sans", sans-serif;
    overflow-x: clip;
    --header-height: 84px;
    --footer-height: 146px;
    /* --scrollbarWidth: 5px; add mq */
}

@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 {
    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;
    color: var(--text);
    font-family: "Work Sans", sans-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: 32px;
}

h3 {
    font-size: 28px;
}

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

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

.button-link,
#login-modal input[type="submit"],
.addl-text {
    color: white;
    border: none;
    text-transform: capitalize;
    font-weight: 500;
    padding: .75em 2ch;
    display: block;
    width: fit-content;
    margin: 1.25em 0;
    transition: .125s background ease-in-out;
    line-height: 1;
    text-decoration: none;
    background-color: var(--primary);
    border-radius: var(--radius);
    white-space: nowrap;
}

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

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

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

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


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

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


/* Wrappers*/

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

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

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

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

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

.background-row: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);
}

#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: 990px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
}


/* Lists */

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

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


/* Tables */

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

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

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

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

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

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

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

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

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


/*Feed items */

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

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



/* Slideshow defaults */

.carousel {
    font-size: 20px;
}

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

.caption-text {
    font-size: 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, #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*/
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* Header */

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px;
}

.logo-img {
    margin-right: 35px;
}

@media (max-width: 370px) {
    .logo-img {
        max-width: 200px;
    }
}

@media (min-width: 950px) and (max-width: 1000px) {
    .logo-img {
        margin-right: 25px;
        max-width: 200px;
    }
}

/* Navigation */

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

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

@media (max-width: 1200px) {
    #nav_menu>ul {
        gap: 1rem 10px;
    }
}

#nav_menu a, .login-item > button {
    font-weight: 500;
    text-decoration: none;
    color: var(--text);
    transition: .125s color ease-in-out, .125s box-shadow ease-in-out,  .125s border-radius ease-in-out;
    font-family: "Work Sans", sans-serif;
}

#nav_menu>.nav>li>a, .login-item > button {
    font-size: 16px;
    padding: 10px;
    position: relative;
    line-height: 1;
    text-wrap-mode: nowrap;
}

#nav_menu a:is(a:hover, a:focus):not(.search-item > a), .login-item > button:not(#mobile-menu .login-item button ):is(button:hover, button:focus) {
    color: var(--secondary);
}

.login-item > button {
    border: none;
    background: none;
}

#nav_menu>.nav>li>a::before {
    --size: 9px;
    content: '';
    position: absolute;
    bottom: calc(var(--size) * -1);
    left: 0;
    right: 0;
    height: var(--size);
    background: var(--red);
    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: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 ease-in-out;
    background-color: white;
    border: none;
    border-radius: var(--radius);
}

/* #nav_menu .caret {
    position: absolute;
    color: transparent;
    bottom: 1em;
} */

#nav_menu .dropdown-menu {
    box-shadow: 0 6px 12px rgba(0,0,0,.5);
}

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

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

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

#nav_menu .dropdown-menu {
    top: calc(100% + 9px);
    border: none;
    border-radius: var(--radius);
    padding: 0px;
    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 {
    padding: 7px 20px;
}

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

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

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

.search-icon {
    fill: var(--secondary);
}

.search-icon:is(:hover, :focus) {
    fill: var(--primary);
}

@media (max-width:950px) {
    .search-item {
        display: none !important;
    }
}
/* 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;
    padding: .5rem 2ch;
    box-shadow: 7px 0 5px rgba(0, 0, 0, 0.1);
}

#mobileMenuWrapper.open {
    left: 0;
}

.mobile-container {
    display: flex;
    
}

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

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

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

.search-item-mobile {
    display: none;  
    margin-right: 20px;  
    list-style: none;

}

@media (min-width: 400px) and (max-width: 950px) {
    .search-item-mobile {
        display: block;
    }
}

@media (max-width: 400px) {
    .search-item-mobile {
    display: none;  
    }
}

#mobile-menu {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    font-size: 20px;
    list-style-type: none;
    padding-left: 0px;
}

#mobile-menu .login-item button {
    color: white;
    font-size: 20px;
    font-weight: 400;
    padding: 0px;
}
#mobile-menu .login-item button:is(:hover, :focus) {
    text-decoration: underline;
}

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

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

.mDropdown {
    display: none;
}

.mDropdown.open {
    display: block;
    list-style-type: none;
    padding-left: 20px;
}

#mobile-menu>li:not(.mobileMenuTrigger, .search-item) {    
    border-bottom-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.2); 
}

#mobile-menu>li>a {    
    color: white;
    font-weight: 400;
}


#mobile-menu .caret {
    margin-left: 5px;
    border-top-color: var(--red);
}

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

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


/* 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;
    left: calc(var(--size) / 1.5);
    top: calc(50% - (var(--size) / 2));
    color: transparent;
    border: none;
    outline: none;
}


/* Main */

main {
    --gap: 65px;
    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: 767px) {
    main {
        --gap: 50px;
    }
}



/* Slideshow-row */

#slideshow-row {
    --gap: 0px;
}

#slideshow-row .carousel {
    max-width: 1270px;
    margin: 0px auto;
    font-size: 40px;
}

#slideshow-row .carousel-inner > .item > img {
    border-radius: var(--radius);
    padding: 0px ;
}

#slideshow-row .carousel-inner .item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-position: center;
    min-height: 100%;
    background: linear-gradient(to bottom, transparent 30%,  var(--black-transparent) 70%);    
    border-radius: var(--radius);
}

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

#slideshow-row .carousel-caption {
    left: 65px;
    bottom: 15px;
    text-align: left;
}

#slideshow-row .caption-text {
    font-size: 40px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

#slideshow-row .alt-text {
    font-size: 22px;
    color: white;
    margin-bottom: 10px;
}

#slideshow-row .carousel-indicators { 
    bottom: 5px;
    left: 65px;
    text-align: left;
    margin: 0;
    width: 100%;
}

#slideshow-row .carousel-indicators li {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background-color: white;
    border: none;
    transition: .125s background-color ease-in-out
}

#slideshow-row .carousel-indicators .active {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    margin-bottom: 1px;
    background-color: var(--secondary);
    border: none;
}


@media (max-width: 1100px) {
    #slideshow-row .carousel-caption {
        position: relative; 
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--primary);
    }

    #slideshow-row .caption-wrapper {
        padding: 5px calc(50px + var(--scrollbarWidth)) 25px 50px;
    }

    #slideshow-row .carousel-indicators {
        bottom: 10px !important;
        left: 50px !important;
    }

    #slideshow-row .carousel-inner .item::after {
        content: none;
    }
}

@media (max-width: 550px) {
    #slideshow-row .caption-text {
        font-size: 30px;
    }

    #slideshow-row .alt-text {
        font-size: 16px;
    }
}




/* Home Page CTA Section */

#mms-main #cta-list {
    background-color: rgb(202, 202, 202); 
}

#cta-list {
    padding-inline-start: 0;
}

#cta-list {
    Display: flex;
    flex-direction: column;
    gap: 15px;
}

#cta-list li {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    text-wrap-mode: nowrap;  
    border-radius: var(--radius);
}

#cta-list li::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    opacity: 0.8;
    z-index: -1;
    border-radius: var(--radius);
    transition: .125s background-color ease-in-out;
}

#cta-list section {
    background-color: var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;    
    width: 50%;
}

#cta-list section, #cta-list li {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .125s background-color ease-in-out;
}

#cta-list h2 {
    width: 50%;
    margin-bottom: 0;
    text-align: center;
    text-transform: capitalize;
}

#cta-list li:is(:hover, :focus)::before {
    background: var(--secondary);
}

#cta-list li:is(:hover, :focus) section {
    background-color: var(--secondary);
}

#cta-list a {
    color: white;
    text-decoration: none;
}

#homepage-main #cta-list li h2 a::before {
    content:'';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

@media (max-width: 991px) {
    #cta-list {
        padding-inline-start: 0px;
    }
}

@media (min-width: 320px) and (max-width: 460px) {
    #cta-list h2 {
        font-size: 20px;
    }
}

@media (max-width: 320px) {
    #cta-list h2 {
        font-size: 16px;
    }
}


/* Default Feeds */

.feed-item {
    margin-bottom: 15px;
}

/* event-row ID */

#event-row .feed-item {
    position: relative;
    display: flex;
    align-items: center;   
    padding: 15px;
    margin-bottom: 15px;   
    background-color: white;
    border-radius: var(--radius);
    transition: .125s box-shadow ease-in-out
}

#event-row .feed-item:is(:hover, :focus) {
    box-shadow: 0 0 0 2px var(--secondary), 0 0 15px var(--secondary-transparent);
    border-radius: var(--radius);
}

#event-row .feed-item::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 250px;
    width: 2px;
    background-color: hsl(from var(--gray) h s calc(l* 1.09));
}

#event-row time::before {
    content: url(../images/calendar-icon.svg);
    margin-right: 15px;
    position: absolute;
    left: 25px;
}

#event-row time {
    width: 225px;
    margin-left: 40px;
    text-transform: uppercase;
}

#event-row h3 {
    margin-left: 30px;
    margin-bottom: 0px;
    flex-shrink: 30;
}

#homepage-main #event-row .ev-title-link::before {
    content:'';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

@media (max-width: 750px) {
    #event-row .feed-item {
        display: block;
    }

    #event-row .feed-item::before {
        width: 0;
    }

    #event-row h3 {
        margin-top: 10px;
        margin-left: 10px;
    }
}


/* news-row ID */

main:is(#homepage-main, #subpage-main) #news-row > .column>div:not(#v_hidden_detail-3) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 750px) {
    main:is(#homepage-main, #subpage-main) #news-row > .column>div:not(#v_hidden_detail-3) {
        display: block;
    }

    #news-row .feed-item {
        margin-bottom: 15px;
    }
}

#news-row #v_hidden_detail-3 {
    display: none;
}

#news-row:not(#mycanvas #news-row, #gm-canvas #news-row) h2, #news-row:not(#mycanvas #news-row, #gm-canvas #news-row) .button-link {
    grid-column: 1 / -1;
}

#news-row .feed-item {
    position: relative;
    width: 100%;
    border: 2px solid var(--gray);
    border-radius: var(--radius);
    padding: 25px;
    transition: .125s box-shadow ease-in-out, .125s border-color ease-in-out;
}

#news-row .feed-item:is(:hover, :focus) {
    box-shadow: 0 0 0 2px var(--secondary), 0 0 15px var(--secondary-transparent);
    border-color: white;
}

#news-row .feed-item:is(:hover, :focus) a {
    color: var(--secondary);
}

main:is(#homepage-main, #subpage-main) #news-row a:not(#news-row h3 a, #news-row .button-link)::after {
    content: url('../images/right-arrow-icon.svg');
    transition: .125s content ease-in-out; 
}

main:is(#homepage-main, #subpage-main) #news-row .feed-item:is(:hover, :focus) a:not(#news-row h3 a, #news-row .button-link)::after {
    content: url('../images/right-arrow-icon-hover.svg');
}

main:is(#homepage-main, #subpage-main) #news-row .news-title-link::before {
    content:'';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}


/* Footer */

footer.background-row:not(#mycanvas .background-row)::before {
    background: var(--primary);
}

footer section {
    position: relative;
    padding: 45px 0px;
    color: white;
}

footer a {
    color: white;
    text-decoration: underline;
}

footer .social-media {
    position: absolute;
    top: 45px;
    right: 0px;
    display: flex;
    flex-direction: row;
    gap: 25px;
    list-style-type: none;
} 

footer .social-media svg {
    fill: white;
    transition: .125s fill ease-in-out;
}

footer .social-media svg:is(:hover, :focus) {
    fill: var(--secondary);
}

@media (max-width: 975px) {
    footer p {
        margin-left: 10px;
        text-align: center;
    }

    footer .social-media {
        position: relative;
        top: 10px;
        justify-content: center;
        padding-inline-start: 0px;
    }
}




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

