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


/*

--------------------------------------------------------------------------

 Typography 

--------------------------------------------------------------------------

 */

 :root {
    font-size: 16px;
    font-weight: 400;
    font-weight: 200;
    /* Font weight changed per #256446 note #151 */
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
}

body {
    color: var(--dark-text);
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
}

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

p:empty {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5em;
    padding: 0;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-family: 'Lustria', serif;
    /* Font changed per #256446 note #151 */
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}


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



 */

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

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

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

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

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

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

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

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


/*

--------------------------------------------------------------------------

 Objects

--------------------------------------------------------------------------

 */


/*  Wrappers

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

 */

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

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

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

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

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

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

blockquote p {
    font-size: 1.05em;
}


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

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

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

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

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

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

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

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

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

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

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


/* Feed items */

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

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

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


/* Slideshow defaults */

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

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

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

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


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


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

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


/*----------Nivo Controls*/

.nivo-prevNav,
.nivo-nextNav {
    background-image: none !important;
    width: 25px !important;
    top: 25% !important;
    /*Fallback for browsers that don't support calc*/
    top: calc( 50% - 50px) !important;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 75px;
    font-family: Arial, sans-serif;
    text-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
}

.nivo-prevNav:hover,
.nivo-nextNav:hover {
    text-decoration: none;
    color: #ae0e0d;
    text-shadow: none;
}

.nivo-prevNav {
    left: 10px !important;
}

.nivo-nextNav {
    right: 10px !important;
}

.nivo-prevNav:after {
    content: "‹";
}

.nivo-nextNav:after {
    content: "›";
}


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

    ----------------------------------------

 */

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

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

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

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

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

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


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

----------------------------------------

*/

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


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

                        HEADER

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

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

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

#main-header {
    padding: 25px 0px 23px;
}

#logo-wrap {
    text-align: center;
}

@media (max-width: 767px) {
    #logo-wrap {
        padding-right: 0px;
    }
}

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

.logo-wrap {
    display: inline-block;
    vertical-align: middle;
    margin: 0px;
    text-align: center;
}

.logo-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

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

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


/* Social Media Icons */

.social-media-outside-wrap ul {
    padding: 0;
}

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

.social-media-wrap {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-top: 5px;
    margin-left: 12px;
}

@media (min-width: 1200px) {
    .social-media-wrap {
        display: inline-block !important;
    }
}

.social-media-wrap ul {
    float: left;
    margin: 0;
    text-align: right;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.social-media-wrap ul>li {
    float: left;
    position: relative;
    display: block;
    margin-right: 8px;
}

.social-media-wrap ul>li:last-child {
    margin-right: 0px;
}

.social-media-wrap svg {
    width: 36px;
    height: 36px;
}

.social-media-wrap a:hover svg .cls-1,
.social-media-wrap a:hover svg#x-twitter-icon g#x-twiiter-logo .cls-2 {
    fill: var(--secondary) !important;
}

.social-media-wrap a:hover svg#x-twitter-icon .cls-1 {
    fill: #fff !important;
}

.advertise-wrap {
    margin-top: 12px;
}

.advertise-wrap a {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    background: var(--accent);
    border-radius: 10px;
    padding: 6px 16px;
    transition: background 0.5s ease;
}

.advertise-wrap a:hover {
    background: var(--lighthover);
    color: #ffffff;
    text-decoration: none;
}

@media (min-width: 768px) and (max-width: 990px) {
    .advertise-wrap {
        display: block;
        margin-bottom: 20px;
    }
}

svg#search-icon {
    width: 26px;
    height: 26px;
}




.searchbox {
    width: 250px;
    max-width: 45vw;
    display: inline-block;
    vertical-align: middle;
    color: #1a1a1a;
    position: relative;
    padding: 5px 1.5ch;
    height: 38px;
    background: #fff;
    border: 1px solid #e6e6e6;
    transition: .125s border ease-in-out;
    border-radius: 5px;
}
    @media (max-width: 991px) {
        .searchbox {
            max-width: 100%;
            width: 100%;
        }
    } 


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

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

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

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


.search-input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    width: 100%;
    padding: inherit;
    background: #fff;
    padding: 2px 10px 0px;
    outline: none;
    color: #1a1a1a;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
#search-input .searchbox input[type="submit"]:not(#mms-main input),
.mobile-search-wrap input[type="submit"]:not(#mms-main input) {
    color: transparent;
    background: #fff;
    border: none;
    background-image: url(../images/search-new.svg.php?fc=010101);
    position: absolute;
    right: 0;
    top: 0px;
    bottom: 0;
    width: 32px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    border-left: 0px;
    transition: .25s all ease-in-out;
    padding: 0;
    display: block;
    left: auto;
    margin: 0;
    text-align: left;
    border-radius: 5px;
}





/* Mobile Search */

li.mobile-search-wrap a {
    padding-bottom: 4px !important;
}

li.mobile-search-wrap form.searchbox {
    margin-bottom: 20px;
}



.donate-wrap {
    margin-top: 12px;
}

.donate-wrap a {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    background: var(--secondary);
    border-radius: 10px;
    padding: 6px 16px;
    transition: background 0.5s ease;
}

.donate-wrap a:hover {
    background: var(--darkhover);
    color: #ffffff;
    text-decoration: none;
}


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

    ----------------------------------------

 */

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

#nav_menu .navbar-nav li {
    text-align: center;
    padding: 6px 0px;
}

#nav_menu .navbar-nav>li a {
    color: var(--dark-text);
    font-size: 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    padding: 8px 10px;
    transition: background-color .3s;
    text-transform: uppercase;
}

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

#nav_menu .navbar-nav li:first-child {
    padding-left: 0px;
}

#nav_menu .navbar-nav li:last-child {
    padding-left: 0px;
}

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

#nav_menu>ul>li>ul {
    /* 1st tier submenus */
}

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

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

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

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

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

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

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

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


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

    ----------------------------------------

 */

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

.mobileMenuTrigger label {
    display: none;
}

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

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


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

    ----------------------------------------

 */

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

#mobileMenuWrapper.open {
    left: 0;
}

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

.triggerClose {
    text-align: right;
}

#mobile-menu button {
    border: none;
}

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

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

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

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

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

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

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


/*

--------------------------------------------------------------------------

 Main

--------------------------------------------------------------------------

 */

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


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

    ----------------------------------------

 */

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

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

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

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

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

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

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

