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

html {
    --blue: #3859A8;
    --dark-blue: #324368;
    --yellow: #E9C602;
    --gray: #70747d;
    --side-margin: 1px;
    --gap: 1rem 30px;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333;
}

body {
    overflow-x: hidden;
}


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

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

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

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

p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333333;
    margin: 0;
}

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

#subpage-main p:empty {
    display: none;
}


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

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #324368;
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}

h1 a,
h2 a,
h3 a,
h4,
h5 a,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
    font-family: inherit;
    color: inherit;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    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: var(--blue);
    transition: .125s color ease-in-out;
}

a:hover,
a:focus {
    color: var(--dark-blue);
}

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

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

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

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


/*--------------------------------------------------------
    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: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    width: calc(100vw + 13px);
}

.full-width:not(#mycanvas .full-width) .column {
    padding-left: 0;
    padding-right: 0;
}

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

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


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

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

header .logo {
    width: 290px;
    max-width: 100%;
    display: block;
}


/* Search Bar */

header .search {
    display: flex;
    justify-content: center;
}

.searchbox {
    width: 180px;
    width: clamp(180px, 20vw, 300px);
    max-width: 100%;
    position: relative;
    top: -3px;
    padding: 5px 1ch;
    height: 39px;
    outline: 1px solid #e6e6e6;
    transition: .125s outline ease-in-out;
    overflow: hidden;
    margin-left: 1ch;
    margin-bottom: .5rem;
}

#mobile-menu .searchbox {
    margin-left: 0;
    width: 100%;
}

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

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

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

.search-button {
    color: transparent;
    background-color: var(--blue);
    border: none;
    background-image: url(../images/search-new.svg.php?fc=eeeeee);
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
    transition: .125s background-image ease-in-out;
    top: 0;
    bottom: 0;
    width: 40px;
    right: 0;
}

.search-button:hover,
.search-button:focus {
    background-image: url(../images/search-new.svg.php?fc=E9C602);
    outline: none;
}

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


/* Header section  */

.header-list {
    display: flex;
    padding: 0;
    margin: 0;
    gap: .5rem 2ch;
    list-style: none;
}


/* #mobile-menu .header-list {
    flex-direction: column;
} */

.donate {
    background: #FF2641;
}

.button-link[data-toggle="modal"]::before {
    content: '';
    background: url(../images/login-icon.svg);
    display: inline-block;
    width: 1em;
    height: 0.9em;
    margin-right: 1ch;
    background-repeat: no-repeat;
    position: relative;
    bottom: -1px;
}

@media (max-width: 767px) {
    .header-list {
        flex-wrap: wrap;
        gap: 0 1ch;
    }
    header .header-list {
        justify-content: flex-end;
        gap: .5rem 1ch;
    }
    .header-list span {
        display: none;
    }
}

@media (min-width: 651px) {
    #mobile-menu .header-list {
        flex-wrap: wrap;
        row-gap: 0;
    }
    #mobile-menu .header-list>li:nth-child(1),
    #mobile-menu .header-list>li:nth-child(2) {
        display: none;
    }
}

@media (max-width: 650px) {
    header .button-link {
        display: none;
    }
}


/* Desktop menu  */

nav {
    position: relative;
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    display: block;
    z-index: -1;
    background: var(--blue);
}

#nav_menu {
    position: relative;
    z-index: 1;
}

#nav_menu>ul,
#LP>ul {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
}

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

#nav_menu li {
    position: relative;
}

#nav_menu li.mobileMenuTrigger,
#nav_menu .search-item {
    display: none;
}

#nav_menu>ul>li>a,
#LP>ul>li>a {
    transition: background .125s ease-in-out;
    position: relative;
    padding: .7em 2ch;
    text-transform: capitalize;
    color: white;
}

#nav_menu a,
#LP a {
    text-decoration: none;
    transition: .125s background ease-in-out;
}

#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,
#LP a:hover,
#LP a:focus,
#LP .nav .open>a,
#LP .nav .open>a:focus,
#LP .nav .open>a:hover {
    background: var(--dark-blue);
}

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

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

#LP .dropdown-menu {
    /* Dropdown menu  */
    top: unset;
    bottom: 100%;
}

#nav_menu .dropdown-menu a,
#LP .dropdown-menu a {
    text-decoration: none;
    background: transparent;
    transition: .125s background ease-in-out, .125s color ease-in-out;
    padding: .5em 1ch;
}

#nav_menu .dropdown-menu a:hover,
#nav_menu .dropdown-menu a:focus,
#LP .dropdown-menu a:hover,
#LP .dropdown-menu a:focus {
    background: var(--dark-blue);
    color: white;
}

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

