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


/*--------------------------------------------------------
    FONT ASSIGNMENTS
--------------------------------------------------------*/

:root {
    --primary: #074768;
    --secondary: #32759D;
    --accent: #3A95A0;
    --page-width: calc(100vw - var(--scrollbarWidth));
    --side-margin: 0;
    --gap: 80px;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    color: #4D4D4D;
    overflow-x: clip;
}

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

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

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

body {
    font-size: inherit !important;
    font-family: inherit !important;
    /* Fix the MMS pages where random fonts and font sizes have been assigned */
    overflow-x: inherit;
}

p {
    line-height: 24px;
    margin-bottom: 20px;
}


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

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    color: var(--primary);
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}

h1 a,
h2 a,
h3 a,
h4,
h5 a {
    font-family: 'Mulish', sans-serif;
}

h1 {
    font-size: 32px;
    color: #333333;
}

h2 {
    font-size: 30px;
    color: var(--primary);
}

h3 {
    font-size: 22px;
    color: #3A3A3A;
}

h4 {
    font-size: 20px;
}

h1.title {
    margin-top: 15px;
}

h1.title:empty {
    display: none;
}


/*^^Hides the extra margin that is added on pages without a title*/

#subpage-main p:not(:empty)+h2,
#subpage-main p:not(:empty)+h3,
#subpage-main p:not(:empty)+h4,
#subpage-main ul+h2,
#subpage-main ul+h3,
#subpage-main ul+h4,
#subpage-main table+h2,
#subpage-main table+h3,
#subpage-main table+h4 {
    margin-top: 1.5em;
}

#subpage-main h2+ul,
#subpage-main h3+ul,
#subpage-main h4+ul {
    margin-top: -.75rem;
    /*Adjusts for the margin-bottom placed on these headings to make the ul's look like they belong to that heading*/
}


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

a {
    color: ;
}

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

a.button {}

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

a.button+* {
    padding-top: 1.5em;
}


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

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


/* Wrappers*/

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

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

.full-width>.column {
    padding-left: 0;
    padding-right: 0;
}

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

.background-row {
    position: relative;
    left: var(--side-margin);
    right: var(--side-margin);
    width: calc(100vw + var(--scrollbarWidth));
    width: calc(100vw - var(--scrollbarWidth));
    padding-block: calc(var(--gap) * .75);
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.1rem;
    display: flex;
}

@media (max-width: 767px) {
    /* .background-row {
        padding-right: calc(15px +(var(--scrollbarWidth)* 2));
    } */
    /* .background-row {
        width: calc(100vw - var(--scrollbarWidth));
        left: 0;
        right: var(--scrollbarWidth);
    } */
}

.background-row::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    background: var(--primary);
    display: block;
}

.background-row>.column {
    background: transparent !important;
    color: white;
    text-align: center;
    max-width: var(--page-width);
    margin: auto;
    line-height: 1.3;
}

.background-row:not(#mycanvas .background-row)>.column {
    /* Since element is extended past where the scrollbar is, extra padding is added to make sure it's content is not hidden under the scrollbar */
    padding-right: calc(15px + var(--scrollbarWidth));
}

.background-row:not(#mycanvas .background-row) :is(h1, h2, h3, h4, h5, h6, p, a) {
    color: inherit;
}

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

.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::before {
        left: 0;
        right: 0;
    } */
    .background-row:not(#mycanvas .background-row)>.column {
        font-size: 20px;
    }
}

#subpage-main img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

figcaption {
    font-style: italic;
    font-size: .9em;
    padding-top: 5px;
}

@media (max-width: 767px) {
    figcaption {
        font-size: 1em;
    }
}

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


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

#subpage-main table {
    max-width: 100%;
    border-collapse: collapse;
    color: #212529;
    margin-bottom: 1em;
}

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

#subpage-main table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    border-top: none;
}

#subpage-main table caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

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

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


/* Login */

#login-wrap {
    display: inline-block;
    vertical-align: middle;
    float: right;
    margin-top: 14px;
}

#login-wrap a {
    background: #f2762e;
    color: #fff;
    padding: 8.5px 24px;
    position: relative;
    text-decoration: none;
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border-radius: 2px;
}

#donate-wrap a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    background: var(--primary);
    padding: 11.5px 31px;
    border-radius: 23px;
    display: block;
}

.mobile-login-menu {
    float: right;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 990px) {
    .mobile-login-menu #login-wrap.visible-xs,
    .mobile-login-menu #login-wrap.visible-sm {
        display: inline-block !important;
        float: none;
        margin-right: 15px;
    }
}


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

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