.slideshow-wrap {
    margin-top: 25px;
    margin-bottom: 60px;
    position: relative;
}


/*.slideshow-wrap .container {

    width: 100%;

}  

.slideshow-wrap a {

    text-decoration: none;

}

.slideshow-wrap [class*="col-"] {

    padding: 0;

}

.slideshow-wrap .row {

    padding: 0px !important;

}*/

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

.slideshow-wrap .carousel-inner .item img {
    max-height: 500px;
    object-fit: cover;
}

.slideshow-wrap .carousel-control {
    display: none;
}

.carousel-control.left {
    height: 40px;
    width: 40px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Poppins', sans-serif;
    background: rgba(0, 0, 0, 0.6);
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 0px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-left: 0;
}

.carousel-control.right {
    height: 40px;
    width: 40px;
    color: #fff;
    top: 0px;
    left: auto;
    right: 0px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Poppins', sans-serif;
    background: rgba(0, 0, 0, 0.6);
    vertical-align: middle;
    text-align: center;
    padding-left: 2px;
    border: 0px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-right: 0;
}

.carousel-control img {
    width: 14px;
    height: 20px;
    margin-top: 9px;
}

.carousel-caption {
    position: absolute;
    z-index: 100;
    background: transparent;
    left: auto;
    top: auto;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
    text-shadow: none;
    padding: 0;
    margin: 0;
}

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

.caption-slide-inside {
    background: var(--primary);
    padding: 15px 20px 12px;
}

p.caption-text {
    font-size: 16px;
    font-weight: 600;
    display: block;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    margin-bottom: 5px !important;
    word-wrap: break-word;
    line-height: normal;
}

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

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

.slideshow-wrap .carousel-indicators {
    bottom: 0px;
    text-align: right;
    position: absolute;
    width: 100%;
    left: 0;
    margin-left: 0;
    padding-right: 30px;
    bottom: 2.5%;
    margin-bottom: 0px;
}

.slideshow-wrap .carousel-indicators li {
    width: 15px;
    height: 15px;
    margin-left: 10px !important;
    margin: 0 auto;
    background-color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 15px;
}

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

.slideshow-wrap .carousel-caption {
    position: static;
}

.slideshow-wrap .carousel-caption .caption-wrapper {
    padding: 0;
}


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


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

                    Index / Home Page

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


/* Buttons */

.btn-wrap:not(#gm-canvas .btn-wrap) {
    margin-top: 35px;
}

.btn-wrap:not(#gm-canvas .btn-wrap) a {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: var(--accent);
    border-radius: 10px;
    padding: 6px 16px;
    transition: background 0.5s ease;
}

.btn-wrap:not(#gm-canvas .btn-wrap) a:hover {
    background: var(--lighthover);
    color: #fff;
    text-decoration: none;
}

.btn-wrap-red:not(#gm-canvas .btn-wrap-red) a {
    background: var(--secondary);
}

.btn-wrap-red:not(#gm-canvas .btn-wrap-red) a:hover {
    background: var(--darkhover);
}


/* Row Separator */

hr:not(#gm-canvas hr):not(#mms-main+hr) {
    border-top: 4px solid var(--accent);
    margin-bottom: 40px;
    margin-top: 40px;
}

#home-top-content-wrap {
    padding: 35px 0px 15px;
}

#home-top-content-wrap h4 {
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    line-height: 26px;
}


/* Home Newsletter */

#first-row-nl-wrap:not(#gm-canvas #first-row-nl-wrap) {
    display: flex;
    flex-wrap: wrap;
}

#right-newsletter-wrap:not(#gm-canvas #right-newsletter-wrap) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#second-row-nl-wrap {
    position: relative;
    padding: 25px 0px;
}

#third-row-nl-wrap {
    position: relative;
    padding: 25px 0px;
}


/* Quote of the Month */

.quote-month-outer-wrap:not(#gm-canvas .quote-month-outer-wrap) {
    position: relative;
    margin-bottom: 30px;
    padding: 70px 0px;
    margin-top: 20px;
}

.quote-month-outer-wrap:not(#gm-canvas .quote-month-outer-wrap):before {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    z-index: -1;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    background: url(../images/quote-outer-bg.png) no-repeat;
    max-width: 100%;
}

#quote-month-wrap .col-content-wrap h1 {
    font-family: 'Lustria', sans-serif;
    font-weight: 400;
    font-size: 38px;
    display: inline-block;
    border-bottom: 4px solid var(--accent);
    padding-bottom: 5px;
}

#quote-month-wrap .col-content-wrap .quote-content {
    position: relative;
    width: 100%;
    text-align: right;
}

#quote-month-wrap .col-content-wrap .quote-content:before {
    display: block;
    content: "";
    text-indent: 0px;
    position: relative;
    left: 0px;
    top: 0px;
    z-index: 100;
    color: var(--primary);
    width: 40px;
    height: 31px;
    background: url(../images/quote-icon-before.png) no-repeat;
    margin-bottom: 35px;
}

#quote-month-wrap .col-content-wrap .quote-content:after {
    display: block;
    content: "";
    text-indent: 0px;
    position: relative;
    left: 0px;
    top: 0px;
    z-index: 100;
    color: var(--primary);
    width: 40px;
    height: 31px;
    background: url(../images/quote-icon-after.png) no-repeat;
    margin-top: 35px;
    float: right;
}

#quote-month-wrap .col-content-wrap .quote-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 200;
    text-align: left;
    margin-bottom: 25px;
}

#quote-month-wrap .col-content-wrap .quote-content span.quote-author {
    display: block;
    color: var(--dark-text);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
}

#quote-month-wrap>*:nth-child(2) .col-content-wrap {
    padding-left: 30px;
    padding-top: 30px;
    background-image: linear-gradient(to bottom, #000 25%, rgba(255, 255, 255, 0) 0%);
    background-position: left;
    background-size: 3px 24px;
    background-repeat: repeat-y;
}

#quote-month-wrap>*:nth-child(2) .col-content-wrap img:first-child {
    margin: 0 auto 5px;
}

#quote-month-wrap>*:nth-child(2) .col-content-wrap img:last-child {
    display: block;
    margin-left: auto;
}

