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


/*This changes the box model of everything in the website and can be overwriten per component if needed. To read more about box-sizing and why you'd want to overwrite it see https://css-tricks.com/international-box-sizing-awareness-day/ or https://www.w3schools.com/cssref/css3_pr_box-sizing.asp*/


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

html {
    font-size: 16px;
}

body {
    background: #FEFEFA;
    font-family: 'DM Sans', sans-serif;
    color: #0A2852;
    font-size: inherit !important;
}

p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #0A2852;
    line-height: 24px;
    margin-bottom: 20px;
}

#subpage-main span,
#homepage-main span {
    color: #0A2852;
}

hr {
    border-top: 1px solid #CCCCCC;
}

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


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

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

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

h1 {
    font-size: 36px;
    color: #0A2852;
}

h2 {
    font-size: 30px;
    color: #0A2852;
}

h3 {
    font-size: 20px;
    color: #0A2852;
}

h4 {
    font-size: 18px;
}

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: #0A2852;
}

a:hover,
a:focus {
    color: #00438F;
}


/* Buttons */

.button-link {
    background: #0A2852;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 26px 11px;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 1.5em;
}

.button-link:hover,
.button-link:focus {
    background: #00438F;
    color: #fff;
    text-decoration: none;
}


/*Social links  */

.social-links {
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
    margin-bottom: 1rem;
    list-style: none;
}

.social-links li:not(:last-child) {
    margin-right: 1.25ch;
}

.social-links img,
.social-links svg {
    width: 15px;
    height: 15px;
}


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

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

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

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

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

blockquote {
    font-size: inherit;
}


/*Styles below are taken from Bootstrap's table style to ensure that tables on content pages are responsive and neat whether Bootstrap classes are added or not*/

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

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

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

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

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

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


/* Container */


/* .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
} */

#homepage-main .container {
    padding-right: 50px;
    padding-left: 50px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

@media (max-width: 990px) {
    /* .container-fluid, */
    #homepage-main .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}


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

#top-header {
    background: #FEFEFA;
    padding: 10px 50px 15px;
}

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

.top-menu-link {
    display: inline-block;
    vertical-align: middle;
}

.top-menu-link ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.top-menu-link ul li {
    position: relative;
    display: inline;
    float: left;
}

.top-menu-link ul li a {
    color: #3F3F40;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 0px 10px;
    border-right: 1px solid #3F3F40;
    position: relative;
    display: block;
    text-decoration: none;
}

.top-menu-link ul li:first-child a {
    padding-left: 0px;
}

.top-menu-link ul li:last-child a {
    border-right: 0px;
    padding-right: 0px;
}

.top-menu-link ul li a:hover {
    color: #3F3F40;
    text-decoration: none;
}

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

#top-header .social-links {
    display: inline-flex;
}


/* Login */

#login-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

#login-wrap a {
    background: #0A2852;
    color: #fff;
    padding: 6px 15px 6px;
    position: relative;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border-radius: 1px;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    #login-wrap a {
        padding: 12px 11px;
        font-size: 13px;
    }
}

#login-wrap a:hover,
#login-wrap a:focus {
    background: #00438F;
}


/* Mobile Login */

.mobile-login-wrap {
    margin-top: 15px;
    margin-bottom: 20px;
}

.mobile-login-wrap a {
    background: #0A2852 !important;
    color: #fff !important;
    padding: 6px 10px 6px !important;
    position: relative;
    text-decoration: none !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-align: center;
    border: 0px;
    border-radius: 1px !important;
    width: 75px !important;
    text-transform: uppercase;
}


/* Social Media Icons */

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

.social-media-wrap {
    float: left;
    vertical-align: middle;
}

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

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

.social-media-outside-wrap ul>li {
    position: relative;
    vertical-align: middle;
    margin-right: 15px;
}

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

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

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

svg#fb-icon {
    width: 8px;
    height: 15px;
}

svg#twitter-icon {
    width: 15px;
    height: 12px;
}

svg#linkedin-icon {
    width: 15px;
    height: 14px;
}

@media (max-width: 767px) {
    li.mobile-sm-wrap {
        display: inline-block !important;
        margin-top: 0px;
        margin-bottom: 15px;
    }
}

li.mobile-sm-wrap a {
    border-bottom: 0px !important;
    padding: 0px !important;
    margin-right: 5px !important;
}


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

header {
    background: #EAEAEA;
    position: relative;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
    /* gap: 30px; */
    /* Gap in flexbox is supported by the newest version of all the main browsers as of 5-2021, but it's not safe to use given that many people don't have the latest versions installed. I'm using this to create some space between the link area of the logo and the menus so it's not totally crucial for this to work  */
}

#logo-wrap,
#nav-wrap {
    position: relative;
    z-index: 1;
}

#logo-wrap {
    margin-top: -50px;
    margin-bottom: -20px;
    z-index: 2;
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    align-items: center;
}

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

#logo-wrap a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.logo-text {
    vertical-align: text-top;
    margin-left: 20px;
    /*margin-left: clamp(10px, 3%, 20px);*/
    color: #3F3F40;
    font-size: 30px;
    font-size: clamp(24px, 2vw, 30px);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    padding-top: 30px;
    line-height: 1;
}

@media (min-width: 991px) {
    #nav-wrap {
        min-width: 578px;
    }
    #logo-wrap img {
        max-width: calc(8vw - 5px);
    }
}

@media (max-width: 1350px) {
    .logo-text {
        text-transform: capitalize;
        font-size: 20px;
    }
}

@media (max-width: 1075px) and (min-width: 991px) {
    .logo-text {
        margin-left: 10px;
    }
}

@media (max-width: 990px) {
    header {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 80px;
    }
    #logo-wrap img {
        width: 120px;
    }
}

@media (max-width: 600px) {
    header {
        margin-top: 60px;
    }
    .logo-text {
        margin-left: 10px;
        font-size: 18px;
    }
}


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

#nav_menu {
    padding: 0;
}

#nav_menu>ul {
    width: 100%;
    padding: 0;
    margin: 0;
}

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

#nav_menu>ul a {
    color: #3F3F40;
    font-size: 19px;
    font-size: clamp(14px, calc(1vw + 1px), 19px);
    padding: 1.3em clamp(5px, calc(.5vw + 1px), .75em);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transition: background-color .3s;
    text-transform: uppercase;
}

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

.caret {
    margin-left: .25ch;
}

.sub-a .caret {
    display: none;
}

@media (max-width: 1300px) and (min-width: 991px) {
    /* Styles added to prevent navigation from breaking two lines */
    #nav_menu>ul>li>a {
        font-size: 14px;
    }
    .caret {
        margin-left: .125ch;
    }
}

@media (max-width: 1205px) and (min-width: 991px) {
    /* Styles added to prevent navigation from breaking two lines */
    #logo-wrap {
        max-width: 310px;
    }
}

@media (max-width: 1060px) and (min-width: 991px) {
    /* Styles added to prevent navigation from breaking two lines */
    #logo-wrap {
        max-width: 270px;
    }
}

@media (max-width: 1000px) and (min-width: 991px) {
    /* Styles added to prevent navigation from breaking two lines */
    #logo-wrap {
        max-width: 260px;
    }
}

@media (max-width: 1200px) {
    #nav_menu>ul>li>a {
        text-transform: capitalize;
    }
    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 990px) {
    #main-menu {
        margin-top: 40px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    #main-menu {
        margin-top: 30px;
        margin-bottom: 0px;
    }
}


/* Desktop dropdown menus  */

#nav_menu .dropdown-menu {
    border: 0;
    border-radius: 0px;
    /* float: none; */
    position: relative;
    box-shadow: none;
}

#nav_menu>ul>li>.dropdown-menu {
    padding: 30px 50px 30px 6vw;
    background-color: #e0e0e0;
    column-rule: 1px solid #e1e7ea;
    position: fixed;
    /* -moz-column-fill: balance; */
    column-fill: balance;
    top: 140px;
}

@media (max-width: 1650px) {
    #nav_menu>ul>li>.dropdown-menu {
        top: 135px;
    }
}

@media (max-width: 1460px) {
    #nav_menu>ul>li>.dropdown-menu {
        top: 130px;
    }
}

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

#nav_menu>ul>li>.dropdown-menu>li:not(.dropdown-submenu)::before {
    content: '';
    height: 1em;
    width: 1em;
    background: #0A2852;
    border-radius: 50%;
    position: absolute;
    top: .5em;
}

#nav_menu .dropdown-menu a {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: #0A2852;
    border: 0;
    margin-bottom: 0;
    padding: 2px 0;
    text-align: left;
}

#nav_menu .dropdown-menu ul {
    display: block;
    background: transparent;
}

#nav_menu .dropdown-menu .caret {
    display: none;
}

#nav_menu .dropdown-menu>li>a {
    white-space: unset;
}

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

#nav_menu .dropdown-submenu,
#nav_menu .nav>li>.dropdown-menu>li:not(.dropdown-submenu)>a {
    padding-left: 20px;
    padding-right: 20px;
}

#nav_menu .dropdown-submenu a {
    text-transform: capitalize;
}

#nav_menu .dropdown-submenu .dropdown-menu a {
    text-transform: none;
    font-size: 17px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    color: #00438F;
}

#nav_menu .nav>li>.dropdown-menu>li {
    page-break-inside: avoid;
}

@media screen and (min--moz-device-pixel-ratio:0) {
    /* Firefox only hack to correct for FF not rending mutli-columns in dropdown menu*/
    /* #nav_menu .nav>li>.dropdown-menu>li {
        float: none;
    } */
    #nav_menu .dropdown-menu>li>a {
        white-space: normal;
    }
}


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

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


/*--------------------------------------------------------
                    Mobile Navigation
--------------------------------------------------------*/


/* Mobile menu trigger  */

button#mobile-toggle {
    padding: 5px 0;
    display: none;
    border: none;
    background: none;
}

button#mobile-toggle svg * {
    fill: #002857;
}

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

@media (max-width: 990px) {
    #nav-wrap {
        display: flex;
    }
    button#mobile-toggle {
        display: block;
    }
}


/* Mobile menu  */

#mobileMenuWrapper {
    position: fixed;
    top: 0px;
    bottom: 0px;
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 300px;
    background-color: #EAEAEA;
    border-right: 2px solid #CCCCCC;
    transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000);
}

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

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

#mobile-menu ul {
    padding: 0;
    list-style-type: none;
}

#mobile-menu a {
    color: #0A2852;
    font-size: 16px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    background: transparent;
    padding: 8px 0px;
    border-bottom: 0px;
    margin: 0px;
    display: block;
    text-decoration: none;
}

#mobile-menu .mDropdown {
    display: none;
    background-color: #FEFEFA;
    border: 0;
    border-radius: 0px;
    padding: 0px 0;
    box-shadow: none;
    padding-bottom: 5px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

#mobile-menu .mDropdown.open {
    display: block;
}

#mobile-menu [data-target="#myModal"] {
    background: #0A2852;
    color: #fff;
    padding: 6px 15px 6px;
    position: relative;
    text-decoration: none;
    /* font-size: 14px;
    font-weight: 500; */
    text-align: center;
    border-radius: 1px;
    text-transform: uppercase;
}

#triggerClose {
    position: absolute;
    right: 0;
    color: #0A2852;
    font-size: 38px;
    cursor: pointer;
}


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

main {
    min-height: calc(100vh - 44px - 149px - 48px - 130px);
    /*The minimum height of the main section of the page should be the height of the screen minus the header and footer*/
    position: relative;
}

main:not(#homepage-main) {
    padding-top: 30px;
    padding-bottom: 30px;
}

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

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


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


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

.slideshow-wrap {
    margin-bottom: 0px;
    position: relative;
    z-index: 0;
}

.slideshow-wrap .container {
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin: 0 !important;
}

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

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

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

.slideshow-wrap [class*="col-"] {
    padding: 0;
}

.slideshow-wrap .carousel-caption {
    display: block;
    background: rgba(10, 40, 82, 0.9);
    padding-top: 10px;
    min-height: auto;
    padding-bottom: 13px;
}

.slideshow-wrap .carousel-caption p.alt-text:empty {
    display: none;
}

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

.slideshow-wrap .carousel-control img {
    width: 12px;
    height: 18px;
    margin-top: 15px;
}

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

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

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

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

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

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

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

.carousel-caption {
    position: absolute;
    z-index: 100;
    background: rgba(37, 82, 130, 0.9);
    left: auto;
    top: auto;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: left;
    text-shadow: none;
    padding: 0;
    margin: 0;
    min-height: 90px;
    display: none;
}

.caption-inside-wrap {
    padding: 14px 0px;
}

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

p.alt-text {
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0px;
    text-align: left;
    display: inline-block;
    word-wrap: break-word;
    line-height: 22px;
}

.carousel-indicators {
    bottom: 0px;
    display: none;
}

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

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

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

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

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

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

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

@media (max-width: 990px) {
    .slideshow-wrap .carousel-caption {
        background: rgba(10, 40, 82, 0.9);
        min-height: auto !important;
    }
    .carousel-caption {
        background: rgba(37, 82, 130, 0.9);
        display: block;
        position: static;
        width: 100%;
        height: auto !important;
        min-height: 150px !important;
    }
    .caption-wrapper {
        max-width: 750px;
    }
}

@media (max-width: 767px) {
    .slideshow-wrap .carousel-caption {
        background: rgba(10, 40, 82, 0.9);
        min-height: auto !important;
    }
    .carousel-caption {
        display: block;
        position: static;
        width: 100%;
        height: auto !important;
        min-height: 160px !important;
        border: none;
    }
    p.alt-text {
        font-size: 16px;
    }
    .carousel-control img {
        margin-top: 7px;
    }
}

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

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

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


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


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


/* cta-row */

.featured-first-wrap {
    background: #EAEAEA;
    padding: 50px 0px 70px;
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 30px;
}

#cta-row,
#quick-links-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 2em 30px;
}

#mycanvas #cta-row,
#mycanvas #quick-links-row {
    /* Fix the GPE appearance */
    display: block;
}

#cta-row::before,
#cta-row::after,
#quick-links-row::before,
#quick-links-row::after {
    content: none;
}

#cta-row:not(#mycanvas #cta-row) .column,
#quick-links-row:not(#mycanvas #quick-links-row) .column {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#cta-row h3 {
    text-transform: uppercase;
}

#cta-row p {
    margin-bottom: 0;
}

#cta-row .button-link {
    align-self: flex-start;
}


/*quick-links-row */

#quick-links-row {
    margin-top: 50px;
    margin-bottom: 50px;
}

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

#quick-links-row .button-link {
    display: block;
}

@media (max-width: 767px) {
    #quick-links-row {
        margin-bottom: 0px;
    }
    #quick-links-row .col-content-wrap {
        margin-bottom: 30px;
    }
}


/* Calendar - Events - Feat Video*/

.events-outside-wrap {
    background: #EAEAEA;
    padding: 60px 0px 80px;
    margin-top: 40px;
    margin-bottom: 50px;
}

@media (max-width: 990px) {
    .events-outside-wrap {
        padding-bottom: 30px;
    }
}


/*calendar-view-wrap*/

#calendar-view-wrap #gcal {
    background: #fff;
    /* padding-bottom: 80px; */
    margin-bottom: 1.5em;
}

#calendar-view-wrap .fc-header {
    width: 100%;
    text-align: center;
    position: relative;
    background: #0A2852;
    padding: 15px 20px;
}

#calendar-view-wrap .fc-header * {
    color: #fff;
}

#calendar-view-wrap .fc-header .fc-header-title h2 {
    padding: 18px 0px;
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
}

#calendar-view-wrap .fc-header .fc-header-left {
    text-align: right;
    vertical-align: middle;
}

#calendar-view-wrap .fc-header .fc-header-right {
    text-align: left;
    vertical-align: middle;
}

#calendar-view-wrap .fc-header .fc-header-left .fc-button-prev {
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-right: 18px solid #fff;
}

#calendar-view-wrap .fc-header .fc-header-right .fc-button-next {
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 18px solid #fff;
}

#calendar-view-wrap .fc-header span.fc-button {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

#calendar-view-wrap .fc-content {
    padding: 20px;
}

#calendar-view-wrap .fc-content table .fc-first.fc-last .fc-day-header {
    padding-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    color: rgba(63, 63, 64, 0.8);
    font-size: 18px;
    font-weight: 700;
}

#calendar-view-wrap .fc-content table * {
    border: 0px;
    float: none;
    text-align: center;
    vertical-align: middle;
    min-height: 3px !important;
    font-family: 'Poppins', sans-serif;
    color: #A0A3A4;
    font-size: 20px;
    font-weight: 500;
    padding-top: 3px;
}

#calendar-view-wrap .fc-content table .fc-state-highlight {
    background: #00438F;
}

#calendar-view-wrap .fc-content table .fc-state-highlight * {
    color: #fff !important;
}

#calendar-view-wrap .fc-content table .fc-other-month .fc-day-number {
    opacity: 0.5;
}

.calendar-btn {
    text-align: center;
    position: relative;
    background: #0A2852;
    padding: 15px 20px;
    cursor: pointer;
    top: -80px;
    margin-left: 20px;
    margin-right: 20px;
}

.calendar-btn .button-link {
    padding: 0px;
    background: transparent;
    font-size: 19px;
}

@media (max-width: 990px) {
    #calendar-view-wrap .fc-content table .fc-first.fc-last .fc-day-header,
    #calendar-view-wrap .fc-content table * {
        font-size: 16px;
    }
}


/* Upcoming Events */

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

.event-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 25px;
}

#events-section-wrap .event-item:nth-child(5) {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.event-date-wrap {
    background: #A0A3A4;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    max-width: 60px;
    margin-right: 10px;
    padding: 7px 0px 4px;
    border-radius: 2px;
}

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

.event-month {
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}

.event-date {
    text-align: center;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

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

.event-time {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

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

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

a.ev-title-link {
    color: #0A2852;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    text-transform: none;
    word-wrap: break-word;
}

a.ev-title-link:hover {
    color: #00438F;
    text-decoration: underline;
}

.event-blurb {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #0A2852;
    padding-top: 1px;
    line-height: 22px;
}


/*featured-video-wrap*/

#featured-video-wrap iframe {
    max-width: 100%;
}

@media (max-width: 990px) {
    #featured-video-wrap {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    #featured-video-wrap iframe {
        height: 250px;
    }
}


/* Latest News */

#news-row>.column {
    margin-top: 30px;
    margin-bottom: 90px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em 30px;
}

#mycanvas #news-row {
    /* Fix appearance for GPE */
    display: block;
}

#news-row h2 {
    grid-column: 1 / -1;
}

.news-item {
    display: flex;
    flex-direction: row;
    align-items: start;
}

.news-item img {
    display: block;
    width: 100%;
    height: auto;
    margin-right: 20px;
    margin-bottom: 1.5em;
}

.news-item time {
    display: flex;
}

.news-item time::before {
    content: url('../images/calendar-icon.png');
    display: inline-block;
    margin-right: 5px;
}

@media (max-width: 1500px) {
    .news-item {
        flex-direction: column;
    }
}

@media (max-width: 767px) and (min-width: 501px) {
    .news-item {
        flex-direction: row;
    }
    .news-item img {
        max-width: 180px;
    }
}

@media (max-width: 767px) {
    #news-row>.column {
        display: block;
    }
    .news-item+.news-item {
        margin-top: 2em;
    }
}


/*Sponsor Vendors*/

