*,
*:before,
*:after {
    box-sizing: border-box;
}
html {
    --page-width: 100vw;
}


:root {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    --primary: #007543;
    --secondary: #d97708;
    --text-color: #4D4D4D;
    --dark-color: #333333;
    --background-color: #d9e2e8;
    --side-margin: calc((100vw - var(--page-width) + 13px) / -2);
    overflow-x: hidden;
}


@media (min-width: 768px) {
     :root {
        --page-width: 750px;
    }
}

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

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

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

@media (max-width:990px) {
     :root {
        --side-margin: 0px;
    }
}

body {
    overflow-x: hidden;
}

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

body {
    color: var(--text-color);
    font-size: inherit !important;
    font-family: inherit !important;
}
p {
    line-height: 1.35em;
    margin: 0 0 25px;
}
p+p {
    margin-top: .25em;
}

p:empty {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5em;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.5em;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 25px;
    font-weight: 600;
}

h3 {
    font-size: 23px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

h1.title {
    display: none;
}

h1.title:empty {
    display: none;
}



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

 */

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

a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
}



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

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

@media (max-width: 990px) {
    .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

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

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

.background-row:not(#mycanvas .background-row) {
    background: url(../images/pattern.webp);
    background-size: cover;
    padding: 1rem;
    position: relative;
    left: var(--side-margin);
    right: var(--side-margin);
    width: calc(100vw + 13px);
    display: flex;
}

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

#subpage-main:has(.background-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>.background-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .background-row:not(#mycanvas .background-row)>.column {
        font-size: 22px;
        width: 550px;
        max-width: 100%;
        transform: translateX(-15px);
    }
}

.row-background:not(#mycanvas .row-background) {
    position: relative;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 30px;
}

.row-background:not(#mycanvas .row-background):last-child {
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
}

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

.row-background:not(#mycanvas .row-background)>.column {
    background: white;
    padding: 1.5rem 30px;
    border-radius: 5px;
}

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

@media (max-width: 992px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
    .full-width,
    .background-row {
        --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 (min-width: 992px) and (max-width: 1201px) {
    .container {
        width: 970px;
    }
}

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


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

@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 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 {
    font-size: 20px;
}

.caption-text {
    font-size: 28px;
    font-weight: bold;
    display: block;
    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);
}


/* Social list */

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

header .social-list::before {
    content: 'Follow us ';
    color: white;
    margin-top: -3px;
}

#mobile-menu .social-list::before {
    color: var(--purple);
}

.social-list svg {
    padding: 3px;
    border: none;
    background: transparent;
    color: white;
}

.social-list svg:hover,
.social-list svg:focus {
    background: var(--primary);
}

.social-list rect {
    display: none;
}


/*  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;
    color: var(--purple);
}

#mobileMenuWrapper .mDropdown {
    display: none;
    list-style: none;
    padding: 0;
    background: none;
    border-top: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
    padding-top: .75em;
    margin-bottom: .75em;
}

.mDropdown>li>a {
    padding: 0;
}

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

#mobileMenuWrapper .login-item {
    display: none;
}

#mobileMenuWrapper .search-item path {
    fill: var(--purple);
}

#mobileMenuWrapper .social-list {
    margin-top: 1rem;
}

#mobileMenuWrapper .social-list svg {
    border-radius: 50%;
    background: var(--yellow);
}



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

/* Header */

header {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 30px;
    top: 0;
    z-index: 999;
    background: #fff;
    width: 100%;
}
header:before {
    content: '';
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    background: #fff;
    position: absolute;
    z-index: -1;
}
header.scrolled {
    position: fixed;
    z-index: 1000;
    transition: .125s transform ease-in-out;
    text-align: center;
    left: 0;
    right: 0;
    gap: 0;
    margin: 0 auto;
}
header.scrolled:before {
    box-shadow: 0 8px 16px rgba(10, 38, 71, .05), 0 4px 8px rgba(10, 38, 71, .05);
}


.logo-link img,
.logo-link svg {
    max-width: 100%;
}


header>section {
    display: flex;
    flex-direction: row-reverse;
    /* align-items: center; */
    justify-content: flex-end;
    gap: .5rem 10px;
}




.search-menu-wrap > ul {
    display: flex;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 0 0 1.25em;
    margin: 0;
    list-style-type: none;
    gap: 0.5em 1em;
    justify-content: flex-end;
    line-height: 1;
    max-height: 65px;
    overflow: hidden;
    margin-bottom: 8px;
    transition: .125s max-height ease-in-out .125s, .125s margin ease-in-out .125s;
    padding-top: 1em;
}
    @media (min-width: 991px) {
        header.scrolled .search-menu-wrap > ul {
            max-height: 0;
            margin: 0;
            transition-delay: 0s;
            padding: 0;
        }
    }
    @media (max-width: 991px) {
        .search-menu-wrap {
            display: flex;
            align-items: center;
            position: relative;
            list-style: none;
            padding: 0;
            margin: 0;
            list-style-type: none;
            gap: 0.45em;
            justify-content: flex-end;
            line-height: 1;
        }
        .search-menu-wrap > ul {
            margin: 0;
        }
    }
    @media (max-width: 560px) {
        .search-menu-wrap > ul {
            gap: 0.5em;
        }
    }
.search-menu-wrap > ul li.btn-wrap {
    margin: 0;
}





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


.search-wrap {
    margin-left: 15px;
}
.searchbox {
    width: 265px;
    max-width: 45vw;
    position: relative;
    padding: 5px 1ch;
    height: 40px;
    outline: 1px solid var(--gray);
    transition: .125s outline ease-in-out;
    border: 1px solid #E6E6E6;
    border-radius: 2px;
    background: white;
}

.searchbox:hover,
.searchbox:focus,
.searchbox:focus-within {
    outline: 1px solid var(--primary);
}

.search-input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    width: 100%;
    padding: inherit;
    background: white;
}

.search-input:focus {
    outline: none;
}

.search-menu-wrap .search-button {
    color: transparent;
    background-color: transparent;
    border: none;
    background-image: url(../images/search-new.svg.php?fc=000000);
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    transition: .125s background ease-in-out;
    transform: scale(1);
    width: 36px;
    padding: 7px 15px;
    box-shadow: none;
    background-size: 15px;
}

.search-button:hover,
.search-button:focus {
    outline: none;
}




.search-menu-wrap .btn-wrap a {
    border-radius: 2px;
    padding: 8px 17px 9px;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
}
    @media (max-width: 560px) {
        .search-menu-wrap .btn-wrap a {
            font-size: 16px;
            padding: 6px 12px 7px;
        }   
    }



.mobile-search-wrap .searchbox {
    max-width: 100%;
}




.searchbox .search-input {
    font-family: inherit;
    outline: none;
}
.search-input {
    box-shadow: none;
    color: #666;
    font-size: 18px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    padding: 6px 10px;
    border: 0px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 30px;
}
.search-input::placeholder {
    color: #666;
}
.input-group.search-input-wrap {
    border: 1px solid #E6E6E6;
    background: #fff;
    border-radius: 2px;
}

@media (max-width: 420px) {
    #search-input {
        width: 185px;
    }
}



/* Social List */
.social-list {
    display: flex;
    align-items: center;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    list-style-type: none;
    gap: 0.5em;
    justify-content: flex-end;
    line-height: 1;
}