@media (max-width: 767px) {
    .quote-month-outer-wrap .col-content-wrap {
        padding: 0px 30px;
    }
    #quote-month-wrap>*:nth-child(2) .col-content-wrap {
        background-image: linear-gradient(to left, #000 25%, rgba(255, 255, 255, 0) 0%);
        background-position: top;
        background-size: 12px 3px;
        background-repeat: repeat-x;
        margin-top: 40px;
        padding-top: 70px;
    }
}


/*advertise-sample-donate*/

#advertise-sample-donate-wrap {
    display: block;
    position: relative;
    margin-top: 35px;
}

#advertise-sample-donate-wrap .column:nth-child(2)>.col-content-wrap img {
    text-align: center;
    margin: 0 auto;
}

#advertise-sample-donate-wrap .column:nth-child(3)>.col-content-wrap {
    text-align: right;
}

@media (max-width: 767px) {
    #advertise-sample-donate-wrap {
        text-align: center;
    }
    #advertise-sample-donate-wrap .col-content-wrap img {
        margin: 35px auto 0px !important;
    }
    #advertise-sample-donate-wrap .col-content-wrap {
        text-align: center !important;
    }
}

#home-middle-description {
    text-align: center;
}

#home-middle-description h5 {
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
    width: 65%;
    text-align: center;
    margin: 0 auto 50px;
}

#home-middle-description h5 a {
    text-decoration: underline;
}


/* South Padre Island Events Calendar */

.events-subscribe-outer-wrap {
    position: relative;
}

.events-subscribe-outer-wrap:not(#gm-canvas .events-subscribe-outer-wrap):before {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    z-index: -1;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    background: url(../images/events-bg-outer-v1.jpg) no-repeat;
    max-width: 100%;
}

.events-subscribe-outer-wrap .container {
    width: 100%;
}

#calendar-newsletter-subscribe-wrap:not(#gm-canvas #calendar-newsletter-subscribe-wrap) {
    position: relative;
    text-align: center;
    margin-top: 30px;
    display: flex;
}


/*#calendar-newsletter-subscribe-wrap:not(#gm-canvas #calendar-newsletter-subscribe-wrap):before {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    left: -666vw;

    right: -666vw;

    display: block;

    background-color: #bac1b8;

    z-index: -1;

}*/

#calendar-feat-icon-wrap {
    position: relative;
}


/*#calendar-feat-icon-wrap:not(#gm-canvas #calendar-feat-icon-wrap):before {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    left: 0;

    right: 0;

    display: block;

    background: url(../images/events-bg-v2.png) no-repeat;

    width: 100%;

    z-index: -1;

    background-size: 100%;

    background-position: center !important;

    overflow: hidden;

    min-height: 100%;

    object-fit: cover;

}*/

#calendar-feat-icon-wrap .col-content-wrap {
    padding: 50px 80px 10px;
}

#calendar-feat-icon-wrap .col-content-wrap h1 {
    font-size: 38px;
    font-family: 'Permanent Marker', cursive;
    font-weight: 400;
    line-height: 46px;
    /*width: 85%;*/
    text-align: center;
    margin: 20px auto 65px;
}

@media (min-width: 990px) and (max-width: 1199px) {
    #calendar-feat-icon-wrap .col-content-wrap {
        padding: 50px 0px 10px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    #calendar-feat-icon-wrap .col-content-wrap {
        padding: 0px;
    }
    #newsletter-subscribe-wrap .col-content-wrap {
        padding: 100px 0 !important;
    }
}

@media (max-width: 767px) {
    .events-subscribe-outer-wrap:not(#gm-canvas .events-subscribe-outer-wrap):before {
        background-position: right !important;
    }
    #calendar-newsletter-subscribe-wrap:not(#gm-canvas #calendar-newsletter-subscribe-wrap) {
        display: block;
    }
    #calendar-feat-icon-wrap .col-content-wrap {
        padding: 0px;
    }
    #calendar-feat-icon-wrap .col-content-wrap h1 {
        width: 100%;
    }
    #calendar-feat-icon-wrap .col-content-wrap h1 br {
        display: none;
    }
    #newsletter-subscribe-wrap .col-content-wrap {
        padding: 100px 0 !important;
    }
}

@media (max-width: 380px) {
    #calendar-feat-icon-wrap .col-content-wrap .calendar-four-img-wrap {
        padding-right: 0px !important;
    }
    #calendar-feat-icon-wrap .col-content-wrap .calendar-four-img-wrap h4:before {
        left: 30px !important;
    }
    #calendar-feat-icon-wrap .col-content-wrap .calendar-four-img-wrap h4 a {
        font-size: 30px !important;
        width: 200px !important;
        min-width: 200px !important;
    }
}

#calendar-feat-icon-wrap .col-content-wrap .calendar-four-img-wrap {
    padding-right: 45px;
}

#calendar-feat-icon-wrap .col-content-wrap .calendar-four-img-wrap h4 {
    display: block;
    position: relative;
    margin-bottom: 15px;
}

#calendar-feat-icon-wrap .col-content-wrap .calendar-four-img-wrap h4 a {
    font-size: 38px;
    font-family: 'Permanent Marker', cursive;
    font-weight: 400;
    line-height: 46px;
    background: #cbd4c9;
    border-radius: 15px;
    text-decoration: none;
    color: var(--primary);
    padding: 28px 10px 35px;
    min-width: 230px;
    width: 230px;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    vertical-align: middle;
    transition: background 0.5s ease;
}

#calendar-feat-icon-wrap .col-content-wrap .calendar-four-img-wrap h4 a:hover {
    background: #b6c2ad;
}

#calendar-feat-icon-wrap .col-content-wrap .calendar-four-img-wrap h4:before {
    content: "";
    text-indent: 0px;
    position: relative;
    left: 45px;
    top: 15px;
    z-index: 100;
    color: var(--primary);
    width: 73px;
    height: 82px;
    background: url(../images/spi-events-calendar-btn.png) no-repeat;
    margin-bottom: 35px;
    display: inline-block;
    vertical-align: middle;
}

#calendar-feat-icon-wrap .col-content-wrap .calendar-four-img-wrap img {
    display: inline-block;
    max-width: 50%;
    width: 100%;
    margin-bottom: 50px;
}

#calendar-feat-icon-wrap .col-content-wrap .calendar-four-img-wrap img:nth-child(even) {
    margin-left: 30px;
}

