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

:root {
    --page-width: 100vw;
    --primary: #0D2040; /* used for second background-row color if you add a class of alt to an element with class of background-row */
    --primary-transparent: #0d2040c5; /* slideshow bg */
    --secondary: #9C0015; /* link and button-link color */
    --secondary-dark: #6D0018;
    --accent: #CC9846; /* also used for second button-link style if you add a class called var to the element with class of button-link*/
    --accent-dark: #B27A29;
    --text: #333333;
    --gray: rgba(0, 0, 0, .6);
    --light-gray: #F7F8F9; /* background-row */
    --radius: 20px;
    font-size: 16px;
    --side-margin: calc((100vw - var(--page-width)) / -2);
    font-family: "Albert Sans", sans-serif;
    overflow-x: clip;
    --header-height: 157px;
    --footer-height: 159px;
}

/* @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: 800;
    line-height: 1em;
    color: var(--primary);
    font-family: "Albert Sans", sans-serif;
}

h1 {
    font-size: 36px;
}

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

h2 {
    font-size: 40px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

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


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

a {
    color: var(--secondary);
    text-decoration: none;
    transition: .125s color ease-in-out;
}

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

.button-link,
#login-modal input[type="submit"],
.addl-text {
    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 ease-in-out, .125s color ease-in-out;
    line-height: 1;
    text-decoration: none;
    background-color: var(--secondary);
    /* border-radius: .3rem; */
    white-space: nowrap;
}

.button-link.var {
    background-color: var(--accent);
}

.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-dark);
    color: white;
    text-decoration: none;
}

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


/*--------------------------------------------------------
	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: 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 {
    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).alt::before {
    background: var(--primary);
}

.background-row:not(#mycanvas .background-row)>.column:not(#cta-row>.column) {
    background: transparent !important;
    /* font-size: 25px; */
    /* color: white; */
    /* text-align: center; */
    /* font-weight: bold; */
    max-width: 1200px;
    /* margin: auto; */
    /* line-height: 1.3; */
}

.background-row:not(#mycanvas .background-row).alt>.column {
    color: white;
}

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

/* add back the scrollbarWidth as padding-right */
@media (min-width: 991px) {
    .full-width:not(#mycanvas .full-width)>.column {
        padding-right: calc(8px + var(--scrollbarWidth));
    }  
}
@media (max-width: 991px) {
    .full-width:not(#mycanvas .full-width)>.column {
        padding-right: calc(16px + 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: 991px) {
    .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)); */
    }
}


/* 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: "Albert Sans", 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) {
    /* 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 .header-top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
}

.logo-image {
    width: 100%;
    height: auto;
}

header .header-right-list {
    list-style-type: none;
    padding-inline-start: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

header .search-item {
    margin-right: 55px;
}

header .search-item svg {
    color: var(--accent);
    margin-right: 10px;
}

header .search-item a {
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
}

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

.join-link, .login-link {
    color: white;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    padding: .5em 2ch;
    display: block;
    width: fit-content;
    transition: .125s background-color ease-in-out, .125s color ease-in-out;
    line-height: 1;
    text-decoration: none;
    background-color: var(--primary);
    white-space: nowrap;
}

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

@media (max-width: 684px) {
    .join-item, .login-item {
        display: none;
    }
}


/* Navigation */

header .nav-container {
    background-color: var(--primary);
}

header>nav {
    display: flex;
}

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

#nav_menu::before,
#nav_menu::after,
#nav_menu>ul::before,
#nav_menu>ul::after {
    content: none;
}

#nav_menu>ul {
    display: flex;
    justify-content: center;
    gap: 1rem 60px;
    /* Overwrite BS defaults */
    float: none;
    margin: 0;
    align-items: flex-start;
}

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

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

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

#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:not(.dropdown-menu a), #nav_menu .nav .open>a:not(.dropdown-menu a):is(:focus, :hover) {
    transition: .125s background-color ease-in-out;
    background-color: var(--primary);
    border: none;
}

#nav_menu .nav .dropdown-menu.open>a, #nav_menu .nav .dropdown-menu.open>a:focus, #nav_menu .nav .dropdown-menu.open>a:hover {
    background-color: #fff;
}

#nav_menu .caret {
    position: absolute;
    color: white;
    bottom: .4em;
    margin-left: 10px;
}

#nav_menu a:is(:hover, :focus) .caret {
    color: var(--accent);
}

#nav_menu .dropdown-submenu .caret {
    bottom: unset;
    top: 13px;
    color: var(--text);
}

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

#nav_menu .dropdown-submenu .caret:is(:hover, :focus) {
    color: var(--secondary);
}

#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(--secondary);
    background: transparent;
}

@media (max-width:990px) {
    #nav_menu {
        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: 14px;
    }
}

.nav-line {
    height: 3px;
    background-color: var(--accent);
}


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

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

button.mobileMenuTrigger {
    background: none;
    border: none;
    margin-left: auto;
    color: white;
    margin-top: 7px;
}

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

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

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

.mDropdown {
    display: none;
}

.mDropdown.open {
    display: block;
    list-style-type: none;
    padding-inline-start: 0;
    /* margin-top: 10px; */
    margin-bottom: -5px;
}