@media (max-width: 767px) {
    /* Fighting against BS defaults */
    #LP .navbar-nav .open .dropdown-menu {
        position: absolute;
        background-color: white;
        box-shadow: 0 3px 14px -2px rgba(0, 0, 0, 0.4);
        /* top: unset;
        bottom: 100%; */
    }
}


/* Mobile menu trigger  */

.mobileMenuTrigger:not(.triggerClose) {
    border: 2px solid currentColor;
    padding: .5rem 5px;
    color: var(--dark-blue);
    transition: color .125s ease-in-out;
    display: inline-flex;
    border-radius: 5px;
    background: transparent;
}

.mobileMenuTrigger:not(.triggerClose):hover,
.mobileMenuTrigger:not(.triggerClose):focus {
    color: var(--blue);
    outline: none;
}

.menu-trigger {
    width: 30px;
}

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

@media (max-width: 600px) {
    .menu-trigger {
        width: 24px;
    }
}


/* 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: white;
    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 li {
    display: block;
    margin-bottom: .7rem;
}

#mobileMenuWrapper a {
    text-decoration: none;
}

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

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

.triggerClose {
    text-align: right;
    font-size: 1.5em;
}

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

#mobileMenuWrapper #mobile-menu {
    overflow: auto;
    padding: 1rem;
}


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

#subpage-main,
#mms-main {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: calc(100vh - 123px - 42px - 230px);
}

main:not(#mms-main) .row:not(#slideshow-row) {
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

@media (max-width: 990px) {
    main:not(#mms-main) .row:not(#slideshow-row) {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    main:not(#mms-main) .column+.column {
        margin-top: 1rem;
    }
}


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


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


/*Slideshow row*/

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

#slideshow-row .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#slideshow-row .carousel-control.left,
#slideshow-row .carousel-control.right {
    display: none;
}

#slideshow-row .carousel-indicators {
    display: block;
    bottom: 0;
    margin-left: unset;
    margin-right: unset;
    left: 0;
    right: 0;
    width: 100%;
}

#slideshow-row .carousel-indicators li {
    width: 13px;
    height: 13px;
    margin-left: 8px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 15px;
}

#slideshow-row .carousel-indicators li.active {
    width: 13px;
    height: 13px;
    background-color: #fcb424;
    border: 1px solid #fcb424;
}


/* Spreading row*/

#spreading-row span {
    display: block;
}

#spreading-row h1 {
    text-align: center;
}

#spreading-row .cursive {
    font-family: 'Carattere', cursive;
    color: var(--gray);
}


/* Quick Links row*/

#quick-links-row ul {
    display: flex;
    gap: 1rem 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

#quick-links-row li {
    position: relative;
    overflow: hidden;
    transition: .125s border ease-in-out;
    border: 3px solid var(--blue);
    border-radius: 4px;
}

#quick-links-row li:hover,
#quick-links-row li:focus,
#quick-links-row li:focus-within {
    border-color: var(--yellow);
}

#quick-links-row ul a {
    color: var(--yellow);
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% - .5em);
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    text-shadow: 2px 2px 2px rgb(0 0 0 / 10%);
    z-index: 2;
    transition: .125s text-shadow ease-in-out;
}

#quick-links-row ul a:hover,
#quick-links-row ul a:focus {
    text-shadow: 2px 2px 2px rgb(0 0 0 / 60%);
    text-decoration: none;
}

#quick-links-row ul a::after {
    content: '';
    position: absolute;
    top: -300px;
    bottom: -300px;
    left: -300px;
    right: -300px;
    background: black;
    opacity: .4;
    z-index: -1;
    transition: .125s opacity ease-in-out;
}

#quick-links-row ul a:hover::after,
#quick-links-row ul a:focus::after {
    opacity: .1;
}

#quick-links-row ul a {
    color: var(--yellow);
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% - .5em);
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    text-shadow: 2px 2px 2px rgb(0 0 0 / 10%);
    z-index: 2;
    transition: .125s text-shadow ease-in-out;
}

#quick-links-row img {
    width: 100%;
}

@media (max-width: 767px) {
    #quick-links-row ul {
        gap: 1rem 2ch;
    }
    #quick-links-row ul a {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    #quick-links-row ul {
        flex-direction: column;
    }
    #quick-links-row ul a {
        font-size: 25px;
    }
}


/* News */

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

.news-content {
    padding: 10px 0px;
}

.newss-out-wrap .news-item:first-child .news-content {
    padding-top: 0px;
}

.newss-out-wrap .news-item:last-child .news-content {
    border-bottom: 0px;
}