#sponsors-section-wrap {
    padding-top: 20px;
    padding-bottom: 45px;
}

#sponsors-section-wrap h2 {
    padding-bottom: 20px;
}

#sponsors-section-wrap .carousel-indicators {
    display: block;
    bottom: 0;
    top: 100%;
    margin-top: 25px;
}

#sponsors-section-wrap .carousel-indicators li {
    width: 14px;
    height: 14px;
    margin-left: 8px !important;
    margin: 0 auto;
    border-radius: 15px;
    width: 13px;
    height: 13px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #C6D8E5;
    border: 1px solid #C6D8E5;
    border-radius: 15px;
}

#sponsors-section-wrap .carousel-indicators li.active {
    background: #91AFC6;
}

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

#sponsors-section-wrap .carousel img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 990px) {
    #sponsors-section-wrap .carousel-inner .item img {
        margin: 0 auto 20px;
        max-width: 100%;
    }
    #sponsors-section-wrap .col-sm-2 {
        width: 33.33333333%;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    #sponsors-section-wrap .carousel .item {
        text-align: center;
    }
}

@media (max-width: 580px) {
    #sponsors-section-wrap .col-sm-2 {
        width: 50%;
        display: inline-block;
    }
}


/*--------------------------------------------------------
                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 {
    background: #EAEAEA;
    padding: 70px 50px 35px;
    margin-top: 80px;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
}

.footer-top-inside-wrap {
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 28px;
    margin-bottom: 23px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

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


/* Logo/contact */

.footer-contact {
    display: flex;
    flex-direction: row;
}

.footer-contact>div {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #CCCCCC;
}

footer .logo-text {
    margin-left: 0;
}


/* Footer menu  */

footer nav {
    padding-left: 30px;
    padding-right: 30px;
    justify-self: center;
}

#LP {
    padding: 0;
}

#LP>ul {
    display: flex;
    flex-direction: column;
}

#LP .caret,
#LP>ul ul {
    /* Hide submenus and the carets pointing them out  */
    display: none;
}

#LP li:not(:last-child) {
    margin-right: 1ch;
    margin-bottom: 1ch;
}

#LP a {
    padding: 0;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}


/* Footer social links  */

footer .social-links {
    align-items: flex-start;
    justify-self: flex-end;
    padding: 0;
}

footer .logo-text {
    padding-top: 0;
}

.footer-info,
.footer-info * {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #3F3F40;
    text-decoration: none !important;
}

#main-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#main-footer p {
    font-size: 17px;
    font-weight: 400;
}

#main-footer span.footer-privacy {
    border-left: 1px solid #AFC6DB;
    margin-left: 14px;
    padding-left: 14px;
    color: #0A2852;
}

@media (max-width: 1200px) {
    .footer-contact>a>img {
        width: 90px;
    }
}

@media (max-width: 990px) {
    .footer-top-inside-wrap {
        display: block;
    }
    #LP.navbar-collapse.collapse {
        /* Overwrite BS default */
        display: block !important;
    }
    #LP>ul {
        flex-direction: row;
        justify-content: space-between;
        justify-content: center;
        flex-wrap: wrap;
    }
    footer .social-links {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-contact {
        flex-direction: column;
        align-items: center;
    }
    .footer-contact>div {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        text-align: center;
    }
    .footer-contact>a>img {
        margin-bottom: 1em;
    }
    #main-footer {
        justify-content: center;
        flex-wrap: wrap;
    }
}


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

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

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

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

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

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


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

.modal {
    overflow-y: visible;
}

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

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

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

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

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

.login-form input[type="submit"]:hover,
.login-form input[type="submit"]:focus {
    background: #5687C9;
    border: 1px solid #5687C9;
    text-decoration: none;
}

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

.login-form a:hover,
.login-form a:focus {
    color: #27313D;
}

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

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

h4#myModalLabel {
    font-size: 22px;
    color: #4A4F56;
    padding-bottom: 0px;
}


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


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


/* Safari Browser */

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


/* Internet Browser */

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