#search-input {
    max-width: 285px;
    display: inline-block;
    vertical-align: middle;
    color: #3F4444;
    position: relative;
}

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

@media (max-width: 360px) {
    #search-input {
        max-width: 180px;
    }
}

.search-main-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-top: 20px;
}

.search-input {
    background: transparent;
    border: 2px solid #fff;
}

#search-input ::-webkit-input-placeholder {
    color: #3F4444;
}

#search-input :-moz-placeholder {
    /* Firefox 18- */
    color: #3F4444;
}

#search-input ::-moz-placeholder {
    /* Firefox 19+ */
    color: #3F4444;
}

#search-input :-ms-input-placeholder {
    color: #3F4444;
}

.icon-search:before {
    content: url("../images/search-icon.png");
}

#search-input input {
    box-shadow: none;
    height: 39px;
    color: #3F4444;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
    padding: 0px 13px;
    border: 1px solid #AFBCB3;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

#search-input button {
    background: #132E71;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 5px 13px 0px;
    height: 39px;
    border-radius: 0px;
    outline: none;
    border-top: 1px solid #132E71;
    border-bottom: 1px solid #132E71;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.input-group.search-input-wrap {
    border: 0px;
    background: #fff;
    border-radius: 3px;
}


/* Mobile Search Bar */

li.mobile-search-wrap {
    margin-top: 35px;
    margin-bottom: 0px;
    padding-left: 0px;
    width: 260px;
}

li.mobile-search-wrap a {
    padding-left: 0px !important;
    padding-right: 0px !important;
    border-bottom: 0px !important;
}

li.mobile-search-wrap .input-group.search-input-wrap {
    border: 1px solid #bcb2d8;
    background: #fff;
}

li.mobile-search-wrap .icon-search:before {
    content: url(../images/mobile-search-icon.png);
}

.mobile-search-wrap input {
    border: 0px;
    box-shadow: none;
    height: 39px;
    color: #3F4444;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    padding: 0px 12px;
    font-weight: normal;
}

.mobile-search-wrap ::-webkit-input-placeholder {
    color: #3F4444;
}

.mobile-search-wrap :-moz-placeholder {
    /* Firefox 18- */
    color: #3F4444;
}

.mobile-search-wrap ::-moz-placeholder {
    /* Firefox 19+ */
    color: #3F4444;
}

.mobile-search-wrap :-ms-input-placeholder {
    color: #3F4444;
}

.mobile-search-wrap button {
    background: transparent;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 10px 10px;
    height: 39px;
    border-radius: 0px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.mobile-search-wrap button:hover,
.mobile-search-wrap button:focus {
    background: transparent;
    color: transparent;
}


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

#main-header {
    padding: 30px 0 calc(30px + 1rem);
    padding: 30px 0;
}

#main-header .col-md-12 {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

#main-header .logo-wrap {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
    min-width: 281px;
    max-width: 100%;
}

#main-header .isee-logo {
    max-width: 100%;
    display: block;
}

.chapter-name {
    font-weight: 600;
    font-family: "franklin-gothic-condensed", sans-serif;
    text-decoration: none;
    display: block;
    font-size: 30px;
    line-height: 1;
    margin-top: 5px;
}


/* header .chapter-name {
    position: absolute;
    bottom: -1.5rem;
} */

header .search-icon {
    margin-top: -1rem;
}

#right-side-wrap {
    text-align: right;
    margin-top: 0px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
}

.social-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 0;
}

#mobileMenuWrapper .social-list {
    justify-content: unset;
}


/* .social-list>li:nth-last-child(2) {
    padding-right: 1px;
} */

#mobileMenuWrapper svg {
    width: 35px;
}

.social-list path {
    fill: white;
}

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

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

#mobileMenuWrapper .social-list rect {
    fill: white;
}

#mobileMenuWrapper #mobile-menu #donate-wrap a {
    color: var(--primary);
    background: white;
    font-weight: bold;
    padding: .5em 2ch;
}

@media (max-width: 767px) {
    .social-list:not(#mobileMenuWrapper .social-list) {
        display: none;
    }
}

@media (max-width: 510px) {
    #main-header {
        padding: 1rem 0;
    }
    #left-side-wrap {
        width: 100%;
        justify-content: center;
    }
    #right-side-wrap {
        width: 100%;
        margin-top: 2rem;
        margin-bottom: 2rem;
        justify-content: center;
    }
}


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

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

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