#calendar-feat-icon-wrap .col-content-wrap .calendar-sample-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#calendar-feat-icon-wrap .col-content-wrap .calendar-sample-btn img {
    width: auto !important;
    margin-top: 25px;
}

#newsletter-subscribe-wrap {
    position: relative;
}


/*#newsletter-subscribe-wrap:not(#gm-canvas #newsletter-subscribe-wrap):before {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    left: 0;

    right: 0;

    display: block;

    background: url(../images/newsletter-subscribe-bg.png) no-repeat;

    width: 100%;

    z-index: -1;

    background-size: 100%;

    background-position: center !important;

    overflow: hidden;

    min-height: 100%;

    object-fit: cover;

}*/

#newsletter-subscribe-wrap .col-content-wrap {
    padding: 100px 80px;
}

#newsletter-subscribe-wrap .col-content-wrap img {
    margin: 0 auto 35px;
}

#newsletter-subscribe-wrap .col-content-wrap .subscribe-img-heading-wrap h2 {
    font-size: 30px;
    font-family: 'Lustria', sans-serif;
    font-weight: 400;
    line-height: 40px;
}

@media (max-width: 767px) {
    #newsletter-subscribe-wrap .col-content-wrap .subscribe-img-heading-wrap h2 br {
        display: none;
    }
}

#newsletter-subscribe-wrap .col-content-wrap form#contact-form {
    text-align: center;
}

#newsletter-subscribe-wrap .col-content-wrap form#contact-form .form-group .input-group {
    margin: 0 auto;
}

#newsletter-subscribe-wrap .col-content-wrap form#contact-form .form-group.row {
    display: inline-block;
    margin-right: 0px;
    width: 100%;
    margin-bottom: 8px;
    text-align: center;
}

#newsletter-subscribe-wrap .col-content-wrap form#contact-form input.form-control {
    color: #000000;
    width: 345px;
    /*width: 100%;*/
    height: 36px;
    padding: 9px 13px 7px;
    border-radius: 7px;
    margin: 0 auto;
    border: 1px solid #000;
    text-align: center;
    outline: none !important;
    box-shadow: none !important;
}

#newsletter-subscribe-wrap .col-content-wrap form#contact-form input.form-control::placeholder {
    color: #000;
    opacity: 1;
    /* Firefox */
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

#newsletter-subscribe-wrap .col-content-wrap form#contact-form input.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000;
}

#newsletter-subscribe-wrap .col-content-wrap form#contact-form input.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000;
}

#newsletter-subscribe-wrap .col-content-wrap form#contact-form label.control-label {
    display: none;
}

#newsletter-subscribe-wrap .col-content-wrap form#contact-form label.control-label[for=contactCaptcha] {
    display: block;
    padding-top: 0px;
    text-align: center;
    margin-bottom: 15px;
}

#newsletter-subscribe-wrap .col-content-wrap form#contact-form img {
    margin: 0;
    width: 85px;
}

#newsletter-subscribe-wrap .col-content-wrap form#contact-form .form-group.row.captcha-field .col-sm-12 input.form-control {}

#newsletter-subscribe-wrap .col-content-wrap form#contact-form .form-group.row.captcha-field .col-sm-12 input.form-control::placeholder {
    font-size: 14px;
}

#newsletter-subscribe-wrap .col-content-wrap form#contact-form input.btn.btn-default,
#newsletter-subscribe-wrap .col-content-wrap form#contact-form button#newsletter_signup_submit {
    margin-right: 0px;
    left: 0 !important;
    height: 36px;
    padding: 4px 20px 5px !important;
    border-radius: 25px !important;
    font-weight: 600;
    font-size: 20px !important;
    text-transform: uppercase;
    position: relative;
    background: var(--secondary);
    color: #fff;
    border: 0px;
}

#newsletter-subscribe-wrap .col-content-wrap form#contact-form input.btn.btn-default,
#newsletter-subscribe-wrap .col-content-wrap form#contact-form button#newsletter_signup_submit:hover {
    background: var(--darkhover);
}

#newsletter-subscribe-wrap .col-content-wrap .subscribe-social-media-wrap {
    margin-top: 45px;
}

#newsletter-subscribe-wrap .col-content-wrap .subscribe-social-media-wrap>* {
    display: block;
}

#newsletter-subscribe-wrap .col-content-wrap .subscribe-social-media-wrap img {
    margin: 0 auto 20px;
}


/* Sponsor */

#sponsor-section-wrap:not(#gm-canvas #sponsor-section-wrap) {
    position: relative;
    padding: 70px 0px;
    text-align: center;
}

#sponsor-section-wrap:not(#gm-canvas #sponsor-section-wrap):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: #bac1b8;
    z-index: -1;
}

#sponsor-section-wrap:not(#gm-canvas #sponsor-section-wrap) .column:first-child img {
    margin: 0 auto 60px;
    text-align: center;
}

#sponsor-section-wrap:not(#gm-canvas #sponsor-section-wrap) .column:first-child h1 {
    font-weight: 200;
    margin-bottom: 2.5em;
}

#sponsor-section-wrap:not(#gm-canvas #sponsor-section-wrap) .column:nth-child(2) img,
#sponsor-section-wrap:not(#gm-canvas #sponsor-section-wrap) .column:nth-child(3) img {
    margin: 0 auto 30px;
    text-align: center;
}

#sponsor-section-wrap:not(#gm-canvas #sponsor-section-wrap) .column:last-child .btn-wrap {
    margin-top: 50px;
    margin-bottom: 40px;
}

#sponsor-section-wrap:not(#gm-canvas #sponsor-section-wrap) .column:last-child .btn-wrap a {
    padding: 9px 28px;
}

#sponsor-section-wrap:not(#gm-canvas #sponsor-section-wrap) .column:last-child p {
    color: var(--dark-text);
    font-size: 14px;
}


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

                    News and Events Feeds

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


/* Recent News */

#news-section-wrap {
    margin-bottom: 20px;
}

.news-content {
    margin-bottom: 20px;
}

.news-item {
    border-top: 1px solid var(--primary);
}

.news-date {
    background: var(--primary);
    display: inline-block;
    color: #fff;
    padding: 4px 12px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.news-item h4 {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 500;
}

a.news-title-link {
    color: var(--accent);
    font-size: 17px;
    font-weight: 500;
    text-transform: none;
}


/* Upcoming Events */

#events-section-wrap {
    margin-bottom: 40px;
}