.social-list svg {
    width: 28px;
    height: 28px;
    padding: 2px 0px;
    border: 1px solid var(--primary);
    border-radius: 3px;
    background: var(--primary);
    transition: .125s background ease-in-out, .125s border-color ease-in-out;
    color: white;
    vertical-align: unset;
}

.social-list svg:hover,
.social-list svg:focus {
    color: white;
    background: var(--accent);
    border-color: var(--accent);
}

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

.social-list rect {
    display: none;
}






/*--------------------------------------------------------
                    Desktop Navigation
--------------------------------------------------------*/

.dropdown-menu li {
    width: 100%;
}

.nav>li>a:hover,
.nav>li>a:focus {
    background-color: transparent;
}

/*------------------------Menu Opens on Hover, .dropdown-submenu takes care of 2nd tier menu hover*/

#nav_menu .dropdown:hover .men-level-0,
#nav_menu .dropdown:hover .men-level- {
    display: block;
}


/* .dropdown:hover .men-level-1 {
    display: none;
}*/

#nav_menu .dropdown-submenu:hover .men-level-1,
#nav_menu .dropdown-submenu .dropdown-submenu:hover .men-level-2 {
    display: block;
}

#nav_menu .men-level-1,
#nav_menu .men-level-2 {
    left: 100%;
}


/*--------------------Ends Menu Opens on Hover*/


/*------------------------2nd Tier Nav*/

#nav_menu .nav li {
    position: relative;
    float: left;
    list-style-type: none;
}

#nav_menu .open>#nav_menu .dropdown-menu {
    display: block;
}

#nav_menu .men-level-1 {
    top: 0px;
}


/*--------------------End-2nd Tier Nav*/


/*----------------------------
    MMS Member Icons Menu
------------------------------*/

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


/*------------------------------------------------------------------------------------
                            Main Menu CSS
--------------------------------------------------------------------------------------*/



.nav-main-wrapper {
    margin-top: 12px;
    margin-bottom: 3px;
}

#nav_menu {
    padding-left: 0px;
    padding-right: 0px;
    float: right;
}

#nav_menu .navbar-nav {
    width: 100%;
    padding: 0;
    margin: 0;
}

#nav_menu .navbar-nav>li a {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    padding: 10px 10px;
    transition: color .3s;
}

@media (min-width: 768px) and (max-width: 1199px) {
    #nav_menu .navbar-nav>li a {
        font-size: 16px;
        padding: 10px 7px;
    }
}

#nav_menu .navbar-nav>li>a:hover,
#nav_menu .navbar-nav>li>a:focus,
#nav_menu .navbar-nav .open>a,
#nav_menu .navbar-nav .open>a:focus,
#nav_menu .navbar-nav .open>a:hover {
    background: transparent;
    color: var(--primary);
}

#nav_menu ul.navbar-nav>li:last-child>a {
    padding-right: 0px;
}

#nav_menu .caret {
    margin-left: 4px;
}


/*------------------------------------------------------------------------------------
                            Dropdown Menus - full/collapsed
--------------------------------------------------------------------------------------*/

#nav_menu .dropdown-menu {
    background-color: #fff;
    border: 0;
    border-radius: 0px;
    padding: 3px 0px;
    margin: 0px;
}

#nav_menu .dropdown-menu li {
    width: 100%;
    border-bottom: 0px;
}

#nav_menu .dropdown-menu li:last-child {
    border-bottom: 0px;
}

#nav_menu .dropdown-menu li a {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Mulish', sans-serif;
    color: var(--dark-color);
    padding-top: 0px;
    padding-bottom: 0px;
    border: 0;
    font-weight: normal;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 6px 15px;
}
    @media (min-width: 768px) and (max-width: 1199px) {
        #nav_menu .dropdown-menu li a {
            font-size: 16px;
            padding: 10px 7px;
        }
    }

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

#nav_menu .dropdown-menu li.dropdown-submenu b.caret {
    border-left: 4px dashed;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-left: 15px;
}


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

#mobileMenuWrapper.open {
    left: 0px;
    bottom: 0px;
}

#mobileMenuWrapper #mobile-menu {
    overflow: auto;
    padding: 0px 20px 10px;
}

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

#mobileMenuWrapper #mobile-menu a {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    ;
    background: transparent;
    padding-left: 0px;
    text-decoration: none;
}

#mobileMenuWrapper #mobile-menu a:hover,
#mobileMenuWrapper #mobile-menu a:focus {
    background: transparent;
    color: #fff;
}

#mobileMenuWrapper ul.mDropdown {
    display: none;
}

#mobileMenuWrapper .mDropdown.open {
    display: block;
    background: var(--primary);
    padding-top: 0px;
    margin-bottom: 0px;
}

#mobileMenuWrapper #mobile-menu li ul.mDropdown.open li {
    border-top: 1px solid white;
    border-bottom: 0px;
}

#mobileMenuWrapper .mDropdown.open ul.mDropdown.open {
    background: var(--primary);
}

#mobile-menu a {}

#mobile-toggle {
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
}



svg#burger-menu {
    width: 30px;
    height: 20px;
    display: block;
    overflow: unset;
}

svg#burger-menu .cls-1 {
    fill: #333;
}




/*-----------------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>li#triggerClose {
    /* display: inline;
    float: right;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); */
    font-size: 40px;
    cursor: pointer;
    color: white;
    text-align: right;
    padding-right: 20px;
}

#mobile-menu>li>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;
}

#mobileMenuWrapper {
    position: fixed;
    top: 0px;
    bottom: 0px;
    z-index: 2000;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 300px;
    background-color: var(--primary);
    border-right: 2px solid #3e8265;
    -webkit-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000);
    -moz-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000);
    -o-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000);
    transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000);
}

#mobileMenuWrapper.open {
    left: 0px;
    bottom: 0px;
}


/* REQUIRED - Dropdown menu item transition states*/

#mobileMenuWrapper .mDropdown {
}

#mobileMenuWrapper .mDropdown.open {
}


/* REQUIRED - Sets the ULs to not have dots, or be spaced in the typical UL fashion. */

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


/* OPTIONAL-ISH - These are the settings for the base menu UL */


/* OPTIONAL-ISH - This sets each link on its own line fo' sho' */


/*#mobileMenuWrapper a, #mobileMenuWrapper div{
    display: block;
}*/


/* OPTIONAL - The actual A's. Style them as you wish*/


/* Top Level / all*/

#mobileMenuWrapper #mobile-menu a {
    display: inline-block;
    width: 100%;
}


/* dropdown only */

#mobileMenuWrapper .mDropdown a {
    padding: 7px 20px !important;
}

#mobileMenuWrapper .mDropdown li:last-child a {
    border-bottom: 0px;
}

#mobile-menu>li>ul {
    background-color: transparent;
    border: 0;
    border-radius: 0px;
    padding: 0px 0;
    box-shadow: none;
}

#mobileMenuWrapper .mDropdown a:hover,
#mobileMenuWrapper .mDropdown a:focus {
    background: transparent;
    color: #00AAA0;
    text-decoration: none;
}


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


/* #mobile-menu>li#triggerClose {
    color: #fff;
    float: right;
    display: inline;
    font-size: 38px;
    cursor: pointer;
    transform: rotate(45deg);
    border-bottom: 0px !important;
    padding-right: 20px !important;
} */

#mobileMenuWrapper li {
    position: relative;
}

#mobileMenuWrapper li:not(.mobileMenuTrigger):not(.mobile-search-wrap) {
    border-bottom: 1px solid white;
}

