*, *: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: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4D4D4D;
}
p {
    font-family: 'DM Sans', 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: 'Poppins', sans-serif;
    font-weight: 700;
    color: #333333;
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}
h1 a, h2 a, h3 a, h4 , h5 a {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 28px;
    color: #333333;
}
h2 {
    font-size: 25px;
    color: #333333;
    font-weight: 600;
}
h3 {
    font-size: 22px;
    color: #333333;
    font-weight: 600;
}
h4 {
    font-size: 20px;
    color: #333333;
    font-weight: 600;
}

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: 15px 0px 10px;
}
svg#main-logo {
    max-width: 100%;
    width: 135px;
    height: 110px;
}

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

@media (min-width: 360px) and (max-width: 410px) {
    #right-side-wrap {
        width: 200px;
    }
}

@media (min-width: 326px) and (max-width: 360px) {
    #right-side-wrap {
        width: 180px;
    }
}

@media (max-width: 326px) {
    #right-side-wrap {
        width: 160px;
    }
}



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




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


#search-input {
    max-width: 250px;
    display: inline-block;
    vertical-align: middle;
    color: #808080;
    position: relative;
    top: 2px;
}

    @media (max-width: 420px) {
        #search-input {
            max-width: 185px;
        }
    }
    
    @media (max-width: 991px) {
       #search-input {
            display: none;
       }
    }





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


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

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

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

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


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




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





/* Login */
.login-search-wrap {
    margin-bottom: 8px;
}
.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: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 2px;
}
.login-wrap a:hover, .login-wrap a:focus {
    background: #0990BA;
}

@media (min-width: 428px) and (max-width: 616px) {
    .login-wrap {
        display: none;
    }
}

/* 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: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 2px;
    white-space: nowrap;
}
.join-wrap a:hover, .join-wrap a:focus {
    background: #0990BA;
}

@media (max-width: 428px) {
    .join-wrap {
        display: none;
    }
}



/* 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: 'DM Sans', 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;
}

/*----------------Subpage Event button----------*/
.evr-submit {
    color: #fff !important;
    background: #337ab7 !important;
    border-color: #2e6da4 !important;
    display: inline-block;
    padding: 6px 12px !important;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
}
.evr-submit:hover, .evr-submit:focus {
    color: #fff;
    background: #286090 !important;
    border-color: #204d74 !important;
}


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

.slideshow-wrap {
    position: relative;
}
.slideshow-wrap .container  {
    width: 100%;
}
.slideshow-wrap img{
    width: 100%;
}  
.slideshow-wrap .carousel-inner .item img {
    max-height: 500px;
    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: 'DM Sans', 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: 'DM Sans', 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: block;
    text-indent: -9999px;
    line-height: 0;
    transition: .25s all ease-in;
}
.slideshow-wrap .carousel-control.left:after {
    content: url(../images/prev-btn.png);
    width: 7px;
    height: 11px;
    display: block;
    text-indent: 0;
    position: relative;
    top: 5px;
    left: 7px;
}
.slideshow-wrap .carousel-control.right:after {
    content: url(../images/next-btn.png);
    width: 7px;
    height: 11px;
    display: block;
    text-indent: 0;
    position: relative;
    top: 5px;
    left: 7px;
}


.slideshow-wrap .carousel-control.left {
    right: 22%;
    top: auto;
    bottom: 9%;
}
.slideshow-wrap .carousel-control.right {
    right: 19.5%;
    top: auto;
    bottom: 9%;
}
    @media (min-width: 1465px) and (max-width: 1565px) {
        .slideshow-wrap .carousel-control.left {
            right: 16.5%;
        }
        .slideshow-wrap .carousel-control.right {
            right: 13%;
        }
    }
    @media (min-width: 1200px) and (max-width: 1465px) {
        .slideshow-wrap .carousel-control.left {
            right: 16.5%;
        }
        .slideshow-wrap .carousel-control.right {
            right: 13%;
        }
    }
    @media (min-width: 990px) and (max-width: 1199px) {
        .slideshow-wrap .carousel-control.left {
            right: 10%;
        }
        .slideshow-wrap .carousel-control.right {
            right: 4.5%;
        }
    }
    @media (min-width: 768px) and (max-width: 990px) {
        .slideshow-wrap .carousel-control.left {
            right: 10%;
        }
        .slideshow-wrap .carousel-control.right {
            right: 4.5%;
        }
    }
    @media (max-width: 767px) {
        .slideshow-wrap .carousel-control {
            display: none;
        }
    }

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