.events-wrap-item {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.events-wrap-item:last-child {
    border-bottom: 0px;
}

.event-item {
    margin-bottom: 25px;
}

.event-date {
    margin-bottom: 10px;
}

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

.event-date span {
    font-size: 15px;
    color: #666666;
}

.events-wrap-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 22px;
}

a.ev-title-link {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
}

a.ev-title-link:hover {
    color: var(--accent);
}


/* Sponsors Section */

.sponsors-section-wrap {
    background: #F7F7F7;
    margin-top: 65px;
    padding: 75px 0px;
}

@media (min-width: 768px) and (max-width: 990px) {
    .sponsors-section-wrap {
        padding: 60px 0px 30px;
    }
}

@media (max-width: 767px) {
    .sponsors-section-wrap {
        padding: 60px 0px 40px;
    }
}

.sponsors-section-wrap h2 {
    display: inline-block;
    vertical-align: middle;
    color: #3A393A;
    font-size: 18px !important;
    margin-bottom: 20px;
}

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

.sponsors-section-wrap .slide .carousel-inner .item img {
    border: 1px solid #E0E0E0;
    border-radius: 2px;
}

.sponsors-section-wrap .carousel-control {
    background: var(--primary);
    width: 24px;
    height: 24px;
    border-radius: 1px;
    position: absolute;
    top: -150%;
}

.sponsors-section-wrap .carousel-control:hover {
    background: var(--accent);
}

.sponsors-section-wrap .carousel-control.left {
    right: 30px;
}

.sponsors-section-wrap .slide .carousel-control.left img {
    content: "url(../images/small-prev-btn.png)";
    position: absolute;
    top: 0;
    left: 8px;
    background-position: center;
    overflow: hidden;
    z-index: 2;
    width: 9px;
    height: 13px;
    margin-top: 5px;
}

.sponsors-section-wrap .slide .carousel-control.right img {
    content: "url(../images/small-next-btn.png)";
    position: absolute;
    top: 0;
    left: 8px;
    background-position: center;
    overflow: hidden;
    z-index: 2;
    width: 9px;
    height: 13px;
    margin-top: 5px;
}

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

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


/*-------------- Newsletter Templates --------------*/


/** Style1 **/

.newsletter-style1 {
    margin-bottom: 40px;
}

.newsletter-style1 .nl-img img {
    min-height: 450px;
    height: 450px;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
}

.newsletter-style1 h2 {
    padding-top: 20px;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}

.newsletter-style1 a.nl-title-link {
    border-bottom: 1px solid var(--accent);
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    display: block;
    position: relative;
    text-decoration: none;
}

.newsletter-style1 .nl-subdesc {
    width: 70%;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .newsletter-style1 .nl-subdesc {
        width: 100%;
    }
}

.newsletter-style1 .nl-subdesc p {
    text-align: center;
    font-size: 20px;
    font-weight: 300;
}


/** Style2 **/

.newsletter-style2 {
    margin-bottom: 40px;
}

.newsletter-style2 .nl-img img {
    min-height: 240px;
    height: 240px;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
}

.newsletter-style2 h2 {
    padding-top: 20px;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}

.newsletter-style2 a.nl-title-link {
    border-bottom: 1px solid var(--accent);
    font-size: 26px;
    font-weight: 600;
    line-height: 34px;
    display: block;
    position: relative;
    text-decoration: none;
}

.newsletter-style2 .nl-subdesc {
    padding: 0px 20px;
}

@media (max-width: 767px) {
    .newsletter-style2 .nl-subdesc {
        padding: 0px 0px;
    }
}

.newsletter-style2 .nl-subdesc p {
    text-align: center;
    font-size: 17px;
    font-weight: 300;
}


/** Style3 **/

.newsletter-style3 {
    margin-bottom: 40px;
}

.newsletter-style3 .nl-img img {
    min-height: 380px;
    height: 380px;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
}

.newsletter-style3 h2 {
    padding-top: 20px;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}

.newsletter-style3 a.nl-title-link {
    border-bottom: 1px solid var(--accent);
    font-size: 26px;
    font-weight: 600;
    line-height: 34px;
    display: block;
    position: relative;
    text-decoration: none;
}

.newsletter-style3 .nl-subdesc {
    width: 50%;
    text-align: center;
    margin: 30px auto 0;
}