.mobile-home {
    border-top: 1px solid white;
    margin-top: 1em;
}

.mobile-search-wrap {
    height: 42px;
    margin: 0 20px;
}

#mobileMenuWrapper #mobile-menu a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    ;
    background: transparent;
    padding: 6px 0px;
    margin: 0px;
    padding-left: 20px;
    padding-right: 20px;
}

#mobileMenuWrapper #mobile-menu a:hover,
#mobileMenuWrapper #mobile-menu a:focus {
    background: transparent;
    color: #fff;
}

#mobile-menu a {}

#mobile-toggle {
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
}


#mobile-menu-col {
    top: 1px;
    padding: 0px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    float: right;
    margin-left: 10px;
}

@media (min-width: 768px) and (max-width: 990px) {
    #mobile-menu-col {}
}

#mobile-logo {
    width: 40%;
    float: left;
    margin-top: 27px;
    margin-bottom: 20px;
}

#mobile-logo a {
    margin: 0;
}

#mobile-logo svg#logo {
    width: 250px;
    max-width: 250px;
}

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





/* Navigation */

#main-menu {
    padding-block: 5px;
    position: relative;
}

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

#nav_menu {
    padding: 0;
}
    @media (max-width: 1199px) {
        header>nav #nav_menu {
            display: none !important;
        }
    }
#nav_menu>ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-end;
    gap: 0.85rem 1.5ch;
    vertical-align: middle;
    align-items: center;
}

#nav_menu>ul>li {
}



#nav_menu>ul>li>a {
    padding-inline: 0;
    /* !important needed to overwrite nav-padder until it is shut off */
    display: block;
    margin-inline: auto;
}

#nav_menu .navbar-nav>li a,
#nav_menu .navbar-nav>li:last-child a {
    /* Remove borders from links to be added to li's */
    border: none;
    padding: 0px;
}

#nav_menu>ul>li>.dropdown-menu {
    margin-top: unset !important;
    /* Overwrite !important'd style from navigation.css */
    top: 100%;
}
#nav_menu .navbar-nav>li .dropdown-menu li a {
    padding: 8px 20px;
}

#nav_menu>ul>li.join-wrap,
#nav_menu>ul>li.renew-wrap {
    margin-left: 0px;
}
#nav_menu>ul>li.join-wrap a,
#nav_menu>ul>li.join-wrap.open a,
#nav_menu>ul>li.renew-wrap a,
#nav_menu>ul>li.renew-wrap.open a {
    margin-top: 0px;
}



/* Mobile menu trigger  */

.mobileMenuTrigger:not(.triggerClose) {
    border: none;
    padding: 0;
    color: var(--primary);
    transition: color .125s ease-in-out;
    display: inline-flex;
    border-radius: 5px;
    background: transparent;
    margin-left: 0;
}


.mobileMenuTrigger:not(.triggerClose):hover,
.mobileMenuTrigger:not(.triggerClose):focus {
    color: var(--accent);
    outline: none;
}
 
.mobileMenuTrigger label {
    position: absolute;
    left: -666vw;
}

.mobileMenuTrigger button {
    font-size: 200%;
    font-weight: 400;
    margin-bottom: 0.4em;
    padding: 0;
    background: transparent;
    color: #fff;
    border: 0px;
    padding-right: 20px;
}

.menu-trigger {
    width: 32px;
    height: 32px;
}
@media (max-width: 992px) {
    .navbar-collapse.collapse {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .mobileMenuTrigger:not(.triggerClose) {
        display: none;
    }
}



.triggerClose {
    text-align: right;
}



#nav_menu>ul>li.btn-wrap {
    margin: 0;
}
#nav_menu>ul>li.btn-wrap a,
#mobileMenuWrapper #mobile-menu>li.btn-wrap a {
    color: #fff;
    padding: 5px 13px;
    margin: 0;
    top: 0;
}
#nav_menu>ul>li.btn-wrap a:hover,
#nav_menu>ul>li.btn-wrap a:focus,
#mobileMenuWrapper #mobile-menu>li.btn-wrap a:hover,
#mobileMenuWrapper #mobile-menu>li.btn-wrap a:focus {
    background: var(--accent);
    color: #fff;
    top: 0;
    transform: none;
}
#nav_menu>ul>li.btn-wrap a:after,
#mobileMenuWrapper #mobile-menu>li.btn-wrap a:after {
    display:none;
}

#mobileMenuWrapper #mobile-menu>li.btn-wrap a {
    text-decoration: none;
    color: #fff;
    background: var(--primary);
    padding: 20px 40px 20px 30px;
}
#mobileMenuWrapper #mobile-menu a {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
}



/*------------------------------------------------------------------------------------
                                @Media and Sizes
--------------------------------------------------------------------------------------*/


/*------ Nav collapse @ Tablet size ------*/

@media (max-width: 991px) {
    .navbar-header {
        float: none;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin: 7.5px -15px;
    }
    #nav_menu .navbar-nav>li {
        float: none;
    }
    #nav_menu .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    /* since 3.1.0 */
    .navbar-collapse.collapse.in {
        display: block!important;
    }
    .collapsing {
        overflow: hidden!important;
    }
}


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

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

#subpage-main,
#mms-main {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 18px;
}

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



main:not(#mms-main) .column {
    position: relative;
}



@media all and (min--moz-device-pixel-ratio:0) and (min-resolution: 3e1dpcm) {
    /* As of 9-20-23 support for :has is expected any time in Firefox, the only browser that does not support it. For the meantime, this media query is used to target only Firefox in order to put extra padding for the .button-links that need to be absolutely positioned to the bottom of their .column without covering it's contents that are close to it's bottom */
    main:not(#mms-main) .column:not(#slideshow-row .column),
    .news-item>div {
        padding: 30px 30px 60px;
    }
}



@media (max-width: 767px) {
    main:not(#mms-main) .column:not(#slideshow-row .column):has(.button-link),
    .news-item>div:has(.button-link) {
        padding-bottom: calc(60px + 1em);
    }
}

@media (min-width: 767px) {
    #subpage-main .row {
        /*These two styles can be tweaked if needed, but they are a handy default for spacing rows (and then columns once the screen hits the col-xs breakpoint on subpages*/
        margin-bottom: 2.5em;
    }
    div[class^="col"]+.col-md-12 {
        margin-top: 2em;
    }
}

@media(max-width: 1200px) {
    #homepage-main article>section,
    #subpage-main {
        padding: 3.5em 0;
    }
}

@media(max-width: 990px) {
    #homepage-main article>section,
    #subpage-main {
        padding: 2.5em 0;
    }
    .col-md-6.col-sm-12+.col-sm-12 {
        margin-top: 30px;
    }
}

@media (max-width: 900px) {
    #subpage-main:not(.full-background),
    #mms-main {
        margin-bottom: 2em;
    }
    main div[id^="section-"] {
        padding: 3.5em 0;
    }
}

@media (max-width: 767px) {
    #homepage-main article>section,
    #subpage-main {
        padding: 1.5em 0;
    }
    #subpage-main [class*="col-md"]+[class*="col-md"] {
        margin-top: 1rem;
    }
    #subpage-main div[class^="col-md"],
    #homepage-main div[class^="col-md"] {
        margin-bottom: 1em;
    }
    #homepage-main article>section {
        padding: 3em 0;
    }
}

@media (max-width: 450px) {
    #homepage-main article>section {
        padding: 2em 0;
    }
}