/*--------------------------------------------------------
                    Index / Main Body
--------------------------------------------------------*/

main {
    min-height: calc(100vh - 145px - 50px - 168px - 99px);
    /*The minimum height of the main section of the page should be the height of the screen minus the header and footer*/
    position: relative;
}

#subpage-main,
#mms-main {
    padding-top: 20px;
}

main>.row {
    margin-bottom: 80px;
    position: relative;
}

@media (max-width: 900px) {
    #subpage-main #mms-main {
        margin-bottom: 2em;
    }
}

@media (min-width: 767px) {
    #subpage-main .row {
        margin-bottom: 1em;
    }
}

@media (max-width: 767px) {
    #subpage-main div[class^="col-md"] {
        margin-bottom: 1em;
    }
}


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


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

#slideshow-row {
    /* margin-bottom: 80px; */
    /* position: relative; */
}

@media (min-width: 768px) and (max-width: 990px) {
    #slideshow-row {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    #slideshow-row {
        margin-bottom: 50px;
    }
}

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

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

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

#slideshow-row [class*="col-"] {
    padding: 0;
}

#slideshow-row .carousel-control:is(.left,
.right) {
    height: fit-content;
    width: fit-content;
    color: #fff;
    top: 0;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Mulish', sans-serif;
    background: var(--primary);
    vertical-align: middle;
    text-align: center;
    border: 0;
    border-radius: 50%;
    margin-inline: 15px;
    transition: .125s background ease-in-out;
    font-size: 45px;
    line-height: 0;
    padding: 20px 20px 30px;
}

#slideshow-row .carousel-control:is(:hover,
 :focus) {
    background: var(--accent);
}


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

@media (max-width: 767px) {
    #slideshow-row .carousel-control:is(.left,
    .right) {
        height: 38px;
        width: 38px;
        bottom: 55%;
    }
} */


/* .carousel-control img {
    width: 16px;
    height: 24px;
    margin-top: 13px;
}

@media (max-width: 767px) {
    .carousel-control img {
        margin-top: 7px;
    }
} */

.caption-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
    background: rgba(7, 71, 104, .85);
    padding: 10px 15px;
}

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

@media (max-width: 767px) {
    .carousel-caption {
        background: rgba(7, 71, 104, .9);
        display: block;
        position: static;
        width: 100%;
        height: auto !important;
        min-height: 150px !important;
    }
    .caption-slide-inside {
        background: transparent !important;
    }
}

@media (max-width: 460px) {
    .carousel-caption {
        min-height: 230px !important;
    }
}

.caption-inside-wrap {
    background: rgba(19, 46, 113, 0.75);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 15px 0px;
}

.caption-slide-inside {
    background: rgba(7, 71, 104, .85);
    padding: 10px 0px;
}

p.caption-text {
    font-size: 32px;
    font-weight: 800;
    display: block;
    color: #ffffff;
    font-family: 'Mulish', sans-serif;
    text-align: center;
    margin-bottom: 7px;
    word-wrap: break-word;
    line-height: normal;
}

p.alt-text {
    font-size: 18px;
    font-family: 'Mulish', sans-serif;
    color: #ffffff;
    margin-bottom: 0px;
    text-align: center;
    display: inline-block;
    word-wrap: break-word;
    line-height: 24px;
    width: 65%;
}

@media (min-width: 768px) and (max-width: 990px) {
    p.alt-text {
        width: 100%;
    }
}

@media (max-width: 767px) {
    p.alt-text {
        font-size: 16px;
        width: 100%;
    }
}

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

.carousel-indicators {
    bottom: 0px;
    margin-bottom: 7px;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #B8BFD1;
    border: 1px solid #B8BFD1;
    border-radius: 15px;
}

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


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


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


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


/* Buttons */

.btn-wrap {
    margin-top: 38px;
    margin-bottom: 20px;
}

.btn-wrap a {
    background: transparent;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 700;
    border-radius: 22px;
    border: 1px solid var(--secondary);
    padding: 10px 31px 12px;
    text-decoration: none;
    text-align: center;
    font-family: 'Mulish', sans-serif;
}


/* News */

#news-section-wrap h2 {
    padding-bottom: 25px;
}

.news-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #D7E7EF;
    padding-bottom: 30px;
    display: flex;
    gap: 30px;
}

.news-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.news-image {}

.news-image:empty {
    display: none;
}

.news-image img {
    width: 295px;
    border-radius: 3px;
    display: block;
}

h3.news-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #232d69;
    padding-bottom: 5px;
}