@media (min-width: 768px) and (max-width: 990px) {
    .newsletter-style3 .nl-subdesc {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .newsletter-style3 .nl-subdesc {
        width: 100%;
    }
}

.newsletter-style3 .nl-subdesc p {
    text-align: center;
    font-size: 17px;
    font-weight: 300;
}


/** Style4 **/

.newsletter-style4 {
    display: flex;
    border-bottom: 1px solid var(--accent);
    margin-bottom: 20px;
}

.newsletter-style4 .nl-img img {
    min-height: 170px;
    height: 170px;
    max-width: 170px;
    width: 170px;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
    margin-right: 15px;
}

.newsletter-style4 a.nl-title-link {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}


/** Style5 **/

.newsletter-style5 {
    display: flex;
    border-bottom: 1px solid var(--accent);
    margin-bottom: 20px;
    justify-content: space-between;
    padding-bottom: 12px;
    flex-wrap: wrap;
    flex-direction: row;
}

.newsletter-style5 .nl-img img {
    min-height: 205px;
    height: 205px;
    max-width: 280px;
    width: 280px;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
    margin-left: 15px;
}

.newsletter-style5 a.nl-title-link {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.newsletter-style5 .nl-subdesc {
    width: 45%;
}

.newsletter-style5 .nl-subdesc p {
    text-align: left;
    font-size: 17px;
    font-weight: 300;
}

.newsletter-style5 .nl-img {
    width: 55%;
    display: flex;
    align-items: self-start;
    justify-content: right;
}

@media (max-width: 520px) {
    .newsletter-style5 .nl-subdesc {
        width: 43%;
    }
    .newsletter-style5 .nl-subdesc p {
        font-size: 14px;
    }
}


/** Style6 **/

.newsletter-style6 {
    margin-bottom: 40px;
}

.newsletter-style6 .nl-img img {
    min-height: 615px;
    height: 615px;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
}

.newsletter-style6 h2 {
    padding-top: 20px;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}

.newsletter-style6 a.nl-title-link {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    display: block;
    position: relative;
    text-decoration: none;
}


/** Style7 **/

.newsletter-style7 {
    width: 25%;
    display: inline-block;
    min-height: 350px;
    vertical-align: text-top;
    margin-bottom: 60px;
    padding-right: 20px;
}

.newsletter-style7 .nl-img img {
    min-height: 230px;
    height: 230px;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
}

.newsletter-style7 .nl-subdesc {
    white-space: normal;
    text-align: center;
}

.newsletter-style7 h2 {
    padding-top: 30px;
    display: block;
    margin-bottom: 30px;
}

.newsletter-style7 a.nl-title-link {
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}

.newsletter-style7 p.nl-date {
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 300;
}

.newsletter-style7 .nl-blurb {
    font-size: 17px;
    font-weight: 300;
}

@media (min-width: 560px) and (max-width: 990px) {
    .newsletter-style7 {
        width: 50%;
    }
}

@media (max-width: 560px) {
    .newsletter-style7 {
        width: 100%;
        padding-right: 0px;
    }
}


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

    ----------------------------------------

 */


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

----------------------------------------

 */


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

    ----------------------------------------

 */

html {
    --primary: #010101;
    --secondary: #ff0000;
    --accent: #43a271;
    --lighthover: #2d915a;
    --darkhover: #c40000;
    --background: #f4f7f9;
    --text: #666666;
    --dark-text: #000000;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    --side-margin: 1px;
}

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

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

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

body {
    color: inherit;
    overflow: inherit;
}

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

p {
    margin: 0;
}

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


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

    Headings

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

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


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

    Links

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

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

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

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

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

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

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

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


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

    Objects

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

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


/*  Wrappers

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

 */

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

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

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

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

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

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

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

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


/* Events/News items */

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

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

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

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

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

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

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


/* Slideshows defaults */

.carousel {
    font-size: 20px;
}


/* Desktop menu  */

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

.nav-container {
    margin-top: 10px;
    border-bottom: 3px solid var(--dark-text);
}

#nav_menu {
    position: relative;
    z-index: 2;
    padding-left: 10%;
    padding-right: 10%;
}

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

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

#nav_menu li {
    position: relative;
}

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

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

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

#nav_menu a:hover,
#nav_menu a:focus,
#nav_menu .nav .open>a,
#nav_menu .nav .open>a:focus,
#nav_menu .nav .open>a:hover {}

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

#nav_menu .dropdown-menu {
    /* Dropdown menu  */
    font-size: inherit;
    padding: 0;
    border: none;
    border-radius: 0;
    top: 100%;
    background: var(--primary);
}

#nav_menu .dropdown-menu li {
    text-align: left;
    border-bottom: 0px;
    padding: 0px !important;
}

#nav_menu .dropdown-menu li:hover {
    background: transparent;
}

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

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

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

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

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


/* Mobile menu trigger  */

svg#burger-menu {
    width: 27px;
    height: 20px;
}

svg#burger-menu .cls-1 {
    fill: var(--primary) !important;
}


/* Login modal */

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

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

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

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

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

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

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

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

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

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


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

    Mobile navigation

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

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

#mobileMenuWrapper.open {
    left: 0;
}

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

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

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

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

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

.triggerClose {
    text-align: right;
}

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


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

    MOBILE MENU

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

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

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

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

#mobileMenuWrapper #mobile-menu li.mobile-search-wrap a {
    border: 0px;
}

#mobileMenuWrapper #mobile-menu a.home-link {
    border-top: 1px solid var(--accent);
}

#mobileMenuWrapper #mobile-menu a {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    padding: 10px 0px;
    text-decoration: none;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    border-bottom: 1px solid var(--accent);
    border-radius: 0px;
    text-transform: uppercase;
}

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

#mobileMenuWrapper ul.mDropdown {
    display: none;
}

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

#mobile-menu a {}

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

.mobile-menu-wrap {
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 768px) and (max-width: 990px) {
    .mobile-menu-wrap {
        display: inline-block !important;
        vertical-align: middle;
    }
}

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

@media (max-width: 767px) {
    #mobile-menu-col {
        top: 20px;
    }
}

#mobileMenuWrapper #mobile-menu li.mobile-advertise-wrap {
    margin-top: 45px;
}

#mobileMenuWrapper #mobile-menu li.mobile-advertise-wrap a {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    background: var(--accent);
    border-radius: 10px;
    padding: 6px 16px;
    transition: background 0.5s ease;
    width: 145px;
    border: 0;
}

#mobileMenuWrapper #mobile-menu li.mobile-donate-wrap {
    margin-top: 20px;
}

#mobileMenuWrapper #mobile-menu li.mobile-donate-wrap a {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    background: var(--secondary);
    border-radius: 10px;
    padding: 6px 16px;
    transition: background 0.5s ease;
    width: 145px;
    border: 0;
}

li.mobile-sm-wrap {
    display: inline-block !important;
    vertical-align: middle;
    margin-top: 10px;
    margin-right: 15px;
}

li.mobile-sm-wrap svg {
    width: 45px;
    height: 45px;
}

li.mobile-sm-wrap a {
    border: 0 !important;
}

li.mobile-sm-wrap svg path.cls-4 {
    fill: #fff !important;
}


/*-----------------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 {
    color: #FFFFFF;
    float: right;
    display: inline;
    font-size: 35px;
    cursor: pointer;
    transform: rotate(45deg);
    border-bottom: 0px !important;
    padding-right: 15px !important;
    border-top: 0px !important;
    padding-bottom: 0px !important;
}

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


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

    Main

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

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


/* Banner row  */

#banner-row {
    position: relative;
}

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

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

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

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

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


/* Events and News rows */

#events-row .column:not(#mycanvas .column),
#news-row .column:not(#mycanvas .column) {
    /* max-height: 50vh;

    overflow-y: visible; */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
    grid-gap: 1rem 30px;
    padding-top: 2rem;
    padding-bottom: 2rem;
    height: 100%;
}

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

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

#news-row time {
    display: none;
}

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

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

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


/* Sponsors Row */

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


/* #mycanvas .sponsors-list {

    display: block;

} */

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

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


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

    Footer

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

footer:not(#homepage-main+footer) {
    margin-top: 3rem;
}

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

footer#main-footer * {
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

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

.footer-info {
    line-height: 34px;
}