.news-img-wrap:empty {
    display: none;
}

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

.news-img-wrap img {
    min-height: 85px;
    height: auto;
    width: 130px;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
}

.news-details-wrap {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 145px);
    width: -webkit-calc(100% - 145px);
    width: -moz-calc(100% - 145px);
    position: relative;
    padding: 0px;
    top: -3px;
}

.news-date {
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    padding-top: 3px;
}

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

.news-date span {
    display: inline-block;
    vertical-align: text-top;
    color: #333333;
    font-size: 15px;
}

h3.news-title {
    font-weight: 400;
    font-size: 22px;
    line-height: 24px;
    padding-top: 2px;
    padding-bottom: 0px;
}

a.news-title-link {
    font-size: 22px;
    font-weight: 400;
    color: #231f20;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}

a.news-title-link:hover {
    color: #4865A8;
    text-decoration: underline;
}

.news-description {
    padding-top: 4px;
    font-size: 16px;
    color: #333333;
}

@media (max-width: 600px) {
    .news-img-wrap {
        display: block;
        margin: 0 0 .5rem 0;
    }
    .news-img-wrap img {
        /*width: 100%;*/
    }
    .news-details-wrap {
        width: 100%;
    }
}


/* Upcoming Events */

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

.event-item .row {
    margin-bottom: 0px !important;
}

#events-resources-section-wrap {
    margin-bottom: 70px;
    margin-top: 12px;
}

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

.event-inside-wrap {
    display: table;
    border: 1px solid #303543;
    width: 100%;
    min-height: 145px;
}

.event-date-wrap {
    vertical-align: middle;
    margin-right: 10px;
    padding: 20px 10px;
    text-align: center;
    min-height: 92px;
    width: 80px;
    display: table-cell;
    background: #e9c602;
}

.event-month {
    font-family: "Arimo", sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
}

.event-date {
    font-family: "Arimo", sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: #fff;
}

.event-details-wrap {
    padding: 20px 15px;
}

h3.event-title {
    font-size: 24px;
    padding: 0 0 8px;
}

a.ev-title-link {
    color: #4c4c4c;
    font-size: 18px;
    font-family: "Arimo", sans-serif;
    font-weight: bold;
    line-height: 1.3em;
    display: block;
    margin-bottom: 5px;
}

.event-blurb {
    color: #333333;
    margin-bottom: 0px;
    border-top: 1px solid #999999;
    padding: 10px 0 0;
}


/* About */

#news-events-section-wrap {
    margin-bottom: 30px;
    margin-top: 30px;
}

.about-section-wrap {
    background: #f2f2f2;
    padding: 60px 0px;
}

#about-inside-wrap h2 {
    padding-bottom: 25px;
}


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


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

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


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

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

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

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

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

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

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


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

footer nav::before,
footer #LP::before,
footer #LP>ul::before {
    content: none;
}

footer nav {
    position: relative;
}

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

#LP.collapse {
    display: block;
}

#LP>ul>li>a {
    color: white;
}

#LP>ul>li:first-child>a {
    padding-left: 0;
    padding-right: 0;
}

#LP>ul>li:last-child {
    margin-left: auto;
}

.social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: .5rem 2ch;
}

.social-list img {
    width: 30px;
    height: 30px;
    display: block;
}

@media (max-width: 767px) {
    #LP>ul {
        gap: .5rem 2ch;
        flex-wrap: wrap;
    }
    #LP>ul>li:first-child {
        display: none;
    }
    #LP>ul>li>a {
        padding-left: 0;
        padding-right: 0;
    }
    #LP>ul>li:last-child {
        margin-left: unset;
    }
}


/* Footer section */

footer section {
    display: grid;
    grid-template-columns: 1fr 350px 1fr;
    gap: 1rem 30px;
    color: white;
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
    align-items: center;
}

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

footer section div {
    display: flex;
    align-items: center;
    gap: 1rem 30px;
}

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

footer section a:hover,
footer section a:focus {
    color: var(--yellow);
}

footer section p:not(:last-child),
footer section label,
footer section ul {
    margin: 0;
}

footer section label {
    text-align: center;
}

footer section img {
    display: block;
    max-width: 100%;
    margin-bottom: .5rem;
}

footer section ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: .5rem 2ch;
}

footer section ul a {
    color: var(--yellow);
    text-decoration: none;
}

footer section ul a:hover,
footer section ul a:focus {
    color: white;
}

@media (max-width: 767px) {
    footer section {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    footer section ul {
        justify-content: unset;
    }
}

.claverite-icon {
    max-width: 90px;
}


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


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

#change_att_info_link,
#remove_att_link {
    font-size: 16px;
}