<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*:before,
*:after {
    box-sizing: border-box;
}


/*
--------------------------------------------------------------------------
 Typography 
--------------------------------------------------------------------------
 */

 :root {
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

body {
    color: #333;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
}

p+p {
    margin-top: .25em;
}

p:empty {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5em;
    padding: 0;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 20px;
}


/*  Links -------------------

 */

a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

a.button-link,
input[type="submit"]:not(#mms-main input),
.mobile-login button {
    /* :not exception needed to avoid messing with all sorts of different buttons in the MMS  */
    background: var(--secondary);
    font-size: inherit;
    padding: .8em 4ch;
    display: inline-block;
    color: white;
    border-radius: 2px;
    margin-right: 2ch;
    position: relative;
    left: -.25em;
    /*^^ Optically adjust for rounded left edge */
    border: none;
    text-align: center;
}

.button-link:not(:last-child) {
    margin-bottom: .5em;
}

a.button-link:hover,
a.button-link:focus {
    text-decoration: none;
}

a.button-link+*:not(.button-link) {
    padding-top: 1.5em;
}

*+.button-link {
    margin-top: 1em;
}

li:not(:last-child) .button-link {
    margin-bottom: .75rem;
}


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


/*  Wrappers
    *.wrapper acts as a more symantic stand in for &lt;container&gt;&lt;row&gt;&lt;col-md-12&gt;&lt;/col-md-12&gt;&lt;/row&gt;&lt;/container&gt; in sections of this build that don't require stacking columns 
 */

.wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    position: relative;
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width:768px) {
    body {
        --side-margin: calc((100vw - 750px) / 2);
    }
    .wrapper {
        width: 750px;
    }
}

@media (min-width:992px) {
    body {
        --side-margin: calc((100vw - 987px) / 2);
    }
    .wrapper {
        width: 970px;
    }
}

@media (min-width:1200px) {
    body {
        --side-margin: calc((100vw - 1170px) / 2);
    }
    .wrapper {
        width: 1170px;
    }
}

@media (min-width: 767px) {
    /*The following styles are meant to give more space to the label column in contact forms that are too narrow for the entire label to be read normally*/
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-2,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-2 {
        width: 25%;
        padding-right: 1em;
    }
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-10,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-10 {
        width: 75%;
        padding-left: 0;
    }
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-offset-2,
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-offset-2 {
        margin-left: 25%;
    }
    /*^^Adjusts the form-group placement of the reCAPTCHA iframe and submit buttom to match the new widths from the styles above*/
}

blockquote {
    font-size: inherit;
    border-left-color: var(--secondary);
}

blockquote p {
    font-size: 1.05em;
}


/*Styles below are taken from Bootstrap's table style to ensure that tables on content pages are responsive and neat whether Bootstrap classes are added or not. :not added to prevent styling Google Custom Search tables*/

#subpage-main table {
    max-width: 100%;
    border-collapse: collapse;
    color: #212529;
    margin-bottom: 1em;
    font-size: 16px;
    border-bottom: 1px solid #dee2e6;
    margin-top: 2em;
}

#subpage-main thead {
    font-weight: bold;
}

#subpage-main td,
#subpage-main th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    text-align: inherit;
}

#subpage-main thead th {
    vertical-align: bottom;
    border-top: none;
}

#subpage-main table caption {
    color: currentColor;
    text-align: left;
    font-size: 1.375em;
    font-weight: bold;
    padding: 0;
}

#subpage-main tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, .075);
}

@media (max-width: 767px) {
    #subpage-main table {
        font-size: 14px;
    }
    #subpage-main td:first-child,
    #subpage-main th:first-child {
        padding-left: 5px;
    }
    #subpage-main td:last-child,
    #subpage-main th:last-child {
        padding-right: 5px;
    }
}

@media (max-width: 500px) {
    #subpage-main td,
    #subpage-main th {
        padding: 5px 2px;
    }
}

grammarly-btn {
    display: none;
    /*If someone copy/pastes text from Grammarly it will add this invisible button and cause the page to scroll horizontally. This style hides that.*/
}

.ui-widget {
    /* Part of some pages in the MMS, this style tells it not to overwrite the font with Verdana */
    font-family: revert;
}


/* Feed items */

.feed-item {
    padding: .25rem 20px;
    border-radius: 5px;
}

.feed-item h3 {
    font-size: 1.1rem;
}

.feed-item *:not(:last-child) {
    margin-bottom: .5rem;
}


/* Slideshow defaults */

.carousel-caption {
    position: absolute;
    z-index: 100;
    background-color: #002857;
    background: rgba(0, 0, 0, .6);
    padding: 10px 15px;
    left: inherit;
    bottom: 0px;
    right: 0px;
    top: inherit;
    width: 100%;
    text-align: left;
    text-shadow: none;
}

@media (max-width: 600px) {
    .carousel-caption {
        padding: 0px 10px;
    }
}

.caption-text {
    font-size: 28px;
    font-weight: 600;
    line-height: 33px;
    display: block;
    color: initial;
    margin-bottom: 10px;
}

.alt-text {
    font-size: 16px;
    color: initial;
    margin-bottom: 10px;
}


/*--end slideshow-defaults---------*/


/*----------Responsive Nivo*/

