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

:root {
    --page-width: 100vw;
    --primary: #004c93;
    --secondary: #2a323f;
    --accent: #009eed;
    --light-bg: #efece8;
    --text: #474440;
    --heading-text: #1a1a1a;
    --gray: rgba(0, 0, 0, .6);
    --light-gray: #F4F4F4;
    --radius: 20px;
    --side-margin: calc((100vw - var(--page-width)) / -2);
    --header-height: 156.03px;
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    color: var(--text);
    overflow-x: clip;
}

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


@media (max-width: 991px) {
     :root {
        --scrollbarWidth: auto !important;
    }
}


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

* {
    scroll-margin-top: var(--header-height);
}


html{
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    position: relative;
    max-width: 100%;
    overflow-x: inherit;
}

body,
header,
nav,
footer {
    font-family: inherit !important;
    font-size: inherit !important;
    /*^^ Overwrites mms_styles.css*/
}


/*--------------------------------------------------------
	H1 - H6
--------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    margin-bottom: .5em;
    padding: 0;
    font-weight: 700;
    line-height: 1em;
    color: var(--primary);
    font-family: "Sora", sans-serif;
}

h1 {
    font-size: 38px;
}

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

h2 {
    font-size: 36px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

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;
    border-bottom: 1px solid;
}

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

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

@media (max-width: 460px) {
    .button-link {
        white-space: normal;
    }
}

.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(--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: var(--side-margin);
    width: calc(100vw + var(--scrollbarWidth));
}

.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) {
    padding: 1rem 15px;
    position: relative;
    left: var(--side-margin);
    right: var(--side-margin);
    display: flex;
    width: calc(100vw + var(--scrollbarWidth));
}

.background-row:not(#mycanvas .background-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)>.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;
}

#subpage-main:has(#header-image:first-child) {
    padding-top: 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));
    }
}

@media (max-width: 767px) {
    .background-row:not(#mycanvas .background-row)>.column {
        font-size: 20px;
    }
}


/* header-image row - full-width with removed top padding */

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

#header-image>.column {
    padding-left: 0;
    padding-right: 0;
}

#gm-canvas #header-image {
    left: unset;
    right: unset;
    width: unset;
}

@media (max-width: 991px) {
    #header-image {
        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: 18px;
        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;
}


.caption-text {
    font-size: 28px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.alt-text {
    font-size: 18px;
    color: initial;
    margin-bottom: 10px;
}
.carousel.slide .carousel-control {
    text-shadow: none;
    width: 5%;
    font-size: 2.5em;
    opacity: 1;
    background-image: none;
}


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


/*--------------------------------------------------------
						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: 100%;
    font-size: 18px;
    width: 280px;
}

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

#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;
    width: max-content;
}


/*--------------------------------------------------------
    Header
--------------------------------------------------------*/
body>header.wrapper {
    position: relative;
    z-index: 2;
    background: #fff;
    transition: .125s transform ease-in-out;
    padding-top: 1.75rem;
    padding-bottom: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 30px;
}
    @media (min-width: 1199px) and (max-width: 1350px) {
        body>header.wrapper {
            gap: 1rem 5px;
            padding-top: 30px;
            padding-bottom: 35px;
        }
    }
    @media (max-width: 991px) {
        body>header.wrapper {
            position: sticky;
            transition: .125s transform ease-in-out;
            width: 100%;
            top: 0;
            z-index: 3;
            box-shadow: 0 8px 16px rgba(10, 38, 71, .05), 0 4px 8px rgba(10, 38, 71, .05);
            padding-top: 1.5rem;
            padding-bottom: 0.75rem;
        }
    }
    @media (min-width: 768px) and (max-width: 990px) {
        body>header.wrapper {
            gap: 1rem 10px;
            padding-left: 30px;
            padding-right: 30px;
        }
    }
    @media (max-width: 767px) {
        body>header.wrapper {
            gap: 0.5rem 10px;
            padding-left: 15px;
            padding-right: 15px;
        }
    }
body>header a {
    border-bottom: 0px;
}

svg#main-logo {
    width: 250px;
    height: 65px;
    vertical-align: unset;
}


body>header > section {
    display: flex;
    align-items: flex-end;
    gap: 0.65em;
    margin-left: auto;
    flex-direction: column;
}
body>header > section a.button-link {
    padding: .55em 1.9ch .5em;
}