.mDropdown.open .mDropdown.open {
    margin-bottom: 0;
}

#mobile-menu>li {
    padding: 0 15px;
}

#mobile-menu>li>a {
    font-size: 18px;
    font-weight: 500;
    color: white;
    border-top: 1px solid white;
    padding: 10px 0;
    display: inline-block;
    width: 100%;
}

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

#mobile-menu .button-link {
    color: white;
    padding: .5em 2ch;
    text-transform: uppercase;
    border: 0;
    text-align: center;
}

#mobile-menu .button-link:is(:hover, :focus) {
    color: white;
}

#mobile-menu .caret {
    border-top-color: var(--red);
    margin-left: 5px;
    float: right;
    position: relative;
    top: 7px;
    right: 5px;
    display: inline-block;
    border: solid white;
    border-width: 0 3px 3px 0;
    padding: 4px;
    -webkit-transform: rotate(45deg);
}

#mobile-menu .mDropdown .caret {
    top: 5px;
}

.mDropdown a {
    font-size: 18px;
    color: white;
    border-top: 1px solid white;
    padding: 7px 4px !important;
    display: inline-block;
    width: 100%;
    text-indent: 10px;
}

.mDropdown .mDropdown a {
    text-indent: 20px;
}

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

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


/* Search */

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

.searchbox .search-input {
    padding: .25em 2ch;
    padding-left: calc(2ch + (var(--size)));
    border: solid 2px #e0e0e0;
    /* border-radius: .75em; */
    font-size: 1rem;
    width: 200px;
    max-width: 100%;
}

.searchbox .search-input:focus-visible {
    outline: none;
    border: solid 2px var(--primary);
    border-radius: 0;
}

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

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



/* Main */

main {
    --gap: 75px;
    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) / 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;
    }
}


/* Home Page Interior */


/* slidshow-row */

#slideshow-row {
    padding-top: 0;
    padding-bottom: 0;
}

#slideshow-row .carousel-inner>.item>img {
    width: 100%;
    margin: 0;
}

#slideshow-row .carousel-inner {
    position: relative;
}

#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(--primary-transparent) 70%);
}

#slideshow-row .carousel-caption {
    left: 10%;
    right: 10%;
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
}

#slideshow-row .caption-text {
    display: inline-block;
    font-size: 60px;
    text-transform: uppercase;
    border-bottom: 3px solid var(--accent);
    line-height: 1;
}

#slideshow-row .alt-text {
    color: white;
    font-size: 24px;
}

@media (min-width: 670px) and (max-width: 830px) {
    #slideshow-row .caption-text {
        font-size: 40px !important;
    }
    #slideshow-row .alt-text {
        font-size: 16px !important;
    }
}
@media (max-width: 670px) {
    #slideshow-row .caption-text {
        font-size: 40px !important;
    }
    #slideshow-row .alt-text {
        font-size: 16px !important;
    }
}

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


/* #welcome-row */

#welcome-row + #cta-row {
    padding-top: 0;
}

@media (min-width: 550px) and (max-width: 991px) {
    #welcome-row .column:last-of-type {
        padding: 0 60px;
    }
}

/* cta-row - a list is used to create the columns */

#cta-row>.column {
    background-color: white;
    padding: 50px 30px;
    box-shadow: 2.08px 3.12px 20.8px rgba(0, 0, 0, 0.2);
}

#cta-row>.column>ul {
    display: flex;
    list-style-type: none;
    padding-inline-start: 0;
    gap: 20px;
}

#cta-row>.column>ul>li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

#cta-row svg {
    color: var(--accent);
}

#cta-row h2 {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 24px;
}

@media (max-width: 991px) {
    #cta-row {
        padding: 0 20px;
        padding-bottom: var(--gap);
    }
}

@media (max-width: 915px) {
    #cta-row>.column>ul {
        flex-direction: column;
        gap: 75px;
    }

    #cta-row .button-link {
        margin-top: 0;
    }

    #cta-row p {
        margin-bottom: 0;
    }
}


/* #attention-row */

#attention-row h2 {
    color: white;
    font-size: 35px;
    text-align: center;
}

#attention-row .column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#attention-row .button-link {
    border: solid 1px white;
}


/* feed-row */


#feed-row h2 {
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

#feed-row hr {
    margin-top: 0;
    border-top: 2px solid var(--accent);
}
#feed-row .feed-item {
    padding: .5em;
    margin-bottom: .5em;
    border-bottom: 1px solid #d3d3d3;
}

#feed-row .feed-item h3 {
    font-size: 22px;
}

#feed-row .feed-item time {
    margin-bottom: .5em;
}


/* Footer */

footer {
    background-color: var(--primary);
    display: flex;
    justify-content: space-between;
    padding: 30px;
}

footer .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

footer .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

footer p {
    color: white;
}

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

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

footer .social-media {
    list-style-type: none;
    padding-inline-start: 0;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 0;
}

footer .social-media svg {
    color: var(--primary);
}

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

@media (max-width: 870px) {
    footer {
        flex-direction: column;
        gap: 10px;
    }
    footer .footer-left {
        gap: 10px;
    }
    footer .footer-right {
        gap: 10px;
    }
    footer .social-media {
        justify-content: flex-start;
    }
}

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