div[id^=slider-container-FD],
div[id^=slider_FD],
.nivoSlider img {
    max-width: 100% !important;
    height: auto !important;
}


/*----------Nivo 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: "â€º";
}


/*  Modals ---------------------------------
    ----------------------------------------
 */

.modal-open .modal {
    display: flex;
}

.modal-dialog {
    max-width: 260px;
    font-size: 16px;
    margin: auto;
}

.modal-header,
.modal-body {
    padding: .5rem 1rem;
}

.modal-header .close {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.modal h2 {
    font-size: 20px;
    opacity: .9;
}

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


/*  Login Forms ----------------------------
----------------------------------------
*/

.modal input[name="Username"],
.modal input[name="Password"] {
    width: 100%;
    padding-left: .25em;
    padding-right: .25em;
    margin-bottom: 0.5em;
    height: 2em;
    border: 1px solid rgba(68, 68, 68, .5);
}


/*--------------------------------------------------------
                        HEADER
--------------------------------------------------------*/

header {
    padding-top: .5rem;
    padding-bottom: .5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#homepage-header {
    position: absolute;
    top: 0;
    z-index: 1;
    left: calc(var(--side-margin) * -1);
}


#main-header {
    padding: 18px 0px 10px;
}


#logo-wrap a {
    text-decoration: none;
}
.logo-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}
    @media (max-width: 767px) {
        .logo-wrap {
            margin-right: 15px;
        }
    }
    @media (max-width: 480px) {
        .logo-wrap {
            margin-right: 10px;
        }
    }
    @media (max-width: 380px) {
        .logo-wrap {
            margin-right: 5px;
        }
    }

svg#main-logo {
    width: 190px;
    height: 74px;
}

#right-side-wrap {
    text-align: right;
    margin-top: 25px;
}



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

#search-login-wrap {
    display: inline-block;
}

.searchbox {
    width: 220px;
    max-width: 45vw;
    display: inline-block;
    vertical-align: middle;
    color: #808080;
    position: relative;
    padding: 5px 1ch;
    height: 40px;
    background: #fff;
    border: 1px solid #E6E6E6;
    transition: .125s border ease-in-out;
    border-radius: 3px;
}
    @media (max-width: 1200px) {
        .searchbox {
            max-width: 100%;
        }
    }   



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

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

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

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


.search-input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    width: 100%;
    padding: inherit;
    background: #fff;
    padding: 2px 10px;
    outline: none;
    color: #808080;
}
#search-input input[type="submit"]:not(#mms-main input),
.mobile-search-wrap input[type="submit"]:not(#mms-main input) {
    color: transparent;
    background: #fff;
    border: none;
    background-image: url(../images/search-new.svg.php?fc=294269);
    position: absolute;
    right: 0;
    top: 0px;
    bottom: 0;
    width: 36px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    border-left: 0px;
    transition: .25s all ease-in-out;
    padding: 0;
    display: block;
    left: auto;
    margin: 0;
    text-align: left;
}

    @media (max-width: 767px) {
        .footer-search-wrap {
            margin-top: 45px;
        }
    }





/* Social Media Icons */


.social-media-wrap {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-top: 5px;
    margin-left: 15px;
}
    @media (min-width: 1200px) {
        .social-media-wrap {
            display: inline-block !important;
        }   
    }
.social-media-wrap ul {
    float: left;
    margin: 0;
    text-align: right;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.social-media-wrap ul&gt;li {
    float: left;
    position: relative;
    display: block;
    margin-right: 8px;
}
.social-media-wrap ul&gt;li:last-child {
    margin-right: 0px;
}
.social-media-wrap svg {
    width: 20px;
    height: 20px;
}
.social-media-wrap svg:hover .cls-1 {
    fill: var(--accent) !important;
}
.social-media-wrap svg:hover .cls-2 {
    fill: var(--accent) !important;
}



/* Mobile Social Media */

.mobile-sm-wrap svg {
    width: 30px;
    height: 30px;
}
.mobile-sm-wrap svg .cls-1,
.mobile-sm-wrap svg .cls-2,
.mobile-sm-wrap svg .cls-3 {
}
li.mobile-sm-wrap {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 15px;
    border-bottom: 0px !important;
}
    @media (max-width: 767px) {
        li.mobile-sm-wrap {
            display: inline-block !important;
        }
    }
li.mobile-sm-wrap a {
    border-bottom: 0px !important;
    padding: 0px !important;
    margin-right: 0px !important;
}
li.mobile-sm-wrap.instagram-icon {
    position: relative;
    top: 2px;
}






/* Login */

#login-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
    position: relative;
    top: -2px;
}
#login-wrap a {
    background: var(--secondary);
    color: #fff;
    padding: 9px 20px 11px;
    position: relative;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    border-radius: 20px;
    font-weight: 500;
    text-align: center;
}
#login-wrap a:hover, #login-wrap a:focus {
    background: var(--secondary);
    text-decoration: underline;
}

/* Mobile Login */

li.mobile-login {
    border-bottom: 0px !important;
    margin-top: 35px !important;
    margin: 0 auto;
    text-align: center;
}
li.mobile-login a {
    border-bottom: 0px !important;
}
li.mobile-login span {
    margin-left: 5px;
}
li.mobile-login a {
    background: var(--secondary) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    position: relative;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    border-radius: 17px;
    font-weight: 700;
    text-align: center;
    border-radius: 30px;
    width: 160px !important;
    border-radius: 20px !important;
}


/*  Desktop Menu ---------------------------
    ----------------------------------------
 */

#main-menu {
    background: var(--primary);
}
#nav_menu .navbar-nav {
    width: 100%;
    padding: 0;
    margin: 0;
}
#nav_menu .navbar-nav li {
    border-left: 1px solid #3A5B8C;
    flex: 1;
    text-align: center;
}
#nav_menu .navbar-nav&gt;li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    padding: 13px 24px;
    transition: background-color .3s;
}
    @media (min-width: 990px) and (max-width: 1199px) {
        #nav_menu .navbar-nav&gt;li a {
            font-size: 13px;
            padding: 15px 8px;
        }
    }


#nav_menu .navbar-nav&gt;li&gt;a:hover, #nav_menu .navbar-nav&gt;li&gt;a:focus {
    background: transparent;
    color: var(--lighthover);
}

#nav_menu&gt;ul&gt;li&gt;ul {
    /* 1st tier submenus */
}

#nav_menu&gt;ul&gt;li:last-child&gt;ul {
    /* Submenu of the last top-level menu item */
    left: -100%;
}

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


#nav_menu .caret {
    /* Convert Bootstrap style into em's so carets scale with type */
    border-top: .2em dashed;
    border-right: .2em solid transparent;
    border-left: .2em solid transparent;
}

#nav_menu .dropdown-menu {
    font-size: inherit;
}

#nav_menu .dropdown-menu&gt;li&gt;a {
    font-size: inherit;
    padding: .5rem 1rem;
}

#nav_menu .nav .open&gt;a,
#nav_menu .nav .open&gt;a:focus,
#nav_menu .nav .open&gt;a:hover,
#nav_menu .nav&gt;li&gt;a:focus,
#nav_menu .nav&gt;li&gt;a:hover {
    /* Overwriting BS defaults */
    background-color: transparent;
    color: #fff;
    transition: color .125s ease-in;
    background: transparent;
    color: var(--lighthover);
}

#nav_menu .nav .open&gt;a:hover,
#nav_menu .dropdown-menu&gt;li&gt;a:focus,
#nav_menu .dropdown-menu&gt;li&gt;a:hover {
    color: var(--lighthover);
    background-color: transparent;
}

#nav_menu li.greyed a {
    opacity: .75;
}


/*  Mobile Header Nav ----------------------
    ----------------------------------------
 */

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

.mobileMenuTrigger label {
    display: none;
}

.menu-trigger {
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 30px;
    padding: 5px;
}

.menu-trigger:hover,
.menu-trigger:focus {
    color: var(--secondary);
}


/*  Mobile Menu-----------------------------
    ----------------------------------------
 */

#mobileMenuWrapper {
    box-shadow: 7px 0 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 200;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 300px;
    background-color: white;
    transition: left 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000);
    color: #444;
}

#mobileMenuWrapper.open {
    left: 0;
}

#mobile-menu {
    list-style: none;
    overflow-y: auto;
    overflow-x: visible;
    padding: 1em 1.5em;
}

.triggerClose {
    text-align: right;
}

#mobile-menu button {
    border: none;
}

.triggerClose button {
    background: none;
    font-weight: bold;
}

#mobileMenuWrapper #mobile-menu a {
    display: inline-block;
    width: 100%;
    margin-bottom: .75em;
}

#mobileMenuWrapper .mDropdown {
    display: none;
    list-style: none;
    padding: 0;
    background: none;
    padding-top: 0px !important;
    margin-bottom: 0px;
}

#mobileMenuWrapper .mDropdown.open {
    display: block;
}

.mDropdown&gt;li&gt;a {
    padding: 0;
}

.mDropdown-parent {
    color: var(--primary);
}

#mobile-menu b.caret {
    float: right;
    position: relative;
    top: 10px;
}


/*
--------------------------------------------------------------------------
 Main
--------------------------------------------------------------------------
 */

main {
    min-height: calc(100vh - 118px - 143px);
    position: relative;
}


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

#banner-row .carousel-control.left,
#banner-row .carousel-control.right {
    /* Remove carousel controls from homepage slideshow */
    display: none;
}

#banner-row img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

#banner-row .carousel-caption {
    position: absolute;
    z-index: 100;
    background: transparent;
    left: 0;
    bottom: 10vh;
    right: 0;
    top: unset;
    width: 100%;
    text-align: left;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 4px black;
}

#banner-row .caption-wrapper {
    padding-left: 15px;
    padding-right: 15px;
}

#banner-row .caption-text {
    font-size: 58px;
    font-weight: bold;
    line-height: .9;
    display: block;
    color: white;
    margin-bottom: 10px;
}

#banner-row .alt-text {
    font-size: 26px;
    line-height: 1.2;
    color: white;
}

@media (max-width: 990px) {
    #banner-row .caption-text {
        font-size: 38px;
    }
    #banner-row .alt-text {
        font-size: 20px;
    }
}

.slideshow-wrap {
    margin-bottom: 70px;
    position: relative;
}