body>header.wrapper > section > ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
    gap: 0.85em;
}
body>header.wrapper > section > p {
    margin: 4px 0 0 0;
    color: #4d4d4d;
    font-weight: 500;
}
body>header.wrapper > section > p a.login-link {
    border-bottom: 1px solid var(--primary);
    text-decoration: none;
}
body>header.wrapper > section > p a.login-link:hover,
body>header.wrapper > section > p a.login-link:focus {
    border-bottom: 1px solid var(--accent);
    text-decoration: none;
}





/*--------------------------------------------------------
                    Search Bar
--------------------------------------------------------*/

.searchbox {
    width: 240px;
    max-width: 45vw;
    display: inline-block;
    vertical-align: middle;
    color: #838687;
    position: relative;
    padding: 5px 1.5ch;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    height: 32px;
    max-height: 32px;
    overflow-y: hidden;
    transition: all .25s ease-in-out;
}

@media (max-width: 767px) {
    header > .searchbox {
        display: none;
    }
    .searchbox {
        max-width: 100%;
        width: 100%;
    }
}



.searchbox ::-webkit-input-placeholder {
    color: #838687;
}

.searchbox :-moz-placeholder {
    /* Firefox 18- */
    color: #838687;
}

.searchbox ::-moz-placeholder {
    /* Firefox 19+ */
    color: #838687;
}

.searchbox :-ms-input-placeholder {
    color: #838687;
}

.search-input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    width: 100%;
    padding: inherit;
    background: #fff;
    font-size: 18px;
    font-weight: 400;
    font-family: inherit;
}

.search-button {
    color: transparent;
    background-color: transparent;
    border: none;
    background-image: url(../images/search-new.svg.php?fc=666666);
    position: absolute;
    right: 0;
    top: -1px;
    bottom: 0;
    width: 36px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    border-left: 0px;
    transition: .25s all ease-in-out;
}


@media (max-width: 767px) {
    .search-button {
        top: 0px;
    }
}







/* Navigation */
body>nav.wrapper {
    position: sticky;
    transition: .125s transform ease-in-out;
    width: 100%;
    top: 0;
    z-index: 3;
}
body>nav.wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    z-index: -1;
    background: var(--primary);
}

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

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

#nav_menu>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    padding: 0;
    margin: 0;
    float: none;
}
#nav_menu>ul>li {
    margin: 0;
}
#nav_menu>ul>li:last-child {
}
#nav_menu>ul>li>a {
    padding-top: 14px;
    padding-bottom: 11px;
    border-bottom: 3px solid transparent;
    transition: .125s border-bottom ease-in-out;
}
#nav_menu a {
    font-weight: 500;
    text-decoration: none;
    transition: .125s background ease-in-out;
    font-family: inherit;
    font-size: 18px;
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 0px;
}

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


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

#nav_menu>.nav>li>a:focus,
#nav_menu>.nav>li>a:hover {
    /* Overwrite BS defaults */
    background: transparent;
    border-bottom: 3px solid var(--accent);
}

#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: var(--primary);
    border: none;
}

#nav_menu .caret {
    margin-left: .5ch;
}

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

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

#nav_menu .dropdown-menu {
    top: auto;
    border: none;
    background: var(--primary);
    padding: 0;
    margin: 0;
    border-radius: 0px;
}
#nav_menu .dropdown-menu a {
    padding: 8px 20px;
}

#nav_menu .dropdown-menu:is(.men-level-1, .men-level-2) {
    top: -7px;
    margin-left: 15px;
}

#nav_menu .dropdown-menu li:hover {
    background: var(--accent);
    color: #fff;
    transition: .125s background ease-in-out, .125s color ease-in-out;
}
#nav_menu .dropdown-menu>li {
    position: relative;
}

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


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


/* 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);
    border-right: 2px solid var(--accent);
    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: none;
    color: #fff;
}

#mobileMenuWrapper.open {
    left: 0;
}

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

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

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

#mobile-menu {
    list-style: none;
    overflow-y: auto;
    overflow-x: visible;
    padding: 1em 0em;
    text-align: left;
    color: #fff;
}

.menu-trigger {
    width: 30px;
    height: 20px;
    color: var(--heading-text);
}
.triggerClose {
    display: block;
    margin-left: auto;
    text-align: right;
}

.triggerClose button {
    background: none;
    border: none;
    font-size: 1.8em;
    line-height: 1;
    font-weight: 300;
    padding: 0;
    margin-bottom: 0.25em;
}

.mDropdown {
    display: none;
}

#mobileMenuWrapper .mDropdown {
    display: none;
    list-style: none;
    padding: 0;
    background: none;
    border-top: 0;
    padding-top: 0;
    margin-bottom: 0;
}
#mobileMenuWrapper .mDropdown.open {
    display: block;
}


#mobileMenuWrapper #mobile-menu li a {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    border-bottom: 1px solid #008bd1;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    display: inline-block;
    width: 100%;
    text-decoration: none;
}
#mobileMenuWrapper #mobile-menu > li:last-child a {
    border-bottom: 0px;
}
.mobile-menu-search {
    margin-bottom: 0.65em;
}

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

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



#mobile-menu li.mobile-btn {
    display: inline-block;
    margin-top: 1.65em;
    margin-right: 6px;
    margin-bottom: 1em;
}
#mobileMenuWrapper #mobile-menu li .button-link {
    background: #fff;
    color: var(--primary);
    font-weight: 600;
}
#mobileMenuWrapper #mobile-menu li.mobile-login-link .login-link {
    width: auto;
    border-bottom: 1px solid #fff;
    padding-bottom: 0px;
}



/* Main */