/*^^These two styles can be tweaked if needed, but they are a handy default for spacing rows (and then columns once the screen hits the col-xs breakpoint on subpages*/

#subpage-main .panel-body ul {
    margin-bottom: 25px;
}


/*----------------Subpage Committees Accordion----------*/

#subpage-main #committees-accord-wrap .panel.panel-default {
    border-top: 1px solid #f0f0f0;
}

#subpage-main #committees-accord-wrap .panel-heading {
    background: #fff;
}

#subpage-main #committees-accord-wrap .panel.panel-default h4.panel-title {
    padding: 10px 0px 10px;
}

#subpage-main #committees-accord-wrap h4.panel-title {
    font-size: 18px;
    color: #025282;
}

#subpage-main #committees-accord-wrap .panel-body ul li {
    color: #0277c0;
}

#subpage-main #committees-accord-wrap .panel-group .panel-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#subpage-main #committees-accord-wrap .panel-group .panel-body p {
    width: 66.66667%;
    border-right: 1px solid #f0f0f0;
}

#subpage-main #committees-accord-wrap .panel-group .panel-body ul {
    width: 33.33333%;
}

@media (max-width: 767px) {
    #subpage-main #committees-accord-wrap .panel-group .panel-body {
        display: block;
    }
    #subpage-main #committees-accord-wrap .panel-group .panel-body p {
        width: 100%;
        border-right: 0px;
    }
    #subpage-main #committees-accord-wrap .panel-group .panel-body ul {
        width: 100%;
    }
}


/*----------------Subpage Awards Accordion----------*/

#subpage-main #awards-accord-wrap .panel.panel-default {
    border-top: 1px solid #f0f0f0 !important;
    border: 0px;
}

#subpage-main #awards-accord-wrap .panel-heading {
    background: #fff !important;
}

#subpage-main #awards-accord-wrap .panel.panel-default h4.panel-title {
    padding: 10px 0px 10px;
}

#subpage-main #awards-accord-wrap h4.panel-title {
    font-size: 18px;
    color: #025282;
}


/* Default Slideshow  ------------------------
    ----------------------------------------
 */

#slideshow-row .column {
    padding: 0;
}

#slideshow-row .carousel-indicators {
    text-align: right;
    bottom: unset;
    top: 10px;
}

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

#slideshow-row .carousel-caption {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    text-align: left;
}

#slideshow-row .caption-wrapper {
    margin: auto calc((var(--side-margin) * -1) + 30px);
    color: white;
    line-height: 1.1;
}

@media (min-width: 871px) {
    #slideshow-row .caption-wrapper {
        max-width: 485px;
    }
}

#slideshow-row .caption-text {
    font-size: 46px;
    font-size: clamp(30px, calc(4vw - 20px), 46px);
}

#slideshow-row p+p:not(:empty) {
    margin-top: 1rem;
}

#slideshow-row .button-link:hover,
#slideshow-row .button-link:focus {
    background: white;
}

@media (max-width: 1100px) {
    #slideshow-row p+p:not(:empty) {
        margin-top: 1rem;
    }
}

@media (max-width: 850px) {
    #slideshow-row .carousel-caption {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        text-align: left;
    }
    #slideshow-row .carousel-caption {
        position: relative;
        background: var(--purple);
        color: white;
    }
    #slideshow-row .caption-text {
        font-size: 22px;
    }
}


/*  Announcements row ----------------------
    ----------------------------------------
 */

@media (min-width: 851px) {
    #homepage-main #slideshow-row+.row>.column {
        margin-top: -60px;
        position: relative;
        background: white;
    }
}

#homepage-main #announcement-row:not(.display) {
    display: none;
}


/*  Introduction row ----------------------
    ----------------------------------------
 */

#introduction-column p {
    font-size: 23px;
    font-weight: bold;
}


/* Event feed */

.event-item {
    display: flex;
    gap: 0.5rem 20px;
    font-size: 20px;
    padding: 1em 0;
}

.events-page-item {
    padding: 1em;
    display: flex;
    gap: 1em;
    flex-direction: column;
    font-size: 18px;
}

.events-page-item>div:first-child {
    display: inherit;
    gap: inherit;
    align-items: center;
    padding-bottom: 1em;
    /* margin-bottom: .5em; */
    border-bottom: 2px solid var(--purple);
}

.event-item>time,
.events-page-item>div:first-child>time {
    background: var(--blue);
    color: white;
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
    border-radius: 50%;
    min-width: 76px;
    height: 76px;
    padding: calc((76px - 1em) / 2) 0;
    text-align: center;
    width: fit-content;
}

.events-page-item>div:last-of-type>time {
    margin-bottom: .5em;
    font-weight: bold;
}

.event-item h3 {
    font-size: 23px;
    margin-bottom: 5px;
}

.event-item time {
    display: block;
    text-transform: lowercase;
}

.event-item time>span:last-child:not(:empty)::before {
    /* If there is an end time add an em dash between the two spans */
    content: '—';
    display: inline-block;
    margin-right: 0.5ch;
}

.event-item *:empty {
    display: none;
}

#homepage-main .event-item+.event-item {
    border-top: 1px solid var(--yellow);
}


/*  CTA row -------------------------------
    ----------------------------------------
 */

#homepage-main #cta-row {
    display: flex;
    gap: 1rem 30px;
    /* flex-wrap: wrap; */
}

#homepage-main #cta-row .column {
    background: url('../images/pattern.webp');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 186px;
    position: relative;
    transition: .125s transform ease-in-out;
}

#homepage-main #cta-row .column:hover,
#homepage-main #cta-row .column:focus {
    transform: scale(1.025);
}

#homepage-main #cta-row a {
    color: white;
    font-size: 36px;
    font-weight: bold;
    max-width: 170px;
    text-align: center;
    line-height: 1.2;
}

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

#homepage-main #cta-row a:hover,
#homepage-main #cta-row a:focus {
    text-decoration: none;
}

@media (max-width: 800px) {
    #homepage-main #cta-row .column {
        min-height: 156px;
    }
    #homepage-main #cta-row a {
        max-width: unset;
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    #homepage-main #cta-row {
        flex-direction: column;
    }
}


/*  News row -------------------------------
    ----------------------------------------
 */

main:not(#mms-main) #news-row>.column:not(#slideshow-row .column) {
    padding: 0;
    filter: unset;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(535px, 1fr));
    gap: 1rem 30px;
}

.news-item {
    overflow: hidden;
}

.news-item img {
    height: 235px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.news-item h3 {
    font-size: 23px;
    border-bottom: 3px solid;
    padding-bottom: 0.5rem;
}

.news-item time {
    font-size: 18px;
    opacity: .7;
    margin: 1em 0;
    display: block;
    line-height: 1;
}

@media (max-width: 767px) {
    main:not(#mms-main) #news-row>.column:not(#slideshow-row .column) {
        display: flex;
        flex-direction: column;
    }
}


/*  Banner row------------------------------
    ----------------------------------------
 */


/*  Model row ------------------------------
    ----------------------------------------
 */

.model-list,
.focus-list {
    display: flex;
    list-style: none;
    justify-content: space-around;
    padding: 0;
    gap: 1rem 15px;
    margin-bottom: 2rem;
}

.model-list li,
.focus-list li {
    text-align: center;
    max-width: 160px;
    position: relative;
}

.model-list li+li::before {
    content: '';
    border-bottom: 2px dashed var(--yellow);
    display: block;
    width: 50%;
    position: absolute;
    top: 40%;
    right: 140%;
}

.model-list img,
.focus-list img {
    margin: auto;
    min-height: 125px;
    padding: 15px;
}

@media (max-width: 1200px) {
    .model-list li+li::before {
        right: 120%;
    }
}

@media (max-width: 990px) {
    .model-list li+li::before {
        right: 23vw;
        width: 20%;
    }
}

@media (max-width: 767px) {
    .model-list li+li::before {
        content: none;
    }
}

@media (max-width: 600px) {
    .focus-list,
    .model-list {
        flex-direction: column;
        margin: 0 auto 2rem;
        width: fit-content;
    }
}


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


/* List styles */

.star-list>li {
    list-style-image: url('../images/I100_Icons_InnerStar_Lake_RGB.svg');
}


/* Page titles */

#page-title {
    background-image: url(../images/ATL-City-BG2-e1694113104823.png);
    background-size: cover;
    background-position: center;
    min-height: 290px;
    max-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#page-title::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    opacity: .25;
    z-index: 1;
}