.caption-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
    text-align: left;
}
.carousel-caption {
    position: absolute;
    z-index: 100;
    background: rgba(31,43,53,0.8);
    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(31,43,53,0.8);
            min-height: auto;
        }
    }


p.caption-text {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    word-wrap: break-word;
    margin-top: 0px;
    margin-bottom: 8px;
}
p.caption-text span {
    display: inline-block;
    margin-top: 10px;
    background: #7B133E;
    padding: 2px 15px;
}
p.alt-text {
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    display: inline-block;
    word-wrap: break-word;
    line-height: 21px;
    margin-bottom: 0px;
}

.carousel-indicators {
    bottom: 12px;
}
.carousel-indicators li {
    width: 12px;
    height: 12px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.55);
    border: 1px solid #FFFFFF;
    border-radius: 15px;
}
.carousel-indicators li.active {
    width: 12px;
    height: 12px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #154E91;
    border: 1px solid #fff;
    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: 'DM Sans', 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: 'DM Sans', sans-serif;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    background: #154E91;
    color: #fff;
    border-radius: 3px;
    padding: 10px 19px 12px;
    text-align: center;
}
.btn-wrap a:hover {
    color: #fff;
    background: #0990BA;
}
.btn-wrap a:after {
    content: url(../images/btn-icon.png);
    display: none;
    position: relative;
    vertical-align: middle;
    width: 12px;
    height: 9px;
    top: -8px;
    padding-left: 6px;
}



/* Featured Section */
#featured-section-wrap .column img {
    text-align: center;
    margin: 0 auto 20px;
}
#featured-section-wrap .column h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: #1A1A1A;
    text-align: center;
}
#featured-section-wrap .column h3 a {
    font-size: 18px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: #1A1A1A;
    text-align: center;
}



/* Welcome Section */
.welcome-featured-outer-wrap {
    background: #F7FAFC;
    padding-top: 60px;
    padding-bottom: 60px;
}
    @media (max-width: 767px) {
        .welcome-featured-outer-wrap {
            padding-top: 35px;
            padding-bottom: 15px;
        }
    }
#welcome-section-wrap h1 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 3px;
}
#welcome-section-wrap p {
    margin-bottom: 25px;
}


/* 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: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
#featured-box-wrap .column .col-content-wrap h3 a {
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
}





/* Upcoming Events */
#events-services-wrap {
    padding: 65px 0px;
}
#events-section-wrap {
    margin-bottom: 50px;
}
#events-section-wrap h3 {
    padding-bottom: 20px;
}
.events-outer-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem 30px;
    margin-bottom: 2rem;
}
    @media (max-width: 767px) {
        .events-outer-wrap {
            display: block;
        }
        .event-item {
            margin-bottom: 25px !important;
        }
        #events-section-wrap .btn-wrap {
            margin-top: 50px !important;
        }
    }
.event-item {
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #E8ECEF;
    padding: 13px 15px 15px;
    cursor: pointer;
    border-radius: 2px;
    min-height: 110px;
}
/*.event-item:hover {
    box-shadow: 0px 1px 5px rgb(0 0 0 / 8%);
}*/
.event-date-wrap {
    background: #025282;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    max-width: 52px;
    margin-right: 12px;
    padding: 5px 0px 5px;
    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;
}

.event-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.event-date span {
    display: inline-block;
    vertical-align: middle;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #4D4D4D;
}
#event-container {
    padding-left: 0px;
    margin-left: -15px;
}
.event-time {
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 15px;
}
.event-time img {
    display: inline-block;
    vertical-align: sub;
    margin-right: 10px;
}
h3.event-title {
    padding-bottom: 0px !important;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 22px;
}
a.ev-title-link {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    text-transform: none;
    word-wrap: break-word;
    line-height: 22px;
}
a.ev-title-link:hover {
    color: #0990BA;
    text-decoration: underline;
}
.event-content {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}
#events-section-wrap .btn-wrap {
    margin-top: 25px;
}