main {
    min-height: calc(100vh - 156.03px - 50px - 119.23px);
    position: relative;
    --gap: 90px;
}

main#homepage-main .row:not(main>.row#slideshow-row, .row#classified-ads-row >.column > .row) {
    position: relative;
    padding-top: 3em;
    padding-bottom: 3em;
}
    
main>.row:not(main>.row#slideshow-row, main>.row#header-image) {
    position: relative;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}
    @media (max-width: 767px) {
        main#homepage-main .row:not(main>.row#slideshow-row, .row#classified-ads-row >.column > .row),
        main>.row:not(main>.row#slideshow-row, main>.row#header-image:first-child) {
            padding-top: 2em;
            padding-bottom: 2em;
        }
    }

main>.row:not(main>.row#slideshow-row) .column {
    margin-top: 0;
    margin-bottom: 0;
}

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

#subpage-main, #mms-main {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

#subpage-main:has(.background-heading:first-child) {
    padding-top: 0;
}


main:is(#subpage-main, #mms-main)>.row:not(.row#header-image) {
    padding-block: calc(var(--gap) / 4);
}

main:is(#subpage-main, #mms-main)>.row:first-child:not(.row#header-image) {
    padding-top: var(--gap);
}

main:is(#subpage-main, #mms-main)>.row:last-child {
    padding-bottom: var(--gap);
}

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

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




/*  Home Slideshow  ------------------------
    ----------------------------------------*/

#slideshow-row .item img {
    object-fit: cover;
    max-width: 100%;
    width: 100%;
    object-position: center;
    background-position: center;
    background-size: cover;
}
    @media (max-width: 767px) {
        #slideshow-row .item img {
            /* height: 50vh; */
        }
    }


#slideshow-row .carousel-control {
    margin: auto 0px;
    display: block;
    text-indent: -9999px;
    line-height: 0;
    transition: .25s all ease-in;
    height: 44px;
    width: 44px;
    color: #fff;
    top: 0px;
    left: auto;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: inherit;
    background: rgba(35, 31, 26, 0.75);
    vertical-align: middle;
    text-align: center;
    border: 0px;
    border-radius: 0px;
    display: none;
}

#slideshow-row .carousel-control.left {
    padding-right: 5px;
    margin-left: 15px;
}
    @media (min-width: 992px) {
        #slideshow-row .carousel-control.left {
            margin-left: 25px;
        }
    }

#slideshow-row .carousel-control:after {
    width: 12px;
    height: 18px;
    display: block;
    text-indent: 0;
    position: relative;
    top: 12px;
    left: 15px;
}
#slideshow-row .carousel-control.left:after {
    content: url(../images/arrow-left.svg);
}

#slideshow-row .carousel-control.right {
    right: 0px;
    padding-left: 3px;
    margin-right: 15px;
}

@media (min-width: 992px) {
    #slideshow-row .carousel-control.right {
        margin-right: 45px;
    }
}

#slideshow-row .carousel-control.right:after {
    content: url(../images/arrow-right.svg);
}

#slideshow-row .carousel-control:hover {
    background: rgba(35, 31, 26, 1);
}

@media (min-width: 768px) and (max-width: 990px) {
    #slideshow-row .carousel-control {
        bottom: 35%;
    }
}

@media (max-width: 767px) {
    #slideshow-row .carousel-control {
        bottom: 55%;
        width: 35px;
        height: 35px;
    }
    #slideshow-row .carousel-control:after {
        left: 8px;
        top: 8px;
        transform: scale(.8);
    }
}

#slideshow-row .carousel-caption {
    position: absolute;
    z-index: 100;
    /* background: rgba(0, 0, 0, 0.35); */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: left;
    text-shadow: none;
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: left;
}



#slideshow-row .carousel-caption .caption-wrapper {
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
    @media (min-width: 1200px) {
        #slideshow-row .carousel-caption .caption-wrapper {
            width: 1170px;
        }
    }
    @media (min-width: 992px) and (max-width: 1199px) {
        #slideshow-row .carousel-caption .caption-wrapper {
            width: 970px;
        }
    }
    @media (max-width: 991px) {
        #slideshow-row .carousel-caption .caption-wrapper {
            width: 100%;
        }
    }


#slideshow-row .carousel-caption .caption-text {
    padding: 0.25em 0;
    font-size: 45px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0px;
    text-shadow: 5px 5px 5px black;
}
    @media (max-width: 991px) {
        #slideshow-row .carousel-caption .caption-text {
            margin-bottom: 0px;
            display: block;
            font-size: 1.5em;
            line-height: 1.1em;
        }
    }
#slideshow-row .carousel-caption .alt-text {
    padding: 0;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 5px 5px 5px black;
}
    @media (max-width: 991px) {
        #slideshow-row .carousel-caption .alt-text {
            margin-bottom: 0px;
            font-size: 0.85em;
        }
    }
#slideshow-row .carousel-indicators {
    margin-bottom: 0px;
    z-index: 2;
}
    @media (max-width: 991px) {
        #slideshow-row .carousel-indicators {
            bottom: 10px;
        }
    }

#slideshow-row .carousel-indicators li {
    width: 14px;
    height: 14px;
    margin: 0;
    margin-left: 10px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 0px;
}
#slideshow-row .carousel-indicators li.active {
    background: var(--primary);
}

/* Option to hide the alt text element - hide-alt */

#slideshow-row .hide-alt .alt-text {
    display: none;
}





/*  Home - Index  ------------------------
    ----------------------------------------*/

.arrow-link {
    position: relative;
    font-weight: 600;
    margin-top: 1.5em;
    display: block;
}
.arrow-link:after {
    display: inline-block;
    vertical-align: middle;
    content: url(../images/more-arrow-icon.png);
    margin-left: 8px;
    transition: .125s filter ease-in-out;
}
.arrow-link:hover:after {
    -webkit-filter: invert(0.1) brightness(2);
    filter: invert(0.1) brightness(2);
}

    

/* Events */

.featured-event-image {
    display: flex;
    flex-direction: row;
    gap: 2em;
}
    @media (max-width: 991px) {
        .featured-event-image {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 2rem;
        }
    }

.featured-event-image > img {
    max-width: 100%;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
}
.col-md-6 .featured-event-image {
    flex-wrap: wrap;
}

.featured-event-item {
    position: relative;
    margin-bottom: 2em;
}
.featured-event-item h6 {
    display: none;
}
.featured-event-item:nth-child(1) h6 {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 10px 10px 7px;
    text-transform: uppercase;
    font-family: "Urbanist", sans-serif;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 1.5em;
}
.featured-event-item h1 a.ev-title-link {
    color: var(--heading-text);
    border-bottom: 0px;
    line-height: 1.25em;
    font-size: 38px;
    font-family: "Sora", sans-serif;
}
.featured-event-item h1 a.ev-title-link:hover,
.featured-event-item h1 a.ev-title-link:focus {
    color: var(--primary);
}
.featured-event-item a {
    border-bottom: 0px;
}
.featured-event-item date {
    display: flex;
    align-items: start;
    gap: 0.6em;
    font-size: 18px;
    padding-bottom: 6px;
    color: #666666;
}
.featured-event-item p {
    padding: 10px 0px 0px;
}




.events-wrap-item {
    position: relative;
    background: #FFFFFF;
    border-radius: 3px;
    margin-bottom: 20px;
    border: 1px solid #d5dee2;
    padding: 11px 20px;
}
a.ev-title-link {
    color: #4d4d4d;
    font-size: 18px;
    font-family: "Urbanist", sans-serif;
}
.events-wrap-item a.ev-title-link:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.events-wrap-item a.ev-title-link:hover {
    color: var(--primary);
}
.events-wrap-item:has(a:hover),
.events-wrap-item:has(a:focus) {
    box-shadow: 0 8px 16px rgba(10, 38, 71, .05), 0 6px 8px rgba(10, 38, 71, .05);
}
.events-wrap-item date {
    display: flex;
    align-items: start;
    gap: 0.6em;
    font-size: 18px;
    padding-bottom: 6px;
    color: #666666;
}
#events-section-wrap > a {
    border-bottom: 0px;
}


#events-section-wrap.col-md-12 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem 2em;
    text-align: left;
    position: relative;
    margin-top: 1em;
    margin-bottom: 2em;
}
    @media (max-width: 767px) {
        #events-section-wrap.col-md-12 {
            grid-template-columns: repeat(1, 1fr);
        }
    }

#events-section-wrap.col-md-12:not(#mycanvas #events-section-wrap.col-md-12) h2,
#events-section-wrap.col-md-12:not(#mycanvas #events-section-wrap.col-md-12) .button-link,
#events-section-wrap.col-md-12:not(#mycanvas #events-section-wrap.col-md-12) .arrow-link {
    grid-column: 1 / -1;
}
#events-section-wrap.col-md-12 .arrow-link {
    margin-top: 0px;
}





/* Featured Box section */
#featured-box-wrap:not(#gm-canvas #featured-box-wrap) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem 1.75em;
    text-align: left;
    position: relative;
    margin-top: 0;
    margin-bottom: 2em;
    padding-top: 2em;
}
#featured-box-wrap:not(#gm-canvas #featured-box-wrap):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: var(--primary);
    z-index: -1;
}
#featured-box-wrap:not(#gm-canvas #featured-box-wrap) .column {
    width: 100%;
    background: #fff;
    transition: .125s background ease-in-out, .125s color ease-in-out;
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgb(0 0 0 / 8%);
    padding: 1.7em 15px;
    margin-bottom: 0em;
    text-align: center;
}

    @media (max-width: 1199px) {
        #featured-box-wrap:not(#gm-canvas #featured-box-wrap) {
            margin-top: 0em;
            padding-top: 2em;
            padding-left: 15px;
            padding-right: 15px;
        }
    }
    @media (max-width: 991px) {
        #featured-box-wrap:not(#gm-canvas #featured-box-wrap) {
            padding-top: 2.5em;
            padding-bottom: 3em;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 0.5rem 1.75em;
        }
        #featured-box-wrap:not(#gm-canvas #featured-box-wrap) .column {
            margin-bottom: 0px;
        }
    }
    @media (max-width: 580px) {
        #featured-box-wrap:not(#gm-canvas #featured-box-wrap) {
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 0.5rem 1.75em;
        }

    }


#featured-box-wrap:not(#gm-canvas #featured-box-wrap) .column svg {
    width: 60px;
    height: 60px;
    position: relative;
    margin-bottom: 1.5em;
}
#featured-box-wrap:not(#gm-canvas #featured-box-wrap) .column h3 {
    margin-bottom: 1.2em;
}
#featured-box-wrap:not(#gm-canvas #featured-box-wrap) .column p {
    padding-bottom: 0;
    margin-bottom: 0;
}
#featured-box-wrap:not(#gm-canvas #featured-box-wrap) .column h3,
#featured-box-wrap:not(#gm-canvas #featured-box-wrap) .column h3 a {
    text-decoration: none;
    color: var(--heading-text);
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-bottom: 0px;
    line-height: 1.2em;
}
#featured-box-wrap:not(#gm-canvas #featured-box-wrap) a {
    font-weight: 500;
}
#featured-box-wrap:not(#gm-canvas #featured-box-wrap) a:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
#featured-box-wrap:not(#gm-canvas #featured-box-wrap) h3 a:hover,
#featured-box-wrap:not(#gm-canvas #featured-box-wrap) h3 a:focus{
    color: var(--primary);
    border-bottom: 2px solid;
}
#featured-box-wrap:not(#gm-canvas #featured-box-wrap) .column:has(a:hover),
#featured-box-wrap:not(#gm-canvas #featured-box-wrap) .column:has(a:focus) {
    background: #fff;
    box-shadow: 0px 1px 20px rgb(0 85 150 / 30%);
}





/* Awards - Accordion */
#awards-section-wrap:not(#gm-canvas #awards-section-wrap) {
    position: relative;
    padding-top: 1em;
    padding-bottom: 1em;
}
#awards-section-wrap:not(#gm-canvas #awards-section-wrap) .column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem 2em;
    text-align: left;
    position: relative;
    margin-top: 2em;
    margin-bottom: 2em;
}
    @media (max-width: 767px) {
        #awards-section-wrap:not(#gm-canvas #awards-section-wrap) .column {
            grid-template-columns: repeat(1, 1fr);
        }
        #awards-section-wrap:not(#gm-canvas #awards-section-wrap) .column > img {
            margin-bottom: 1em;
        }
    }


#awards-section-wrap:not(#gm-canvas #awards-section-wrap) .column h2,
#awards-section-wrap:not(#gm-canvas #awards-section-wrap) .column .button-link {
    grid-column: 1 / -1;
}
#awards-section-wrap:not(#gm-canvas #awards-section-wrap) #accordion .panel {
    margin-bottom: 12px;
}
#awards-section-wrap:not(#gm-canvas #awards-section-wrap) #accordion .panel-heading {
    background: var(--primary);
    color: #fff;
}
#awards-section-wrap:not(#gm-canvas #awards-section-wrap) #accordion .panel-body {
    background: #f0f4f7;
    font-size: 18px;
    line-height: 1.65em;
}
#awards-section-wrap:not(#gm-canvas #awards-section-wrap) #accordion .panel-title a {
    display: block;
    padding: 8px 8px;
    border-bottom: 0px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-right: 20px;
}
#awards-section-wrap:not(#gm-canvas #awards-section-wrap) #accordion .panel-title a:after {
    font-family: 'Glyphicons Halflings';
    content: "\2212";
    float: right;
    transition: all 0.5s;
    font-size: 18px;
    margin-right: -40px;
}
#awards-section-wrap:not(#gm-canvas #awards-section-wrap) #accordion .panel-title a.collapsed:after {
    content: "\2b";
}


/* all accordions */

.panel-title:is(#homepage-main .panel-title, #subpage-main .panel-title) {
    margin-right: 20px;
}

.panel-title:is(#homepage-main .panel-title, #subpage-main .panel-title)>a {
    margin-right: 20px;
    line-height: 1.5;
}

.accordion-toggle.collapsed:is(#homepage-main .accordion-toggle.collapsed, #subpage-main .accordion-toggle.collapsed):after {
    font-family: 'Glyphicons Halflings';
    content: "\2b";
    float: right;
    transition: all 0.5s;
    font-size: 18px;
    margin-right: -20px;
}
.accordion-toggle:is(#homepage-main .accordion-toggle, #subpage-main .accordion-toggle):after {
    content: "\2212";
    font-family: 'Glyphicons Halflings';
    float: right;
    transition: all 0.5s;
    font-size: 18px;
    margin-right: -20px;
}





/* Scholarships */
#scholarship-section-wrap:not(#gm-canvas #scholarship-section-wrap) {
    position: relative;
}
#scholarship-section-wrap:not(#gm-canvas #scholarship-section-wrap):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: #f0f4f7;
    z-index: -1;
}
#scholarship-section-wrap:not(#gm-canvas #scholarship-section-wrap) .column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem 2em;
    text-align: left;
    position: relative;
    margin-top: 2em;
    margin-bottom: 2em;
}
    @media (max-width: 767px) {
        #scholarship-section-wrap:not(#gm-canvas #scholarship-section-wrap) .column {
            grid-template-columns: repeat(1, 1fr);
        }
    }


#scholarship-section-wrap:not(#gm-canvas #scholarship-section-wrap) .column h2,
#scholarship-section-wrap:not(#gm-canvas #scholarship-section-wrap) .column .button-link {
    grid-column: 1 / -1;
}
#scholarship-section-wrap:not(#gm-canvas #scholarship-section-wrap) .column a {
    border-bottom: 0px;
}
#scholarship-section-wrap:not(#gm-canvas #scholarship-section-wrap) .column img {
    margin-bottom: 1.75em;
    border-radius: 5px;
}
#scholarship-section-wrap:not(#gm-canvas #scholarship-section-wrap) .column h3 a {
    color: var(--primary);
}
#scholarship-section-wrap:not(#gm-canvas #scholarship-section-wrap) .column h3 a:hover,
#scholarship-section-wrap:not(#gm-canvas #scholarship-section-wrap) .column h3 a:focus {
    color: var(--accent);
}
#scholarship-section-wrap:not(#gm-canvas #scholarship-section-wrap) .column section p {
    font-size: 18px;
    line-height: 1.65em;
}








/* Testimonial */
#testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap) {
    position: relative;
}
#testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: var(--primary);
    z-index: -1;
}
#testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap) * {
    color: #fff;
}
#testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap) .column {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 1rem 6em;
}
#testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap) img {
    max-width: 100%;
    border-radius: 5px;
}
#testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap) .column section {
    position: relative;
}
#testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap) .column section:before {
    display: inline-block;
    vertical-align: middle;
    content: url(../images/quote-icon.png);
}

#testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap) p {
    padding-top: 1em;
    font-style: italic;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.85em;
}
#testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap) h2 {
    font-size: 28px;
    font-weight: 500;
}
#testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap) h5 {
    font-size: 18px;
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
}
#testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap) h5 span {
    font-weight: 300;
}
    @media (min-width: 768px) and (max-width: 990px) {
        #testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap) .column {
            gap: 2em;
        }
    }
    @media (max-width: 767px) {
        #testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap) .column {
            grid-template-columns: repeat(1, 1fr);
            gap: 2em;
        }
        #testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap) img {
            margin: 0 auto;
        }
        #testimonial-section-wrap:not(#gm-canvas #testimonial-section-wrap) .column section {
            text-align: center;
        }
    }








/* Job Listing */
#job-listing-section-wrap:not(#gm-canvas #job-listing-section-wrap) .column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem 2em;
    text-align: left;
    position: relative;
    margin-top: 2em;
    margin-bottom: 2em;
}
    @media (max-width: 767px) {
        #job-listing-section-wrap:not(#gm-canvas #job-listing-section-wrap) .column {
            grid-template-columns: repeat(1, 1fr);
        }
    }

#job-listing-section-wrap:not(#gm-canvas #job-listing-section-wrap) .column h2,
#job-listing-section-wrap:not(#gm-canvas #job-listing-section-wrap) .column .button-link {
    grid-column: 1 / -1;
}
#job-listing-section-wrap:not(#gm-canvas #job-listing-section-wrap) .column h3 {
    width: 100%;
    background: #fff;
    transition: .125s background ease-in-out, .125s color ease-in-out;
    border: 1px solid #d5dee2;
    border-radius: 3px;
    box-shadow: 0px 1px 10px rgb(0 0 0 / 8%);
    padding: 0.85em 25px 1.25em;
    margin-bottom: 0em;
    position: relative;
}
#job-listing-section-wrap:not(#gm-canvas #job-listing-section-wrap) .column h3 a {
    color: #4d4d4d;
    font-size: 18px;
    font-weight: 500;
    font-family: "Urbanist", sans-serif;
}
#job-listing-section-wrap:not(#gm-canvas #job-listing-section-wrap) .column h3 a:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
#job-listing-section-wrap:not(#gm-canvas #job-listing-section-wrap) .column h3:has(a:hover),
#job-listing-section-wrap:not(#gm-canvas #job-listing-section-wrap) .column h3:has(a:focus) {
    box-shadow: 0 8px 16px rgba(10, 38, 71, .05), 0 6px 8px rgba(10, 38, 71, .05);
}
#job-listing-section-wrap:not(#gm-canvas #job-listing-section-wrap) .column h3 a:hover,
#job-listing-section-wrap:not(#gm-canvas #job-listing-section-wrap) .column h3 a:focus {
    color: var(--primary);
}





/* Classified Ads Feed */
#classified-ads-row:not(#gm-canvas #classified-ads-row) .column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem 2em;
    text-align: left;
    position: relative;
    margin-top: 2em;
    margin-bottom: 2em;
}
    @media (max-width: 767px) {
        #classified-ads-row:not(#gm-canvas #classified-ads-row) .column {
            grid-template-columns: repeat(1, 1fr);
        }
    }

#classified-ads-row .column > .row {
    grid-column: 1 / -1;
}
#classified-ads-row:not(#gm-canvas #classified-ads-row) .column .classifieds-wrapper {
    width: 100%;
    background: #fff;
    transition: .125s background ease-in-out, .125s color ease-in-out;
    border: 1px solid #d5dee2;
    border-radius: 3px;
    box-shadow: 0px 1px 10px rgb(0 0 0 / 8%);
    padding: 1.25em 25px;
    margin-bottom: 0em;
    position: relative;
}
#classified-ads-row:not(#gm-canvas #classified-ads-row) .column .classifieds-wrapper h2 {
    color: #4d4d4d;
    font-size: 18px;
    font-weight: 500;
    font-family: "Urbanist", sans-serif;
}
#classified-ads-row:not(#gm-canvas #classified-ads-row) .column .classifieds-wrapper br {
    display: none;
}


/* Home Classified Ads Feed */
main#homepage-main .classified-search-box,
main#homepage-main .nothing-found-ads,
main#homepage-main .classifieds-wrapper .classifieds-description,
main#homepage-main .classifieds-wrapper .classifieds-dates {
    display: none;
}
main#homepage-main #classified-ads-row:not(#gm-canvas #classified-ads-row) .column {
    grid-gap: 1rem 2em;
}






/* Contact Us */
#fb-ig-contact-wrap:not(#gm-canvas #fb-ig-contact-wrap) {
    position: relative;
    margin-bottom: 0px;
    padding-top: 3.75em;
    padding-bottom: 3.75em;
}
#fb-ig-contact-wrap:not(#gm-canvas #fb-ig-contact-wrap):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: #f0f4f7;
    z-index: -1;
}
#contact-us-section-wrap #contact-form label,
#contact-us-section-wrap #contact_form_required_div {
    display: none;
}
#contact-us-section-wrap #contact-form label[for="contactCaptcha"] {
    display: block;
    margin-bottom: 15px;
    padding-top: 0;
}
#contact-us-section-wrap h2 {
    margin-bottom: 1em;
}
#contact-us-section-wrap #contact-form .form-control {
    font-size: 18px;
    color: #999999;
    background: #fff;
    border: 1px solid #d5dee2;
    border-radius: 3px;
    box-shadow: none;
    height: 40px;
}
#contact-us-section-wrap:not(#gm-canvas #contact-us-section-wrap) form .form-group:last-child .col-sm-offset-2.col-sm-10 {
    width: 100%;
    margin-left: 0px;
    margin-top: 10px;
}
#contact-us-section-wrap #contact-form textarea.form-control {
    height: 70px;
}
    @media (min-width: 990px) and (max-width: 1199px) {
        #fb-ig-contact-wrap:not(#gm-canvas #fb-ig-contact-wrap) .column {
            width: 50%;
        }
        #fb-ig-contact-wrap:not(#gm-canvas #fb-ig-contact-wrap) .column#contact-us-section-wrap {
            width: 100%;
        }
    }
    @media (min-width: 768px) and (max-width: 990px) {
        #fb-section-wrap, #ig-section-wrap {
            width: 50%;
        }
    }

    @media (max-width: 767px) {
        #fb-section-wrap, #ig-section-wrap {
            text-align: center;
            margin: 0 auto;
        }
        #fb-section-wrap *, #ig-section-wrap * {
            margin: 0 auto 20px !important;
        }
    }






/* Footer */

footer.wrapper {
    position: relative;
    color: white;
    padding-top: 3rem;
    padding-bottom: 2.65rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 30px;
    font-size: inherit;
    font-family: inherit;
}
footer:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    z-index: -1;
    background: var(--secondary);
}

footer a {
    color: white;
}
footer a:hover,
footer a:focus {
    color: var(--accent);
    text-decoration: none;
}
footer.wrapper p {
    margin: 0;
}
footer span.footer-privacy {
    border-right: 1px solid #FFFFFF;
    margin-right: 14px;
    padding-right: 14px;
}

    @media (max-width: 991px) {
        footer.wrapper {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2.5rem 0px;
            width: 100%;
        }
        footer p {
            margin-bottom: 1em;
            line-height: 1.5em;
        }
    }
 



.social-list {
    display: flex;
    align-items: center;
    position: relative;
    list-style: none;
    gap: 15px;
    padding: 0;
    margin: 0;
}

footer .social-list svg {
    width: 30px;
    height: 30px;
    transition: .25s all;
    display: inline-block;
    vertical-align: middle;
}
footer .social-list a:hover svg rect,
footer .social-list a:focus svg rect {
    fill: var(--accent);
    transition: .25s all;
}


.footer-left-wrap,
.footer-right-wrap,
.footer-credit-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}
.footer-left-wrap > a {
    border-bottom: 0px;
}
.footer-right-wrap,
.footer-credit-wrap {
    align-items: flex-end;
}

footer .back-top-wrap {
    margin-bottom: 25px;
    margin-top: 25px;
}
footer .back-top-wrap a {
    background: #005fad;
    padding: 9px 11px 11px;
    border: 1px solid #367ab2;
    border-radius: 3px;
}
footer .back-top-wrap a:hover,
footer .back-top-wrap a:focus {
    background: var(--primary);
}
    @media (max-width: 991px) {
        .footer-left-wrap, .footer-right-wrap {
            align-items: center;
        }
        .footer-right-wrap {
            flex-direction: column-reverse;
        }
        .footer-credit-wrap {
            align-items: center;
            margin-top: 1.5em;
        }
    }






/*--------------------------------------------------------
						Subpage Styles
--------------------------------------------------------*/

#subpage-main .news-item-feed {
    margin-bottom: 2em;
}



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

#adminMenu a, .main-admin-navbar a {
    border-bottom: none;
}

.main-admin-navbar .nav .open>a,.main-admin-navbar .nav>li>a:focus,.main-admin-navbar .nav>li>a:hover {
    background-color: #33448e;
}

#member_menu_wrap_5 a {
    border-bottom: none;
}

#mms-main a {
    border-bottom: none; 
}

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


