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

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4D4D4D;
}

p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 24px;
    margin-bottom: 20px;
}

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


/*^^ Break tags shouldn't be used to space out lines, only to make text within a paragraph break to a new line*/


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

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

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

h1 {
    font-size: 28px;
    color: #1A1A1A;
}

h2 {
    font-size: 22px;
    color: #1A1A1A;
}

h3 {
    font-size: 20px;
    color: #1A1A1A;
}

h4 {
    font-size: 18px;
    color: #1A1A1A;
}

h5 {
    font-size: 15px;
    color: #1A1A1A;
}

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

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: ;
    text-decoration: none;
}

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

a.button {}

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

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


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


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

#main-header {
    padding: 8px 0px 6px;
}
#main-header * {
    font-family: 'Be Vietnam Pro', sans-serif;
}
#logo-wrap {
    margin-top: 12px;
}

.logo-wrap {
    text-align: center;
    margin: 0 auto;
}

svg#main-logo {
    max-width: 100%;
    width: 407px;
    height: 60px;
}

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


/* Social Media Icons */

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

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

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

.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: 8px;
}

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

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

.right-content-wrap {
    margin-bottom: 8px;
}

@media (min-width: 768px) and (max-width: 990px) {
    .right-content-wrap {
        text-align: center;
        margin-top: 20px;
    }
    .lang-search-wrap {
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .right-content-wrap {
        border-top: 1px solid #F2F2F2;
        padding-top: 10px;
    }
}

.header-lang-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 25px;
}

.header-lang-wrap a {
    color: #4D4D4D;
    font-size: 16px;
    font-weight: 400;
}

.header-lang-wrap a.active {
    font-weight: 700;
}

.header-lang-wrap span.french-wrap {
    border-left: 2px solid #222222;
    margin-left: 12px;
    padding-left: 12px;
}

.eng-wrap.active,
.french-wrap.active {
    font-weight: 700;
}


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

#search-input {
    display: inline-block;
    vertical-align: middle;
    color: #4D4D4D;
    position: relative;
    top: 2px;
}

.searchbox {
    width: 223px;
    max-width: 45vw;
    display: inline-block;
    vertical-align: middle;
    color: #4D4D4D;
    position: relative;
    padding: 5px 1ch;
    height: 35px;
    background: #fff;
    border: 1px solid #E6E6E6;
    transition: .125s border ease-in-out;
    border-radius: 3px;
}
    @media (max-width: 1200px) {
        .searchbox {
            max-width: 100%;
        }
    }  
    @media (max-width: 767px) {
        .searchbox {
            width: 100%;
            height: 36px;
        }
    }



.searchbox ::-webkit-input-placeholder {
    color: #4D4D4D;
}

.searchbox :-moz-placeholder {
    /* Firefox 18- */
    color: #4D4D4D;
}

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

.searchbox :-ms-input-placeholder {
    color: #4D4D4D;
}


.search-input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    width: 100%;
    padding: inherit;
    background: #fff;
    padding: 2px 10px;
    outline: none;
    color: #4D4D4D;
    box-shadow: none;
    height: 33px;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Be Vietnam Pro', sans-serif;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    letter-spacing: -1px;
}
#search-input 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=222222);
    position: absolute;
    right: 0;
    top: 0px;
    bottom: 0;
    width: 32px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    border-left: 0px;
    transition: .25s all ease-in-out;
    padding: 0;
    display: block;
    left: auto;
    margin: 0;
    text-align: left;
}


/* Mobile Search */

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





/* Top Featured Link */

.top-featured-links {
    margin-top: 20px;
    display: inline-block;
}

.top-featured-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-featured-links ul li {
    display: inline-block;
    vertical-align: middle;
}

.top-featured-links ul li a {
    color: #4D4D4D;
    font-size: 16px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 400;
    padding: 5px 15px;
}

.top-featured-links ul li:last-child a {
    padding-right: 0px;
}


/* Login */

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

.login-wrap a {
    background: #154E91;
    color: #fff;
    padding: 8px 17px 9px;
    position: relative;
    text-decoration: none;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 2px;
}

.login-wrap a:hover,
.login-wrap a:focus {
    background: #0990BA;
}


/* Join */

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

.join-wrap a {
    background: #F7931E;
    color: #fff;
    padding: 8px 17px 9px;
    position: relative;
    text-decoration: none;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 2px;
}

.join-wrap a:hover,
.join-wrap a:focus {
    background: #0990BA;
}


/* Mobile Login - Join */

.mobile-login {
    border: 0px !important;
    margin-left: 15px;
    margin-top: 25px;
}

.mobile-login a {
    background: #154E91 !important;
    color: #fff;
    padding: 8px 19px 11px !important;
    position: relative;
    text-decoration: none;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    border: 0px !important;
    border-radius: 2px;
    width: 100px !important;
}


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

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

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


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

main {
    min-height: calc(100vh - 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#subpage-main {
    padding-top: 20px;
}

#subpage-main #mms-main {
    margin-bottom: 2.5em;
}

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

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

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


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

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


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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


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

.slideshow-wrap {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.carousel-control.left {
    height: 22px;
    width: 22px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Be Vietnam Pro', sans-serif;
    background: #09AEED;
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 0px;
    border-radius: 30px;
    margin-left: 15px;
}

.carousel-control.right {
    height: 22px;
    width: 22px;
    color: #fff;
    top: 0px;
    left: auto;
    right: 0px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Be Vietnam Pro', sans-serif;
    background: #09AEED;
    vertical-align: middle;
    text-align: center;
    padding-left: 2px;
    border: 0px;
    border-radius: 30px;
    margin-right: 15px;
}


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

.slideshow-wrap .carousel-indicators {
    margin-bottom: 0px;
    text-align: right;
    bottom: 6%;
    width: 59%;
}

.caption-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
    text-align: left;
    background: rgba(29, 39, 45, 0.85);
    padding: 18px 25px;
    border-radius: 2px;
}

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

@media (max-width: 767px) {
    .carousel-caption {
        position: static;
        background: rgba(29, 39, 45, 0.85);
        min-height: auto;
    }
    .slideshow-wrap .carousel-indicators {
        margin-bottom: 0px;
        text-align: left;
        bottom: 8px;
        width: auto;
        margin-left: -48%;
    }
    p.caption-text {
        margin-bottom: 20px !important;
    }
}


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

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

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

.carousel-indicators {
    bottom: 12px;
}

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

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

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

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

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

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

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


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


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


/* Buttons */

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

.btn-wrap a {
    font-family: 'Be Vietnam Pro', sans-serif;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    background: #0F477D;
    color: #fff;
    border-radius: 2px;
    padding: 8px 16px 8px;
    text-align: center;
}

.btn-wrap a:hover {
    color: #fff !important;
    background: #305385 !important;
}


/* Box Three Section */

.box-three-wrap {
    background: #F7F8F9;
    padding: 35px 0px 10px;
}

.box-three-wrap .col-content-wrap {
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgb(0 0 0 / 1%);
    padding: 25px 25px;
    margin-bottom: 25px;
    min-height: 240px;
    border: 1px solid #F2F2F2;
}

.box-three-wrap h3,
.box-three-wrap .col-content-wrap h3 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #0F477D;
}

.box-three-wrap h3 a,
.box-three-wrap .col-content-wrap h3 a {
    color: #0F477D;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.box-three-wrap .col-content-wrap h3 a:hover {
    text-decoration: underline;
}

.box-three-wrap .col-content-wrap p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 24px;
    margin-bottom: 0px;
}

.box-three-wrap .column:first-child img {
    margin: 1em 0;
}


/* Welcome Section */

#welcome-news-wrap {
    padding: 80px 0px;
}

#welcome-section-wrap h1 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 0px;
}

#welcome-section-wrap p {
    margin-bottom: 15px;
    line-height: 26px;
}


/* Featured Box */

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

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

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

#featured-box-wrap .column .col-content-wrap {
    background: #2373B5;
    border-radius: 3px;
    text-align: center;
    color: #fff;
    padding-top: 15px;
    margin-bottom: 25px;
}

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

#featured-box-wrap .column .col-content-wrap h3 {
    background: #154E91;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    padding-top: 7px;
    padding-bottom: 8px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

#featured-box-wrap .column .col-content-wrap h3 a {
    color: #fff;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 14px;
    font-weight: 500;
}



/* Featured News */
.featured.news-item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
    @media (max-width: 767px) {
        .featured.news-item {
            display: inline-block !important;
        }
        .featured.news-item .news-image, .featured.news-item .news-details-wrap {
            margin-bottom: 20px;
            width: 100% !important;
            margin-right: 0px !important;
        }
    }
.featured.news-item .news-image {
    margin-right: 20px;
    margin-top: 10px;
    width: 35%;
}
.featured.news-item .news-image img {
    min-height: 175px;
    height: 175px;
    max-width: 100%;
    width: 240px;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
}
.featured.news-item .news-image:empty {
    display: none;
}
.featured.news-item .news-title {
    margin-top: 5px;
    margin-bottom: 10px;
}
.featured.news-item a.news-title-link {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}
.featured.news-item .news-details-wrap {
    width: 60%;
}
.featured.news-item .news-description {
    white-space: normal;
    word-break: break-word;
}




/* Recent News */

.news-section-outer-wrap {
    background: #F7FAFC;
    padding: 76px 0px;
    margin-top: 25px;
}

#news-section-wrap h2:not(#gm-canvas #news-section-wrap h2) {
    margin-bottom: 20px;
    padding-bottom: 0px;
    display: inline-block;
    vertical-align: middle;
}

#news-section-wrap .btn-wrap:not(#gm-canvas #news-section-wrap .btn-wrap) {
    margin-top: 0px !important;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 15px;
    float: right;
}

.news-item {
    border-bottom: 1px solid #F2F2F2;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

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

.news-date {
    margin-bottom: 3px;
}

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

.news-date span {
    color: #666666;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: -1px;
}

#news-section-wrap .news-title {
    margin-bottom: 0px;
}

a.news-title-link {
    color: #0F477D;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
/*    text-transform: lowercase;*/
    display: block;
}

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

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

.news-description {
    font-size: 15px;
    color: #666666;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 400;
}


/* Upcoming Events */

.events-outer-wrap {
    position: relative;
    padding: 15px 0px 26px;
}

.events-outer-wrap:not(#gm-canvas .events-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;
    overflow: hidden;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    background-blend-mode: multiply;
    background: linear-gradient( rgba(12, 101, 145, 0.95) 100%, rgba(12, 101, 145, 0.95)100%), url(../images/events-bg-wrap.png) no-repeat;
    max-width: 100%;
}

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

#events-section-wrap h2:not(#gm-canvas #events-section-wrap h2) {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 30px;
    padding-bottom: 0px;
    color: #fff;
}

#events-section-wrap .btn-wrap:not(#gm-canvas #events-section-wrap .btn-wrap) {
    margin-top: 0px !important;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 30px;
    float: right;
}

#events-section-wrap .btn-wrap a:not(#gm-canvas #events-section-wrap .btn-wrap a) {
    background: #fff;
    color: #0F477D;
}

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

.event-content {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #0F477D;
    background: #FFF;
    border: 1px solid #F2F2F2;
    border-radius: 2px;
    padding: 15px 10px 18px;
}

.event-date-wrap {
    width: 65px;
    max-width: 65px;
    margin-right: 10px;
    padding: 0px;
    border-right: 1px solid #999999;
    display: inline-block;
    vertical-align: top;
}

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

.event-month {
    text-align: center;
    color: #4D4D4D;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Be Vietnam Pro', sans-serif;
    padding-top: 0px;
    text-transform: uppercase;
}

.event-date {
    text-align: center;
    color: #4D4D4D;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Be Vietnam Pro', sans-serif;
    line-height: 30px;
}

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

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

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

#events-section-wrap .event-title {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}

.event-title {
    font-weight: normal;
    padding-bottom: 0px;
    margin-bottom: 4px;
    font-size: 16px !important;
    font-family: 'Inter', sans-serif;
    line-height: 26px;
}

a.ev-title-link {
    color: #0F477D;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    word-wrap: break-word;
}

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

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


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


/* Subpages Sidebar */
.sidebar-event-feed {
    background: #4595d2;
    margin-bottom: 10px;
}
.sidebar-event-feed h2 {
    background: #256BA7;
    color: #fff;
    text-transform: uppercase;
    padding: 15px 20px 5px;
}
.sidebar-event-feed .event-item {
    padding: 15px 20px 0px;
    margin-bottom: 0px;
}
.sidebar-event-feed .event-details-wrap {
    width: 100%;
}
.sidebar-event-feed .event-title {
    color: #fff;
    font-size: 16px !important;
    line-height: 22px;
}
.sidebar-event-feed .event-title a.ev-title-link {
    color: #fff;
    font-size: 16px;
}
.sidebar-event-feed .btn-wrap {
    margin-top: 20px;
}
.sidebar-event-feed .btn-wrap a {
    display: block;
    text-align: left;
    text-transform: uppercase;
    padding-left: 20px;
    background: #5BABE6;
    border-top: 1px solid #fff;
    font-family: 'Inter', sans-serif;
}
.sidebar-need-ombudsman img,
.sidebar-become-member img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.sidebar-twitter-feed {
    margin-top: 10px;
    margin-bottom: 20px;
}
.sidebar-twitter-feed iframe#twitter-widget-0 {
    width: 100% !important;
}


    @media (max-width: 767px) {
        #sidebar-widget {
            margin-top: 70px;
            margin-bottom: 50px;
        }
    }
    @media (min-width: 480px) and (max-width: 767px) {
        .sidebar-need-ombudsman, .sidebar-become-member {
            text-align: center;
        }
        .sidebar-need-ombudsman img, .sidebar-become-member img {
            width: auto;
            margin: 0 auto 10px;
            text-align: center;
        }

    }




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

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


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

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

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

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

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

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

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


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

.footer-credit-social-wrap {
    background: #134C82;
    padding: 60px 0px 50px;
    font-size: 16px;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: #fff;
    line-height: 28px;
}

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

.footer-credit-social-wrap a {
    color: #fff;
    text-decoration: underline;
}

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

.footer-menu-wrap {
    border-right: 1px solid #27679B;
}

.footer-menu #nav_menu .navbar-nav {
    display: inline-block;
    columns: 2;
    padding: 0px;
}

.footer-menu #nav_menu .navbar-nav .caret {
    display: none;
}

.footer-menu #nav_menu .navbar-nav>li a {
    border-left: 0px;
    padding: 10px 10px 0px 0px;
    text-align: left;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
}

.footer-menu #nav_menu .navbar-nav>li a:hover,
.footer-menu #nav_menu .navbar-nav>li a:focus {
    background: transparent;
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-menu #nav_menu .navbar-nav>li:last-child a {
    border-right: 0px;
}

.footer-menu #nav_menu .navbar-nav .dropdown-menu,
.footer-menu #nav_menu .navbar-nav .dropdown:hover .men-level-0,
.footer-menu #nav_menu .navbar-nav .dropdown:hover .men-level-,
.footer-menu #nav_menu .navbar-nav .dropdown:hover .men-level-1,
.footer-menu #nav_menu .navbar-nav .dropdown:hover .men-level-2 {
    display: block;
    width: 100%;
    position: relative;
    float: none;
    margin: 0;
    min-width: 100%;
    background: transparent;
    box-shadow: none;
    display: block !important;
}

.footer-menu #nav_menu ul.navbar-nav .dropdown,
.footer-menu #nav_menu ul.navbar-nav:first-child>li,
.footer-menu #nav_menu > ul.navbar-nav > li {
    border-bottom: 0px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    width: 100%;
    float: none;
    display: inline-block;
    page-break-inside: avoid;
}

.footer-menu #nav_menu ul.navbar-nav:first-child li:last-child {
    border-bottom: 0px;
}

.footer-menu #nav_menu .dropdown-menu {
    padding-top: 8px;
}

.footer-menu #nav_menu .dropdown-menu li {
    padding-left: 0px;
    float: none;
    display: inline-block;
    border: 0px !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}

.footer-menu #nav_menu .dropdown-menu li a {
    padding: 0;
    color: #ACC4D1;
    font-size: 15px;
    font-weight: 400;
    white-space: normal;
}

.footer-menu #nav_menu .dropdown-menu li a:before {
    display: none;
}

@media (max-width: 991px) {
    .footer-menu #nav_menu {
        display: block !important;
        border: 0px !important;
        box-shadow: none !important;
    }
}

@media (max-width: 580px) {
    .footer-menu #nav_menu .navbar-nav {
        columns: 1;
    }
    .footer-menu-wrap {
        border-right: 0px;
    }
}

.footer-right-wrap svg#main-logo {
    width: 427px;
    height: 63px;
}

.footer-right-wrap svg#main-logo .cls-9 {
    fill: #fff;
}


/* Footer Featured Link */

.footer-featured-links {
    margin-top: 30px;
    margin-bottom: 30px;
}

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

.footer-featured-links ul li {
    display: inline-block;
    vertical-align: middle;
}

.footer-featured-links ul li a {
    color: #ACC4D1;
    font-size: 15px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 400;
    padding: 5px 15px;
    text-decoration: none;
}

.footer-featured-links ul li a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-featured-links ul li:last-child a {
    padding-right: 0px;
}

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

.footer-lang-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0px;
}

.footer-lang-wrap a.active {
    font-weight: 700;
    text-decoration: none;
}

.footer-lang-wrap a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.footer-lang-wrap span.french-wrap {
    border-left: 2px solid #fff;
    margin-left: 12px;
    padding-left: 12px;
}

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

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

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

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

.footer-mission-wrap {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
}

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

.newsletter-form label {
    display: none;
}

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

.newsletter-form [for=contactCaptcha] {
    display: block;
}

.newsletter-form .required-text-form {
    display: none;
}

.newsletter-form .form-submit input.btn {
    font-family: 'Be Vietnam Pro', sans-serif;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    background: #09AEED;
    color: #fff;
    border-radius: 3px;
    padding: 10px 20px 10px;
    text-align: center;
    border: 0px;
    margin-top: 10px;
    height: 42px;
}

footer#main-footer {
    background: #273A49;
    padding: 26px 0px 26px;
    font-size: 16px;
    font-family: 'Be Vietnam Pro', sans-serif;
}

footer#main-footer p {
    color: #ACC4D1;
    font-size: 16px;
    font-family: 'Be Vietnam Pro', sans-serif;
    margin: 0;
    line-height: 28px;
    font-weight: 400;
    padding-top: 0px;
    padding-bottom: 0px;
}

footer#main-footer p span,
footer#main-footer p a {
    color: #fff;
}

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

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

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

footer#main-footer strong {
    color: #fff;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
}

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

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

@media (min-width: 768px) and (max-width: 990px) {
    footer#main-footer .text-left,
    footer#main-footer .text-right {
        text-align: center;
    }
    .footer-right-wrap {
        text-align: center;
    }
    .footer-social-lang-wrap {
        margin-top: 30px;
    }
    .footer-menu-wrap {
        border-right: 0px;
        border-bottom: 1px solid #27679B;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

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

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


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

#memdb_drop_this_member_link {
    text-decoration: underline !important;
}

.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: 'Be Vietnam Pro', sans-serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}

.login-form input[type="submit"] {
    background: #154E91;
    border: 1px solid #154E91;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 3px;
    font-family: 'Be Vietnam Pro', 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: #C40D3C;
    border: 1px solid #C40D3C;
    text-decoration: none;
}

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

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

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

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

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


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


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

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

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

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

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

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

@media (min-width: 768px) and (max-width: 990px) {
    .container {}
    #mobile-menu-col {
        margin-left: 20px;
    }
    #right-index-content {
        margin-top: 30px;
    }
    #services-section-wrap {
        margin-top: 25px;
    }
    .news-item {
        min-height: auto;
        margin-bottom: 20px;
    }
    #welcome-section-wrap,
    #news-section-wrap {
        width: 100%;
    }
    #news-section-wrap {
        margin-top: 50px;
    }
    .box-three-wrap .col-content-wrap {
        min-height: 350px;
    }
}

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

    .caption-wrapper {
        background: transparent;
        padding: 0 15px;
    }

    .lang-search-wrap {
        display: inline-block;
        vertical-align: middle;
    }
    #right-side-wrap {
        margin-top: 15px;
        text-align: left;
    }
    .slideshow-wrap .caption-slide-wrap {
        background: transparent;
        width: 100%;
        padding: 10px 0px 20px;
    }
    #news-section-wrap {
        margin-top: 50px;
    }
    #services-section-wrap {
        margin-top: 25px;
    }
    .news-item {
        min-height: auto;
        margin-bottom: 20px;
    }
    #news-section-wrap .btn-wrap {
        margin-top: 25px;
    }
    #diamond-sponsors-wrap .carousel .item .col-sm-3 {
        width: 50%;
        display: inline-block;
        margin-bottom: 20px;
    }
    .footer-credit-social-wrap {
        padding: 50px 0px 30px;
    }
    .footer-credit-social-wrap .col-xs-12 {
        text-align: left;
        margin-bottom: 15px;
    }
    .footer-mission-wrap,
    .footer-newsletter-wrap {
        margin-top: 25px;
    }
}

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

@media (max-width: 580px) {
    p.caption-text {
        line-height: 34px;
    }
}

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

@media (max-width: 380px) {}


/* 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) {}