@media (max-width: 767px) {
    .footer-info {
        line-height: 26px;
        margin-bottom: 20px;
    }
    footer#main-footer p {
        margin-bottom: 8px;
    }
}

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

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

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

footer h2 {
    font-size: 24px;
}

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

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

footer a {
    text-decoration: underline;
}

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

.footer-logo-wrap img {
    width: 268px;
    max-width: 100%;
    height: auto;
    position: relative;
    top: -35px;
}

.footer-logo-wrap p {
    font-family: 'Lustria', sans-serif !important;
    font-size: 20px !important;
    line-height: 28px;
    text-align: center;
    margin-top: 0px;
    position: relative;
    left: -30px;
}


/* Footer Subscribe */

.footer-subscribe-form {
    margin-top: 80px;
    margin-bottom: 50px;
}

.footer-subscribe-form label.control-label {
    display: none;
}

.footer-subscribe-form label.control-label[for=contactCaptcha] {
    display: block;
}

.footer-subscribe-form .form-group {
    width: 42%;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-subscribe-form .form-group:nth-child(4),
.footer-subscribe-form .form-group:nth-child(5) {
    display: none;
}

.footer-subscribe-form .form-group.label-required {
    display: none;
}

.footer-subscribe-form .form-group input.form-control {
    width: 345px;
    height: 36px;
    padding: 9px 13px 7px;
    border-radius: 7px;
    font-size: 16px !important;
    color: #000000 !important;
}

.footer-subscribe-form .form-group input.form-control::placeholder {
    color: #000;
    opacity: 1;
    /* Firefox */
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.footer-subscribe-form .form-group input.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000;
}

.footer-subscribe-form .form-group input.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000;
}

.footer-subscribe-form .form-group input.btn.btn-default[type="submit"],
.footer-subscribe-form .form-group button.g-recaptcha {
    left: 0 !important;
    height: 36px;
    padding: 4px 20px 5px !important;
    border-radius: 5px !important;
    font-weight: 700;
    font-size: 20px !important;
    text-transform: uppercase;
    position: relative;
    background: var(--secondary);
    border: 0px;
}

.footer-subscribe-form .form-group input.btn.btn-default[type="submit"]:hover,
.footer-subscribe-form .form-group button.g-recaptcha:hover {
    background: var(--darkhover);
}

.footer-subscribe-form .form-group.row.captcha-field {
    width: 100%;
}

.footer-subscribe-form .form-group.row.captcha-field .control-label {
    margin-bottom: 15px;
}

.footer-subscribe-form .form-group.row.captcha-field label.control-label {
    width: 16%;
    display: inline-block;
    vertical-align: middle;
}

.footer-subscribe-form .form-group.row.captcha-field label.control-label img {
    width: 85px;
}

.footer-subscribe-form .form-group.row.captcha-field .col-sm-12 {
    width: 80%;
    display: inline-block;
    vertical-align: middle;
}

.footer-subscribe-form .form-group.row.captcha-field .col-sm-12 input.form-control {
    width: 60%;
}

.footer-subscribe-form .form-group .col-sm-12 {
    padding: 0;
}

.footer-credit-wrap p {
    font-weight: 300;
}

#footer-sm-wrap {
    text-align: center;
    margin-top: 65px;
}

#footer-sm-wrap .social-media-wrap {
    margin-left: 0px;
}

svg#footer-fb-icon {
    width: 13px;
    height: 27px;
}

svg#footer-ig-icon {
    width: 27px;
    height: 27px;
}

svg#footer-x-twitter-icon {
    width: 26px;
    height: 26px;
}

#footer-sm-wrap .social-media-wrap ul>li,
.footer-credit-wrap .social-media-wrap ul>li {
    margin-right: 30px;
}

#footer-sm-wrap .social-media-wrap ul>li:last-child,
.footer-credit-wrap .social-media-wrap ul>li:last-child {
    margin-right: 0px;
}

.footer-list-links {
    margin-top: 12px;
}

.footer-about-us {
    display: inline-block;
    vertical-align: top;
    margin-right: 30px;
}

.footer-spi-news {
    display: inline-block;
    vertical-align: top;
}

.footer-about-btn,
.footer-spi-btn {
    margin-bottom: 40px;
}

.footer-about-btn,
.footer-spi-btn {
    font-weight: 800;
    font-size: 20px !important;
    text-decoration: none;
    padding: 9px 32px;
    border: 2px solid #c5d6c4;
    border-radius: 25px;
    text-align: center;
}

.footer-about-list ul li,
.footer-spi-list ul li {
    list-style: disc;
    margin-left: 20px;
    padding-bottom: 4px;
}

.footer-about-list ul li a,
.footer-spi-list ul li a {
    text-decoration: none;
}

.footer-candid-wrap img {
    display: inline;
}

.footer-right-btn {
    margin-top: 25px;
}

.footer-right-btn>* {
    margin-bottom: 6px;
}

.footer-right-btn>*:last-child {
    margin-bottom: 0px;
}

.footer-right-btn a {
    font-weight: 800;
    font-size: 18px !important;
    text-decoration: none;
    padding: 8px 15px;
    border: 2px solid #c5d6c4;
    border-radius: 25px;
    text-align: center;
    width: 160px;
    display: inline-block;
    margin-left: 20px;
}

.footer-tip-line:before {
    display: inline-block;
    content: url(../images/footer-tipline.png);
    text-indent: 0;
    position: relative;
    z-index: 1;
    top: 15px;
}

.footer-directory:before {
    display: inline-block;
    content: url(../images/footer-directory.png);
    text-indent: 0;
    position: relative;
    z-index: 1;
    top: 15px;
}

.footer-subscribe:before {
    display: inline-block;
    content: url(../images/footer-subscribe.png);
    text-indent: 0;
    position: relative;
    z-index: 1;
    top: 15px;
}

.footer-membership:before {
    display: inline-block;
    content: url(../images/footer-membership.png);
    text-indent: 0;
    position: relative;
    z-index: 1;
    top: 15px;
}

.footer-secured-wrap img {
    display: inline;
    margin-top: 45px;
}

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