#page-title h1 {
    --shadow-color: rgba(0, 0, 0, .75);
    font-size: 36px;
    margin: 0;
    color: white;
    text-align: center;
    width: fit-content;
    filter: drop-shadow(0px 1px 2px var(--shadow-color));
    border-bottom: 4px solid;
    padding: .25em .5ch;
    position: relative;
    z-index: 2;
}

#page-title:has(h1:empty) {
    display: none;
}

#subpage-main>.row:first-child {
    margin-top: -60px;
    z-index: 3;
    position: relative;
}


/* Background heading */

.background-heading {
    position: relative;
}

#subpage-main>.background-row:first-child,
#subpage-main>.background-heading:first-child {
    margin-top: 0;
    z-index: 1;
}

#subpage-main .background-heading::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: calc(100% - 260px);
    left: var(--side-margin);
    right: var(--side-margin);
    background: url(../images/pattern.webp);
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    z-index: -1;
}

#subpage-main .background-heading h1,
#subpage-main .background-heading h2 {
    text-align: center;
    width: fit-content;
    margin: 1em auto;
    color: white;
}

#subpage-main .background-heading>.column {
    color: white;
    text-align: center;
}

#subpage-main .background-heading+.row {
    margin-top: -3rem;
    z-index: 4;
    position: relative;
}


/* About page */

.board-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
    list-style: none;
    gap: 1em 30px;
    padding: 0;
    color: var(--purple);
    text-align: left;
}

.board-list li {
    box-shadow: 3px 10px 20px -10px rgba(0, 0, 0, .25);
    overflow: hidden;
    border-radius: 5px;
    background: white;
    display: flex;
    flex-direction: column;
}

.board-list img {
    width: 100% !important;
    height: 175px!important;
    /* !important's needed to prevent someone from not removing width/height attributes when uploading */
    object-fit: cover;
    object-position: center;
}

.board-list li>div {
    padding: 1em;
    font-weight: bold;
    line-height: 1.1;
    display: flex;
    gap: 5px;
    flex-direction: column;
    padding-bottom: 5em;
    font-size: 16px;
    position: relative;
    height: 100%;
}

@media (min-width: 768px) {
    .board-list li>div {
        font-size: 14px;
    }
}

.board-list .name {
    border-bottom: 3px solid;
    padding-bottom: 5px;
    font-size: 18px;
}

.board-list button {
    background: none;
    border: none;
    padding: 0;
    color: var(--blue);
    width: fit-content;
    text-transform: uppercase;
    position: absolute;
    bottom: 1.5em;
    right: 1em;
}


/* Board list modals */

.board-list~.modal .modal-dialog {
    width: 600px;
    color: var(--purple);
    text-align: left;
}

@media (min-width: 768px) {
    .board-list~.modal .modal-dialog {
        font-size: 18px;
    }
}

.board-list~.modal .modal-content {
    border-radius: 6px;
}

.board-list~.modal .modal-header {
    border: none;
    padding: 30px 30px 1em;
}

.board-list~.modal .modal-body {
    padding: 0 30px 30px;
}

.board-list~.modal .name,
.board-list~.modal .title {
    font-weight: bold;
}

.board-list~.modal .name {
    font-size: 23px;
    padding-bottom: .5em;
    margin-bottom: .5em;
    border-bottom: 3px solid;
}

.board-list~.modal .title {
    margin-bottom: 1em;
}

#subpage-main .details-row {
    margin: -1rem -30px 1rem;
    font-style: italic;
}

@media (min-width: 768px) {
    #subpage-main .details-row {
        font-size: 14px;
    }
}


/* Events page */

#subpage-main #events-row {
    padding-left: 15px;
    padding-right: 15px;
}

#subpage-main:not(#foo)>#events-row:not(#foo):not(#bar) {
    /* I seriously hate how :not jacks up the specificity of a selector. It should have no effect */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
}

#subpage-main>#events-row::before,
#subpage-main>#events-row::after {
    content: none;
}

#subpage-main #events-row>.column {
    /* Get rid of filter, border-radius and background-color applied to most .columns */
    display: contents;
}

#events-row .event-item {
    filter: drop-shadow(3px 10px 20px rgba(0, 0, 0, .25));
    border-radius: 0.375rem;
    background-color: white;
}


/* Contact row */

#contact-row .wrapper {
    max-width: var(--page-width) !important;
}

#contact-row .wrapper>.row {
    margin-bottom: 0 !important;
}

#subpage-main #contact-row .wrapper>.row>.column {
    color: white;
    background: none !important;
    filter: unset !important;
}

#subpage-main #contact-row h2 {
    color: white;
}

#contact-row .grecaptcha-badge,
[action="contact_form_resp.php"] .grecaptcha-badge {
    /* There is a style inside the iframe which can't be overwritten and makes the badge jump around when hovered. Sorry Alphabet. */
    display: none !important;
}


/* Contact form */

#contact-row form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 30px;
}

#contact-row input {
    background: none;
    border: 0;
    border-bottom: 1px solid white;
    border-radius: 0;
    box-shadow: none;
    padding: 1em;
    height: unset;
    color: white;
    font-size: 18px;
    font-weight: normal;
}

#contact-row input::placeholder {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

#contact-row .col-sm-offset-2,
#contact-row .form-group {
    display: contents;
}

#contact-row .button-link {
    position: relative !important;
    top: unset !important;
    bottom: unset !important;
    left: unset !important;
    right: unset !important;
    font-size: 14px;
    margin: 0 !important;
    width: fit-content;
    grid-row: 2/3;
    grid-column: 2/3;
    height: fit-content;
    margin-top: auto !important;
}


/* Membership FAQs */

#membership-faqs {
    position: relative;
    z-index: 4;
    margin-top: -30px;
}

#membership-faqs .panel-default,
#membership-faqs .panel-heading,
#membership-faqs .panel-title {
    display: contents;
}

#subpage-main #membership-faqs a {
    display: flex;
    gap: 2ch;
    justify-content: space-between;
    align-items: center;
    color: var(--purple);
    line-height: 1.5;
    font-size: 20px;
}

#subpage-main #membership-faqs a::after {
    content: '+';
    font-size: 20px;
    line-height: 1;
    transition: .125s transform ease-in-out;
}

#membership-faqs .panel-body {
    padding: 0;
    padding-top: 1em;
}

#membership-faqs:has(.in) a::after {
    transform: rotate(45deg)
}


/* Contact page */