a.news-title-link {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

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

.news-date {
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
}

.news-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-top: 2px;
}

.news-date span {
    display: inline-block;
    vertical-align: sub;
}

.news-blurb {
    font-size: 16px;
    color: #323233;
}

@media (max-width: 1200px) {
    .news-image img {
        width: 100px;
    }
}


/* Upcoming Events */

#event-section-wrap h2 {
    padding-bottom: 25px;
}

.event-item {
    border-left: 1px solid #D7E7EF;
    border-bottom: 1px solid #D7E7EF;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-top: 20px;
    margin-left: 15px;
}

#event-section-wrap .event-item:nth-child(2) {
    padding-top: 0px;
}

.event-item:before {
    content: url(../images/event-calendar-icon.png);
    display: block;
    position: relative;
    width: 10px;
    height: 0px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    top: 0em;
    left: -47px;
}

.event-date {
    color: #4D4D4D;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
    padding-bottom: 3px;
}

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

h3.event-title {
    font-weight: normal;
    padding-bottom: 0px;
    margin-bottom: 4px;
}

a.ev-title-link {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Mulish', sans-serif;
    text-transform: none;
    word-wrap: break-word;
}

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

.event-content {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4D4D4D;
}

#event-section-wrap .btn-wrap {
    margin-top: 55px;
}


/* Featured Section row*/

#featured-section-row {
    margin-top: 30px;
    margin-bottom: 80px;
}

#featured-section-row a {
    text-decoration: none;
}

#featured-section-row img {
    margin: 0 auto 15px;
}

#featured-section-row .column h2 {
    text-align: center;
    color: var(--primary);
    font-size: 24px;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
}

#featured-section-row .column h2 a {
    color: var(--primary);
    text-decoration: 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
--------------------------------------------------------*/


/* Top Footer */

#top-footer {
    background: var(--primary);
    padding: 45px 0px 0px;
    color: #fff;
    font-size: 15px;
}

#top-footer .wrapper {
    display: flex;
    gap: 1rem 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
}

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

#top-footer .isee-logo {
    width: 195px;
    max-width: 100%;
    display: block;
}

@media (min-width: 768px) {
    .footer-contact {
        margin-right: auto;
    }
}

.footer-contact p {
    margin-bottom: 0;
}

#top-footer .button-link {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background: white;
    padding: 11.5px 31px;
    border-radius: 23px;
    text-align: center;
}

#top-footer .isee-logo path {
    fill: white;
}

#top-footer .chapter-name {
    font-size: 20px;
}

.top-footer-inside-wrap {
    border-bottom: 1px solid #125B77;
    padding-bottom: 30px;
}

#main-footer {
    background: var(--primary);
    padding: 30px 0px 45px;
}

#main-footer p {
    color: #AFC6DB;
    font-size: 16px;
    font-family: 'Mulish', sans-serif;
    margin: 0;
    line-height: 24px;
}

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

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

#main-footer strong {
    color: #fff;
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
}

#main-footer span.footer-privacy {
    border-left: 1px solid #FFFFFF;
    margin-left: 24px;
    padding-left: 24px;
}

#main-footer span.footer-privacy a {
    color: #AFC6DB;
}

#main-footer .text-right * {
    color: #fff;
}

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

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

@media (max-width: 767px) {
    #main-footer .text-left,
    #main-footer .text-right {
        text-align: center;
    }
    #top-footer-left-wrap,
    #top-footer-right-wrap {
        text-align: center;
    }
    #main-footer p {
        margin-bottom: 10px;
    }
    #main-footer span.footer-privacy {
        display: block;
        border-left: 0px;
        padding-left: 0px;
        margin-left: 0px;
    }
    .back-top-wrap {
        padding-top: 0px !important;
        margin-bottom: 15px;
    }
}


/*--------------------------------------------------------
                        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: 'Mulish', sans-serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
}

.login-form input[type="submit"] {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 30px;
    font-family: 'Mulish', 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: #333333;
    font-size: 14px;
    font-family: 'Mulish', 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: 'Mulish', sans-serif;
}

h4#myModalLabel {
    font-size: 24px;
    color: var(--primary);
    padding-bottom: 0px;
}


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


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

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

@media (max-width: 991px) {
    .caption-wrapper {
        max-width: 750px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    #search-input {
        max-width: 235px;
    }
    .footer-contact {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    #event-section-wrap {
        margin-top: 50px;
    }
    .news-image img {
        width: 100%;
    }
    #featured-section-row .column {
        margin-bottom: 25px;
    }
    #logo-address-wrap {
        text-align: center;
    }
    .footer-logo-wrap {
        margin-bottom: 25px;
    }
    #top-footer-right-wrap .social-media-outside-wrap {
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    #top-footer-right-wrap {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    #donate-wrap a {
        font-size: 15px;
        padding: 10px 20px;
        border-radius: 23px;
    }
    .news-blurb {
        margin-bottom: 20px;
    }
}


/* Styles from navigation.css */


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

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


/* .dropdown:hover .men-level-1 {

    display: none;

}*/

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

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


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


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


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

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

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

.men-level-2 {
    top: 0px;
    margin-top: -1px;
}

.men-level-3 {
    top: 0px;
    margin-top: -1px;
}


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


/*------------------------------------------------------------------------------------

                            Main Menu CSS

--------------------------------------------------------------------------------------*/

#main-menu {
    /* background: var(--primary); */
    /* height: 50px; */
}

#main-menu::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: var(--primary);
}

.nav-main-wrapper {
    float: right;
    margin-top: 15px;
}

.navbar-custom-wrapper {
    display: inline-block;
    vertical-align: middle;
}

#nav_menu {
    padding-left: 0px;
    padding-right: 0px;
    background: var(--primary);
}

#nav_menu .navbar-nav {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

#nav_menu .navbar-nav::before,
#nav_menu .navbar-nav::after {
    content: none;
}

#nav_menu .navbar-nav>li {
    text-align: center;
    float: none;
    position: relative;
    display: flex;
    width: 100%;
}

#nav_menu .navbar-nav>li::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-left: 1px solid var(--secondary);
}

#nav_menu .navbar-nav>li:last-child::before {
    border-right: 1px solid var(--secondary);
}

#nav_menu .navbar-nav>li a {
    color: #fff;
    font-weight: 500;
    transition: background-color .3s;
    margin: auto;
    position: unset;
}

#nav_menu .navbar-nav>li a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

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

#nav_menu .navbar-nav>li:is(:hover,
 :focus-within) {
    background: var(--secondary);
}


/* #nav_menu .navbar-nav>li:last-child a {
    border-right: 1px solid var(--secondary);
} */

.caret {
    margin-left: 4px;
    display: none;
}


/*------------------------------------------------------------------------------------

                            Dropdown Menus - full/collapsed

--------------------------------------------------------------------------------------*/

#nav_menu .dropdown-menu {
    background-color: var(--primary);
    border: 0;
    border-radius: 0px;
    padding: 0px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

#nav_menu .dropdown-menu li {
    width: 100%;
    border-bottom: 1px solid var(--secondary);
}

#nav_menu .dropdown-menu li:first-child {
    border-top: 1px solid var(--secondary);
}

#nav_menu .dropdown-menu li a {
    font-size: 13px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
    color: #fff;
    padding-top: 0px;
    padding-bottom: 0px;
    border: 0;
    font-weight: normal;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 8px 20px;
}

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


/*--------------------------------------------------------

    MOBILE MENU

--------------------------------------------------------*/

#mobile-menu-col {
    padding-block: 10px;
    position: relative;
}

#mobile-toggle {
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
}

#mobileMenuWrapper {
    position: fixed;
    top: 0px;
    bottom: 0px;
    z-index: 200;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 300px;
    background-color: var(--primary);
    border-right: 2px solid #174E77;
    -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 {
    bottom: 0;
    left: 0;
}

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

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

#mobileMenuWrapper a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
    background: transparent;
    padding: 8px 0px;
    border-bottom: 1px solid var(--secondary);
    margin: 0;
    transition: color .25s;
}

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

#mobile-menu li:last-child a {
    border-bottom: 0;
}

#mobileMenuWrapper .caret {
    display: block;
    float: right;
    position: relative;
    top: 10px;
}

#triggerClose {
    color: #FFFFFF;
    float: right;
    display: inline;
    font-size: 38px;
    cursor: pointer;
    transform: rotate(45deg);
}

#mobileMenuWrapper .mDropdown {
    display: none;
    background-color: var(--primary);
    border: 0;
    border-radius: 0px;
    padding: 0px 0;
    box-shadow: none;
}

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

#mobileMenuWrapper .mDropdown li {
    margin-left: 15px;
}


/*-----------------toggle--------------------*/

svg#burger-menu {
    width: 36px;
    height: 22px;
}

svg#burger-menu .cls-1 {
    fill: #fff !important;
}


/*------------------------------------------------------------------------------------

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