@media (min-width: 990px) and (max-width: 1199px) {
    .footer-subscribe-form .form-group input.form-control {
        width: 95%;
    }
    .footer-right-btn a {
        font-size: 15px !important;
        padding: 8px 10px;
        border: 2px solid #c5d6c4;
        border-radius: 25px;
        text-align: center;
        width: 140px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    footer#main-footer .text-left,
    footer#main-footer .text-right {}
    .footer-logo-wrap p {
        text-align: left;
        padding-left: 40px;
        padding-bottom: 50px;
        left: 0px;
    }
    .footer-info {
        line-height: 30px;
        margin-bottom: 20px;
    }
    .footer-subscribe-form .form-group input.form-control {
        width: 95%;
    }
}

@media (max-width: 767px) {
    #right-newsletter-wrap img {
        margin: 0 auto;
    }
    footer#main-footer .text-left,
    footer#main-footer .text-right {
        text-align: center;
    }
    footer .social-list {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 15px;
    }
    .footer-logo-wrap img {
        margin: 0 auto;
    }
    .footer-logo-wrap p {
        left: 0px;
        padding-bottom: 40px;
    }
    .footer-about-us {
        margin-right: 0px;
    }
    .footer-about-us,
    .footer-spi-news {
        display: block;
        margin-bottom: 50px;
    }
    .footer-list-links ul {
        text-align: left;
        margin: 0 auto;
        padding-left: 25%;
    }
    .footer-subscribe-form .form-group {
        display: block;
        width: 100%;
    }
    .footer-subscribe-form .form-group input.form-control {
        width: 80%;
        margin: 0 auto 20px;
    }
    #mobile-footer-bottom .social-media-wrap {
        margin-top: 15px;
    }
}

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

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

.footer-login-wrap .member-login-wrap a {
    font-weight: 800;
    font-size: 18px !important;
    text-decoration: none;
    padding: 8px 15px;
    border: 2px solid #c5d6c4;
    border-radius: 25px;
    text-align: center;
    width: 160px;
    display: inline-block;
    text-transform: uppercase;
}


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

    MMS Styles

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


/* MMS Member Menu icons */

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

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

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


/*--------------------------------------------------------
    Page backgrounds per #256446 #134
--------------------------------------------------------*/

h1.title {
    position: relative;
    z-index: 1;
}

[id$="-page"],
#subpage-main [class*="-section"] {
    position: relative;
}

#subpage-main [id$="-page"]::before,
#subpage-main [class*="-section"]::before {
    content: '';
    display: block;
    position: absolute;
    top: calc((30px + 45px + 3rem) * -1);
    /* ^^ Compensates for page title and padding */
    bottom: -3rem;
    /* ^^ Compensates for footer margin */
    left: -20vw;
    right: -20vw;
    background: var(--color1);
}

#subpage-main [class*="-section"]::before {
    top: 0;
    bottom: 0;
}

#subpage-main #im-staff-page>[class*="-section"]:first-of-type::before {
    /* A little help for the IM Staff page which has the page title hidden but not replaced with other text so a gap shows between the bottom of the menu and the background color of the staff section */
    top: -3rem;
}

#subpage-main h1.title+[class*="-section"]::before {
    /* First section at top of page */
    top: calc((30px + 45px + 3rem) * -1);
    /* ^^ Compensates for page title and padding */
}

#subpage-main [class*="-section"]:last-child::before {
    bottom: -3rem;
    /* ^^ Compensates for footer margin */
}

[id$="-page"].radial::before,
#subpage-main [class*="-section"].radial::before {
    background: radial-gradient(var(--color1), var(--color2));
    background: radial-gradient(var(--color1), var(--color2));
    /* Gradient type changed per #256446 note #151 */
}

[id$="-page"].linear::before,
#subpage-main [class*="-section"].linear::before {
    background: linear-gradient(var(--degrees), var(--color1), var(--color2));
}


/* Page colors */

#mission-and-values-page {
    --color1: #cdcfc0;
}

#contact-us-page {
    --color1: #e6e0dc;
}

#history-page {
    --color1: #e6e0dc;
}

#ethics-policy-page {
    --color1: #a6a6a6;
    --color2: #ffffff;
    --degrees: 135deg;
}

#board-of-directors-page {
    --color1: #CDCFC0;
}

#board-of-directors-page.child-page {
    --color1: #E6E0DC;
    min-height: calc(100vh - 54px - 167px - 4rem);
    /* ^^ There are pages with no content that show a blank white background because of the min-height set on #subpage-main. This style boosts the height of the page's content to match it */
}

#advertise-page {
    --color1: #e6e0dc;
}

#become-a-member-page::before {
    background: radial-gradient(circle, #9f9f9f, white);
    background: linear-gradient(#9f9f9f, white);
    /* Gradient type changed per #256446 note #151 */
}


/* News Page styles */

#news-page::before {
    background: radial-gradient(circle, #e6e0dc, white);
    background: linear-gradient( var(--color1), white);
    /* Gradient type changed per #256446 note #151 */
}

.spi-life {
    --color1: #9f9f9f;
}

.local-govt {
    --color1: #cdcfc0;
}

.island-creations {
    --color1: #e6e0dc;
}

@import url('https://fonts.googleapis.com/css2?family=Lustria&family=Poppins:wght@200&display=swap');
#news-page .nl-subdesc h2 {
    font-family: 'Lustria', serif;
}

#news-page .nl-date {
    font-weight: 200;
    text-transform: uppercase;
}

.spi-life {}


/* Section colors */


/* IM Staff */

.im-reporters-section {
    --color1: #cdcfc0;
}

.im-management-section,
.im-management-section h1,
.im-management-section h2,
.im-management-section h3,
.im-management-section a {
    color: white;
    --color1: black;
}


/* System pages */

#search_bootstrap_container {
    --color1: #9f9f9f;
    --color2: #ffffff;
    position: relative;
}

#alt_entry1_container {
    position: relative;
    --color1: #cdcfc0;
    --color2: #cdcfc0;
}

#alt_entry1_container,
#search_bootstrap_container::before {
    content: '';
    top: -50px;
    /* ^^ Compensates for system page subhead */
    bottom: -3rem;
    /* ^^ Compensates for footer margin */
    left: 0;
    right: 0;
    background: radial-gradient(var(--color1), var(--color2));
}


/* Font classes per #256446 */

@import url('https://fonts.googleapis.com/css2?family=Lustria&family=Poppins:wght@200&display=swap');
.lustria {
    font-family: 'Lustria', serif !important;
}

.poppins {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 200 !important;
}