.icon-wrapper {
    display: grid;
    gap: 1ch;
    align-items: center;
    grid-template-columns: 40px 1fr;
    margin-bottom: 1em;
}

.icon-wrapper img {
    margin: auto;
}

.icon-wrapper address {
    margin: 0;
    line-height: 1.2;
}

#subpage-main #contact-info-column .social-list {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

#contact-info-column .social-list svg {
    background: var(--blue);
    border-radius: 50%;
}



/* Serves row */

#subpage-main #serves-row {
    position: relative;
    padding: 60px 30px;
    margin-bottom: -1em;
}

#subpage-main #serves-row::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    background-image: url('../images/atl-map.png');
    background-size: cover;
    display: block;
}

main:not(#mms-main) #serves-row h2 {
    font-size: 25px;
    border: none;
}

#serves-row em {
    font-size: 23px;
}


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



/*----------------Homepage Slideshow----------*/

#slideshow-wrap {
    position: relative;
}

#slideshow-wrap .container {
    width: 100%;
}

#slideshow-wrap img {
    width: 100%;
}

#slideshow-wrap .item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

#slideshow-wrap a {
    text-decoration: none;
}


#slideshow-wrap a {
    text-decoration: none;
}

#slide-row {
    margin-bottom: 10px;
}

#slideshow-wrap .caption-slide-wrap {
    background: rgba(26, 26, 26, 0.75);
    text-align: center;
    width: 556px;
    margin: 0 auto;
    padding: 20px 25px;
}

.carousel-control.left,
.carousel-control.right,
.carousel-control:hover {
    background-image: none;
    font-size: ;
    font-weight: ;
    z-index: 101;
}

.carousel-control {
    margin: auto 0px;
}

.carousel-control.left,
.carousel-control.right {
    /* height: 22px; */
    width: fit-content;
    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: var(--primary);
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 0px;
    border-radius: 30px;
    padding: 10px 9px 12px;
    line-height: 0;
}

.carousel-control img {
    width: 7px;
    height: 11px;
    margin-top: -8px;
}

#slideshow-wrap .carousel-control.left {
    right: 22%;
    top: 3%;
    bottom: auto;
}

#slideshow-wrap .carousel-control.right {
    right: 19.5%;
    top: 3%;
    bottom: auto;
}

@media (min-width: 1465px) and (max-width: 1565px) {
    #slideshow-wrap .carousel-control.left {
        right: 16.5%;
    }
    #slideshow-wrap .carousel-control.right {
        right: 13%;
    }
}

@media (min-width: 1200px) and (max-width: 1465px) {
    #slideshow-wrap .carousel-control.left {
        right: 16.5%;
    }
    #slideshow-wrap .carousel-control.right {
        right: 13%;
    }
}

@media (min-width: 990px) and (max-width: 1199px) {
    #slideshow-wrap .carousel-control.left {
        right: 10%;
    }
    #slideshow-wrap .carousel-control.right {
        right: 4.5%;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    #slideshow-wrap .carousel-control.left {
        right: 10%;
    }
    #slideshow-wrap .carousel-control.right {
        right: 4.5%;
    }
}

@media (max-width: 767px) {
    #slideshow-wrap .carousel-control.left {
        right: 50px;
    }
    #slideshow-wrap .carousel-control.right {
        right: 20px;
    }
    .caption-inside-wrap {
        width: 100% !important;
    }
}

#slideshow-wrap .carousel-indicators {
    display: none;
}

.caption-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
    text-align: left;
}

.carousel-caption {
    position: absolute;
    z-index: 100;
    background: rgba(0, 0, 0, 0.6);
    left: auto;
    top: auto;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: left;
    text-shadow: none;
    margin: 0;
    padding: 18px 0px 15px;
}

@media (max-width: 767px) {
    .carousel-caption {
        position: static;
        background: rgba(0, 0, 0, 0.6);
        min-height: auto;
    }
}

.caption-inside-wrap {
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

p.caption-text {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    word-wrap: break-word;
    margin-top: 0px;
    margin-bottom: 8px;
}

p.caption-text span {
    display: inline-block;
    margin-top: 10px;
    background: #7B133E;
    padding: 2px 15px;
}

p.alt-text {
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    display: none;
    word-wrap: break-word;
    line-height: 21px;
    margin-bottom: 0px;
}

.carousel-indicators {
    bottom: 12px;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.55);
    border: 1px solid #FFFFFF;
    border-radius: 15px;
}

.carousel-indicators li.active {
    width: 12px;
    height: 12px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: var(--primary);
    border: 1px solid #fff;
    border-radius: 15px;
}

@media (max-width: 767px) {
    .carousel-indicators li,
    .carousel-indicators li.active {
        width: 10px;
        height: 10px;
    }
}

.caption-text-wrap {
    display: inline-block;
    vertical-align: middle;
    width: 74%;
}

.caption-btn-wrap {
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    float: right;
    text-align: right;
    margin-top: 20px;
}

@media (min-width: 768px) and (max-width: 990px) {
    .caption-text-wrap {
        width: 64%;
    }
    .caption-btn-wrap {
        width: 35%;
    }
}

.caption-btn-wrap a {
    background: #4F85C4;
    border: 1px solid #4F85C4;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    padding: 12px 20px;
    border-radius: 1px;
    text-align: center;
}


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


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


main#homepage-main>*:nth-child(even):not(#slideshow-wrap) {
    background: var(--background-color);
}
main#homepage-main>*:not(#slideshow-wrap) {
    padding-top: 60px;
    padding-bottom: 60px;
}
    @media (max-width: 767px) {
        main#homepage-main>*:not(#slideshow-wrap) {
            padding-top: 35px;
        }
    }


/* Buttons */

.btn-wrap {
    margin-top: 30px;
}

.btn-wrap a {
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    background: var(--primary);
    color: #fff;
    border-radius: 3px;
    padding: 10px 19px 12px;
    text-align: center;
    transition: 0.5s background;
}

.btn-wrap a:hover {
    color: #fff;
    background: var(--secondary);
}

.secondary-btn a {
    background: var(--secondary);
}
.secondary-btn a:hover,
.secondary-btn a:focus {
    background: var(--primary);
}




/* Welcome Section */
#welcome-featured-wrap {
    position: relative;
}
#welcome-featured-wrap:not(#gm-canvas #welcome-featured-wrap):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: var(--background-color);
    z-index: -1;
}



/* Featured Section */

#featured-section-wrap .column img {
    text-align: center;
    margin: 0 auto 20px;
}

#featured-section-wrap .column h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: #1A1A1A;
    text-align: center;
}

#featured-section-wrap .column h3 a {
    font-size: 18px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: #1A1A1A;
    text-align: center;
}




/* Featured Box */

#featured-box-wrap {
    position: relative;
    margin-top: 5px;
}

@media (min-width: 768px) and (max-width: 990px) {
    #featured-box-wrap {
        margin-top: 25px;
    }
}

@media (max-width: 767px) {
    #featured-box-wrap {
        margin-top: 25px;
    }
}

#featured-box-wrap:not(#gm-canvas #featured-box-wrap) .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0rem 30px;
    margin-right: 0;
    margin-left: 0;
}
    @media (max-width: 767px) {
        #featured-box-wrap:not(#gm-canvas #featured-box-wrap) .row {
            grid-template-columns: repeat(2, 1fr);
        }
    }