.slideshow-wrap .container {
    width: 100%;
}
.slideshow-wrap img {
    width: 100%;
}   
.slideshow-wrap a {
    text-decoration: none;
}
.slideshow-wrap [class*="col-"] {
    padding: 0;
}
.slideshow-wrap .row {
    padding: 0px !important;
}
.slideshow-wrap .carousel-inner .item img {
    max-height: 500px;
    object-fit: cover;
}
.slideshow-wrap .carousel-inner .item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    z-index: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    background-blend-mode: multiply;
    background: linear-gradient(90deg, rgb(41,66,105,0.5) 50%, rgb(154,34,35,0.5));
}

.slideshow-wrap .carousel-control {
}
    @media (min-width: 768px) and (max-width: 990px) {
        .slideshow-wrap .carousel-control {
            top: -35% !important;
        }
    }

.carousel-control.left {
    height: 40px;
    width: 40px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'DM Sans', sans-serif;
    background: rgba(0, 0, 0, 0.6);
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 0px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-left: 0;
}
.carousel-control.right {
    height: 40px;
    width: 40px;
    color: #fff;
    top: 0px;
    left: auto;
    right: 0px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'DM Sans', sans-serif;
    background: rgba(0, 0, 0, 0.6);
    vertical-align: middle;
    text-align: center;
    padding-left: 2px;
    border: 0px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-right: 0;
}
.slideshow-wrap .carousel-control {
    margin: auto 0px;
    display: block;
    text-indent: -9999px;
    line-height: 0;
    transition: .25s all ease-in;
}
.slideshow-wrap .carousel-control.left:after {
    content: url(../images/prev-btn.png);
    width: 14px;
    height: 20px;
    display: block;
    text-indent: 0;
    position: relative;
    top: 15px;
    left: 18px;
}
.slideshow-wrap .carousel-control.right:after {
    content: url(../images/next-btn.png);
    width: 14px;
    height: 20px;
    display: block;
    text-indent: 0;
    position: relative;
    top: 15px;
    left: 18px;
}
.carousel-caption {
    position: absolute;
    z-index: 100;
    background: transparent;
    left: auto;
    top: auto;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
    text-shadow: none;
    padding: 0;
    margin: 0;
}
.caption-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
    background: rgba(41, 66, 105, .8);
    padding: 19px 25px 8px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
    @media (max-width: 767px) {
        .caption-wrapper {
            background: rgba(41, 66, 105, 1);
        }
    }

p.caption-text {
    font-size: 26px;
    font-weight: 700;
    display: block;
    color: #ffffff !important;
    font-family: 'Raleway', sans-serif;
    text-align: left;
    margin-bottom: 5px !important;
    word-wrap: break-word;
    line-height: normal;
}
p.alt-text {
    font-size: 18px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    color: #ffffff;
    margin-bottom: 0px;
    text-align: left;
    display: inline-block;
    word-wrap: break-word;
    line-height: 24px;
    width: 100%;
    margin-bottom: 10px;
}

    @media (max-width: 767px) {
        .slideshow-wrap {
            margin-bottom: 30px;
        }
        .carousel-caption {
            position: relative;
            background: rgba(35, 82, 124, 1);
        }
        .carousel-caption .caption-wrapper {
            padding: 0px !important;
        }
        .carousel-control {
            bottom: 60% !important;
        }
    }

.slideshow-wrap .carousel-indicators {
    bottom: 0px;
    text-align: left;
    left: 51%;
    display: none;
}
.slideshow-wrap .carousel-indicators li {
    width: 14px;
    height: 14px;
    margin-left: 12px !important;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}
.slideshow-wrap .carousel-indicators li.active {
    width: 14px;
    height: 14px;
    margin-left: 12px !important;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 15px;
}


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



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


/* Buttons */
.btn-wrap {
    margin-top: 35px;
}
.btn-wrap a {
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: var(--secondary);
    color: #fff;
    padding: 10px 24px 11px;
    text-align: center;
    border-radius: 1px;
}
.btn-wrap a:hover {
    background: var(--secondary);
    color: #fff;
}



/* Home Video section */
.home-top-video-wrap {
    margin-bottom: 60px;
}


/* Welcome Section */
#welcome-section-wrap {
    margin-bottom: 20px;
}
#welcome-section-wrap h1 {
    font-size: 32px;
    margin-bottom: 25px;
}
#welcome-section-wrap p {
    margin-bottom: 25px !important;
}




/*--------------------------------------------------------
                    News and Events Feeds
--------------------------------------------------------*/

/* Recent News */

#news-section-wrap {
    margin-bottom: 20px;
}
.news-content {
    margin-bottom: 20px;
}
.news-item {
    border-top: 1px solid var(--primary);
}
.news-date {
    background: var(--primary);
    display: inline-block;
    color: #fff;
    padding: 4px 12px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 15px;
}
.news-item h4 {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 500;
}
a.news-title-link {
    color: var(--accent);
    font-size: 17px;
    font-weight: 500;
    text-transform: none;
}








/* Upcoming Events */

#events-section-wrap {
    margin-top: 50px;
    margin-bottom: 20px;
}
.event-item {
    margin-bottom: 25px;
}
.event-content {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #3A393A;
    background: #FEFEFE;
    border: 1px solid #E6E6E6;
    border-radius: 2px;
    display: flex;
    flex-wrap: wrap;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .event-content {
            min-height: 200px;
        }
    }

.event-date-wrap {
    background: #294269;
    width: 65px;
    vertical-align: top;
    max-width: 65px;
    margin-right: 10px;
    padding: 10px 0px 34px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}
.event-details-wrap {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 90px);
    width: -webkit-calc(100% - 90px);
    width: -moz-calc(100% - 90px);
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}
.event-month {
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    padding-top: 3px;
    text-transform: uppercase;
}
.event-date {
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    line-height: 30px;
}
#event-container {
    padding-left: 0px;
    margin-left: -15px;
}
.event-time {
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 15px;
}
.event-time img {
    display: inline-block;
    vertical-align: sub;
    margin-right: 10px;
}
h3.event-title {
    font-weight: normal;
    padding-bottom: 0px;
    margin-bottom: 4px;
    font-size: 17px !important;
    font-family: 'DM Sans', sans-serif;
    line-height: 26px;
}
a.ev-title-link {
    color: #3A393A;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    text-transform: none;
    word-wrap: break-word;
}
a.ev-title-link:hover {
    color: var(--accent);
    text-decoration: underline;
}
#events-section-wrap .btn-wrap {
    margin-top: 20px;
}






/* Sponsors Section */

.sponsors-section-wrap {
    background: #F7F7F7;
    margin-top: 65px;
    padding: 75px 0px;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .sponsors-section-wrap {
            padding: 60px 0px 30px;
        }
    }
    @media (max-width: 767px) {
        .sponsors-section-wrap {
            padding: 60px 0px 40px;
        }
    }

.sponsors-section-wrap h2 {
    display: inline-block;
    vertical-align: middle;
    color: #3A393A;
    font-size: 18px !important;
    margin-bottom: 20px;
}
.sponsors-section-wrap .carousel-indicators {
    display: none;
}
.sponsors-section-wrap .slide .carousel-inner .item img {
    border: 1px solid #E0E0E0;
    border-radius: 2px;
}
.sponsors-section-wrap .carousel-control {
    background: var(--primary);
    width: 24px;
    height: 24px;
    border-radius: 1px;
    position: absolute;
    top: -150%;
    display: none;
}
.sponsors-section-wrap .carousel-control:hover {
    background: var(--accent);
}
.sponsors-section-wrap .carousel-control.left {
    right: 30px;
}
.sponsors-section-wrap .slide .carousel-control.left img {
    content: "url(../images/small-prev-btn.png)";
    position: absolute;
    top: 0;
    left: 8px;
    background-position: center;
    overflow: hidden;
    z-index: 2;
    width: 9px;
    height: 13px;
    margin-top: 5px;
}
.sponsors-section-wrap .slide .carousel-control.right img {
    content: "url(../images/small-next-btn.png)";
    position: absolute;
    top: 0;
    left: 8px;
    background-position: center;
    overflow: hidden;
    z-index: 2;
    width: 9px;
    height: 13px;
    margin-top: 5px;
}


    @media (min-width: 768px) and (max-width: 990px) {
        #diamond-section-wrap, #platinum-section-wrap, #gold-section-wrap, #silver-section-wrap {
            margin-bottom: 40px;
        }
    }

    @media (max-width: 767px) {
        #diamond-section-wrap, #platinum-section-wrap, #gold-section-wrap, #silver-section-wrap {
            margin-bottom: 25px;
        }
        .sponsors-section-wrap .carousel-control {
            top: -88%;
        }

    }







/*  Subpages -------------------------------
    ----------------------------------------
 */


/*  Grid Page Editor workarounds -----------
----------------------------------------
 */


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

html {
    --primary: #294269;
    --secondary: #9A2223;
    --accent: #DE1F26;
    --lighthover: #E0B70B;
    --darkhover: #D89C16;
    --background: #f4f7f9;
    --text: #666666;
    --dark-text: #333333;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    --side-margin: 1px;
}

@media (min-width:768px) {
     :root {
        --side-margin: calc((100vw - 750px) / 2);
    }
}

@media (min-width:991px) {
     :root {
        --side-margin: calc((100vw - 987px) / 2);
    }
    .wrapper {
        width: 970px;
    }
}

@media (min-width:1201px) {
     :root {
        --side-margin: calc((100vw - 1170px) / 2);
    }
    .wrapper {
        width: 1170px;
    }
}

body {
    color: inherit;
    overflow: inherit;
}

body,
header,
footer,
main,
header nav {
    font-family: inherit !important;
    font-size: inherit !important;
    /* Prevent MMS pages with hard-coded fonts from overwriting this  */
}

p {
    margin: 0;
}

p:not(:last-child) {
    margin-bottom: .75em;
    color: inherit;
}


/*--------------------------------------------------------
    Headings
--------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1.5em;
    padding: 0;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1;
}


h1 {
    font-size: 32px;
}

#homepage-main h1 {
    font-weight: 800;
}

h2 {
    font-size: 28px;
}

#homepage-main h2 {
    font-size: 23px;
}

h3 {
    font-size: 26px;
}

#homepage-main h3 {
    font-size: 20px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}


/*--------------------------------------------------------
    Links
--------------------------------------------------------*/

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

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

.button-link {
    text-transform: capitalize;
    display: block;
    width: fit-content;
    color: white;
    background-color: var(--primary);
    text-align: center;
    padding: 0.6em 2ch;
    text-decoration: none;
    line-height: 1;
    transition: background .125s ease-in-out;
    text-shadow: none;
    border-radius: 5px;
    border: none;
}

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

.button-link:not(:first-child) {
    margin-top: 1.5em;
}

.button-link:not(:last-child) {
    margin-bottom: 2em;
}

#mms-main a {
    text-decoration: none;
}


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

.offscreen {
    /* This class allows an element to be read by a screenreader without appearing in the viewport  */
    position: absolute;
    left: -666vw;
}


/*  Wrappers
    *.wrapper acts as a more symantic stand in for &lt;container&gt;&lt;row&gt;&lt;col-md-12&gt;&lt;/col-md-12&gt;&lt;/row&gt;&lt;/container&gt; in sections of this build that don't require stacking columns 
 */

.wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    position: relative;
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
}

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

.img-responsive.full-width:not(#mycanvas img) {
    /* Make sure that when the system automatically adds the class .img-responsive that it doesn't break .full-width. This is not applied to images viewed on the Grid Editor page. */
    max-width: unset;
}

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

.row-background:not(#mycanvas .row-background) {
    position: relative;
    padding-left: 15px;
}

.row-background:not(#mycanvas .row-background)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: var(--background);
}

@media (min-width: 992px) {
    .row-background:not(#mycanvas .row-background)&gt;.col-md-9 {
        width: calc(75% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-8 {
        width: calc(66.7% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-7 {
        width: calc(58.3% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-6 {
        width: calc(50% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-5 {
        width: calc(41.7% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-4 {
        width: calc(33.3% - 20px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-3 {
        width: calc(25% - 20px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-2 {
        width: calc(20% - 20px);
    }
}

@media (max-width: 990px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
    .full-width {
        --side-margin: -15px;
        left: var(--side-margin);
        right: var(--side-margin);
        width: calc(100vw + 30px);
    }
    .row-background:not(#mycanvas .row-background) {
        padding-right: 15px;
    }
    .row-background::before {
        left: 0;
        right: 0;
    }
}

@media (max-width: 767px) {
    .row-background {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}


/* Events/News items */

.feed-item {
    display: flex;
    gap: 1em 1ch;
    line-height: 1.2;
}

.feed-item:not(:last-child) {
    margin-bottom: .75rem;
}

.feed-item time {
    background: var(--secondary);
    border-radius: 5px;
    color: white;
    text-align: center;
    min-width: 50px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-item time span {
    display: block;
}

.feed-item .day {
    font-size: 1.4em;
    line-height: 1;
}

#homepage-main .feed-item h3 {
    font-size: 1.1rem;
    margin: 0 0 5px;
    line-height: 1;
}

@media (min-width: 768px) {
    .feed-item time {
        font-size: 14px;
    }
}


/* Slideshows defaults */

.carousel {
    font-size: 20px;
}



 

/* Desktop menu  */

header nav {
    width: 630px;
    max-width: 100%;
}

#nav_menu {
    position: relative;
    z-index: 1;
    padding-left: 0px;
    padding-right: 0px;
}

#nav_menu&gt;ul {
    display: block;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

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

#nav_menu li {
    position: relative;
}

#nav_menu&gt;ul&gt;li&gt;a {
    transition: background .125s ease-in-out;
    position: relative;
    padding: 5px;
    text-transform: capitalize;
    color: var(--primary);
}

#homepage-header #nav_menu&gt;ul&gt;li&gt;a {
    color: white;
}

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

#nav_menu a:hover,
#nav_menu a:focus,
#nav_menu .nav .open&gt;a,
#nav_menu .nav .open&gt;a:focus,
#nav_menu .nav .open&gt;a:hover {
}

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

#nav_menu .dropdown-menu {
    /* Dropdown menu  */
    font-size: inherit;
    padding: 0;
    border: none;
    border-radius: 0;
    top: 100%;
    background: var(--primary);
}
#nav_menu .dropdown-menu li {
    text-align: left;
    border-bottom: 0px;
}
#nav_menu .dropdown-menu li:hover {
    background: transparent;
}

#nav_menu .dropdown-menu a {
    text-decoration: none;
    background: transparent;
    transition: .125s background ease-in-out, .125s color ease-in-out;
    padding: 10px 15px !important;
}

#nav_menu .dropdown-menu a:hover,
#nav_menu .dropdown-menu a:focus {
    color: var(lighthover);
}

#nav_menu .dropdown-menu:not(.men-level-):not(.men-level-0) {
    top: 0;
}

.search-icon {
    width: 1rem;
    position: relative;
    top: -.125rem;
}



@media (max-width: 990px) {
    header nav {
        display: none;
    }
}


/* Mobile menu trigger  */

svg#burger-menu {
    width: 30px;
    height: 20px;
}
svg#burger-menu .cls-1 {
    fill: var(--primary) !important;
}


/* Login modal */

.modal-open .modal {
    display: flex;
}

.modal-dialog {
    max-width: 100%;
    font-size: 16px;
    margin: auto;
    width: 300px;
}

.modal-content {
    margin-top: 20px;
    border-radius: 0;
}

.modal-header,
.modal-body {
    padding: .5rem 1rem;
}

.modal-header .close {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.modal h2 {
    font-size: 24px;
    margin-top: 0;
}

.modal-header,
.modal-body {
    padding: 1em 2ch;
}

.modal input[name="Username"],
.modal input[name="Password"] {
    width: 100%;
    padding-left: .25em;
    padding-right: .25em;
    margin-bottom: 0.5em;
    height: 2em;
    border: 1px solid rgba(68, 68, 68, .5);
}

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

@media (max-width: 990px) {
    .header-links li:not(:last-child) {
        display: none;
    }
}


/*--------------------------------------------------------
    Mobile navigation
--------------------------------------------------------*/

#mobileMenuWrapper {
    position: fixed;
    background: var(--primary);
    top: 0;
    bottom: 0;
    z-index: 50;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 300px;
    box-shadow: 0 3px 14px -2px rgba(0, 0, 0, 0.4);
    transition: left .125s ease-in-out;
}

#mobileMenuWrapper.open {
    left: 0;
}

#mobileMenuWrapper ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#mobileMenuWrapper .mobile-search-close {
    display: flex;
    justify-content: space-between;
}

#mobileMenuWrapper a {
    background-color: transparent;
    text-decoration: none;
}

#mobileMenuWrapper .mDropdown {
    display: none;
    padding-top: .7rem;
}

#mobileMenuWrapper .mDropdown.open {
    display: block;
}

.triggerClose {
    text-align: right;
}

.triggerClose button {
    background: none;
    border: none;
    font-size: 1.5rem;
    padding: 0;
    line-height: 1;
}






/*--------------------------------------------------------
    MOBILE MENU
--------------------------------------------------------*/

#mobileMenuWrapper.open {
    left: 0px;
    bottom: 0px;
}
#mobileMenuWrapper #mobile-menu {
    overflow: unset !important;
    padding: 0px 0px 10px 0px;
}
#mobileMenuWrapper ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
#mobileMenuWrapper #mobile-menu li.mobile-home {
    border-top: 1px solid #3A5B8C;
    padding-top: 10px;
}
#mobileMenuWrapper #mobile-menu li {
    display: inline;
    padding: 0px 0px 10px;
    border-bottom: 1px solid #3A5B8C;
}
#mobileMenuWrapper #mobile-menu a {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    background: transparent;
    padding: 8px 0px;
    text-decoration: none;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}
#mobileMenuWrapper #mobile-menu a:hover, #mobileMenuWrapper #mobile-menu a:focus {
    background: transparent;
    color: #fff;
}

#mobileMenuWrapper ul.mDropdown {
    display: none;
}
#mobileMenuWrapper .mDropdown.open {
    display: block;
}
#mobile-menu a {

}
#mobile-toggle {
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
}
.mobile-menu-wrap {
    display: inline-block;
    vertical-align: middle;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .mobile-menu-wrap {
            display: inline-block !important;
            vertical-align: middle;
        }
    }

#mobile-menu-col {
    top: 5px;
    padding: 0px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    float: right;
    margin-left: 12px;
}
    @media (max-width: 767px) {
        #mobile-menu-col {
            top: 0px;
        }
    }



/*-----------------toggle--------------------*/
button#mobile-toggle{
    width: 37px;
    height: 37px;
    display: none;
    position: absolute;
    right: 15px;
    bottom: 30px;
    border: 2px solid #002857;
    border-radius: 4px;
    padding: 8px 5px;
    background-color: white;
    box-shadow: 0px 1.5px 1px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
@media (max-width: 990px) {
    button#mobile-toggle{
        display: inline-block;
    }
}
button#mobile-toggle svg *{
    fill: #002857;
}
/*-----------end--toggle---------------------*/
#mobile-menu&gt;li#triggerClose {
    color: #FFFFFF;
    float: right;
    display: inline;
    font-size: 48px;
    cursor: pointer;
    transform: rotate(45deg);
    border-bottom: 0px !important;
    padding-right: 15px !important;
    border-top: 0px !important;
    padding-bottom: 0px !important;
}
#mobile-menu&gt;li&gt;a{
    width: 174px;
    min-height: 32px;
    margin-bottom: 6px;
    border-radius: 3px;
    background-color: transparent;
    padding-left: 8px;
    padding-top: 10px;
    padding-right: 5px;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #5485A3;
    -webkit-transition: color .25s;
    transition: color .25s;
    text-decoration: none;
}


/*--------------------------------------------------------
    Main
--------------------------------------------------------*/

#subpage-main,
#mms-main {
    padding-top: 3rem;
    min-height: calc(100vh - 54px - 167px - 4rem);
}




/* Banner row  */

#banner-row {
    position: relative;
}

#banner-row img {
    max-height: 90vh;
    object-fit: cover;
    object-position: top;
}

#banner-row:not(#mycanvas #banner-row) figcaption {
    position: absolute;
    bottom: 100px;
    color: white;
    font-size: 24px;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgb(0 0 0 / 70%);
    max-width: calc(100% - 30px);
}

#banner-row:not(#mycanvas #banner-row) h1 {
    color: white;
    font-size: 55px;
    padding-bottom: 0;
    border-bottom: 3px solid;
    width: fit-content;
}

@media (max-width: 990px) {
    #banner-row:not(#mycanvas #banner-row) figcaption {
        bottom: 2rem;
        font-size: 1.1rem;
    }
    #banner-row:not(#mycanvas #banner-row) h1 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    #banner-row:not(#mycanvas #banner-row) figcaption {
        position: relative;
        background: var(--primary);
        top: 0;
        bottom: 0;
        margin-left: -15px;
        margin-right: -15px;
        max-width: unset;
        padding: 1rem;
    }
}


/* Events and News rows */

#events-row .column:not(#mycanvas .column),
#news-row .column:not(#mycanvas .column) {
    /* max-height: 50vh;
    overflow-y: visible; */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
    grid-gap: 1rem 30px;
    padding-top: 2rem;
    padding-bottom: 2rem;
    height: 100%;
}

#events-row img:not(#mycanvas img),
#news-row img:not(#mycanvas img) {
    height: 100% !important;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: .25;
}

#events-row h2,
#news-row h2,
#events-row .button-link,
#news-row .button-link {
    grid-column: 1 / -1;
}

#news-row time {
    display: none;
}

[src="https://media.istockphoto.com/photos/baseball-batter-preparing-to-hit-ball-picture-id536311505?s=2048x2048"] {
    /* Specific to the placeholder images of this template */
    object-position: 0 -200px !important;
}

[src="https://media.istockphoto.com/photos/two-plastic-balls-picture-id503626553?s=2048x2048"] {
    /* Specific to the placeholder images of this template */
    object-position: 0 -380px !important;
}

@media (max-width: 990px) {
    #events-row:not(#mycanvas .row),
    #news-row:not(#mycanvas .row) {
        overflow: hidden;
    }
    #events-row img:not(#mycanvas img),
    #news-row img:not(#mycanvas img) {
        height: 200% !important;
    }
}




/* Sponsors Row */

.sponsors-list li {
    justify-self: center;
}


/* #mycanvas .sponsors-list {
    display: block;
} */

.sponsors-list {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    margin-top: 2rem;
}

.sponsors-list img {
    border: 1px solid #e6e9f4;
    border-radius: 5px;
    object-fit: cover;
    object-position: center;
}


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

footer:not(#homepage-main+footer) {
    margin-top: 3rem;
}
footer#main-footer {
    background: var(--primary);
    padding: 47px 0px 40px;
}
footer#main-footer * {
    color: #fff;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
}
footer#main-footer .text-left span.footer-privacy {
    border-left: 1px solid #fff;
    margin-left: 12px;
    padding-left: 12px;
}
.footer-info {
    line-height: 34px;
}
    @media (max-width: 767px) {
        .footer-info {
            line-height: 26px;
            margin-bottom: 20px;
        }
        footer#main-footer p {
            margin-bottom: 8px;
        }
    }

.footer-info img {
    margin-right: 15px;
}


footer&gt;section {
    position: relative;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    gap: 30px 1em;
    flex-wrap: wrap;
}

footer&gt;section:last-child {
    padding: 2rem 0;
}

footer&gt;section::before {
    content: '';
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    background: var(--background);
    position: absolute;
    z-index: -1;
}

footer h2 {
    font-size: 24px;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer&gt;section:first-child p {
    max-width: 767px;
}

footer a {
    text-decoration: underline;
}

footer a:hover,
footer a:focus {
    color: inherit;
}

footer .social-list {
    align-self: flex-start;
    justify-content: flex-end;
    -webkit-box-align: end;
    align-items: end;
    position: relative;
}

.social-list {
    /* color: white; */
    display: flex;
    align-items: center;
    /* justify-content: flex-end; */
    position: relative;
    list-style: none;
    gap: 10px;
    padding-top: 5px;
    margin-top: 0;
    margin-bottom: 0;
}

.social-list svg {
    padding: 3px;
    border-radius: 3px;
    transition: .125s background ease-in-out .125s border-color ease-in-out;
    color: white;
    width: 26px;
    height: 26px;
}
.social-list svg.instagram-icon {
    position: relative;
    top: 2px;
}

/*.social-list svg:hover,
.social-list svg:focus {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
}*/
.social-list svg .cls-1,
.social-list svg .cls-2,
.social-list svg .cls-3 {
    fill: #fff !important;
}

.social-list path {
    fill: var(--primary);
}

.social-list rect {
    display: none;
}

@media (max-width: 900px) {
    footer {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    footer#main-footer .text-left, footer#main-footer .text-right {
        
    }
    .footer-info {
        line-height: 30px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    footer#main-footer .text-left, footer#main-footer .text-right {
        text-align: center;
    }
    footer .social-list {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 700px) {
    footer,
    footer section {
        display: block;
    }
    footer ul {
        margin-top: 0.8rem;
    }
}


/*--------------------------------------------------------
    MMS Styles
--------------------------------------------------------*/


/* MMS Member Menu icons */

@media (min-width: 1200px) {
    .nav-tabs li.dropdown {
        width: 190px;
    }
}

@media (min-width: 990px) and (max-width: 1200px) {
    .nav-tabs li.dropdown {
        width: 155px;
    }
}

@media (min-width: 767px) and (max-width: 990px) {
    .nav-tabs li.dropdown {
        width: 120px;
    }
}


.cat-accordion .panel-heading a.accordion-toggle {
    display: block;
}
.cat-accordion .panel-heading a:before {
    content: "";
    float: right;
    transition: all 0.5s;
    border: solid rgba(51, 51, 51, 0.8);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.cat-accordion .panel-heading a:hover:before {
    border: solid var(--accent);
    border-width: 0 2px 2px 0;
}</pre></body></html>