/* Our Services */
#services-section-wrap h3 {
    padding-bottom: 20px;
}
.accordion-services-wrap .panel-group .panel {
    margin-top: 0px;
    border: 1px solid #E8ECEF;
}
.accordion-services-wrap .panel-heading {
    padding: 0;
    border: 0;
}
.accordion-services-wrap h4.panel-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 0px;
}
.accordion-services-wrap .panel-title>a {
    display: block;
    padding: 15px;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
}
.accordion-services-wrap .panel-heading.active .panel-title>a {
    color: #0990BA;
}
.accordion-services-wrap .panel-heading  a:before {
   font-family: 'Glyphicons Halflings';
   content: "\e114";
   float: right;
   transition: all 0.5s;
}
.accordion-services-wrap .panel-heading.active a:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
} 
.accordion-services-wrap .panel-body {
    font-size: 16px;
    color: #4D4D4D;
    font-family: 'DM Sans', sans-serif;
    line-height: 22px;
}
#services-section-wrap .btn-wrap {
    margin-top: 45px;
}




/* Recent News */
.news-section-outer-wrap {
    background: #F7FAFC;
    padding: 76px 0px;
    margin-top: 25px;
}
#news-section-wrap h3 {
    margin-bottom: 10px;
}
.news-outer-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem 30px;
    margin-bottom: 2rem;
}
    @media (max-width: 991px) {
        .news-outer-wrap {
            display: block;
        }
    }
.news-item {
    background: #fff;
    border: 1px solid #E8ECEF;
    padding: 21px 22px 23px;
    border-radius: 2px;
    min-height: 145px;
}
.news-item h4 {
    color: #333333;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding-bottom: 10px;
}
a.news-title-link {
    color: #333333;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: lowercase;
    display: block;
}
a.news-title-link:first-line {
    text-transform: capitalize;
}
a.news-title-link:hover {
    color: #0990BA;
    text-decoration: underline;
}
.news-description {
    font-size: 15px;
    color: #666666;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}
#news-section-wrap .btn-wrap {
    margin-top: 45px;
}




/* Diamond Sponsors */
#diamond-sponsors-wrap {
    padding: 80px 0px 40px;
}
#diamond-sponsors-wrap h2 {
    margin-bottom: 10px;
}
#diamond-sponsors-wrap .carousel-indicators {
    bottom: -40px;
}
#diamond-sponsors-wrap .carousel-indicators li {
    margin-left: 3px !important;
}
#diamond-sponsors-wrap .carousel .item img {
    border: 1px solid #E8ECEF;
}
#diamond-sponsors-wrap .carousel .item .col-sm-3 img {
    max-width: 100%;
    height: auto;
}







/*--------------------------------------------------------
                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-credit-social-wrap {
    background: #154E91;
    padding: 60px 0px 50px;
    margin-top: 60px;
    font-size: 16px;
    font-family: 'DM Sans', 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-address-wrap strong {
    font-weight: 500;
}
.footer-contactnum-wrap {
    margin-top: 20px;
}
.footer-social-wrap {
    margin-top: 45px;
}
.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: 18px;
}
.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;
    margin-top: 10px;
}
.newsletter-form [for=contactCaptcha] {
    display: block;
}
.newsletter-form .required-text-form {
    display: none;
}
.newsletter-form .form-group input.btn {
    font-family: 'DM Sans', 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;
    margin-left: -60px;
}

@media (min-width: 991px) and (max-width: 1201px) {
    .newsletter-form .form-group input.btn {
        margin-left: -50px;
    }
}

@media (min-width: 767px) and (max-width: 991px) {
    .newsletter-form .form-group input.btn {
        margin-left: -36px;
    }
}

@media (max-width: 767px) {
    .newsletter-form .form-group input.btn {
        margin-left: 0;
    }
}

footer#main-footer {
    background: #1F2B35;
    padding: 27px 0px 27px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
}
footer#main-footer p {
    color: #fff;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    line-height: 28px;
    font-weight: 400;
    padding-top: 0px;
    padding-bottom: 0px;
}
.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: 'DM Sans', 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 {
        }

    }

    @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-credit-section * {
    color: #fff;
}



/*--------------------------------------------------------
                        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: #154E91;
    border: 1px solid #154E91;
    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: #C40D3C;
    border: 1px solid #C40D3C;
    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: #C40D3C;
}
.login-form input:last-of-type{
    width: 100px;
    margin: none;
}
h6.modal-title {
    color: #527785;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}
h4#myModalLabel {
    font-family: 'Poppins', 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: 970px;
    }
}

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

}

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



}


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


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

}


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

    #right-side-wrap {
        margin-top: 15px;
    }
    .slideshow-wrap .caption-slide-wrap {
        background: transparent;
        width: 100%;
        padding: 10px 0px 20px;
    }
    #services-section-wrap {
        margin-top: 25px;
    }
    .news-item {
        min-height: auto;
        margin-bottom: 20px;
    }
    #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) {  


}