#featured-box-wrap:not(#gm-canvas #featured-box-wrap) .row::before {
    content: none;
}
#featured-box-wrap:not(#gm-canvas #featured-box-wrap) .row .column {
    display: flex;
    width: 100%;
    background: #3e8265;
    border-radius: 3px;
    text-align: center;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding: 15px 0px 0px;
}

#featured-box-wrap .column .col-content-wrap {
    display: flex;
    align-self: flex-end;
    flex-direction: column;
    width: 100%;
}

#featured-box-wrap .column .col-content-wrap img {
    margin: 0 auto 10px;
    height: 32px !important;
}

#featured-box-wrap .column .col-content-wrap h2 {
    background: var(--primary);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0px;
    width: 100%;
    padding: 7px 15px;
}

#featured-box-wrap .column .col-content-wrap h2 a {
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    word-break: break-word;
}

#featured-box-wrap .column .col-content-wrap a:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


/* Upcoming Events */

#events-section-wrap h3 {
    padding-bottom: 20px;
}
.events-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem 30px;
}
    @media (max-width: 767px) {
        .events-wrapper {
            display: block;
            width: 100%;
        }
    }

.events-wrap-item {
    margin-bottom: 25px;
    background: #fff;
    border: 1px solid #CECECE;
    padding: 12px 15px 17px;
    cursor: pointer;
    border-radius: 2px;
}

.event-details-wrap {
    display: inline-block;
    vertical-align: top;
    /*width: calc(100% - 76px);
    width: -webkit-calc(100% - 76px);
    width: -moz-calc(100% - 76px);*/
    position: relative;
}

.event-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.event-date span {
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
    color: var(--text-color);
}

#event-container {
    padding-left: 0px;
    margin-left: -15px;
}

#events-section-wrap h3.event-title {
    padding-bottom: 0px !important;
    margin-bottom: 15px;
    line-height: 22px;
    font-size: 20px;
}

a.ev-title-link {
    color: var(--dark-color);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    text-decoration: none;
    text-transform: none;
    word-wrap: break-word;
    line-height: 22px;
}

a.ev-title-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.event-content {}

#events-section-wrap .btn-wrap {
    margin-top: 25px;
}


/* Our Services */

#services-section-wrap h3 {
    padding-bottom: 20px;
}

.accordion-services-wrap .panel-group .panel {
    margin-top: 0px;
    border: 1px solid #CECECE;
}

.accordion-services-wrap .panel-heading {
    padding: 0;
    border: 0;
}

#services-section-wrap .accordion-services-wrap h3.panel-title,
.accordion-services-wrap h3.panel-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 0px;
}

.accordion-services-wrap .panel-title>a {
    display: block;
    padding: 11px 15px;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
}

.accordion-services-wrap .panel-heading.active .panel-title>a {
    color: var(--secondary);
}

.accordion-services-wrap .panel-heading a:before {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    float: right;
    transition: all 0.5s;
}

.accordion-services-wrap .panel-heading.active a:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion-services-wrap .panel-body {
    color: var(--text-color);
}

#services-section-wrap .btn-wrap {
    margin-top: 45px;
}


/* Recent News */

#news-section-outer-wrap {
    position: relative;
}
#news-section-outer-wrap:not(#gm-canvas #news-section-outer-wrap):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: var(--background-color);
    z-index: -1;
}
#news-section-wrap h3 {
    margin-bottom: 10px;
}
.news-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 30px;
}
    @media (max-width: 767px) {
        .news-wrapper {
            display: block;
            width: 100%;
        }
    }
.news-wrap-item {
    background: #fff;
    border: 1px solid #CECECE;
    padding: 21px 22px 23px;
    border-radius: 2px;
    margin-bottom: 25px;
}

#news-section-wrap .news-wrap-item h3 {
    font-size: 20px;
    margin-bottom: .5em;
}
.news-item h4 {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    padding-bottom: 10px;
}

a.news-title-link {
    color: var(--dark-color);
    text-transform: lowercase;
    display: block;
    font-family: 'DM Sans', sans-serif;
}

a.news-title-link:first-line {
    text-transform: capitalize;
}

a.news-title-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.news-description {}

#news-section-wrap .btn-wrap {
    margin-top: 25px;
}


/* Sponsors Slideshow */

#sponsors-section-wrap h2 {
    margin-bottom: 10px;
}

#sponsors-section-wrap .carousel-indicators {
    bottom: -45px;
}

#sponsors-section-wrap .carousel-indicators li {
    margin-left: 6px !important;
    border: 1px solid var(--primary);
    background: transparent !important;
}

#sponsors-section-wrap .carousel-indicators li.active {
    margin-left: 6px !important;
    border: 1px solid var(--primary);
    background: var(--primary) !important;
}

#sponsors-section-wrap .carousel .item img {
    /*border: 1px solid #fcfcfc;*/
}

#sponsors-section-wrap .carousel .item .col-sm-2 img,
#sponsors-section-wrap .carousel .item img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

#sponsors-section-wrap .carousel-control {
    display: none;
}


/*--------------------------------------------------------
                CSS Styles for Inner Pages
--------------------------------------------------------*/


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


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

.footer-credit-social-wrap {
    background: var(--primary);
    padding: 60px 0px 50px;
    margin-top: 20px;
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    color: #fff;
    line-height: 28px;
}

.footer-credit-social-wrap * {
    color: #fff;
}

.footer-credit-social-wrap a {
    color: #fff;
    text-decoration: underline;
    white-space: normal;
    word-break: break-word;
}

.footer-credit-social-wrap h4 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 5px;
}

.footer-address-wrap strong {
    font-weight: 500;
}

.footer-contactnum-wrap {
    margin-top: 20px;
}

.footer-social-wrap {
    margin-top: 45px;
}

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

.footer-social-wrap ul li {
    list-style: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}

.footer-social-wrap ul li:first-child {
    margin-left: 0px;
}

.footer-mission-wrap {
    color: #fff;
}

#contact-form>div.form-group>div.col-sm-12 {
    margin-bottom: 5px;
}

.newsletter-form .form-group {
    margin-right: -15px;
    margin-left: -15px;
}
.newsletter-form .form-group,
.newsletter-form label {
    margin-bottom: 12px;
}

.newsletter-form label {
    display: none;
}

.newsletter-form input {
    color: #999999;
    height: 39px;
    border-radius: 3px;
}

.newsletter-form [for=contactCaptcha] {
    display: block;
    margin-bottom: 6px;
}
    @media (max-width: 767px) {
        .newsletter-form [for=contactCaptcha] {
            margin-bottom: 12px;
        }
    }

.newsletter-form .required-text-form {
    display: none;
}
.newsletter-form form#contact-form p {
    margin: 0;
    font-size: 16px;
    padding-top: 5px;
}
.newsletter-form form#contact-form .form-group:last-child .col-sm-offset-2.col-sm-10 {
    margin: 0;
    padding-left: 15px;
}
.newsletter-form form#contact-form .btn {
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    background: var(--secondary);
    color: #fff;
    border-radius: 3px;
    padding: 10px 20px 10px;
    text-align: center;
    border: 0px;
    margin-top: 10px;
    height: 42px;
    outline: none;
    transition: 0.5s background;
}
.newsletter-form form#contact-form .btn:hover {
    background: #fff;
    color: var(--secondary);
}
.newsletter-form #contact_form_required_div {
    display: none;
}


footer#main-footer {
    background: #1F2B35;
    padding: 27px 0px 27px;
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
}

footer#main-footer p {
    color: #fff;
    margin: 0;
    font-weight: 400;
    padding-top: 0px;
    padding-bottom: 0px;
}

.footer-credit-section .text-left p:nth-child(2) {
    margin-top: 12px !important;
}

footer#main-footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: 400;
}

footer#main-footer a:hover {
    color: #fff;
}

footer#main-footer strong {
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

footer#main-footer span.footer-credit,
footer#main-footer span.footer-privacy {
    border-left: 1px solid #fff;
    margin-left: 12px;
    padding-left: 12px;
}

footer#main-footer .text-right a {
    text-decoration: underline;
    font-weight: 400;
}

@media (min-width: 768px) and (max-width: 990px) {
    footer#main-footer .text-left,
    footer#main-footer .text-right {}
}

@media (max-width: 767px) {
    footer#main-footer .text-left,
    footer#main-footer .text-right {
        text-align: center;
    }
    footer#main-footer p {
        margin-bottom: 5px;
    }
    footer#main-footer span.footer-credit,
    footer#main-footer span.footer-privacy {
        display: block;
        border-left: 0px;
        padding-left: 0px;
        margin-left: 0px;
    }
    .footer-nav-wrap {
        margin-top: 20px;
    }
    .footer-featured-logo {
        margin-top: 35px;
    }
}

.footer-credit-section * {
    color: #fff;
}




.footer-top-wrap {
    position: relative;
    color: #fff;
    padding: 3rem 15px;
    display: flex;
    justify-content: space-between;
    align-items: normal;
    gap: 1rem 30px;
    font-size: inherit;
    font-family: inherit;
    flex-direction: row;
}
    @media (max-width: 767px) {
        .footer-top-wrap {
            flex-direction: column;
        }
    }
.footer-top-wrap.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);
}
.footer-top-wrap > * {
    flex: 1;
}
.footer-top-wrap * {
    color: #fff;
}
.footer-top-wrap h1 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 5px;
}
.footer-top-wrap a {
    text-decoration: underline;
    white-space: normal;
    word-break: break-word;
}
.footer-top-wrap a:hover,
.footer-top-wrap a:focus {
    text-decoration: underline;
}




footer {
    position: relative;
    color: #fff;
    padding: 1.4rem 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 30px;
    font-size: inherit;
    font-family: inherit;
}
    @media (max-width: 767px) {
            footer {
                flex-direction: column;
                align-items: self-start;
                text-align: left;
                width: 100%;
            }
            footer .text-right {
                text-align: left;
            }
    }


footer::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    z-index: -1;
    background: #1F2B35;
}
footer * {
    color: #fff;
}
footer p {
    line-height: 1.6em;
    margin: 0;
}
footer a {
    text-decoration: underline;
    transition: all 0.2s ease;
}
footer a:hover,
footer a:focus {
    opacity: 0.65;
    color: #fff;
}
footer span.footer-privacy {
    border-left: 1px solid #fff;
    margin-left: 12px;
    padding-left: 12px;
}
    @media (max-width: 767px) {
        footer span.footer-privacy {
            display: block;
            border-left: 0px;
            padding-left: 0px;
            margin-left: 0px;
        }
    }


/*--------------------------------------------------------
                        MMS Styling
--------------------------------------------------------*/

.grid-slideshow-content {
    background: transparent;
    margin-left: 0px;
    padding: 0px 15px;
}

.grid-bottom-featured-wrap {
    background-image: none;
}

.grid-bottom-featured-wrap-h2 {
    color: #527785;
    margin-bottom: 0px;
}

.grid-bottom-featured-wrap-p {
    color: #323233;
}

#mycanvas #news-section-wrap .column,
#mycanvas #get-involved-wrap .column {
    min-height: 415px;
}


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

.modal {
    overflow-y: visible;
}

.modal-dialog {
    max-width: 280px;
    margin: 50px auto;
}

.modal-header {
    text-align: center;
}

.modal-body {
    padding: 15px 23px;
}

.login-form input {
    width: 203px!important;
    height: 30px;
    margin: 0px auto;
    margin-bottom: 10px;
    padding: 0px 15px;
    margin-left: 15px;
    background: #fff;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}

.login-form input[type="submit"] {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    margin-left: 10px;
    outline: none;
    text-decoration: none;
    text-align: center;
    padding: 8px 20px;
    height: auto;
}

.login-form input[type="submit"]:hover,
.login-form input[type="submit"]:focus {
    background: var(--secondary);
    border: 1px solid var(--secondary);
    text-decoration: none;
}

.login-form a {
    color: #3A3A3A;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    display: block;
    margin-left: 15px;
    padding-bottom: 10px;
    text-decoration: underline;
}

.login-form a:hover,
.login-form a:focus {
    color: var(--primary);
}

.login-form input:last-of-type {
    width: 100px;
    margin: none;
}

h6.modal-title {
    color: #527785;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

h4#myModalLabel {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: #1A1A1A;
    padding-bottom: 0px;
}


/*--------------------------------------------------------
                        MMS Styling
--------------------------------------------------------*/


/*----------- MEDIA QUERY --------------------*/

@media (min-width: 1332px) and (max-width: 1365px) {}

@media (max-width: 1200px) {
    .caption-wrapper {
        max-width: 970px;
    }
}

@media (min-width: 1000px) {
    .container {}
}

@media (min-width: 990px) and (max-width: 1199px) {
    .container {}
}

@media (max-width: 991px) {
    header#header-outer-wrap.scrolled .login-search-wrap {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    .container {}
    #search-input {
        max-width: 200px;
    }
    #mobile-menu-col {
        margin-left: 20px;
    }
    #right-index-content {
        margin-top: 30px;
    }
    #services-section-wrap {
        margin-top: 25px;
    }
    .news-item {
        min-height: auto;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .container {}
    #right-side-wrap {
        margin-top: 10px;
    }
    .join-wrap {
        margin-left: 7px;
    }
    .login-wrap a,
    .join-wrap a {
        font-size: 16px;
        padding: 6px 12px 7px;
    }
    #slideshow-wrap .caption-slide-wrap {
        background: transparent;
        width: 100%;
        padding: 10px 0px 20px;
    }
    #services-section-wrap {
        margin-top: 25px;
    }
    .news-item {
        min-height: auto;
        margin-bottom: 20px;
    }
    #news-section-wrap .btn-wrap {
        margin-top: 25px;
    }
    #sponsors-section-wrap .carousel .item .col-sm-2 {
        text-align: center;
        margin-bottom: 25px;
        width: 50%;
        display: inline-block;
    }
    #sponsors-section-wrap .carousel .item .col-sm-3 {
        width: 50%;
        display: inline-block;
        margin-bottom: 20px;
    }
    .footer-credit-social-wrap {
        padding: 50px 0px 30px;
    }
    .footer-credit-social-wrap .col-xs-12 {
        text-align: left;
        margin-bottom: 15px;
    }
    .footer-mission-wrap,
    .footer-newsletter-wrap {
        margin-top: 25px;
    }
}

@media (min-width: 560px) and (max-width: 767px) {}

@media (max-width: 580px) {
    p.caption-text {
        line-height: 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {}
}

@media (max-width: 380px) {
    .login-wrap a,
    .join-wrap a {
        font-size: 14px !important;
    }
}

@media (max-width: 372px) {
    #logo-wrap,
    #right-side-wrap {
        width: 100%;
    }
}


/* Safari Browser */

@media only screen and (-webkit-min-device-pixel-ratio: 1) {
     ::i-block-chrome,
    .div {}
}


/* Internet Browser */

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {}