*,

*: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: 'Libre Franklin', sans-serif;

    font-size: 16px;

    color: #4D4D4D;

}



p {

    font-family: 'Libre Franklin', sans-serif;

    font-size: 16px;

    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: #3A3A3A;

    margin: 0px;

    padding: 0px;

    padding-bottom: 15px;

}



h1 a,

h2 a,

h3 a,

h4,

h5 a {

    font-family: 'Poppins', sans-serif;

}



h1 {

    font-size: 34px;

    color: #333333;

}



h2 {

    font-size: 25px;

    color: #3A3A3A;

}



h3 {

    font-size: 22px;

    color: #3A3A3A;

}



h4 {

    font-size: 20px;

}



h1.title {

    margin-top: 15px;

}



h1.title:empty {

    display: none;

}





/*^^Hides the extra margin that is added on pages without a title*/



#subpage-main p:not(:empty)+h2,

#subpage-main p:not(:empty)+h3,

#subpage-main p:not(:empty)+h4,

#subpage-main ul+h2,

#subpage-main ul+h3,

#subpage-main ul+h4,

#subpage-main table+h2,

#subpage-main table+h3,

#subpage-main table+h4 {

    margin-top: 1.5em;

}



#subpage-main h2+ul,

#subpage-main h3+ul,

#subpage-main h4+ul {

    margin-top: -.75rem;

    /*Adjusts for the margin-bottom placed on these headings to make the ul's look like they belong to that heading*/

}





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

    LINKS

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



a {

    color: ;

}



a:hover,

a:focus {

    color: ;

}



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

}



ul.box-grid {

    padding-left: 0;

    list-style: none;

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));

    gap: 1em 30px;

}



.box-grid li {

    background: rgba(132, 179, 215, .7);

    padding: .75em 1ch;

    transition: .125s background ease-in-out;

    /* text-align: center; */

}



.box-grid.green li {

    background: #D5F5E3;

}



.box-grid li:hover,

.box-grid li:focus {

    background: #d2dfe5;

}



.box-grid a {

    color: currentColor;

    text-decoration: underline;

    display: block;

    margin-top: .5em;

}





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

                     TOP HEADER

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



#top-header {

    background: #20598E;

    height: 54px;

}



#top-head-wrap {

    padding-top: 3px;

}





/* Social Media Icons */



.social-media-outside-wrap {

    position: relative;

    display: inline-block;

    vertical-align: middle;

    margin-top: 7px;

    margin-right: 18px;

}



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

}



.social-media-outside-wrap ul>li:last-child {

    margin-right: 0px;

}



.social-media-outside-wrap svg {

    width: 34px;

    height: 34px;

}



.top-menu-links-wrap {

    display: inline-block;

    vertical-align: middle;

    margin-right: 20px;

}



.top-menu-links-wrap a {

    color: #fff;

    padding: 12px 10px;

    text-decoration: none;

    font-family: 'Libre Franklin', sans-serif;

    font-size: 16px;

    font-weight: 600;

}



@media (max-width: 767px) {

    .top-menu-links-wrap a {

        padding: 12px 10px;

    }

}



@media (max-width: 480px) {

    .top-menu-links-wrap {

        margin-right: 0px;

    }

    .top-menu-links-wrap a {

        padding: 12px 6px;

        font-size: 13px;

    }

}



ul.top-header-list-wrap {

    padding: 0;

    margin: 0;

    list-style: none;

    float: right;

}



ul.top-header-list-wrap li {

    position: relative;

    display: inline;

    float: left;

}



ul.top-header-list-wrap li a {

    background: #3A3A3A;

    color: #fff;

    font-family: 'Libre Franklin', sans-serif;

    font-size: 16px;

    font-weight: 500;

    padding: 12px 20px;

    border-left: 1px solid #646464;

    position: relative;

    display: block;

    text-decoration: none;

}



ul.top-header-list-wrap li:last-child a {

    border-right: 1px solid #646464;

}



ul.top-header-list-wrap li a:hover {

    background: #545454;

    color: #fff;

    text-decoration: none;

}





/* Login */



#login-wrap {

    display: inline-block;

    vertical-align: middle;

}



#login-wrap a {

    background: #F7931E;

    color: #fff;

    padding: 6px 15px 7px;

    position: relative;

    text-decoration: none;

    font-family: 'Libre Franklin', sans-serif;

    font-size: 16px;

    font-weight: 400;

    text-align: center;

    border: 1px solid #F7931E;

    border-radius: 1px;

}



#login-wrap a:hover,

#login-wrap a:focus {

    background: #F27B06;

    border: 1px solid #F27B06;

}





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

                    Search Bar

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



#search-input {

    max-width: 300px;

    display: inline-block;

    vertical-align: middle;

    color: #3F4444;

    position: relative;

    margin-right: 20px;

}



@media (max-width: 420px) {

    #search-input {

        max-width: 230px;

    }

}



@media (max-width: 360px) {

    #search-input {

        max-width: 180px !important;

    }

}



.search-main-wrap {

    display: inline-block;

    vertical-align: middle;

    margin-top: 20px;

}



.search-input {

    background: transparent;

    border: 2px solid #fff;

}



#search-input ::-webkit-input-placeholder {

    color: #4D4D4D;

}



#search-input :-moz-placeholder {

    /* Firefox 18- */

    color: #4D4D4D;

}



#search-input ::-moz-placeholder {

    /* Firefox 19+ */

    color: #4D4D4D;

}



#search-input :-ms-input-placeholder {

    color: #4D4D4D;

}



.icon-search:before {

    content: url("../images/search-icon.png");

}



#search-input input {

    box-shadow: none;

    height: 34px;

    color: #4D4D4D;

    font-size: 15px;

    font-weight: 400;

    font-family: 'Libre Franklin', sans-serif;

    padding: 0px 13px;

    border: 0px;

    border-top-left-radius: 1px;

    border-bottom-left-radius: 1px;

}



#search-input button {

    background: #fff;

    box-shadow: none;

    border: 0;

    color: #fff;

    padding: 7px 10px 0px;

    height: 34px;

    border-radius: 0px;

    outline: none;

    border-top: 1px solid #fff;

    border-bottom: 1px solid #fff;

    border-top-right-radius: 1px;

    border-bottom-right-radius: 1px;

}



.input-group.search-input-wrap {

    border: 0px;

    background: #fff;

    border-radius: 1px;

}





/* Mobile Search Bar */



li.mobile-search-wrap {

    margin-top: 35px;

    margin-bottom: 0px;

    padding-left: 0px;

    width: 260px;

}



li.mobile-search-wrap a {

    padding-left: 0px !important;

    padding-right: 0px !important;

    border-bottom: 0px !important;

}



li.mobile-search-wrap .input-group.search-input-wrap {

    border: 1px solid #bcb2d8;

    background: #fff;

}



li.mobile-search-wrap .icon-search:before {

    content: url(../images/mobile-search-icon.png);

}



.mobile-search-wrap input {

    border: 0px;

    box-shadow: none;

    height: 34px;

    color: #4D4D4D;

    font-size: 15px;

    font-family: 'Libre Franklin', sans-serif;

    padding: 0px 12px;

    font-weight: normal;

}



.mobile-search-wrap ::-webkit-input-placeholder {

    color: #4D4D4D;

}



.mobile-search-wrap :-moz-placeholder {

    /* Firefox 18- */

    color: #4D4D4D;

}



.mobile-search-wrap ::-moz-placeholder {

    /* Firefox 19+ */

    color: #4D4D4D;

}



.mobile-search-wrap :-ms-input-placeholder {

    color: #4D4D4D;

}



.mobile-search-wrap button {

    background: transparent;

    box-shadow: none;

    border: 0;

    color: #fff;

    padding: 10px 10px;

    height: 34px;

    border-radius: 0px;

    border-top-right-radius: 1px;

    border-bottom-right-radius: 1px;

}



.mobile-search-wrap button:hover,

.mobile-search-wrap button:focus {

    background: transparent;

    color: transparent;

}





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

                      MAIN HEADER

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



#main-header {

    padding: 5px 0px 15px;

}



#logo-wrap {

    position: relative;

    top: 15px;

    margin-bottom: 20px;

}



@media (max-width: 767px) {

    #logo-wrap img {

        margin: 0 auto;

    }

}



svg#main-logo {

    max-width: 100%;

    width: 267px;

    height: 108px;

}



#right-side-wrap {

    text-align: right;

    margin-top: 23px;

}



#mission-wrap span {

    color: #20598E;

    font-family: 'Libre Franklin', sans-serif;

    font-size: 16px;

    font-weight: 600;

}





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

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





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



.slideshow-wrap {

    margin-bottom: 80px;

    position: relative;

}
.slideshow-wrap .carousel-caption {
    position: absolute;
    z-index: 100;
    background: rgba(46, 99, 153, 0.5);
    padding: 15px 20px 15px;
    left: auto;
    bottom: 20px;
    right: 0px;
    top: auto;
    max-width: 285px;
    text-align: left;
}
.slideshow-wrap .carousel-caption .caption-inside-wrap {
    background: transparent;
    border: 0px;
    padding: 0;
}
.slideshow-wrap .caption-wrapper {
    max-width: 100%;
    padding: 0;
    margin: 0;
}
.slideshow-wrap .carousel-caption p.caption-text {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Libre Franklin', sans-serif;
    line-height: 20px;
    display: block;
    color: #fff;
    margin-bottom: 0px;
    text-align: left;
}
.slideshow-wrap .carousel-caption p.caption-text br {
    display: none;
}
.slideshow-wrap .carousel-caption p.alt-text {
    font-size: 14px;
    font-family: 'Libre Franklin', sans-serif;
}



@media (min-width: 768px) and (max-width: 990px) {

    .slideshow-wrap {

        margin-bottom: 60px;

    }
    .slideshow-wrap .carousel-caption {
        min-height: auto !important;
    }

}



@media (max-width: 767px) {

    .slideshow-wrap {

        margin-bottom: 50px;

    }
    .slideshow-wrap .carousel-caption {
        position: relative;
        background-color: rgba(46, 99, 153, 1);
        left: 0;
        bottom: 0;
        right: 0;
        top: auto;
        max-width: 100%;
        min-height: auto !important;
    }

}



.slideshow-wrap .container {

    width: 100%;

}



.slideshow-wrap img {

    width: 100%;

}



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



.slideshow-wrap a {

    text-decoration: none;

}



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

    padding: 0;

}



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

}



.carousel-control.left {

    height: 40px;

    width: 40px;

    color: #fff;

    top: 0px;

    left: auto;

    line-height: normal;

    bottom: 0;

    margin: auto;

    opacity: 1;

    text-shadow: none;

    font-family: 'Libre Franklin', sans-serif;

    background: rgba(32, 89, 142, 0.4);

    vertical-align: middle;

    text-align: center;

    padding-right: 2px;

    border: 0px;

    border-radius: 0px;

    margin-left: 0px;

}



.carousel-control.right {

    height: 40px;

    width: 40px;

    color: #fff;

    top: 0px;

    left: auto;

    right: 0px;

    line-height: normal;

    bottom: 0;

    margin: auto;

    opacity: 1;

    text-shadow: none;

    font-family: 'Libre Franklin', sans-serif;

    background: rgba(32, 89, 142, 0.4);

    vertical-align: middle;

    text-align: center;

    padding-left: 2px;

    border: 0px;

    border-radius: 0px;

    margin-right: 0px;

}



@media (min-width: 768px) and (max-width: 990px) {

    .carousel-control.left,

    .carousel-control.right {

        bottom: 0%;

    }

}



@media (max-width: 767px) {

    .carousel-control.left,

    .carousel-control.right {

        height: 38px;

        width: 38px;

        bottom: 0%;

    }

}



.carousel-control img {

    width: 14px;

    height: 20px;

    margin-top: 10px;

}



@media (max-width: 767px) {

    .carousel-control img {

        margin-top: 7px;

    }

}



.caption-wrapper {

    max-width: 1170px;

    margin: 0 auto;

    padding-right: 15px;

    padding-left: 15px;

}



.carousel-caption {

    position: absolute;

    z-index: 100;

    background: transparent;

    left: auto;

    top: auto;

    right: 0px;

    bottom: 0px;

    width: 100%;

    text-align: center;

    text-shadow: none;

    padding: 0;

    margin: 0;

}



@media (max-width: 990px) {

    .carousel-caption {

        background: rgba(19, 46, 113, 1);

        display: block;

        position: static;

        width: 100%;

        height: auto !important;

        min-height: 150px !important;

    }

}



@media (max-width: 460px) {

    .carousel-caption {

        min-height: 180px !important;

    }

}



.caption-inside-wrap {

    background: rgba(19, 46, 113, 0.75);

    border-top-left-radius: 4px;

    border-top-right-radius: 4px;

    padding: 15px 0px;

}



p.caption-text {

    font-size: 24px;

    font-weight: 600;

    display: block;

    color: #ffffff;

    font-family: 'Poppins', sans-serif;

    text-align: center;

    margin-bottom: 8px;

    word-wrap: break-word;

    line-height: normal;

}



p.alt-text {

    font-size: 18px;

    font-family: 'Libre Franklin', sans-serif;

    color: #ffffff;

    margin-bottom: 0px;

    text-align: center;

    display: inline-block;

    word-wrap: break-word;

    line-height: 22px;

}



@media (max-width: 767px) {

    p.alt-text {

        font-size: 16px;

    }

}



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

}





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





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

                    News and Events Feeds

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





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

                    Index / Home Page

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





/* Buttons */



.orange-btn-wrap {

    margin-top: 38px;

    margin-bottom: 20px;

}



.orange-btn-wrap a {

    background: #F7931E;

    border: 1px solid #F7931E;

    color: #fff;

    font-size: 16px;

    font-weight: 500;

    border-radius: 1px;

    padding: 11px 20px 12px;

    text-decoration: none;

    text-align: center;

    font-family: 'Libre Franklin', sans-serif;

}





/* Welcome and Video */



#video-welcome-section-wrap {

    margin-bottom: 60px;

}



#video-section-wrap iframe {

    max-width: 100%;

}



#welcome-section-wrap h1 {

    padding-bottom: 20px;

    line-height: 43px;

}



#welcome-section-wrap p {

    line-height: 23px;

    margin-bottom: 22px;

}





/* Upcoming Events */



.events-outside-wrap {

    background: #20598E;

    padding: 60px 0px;

    margin-bottom: 60px;

}



#event-section-wrap h2 {

    color: #fff;

    text-align: center;

    margin-bottom: 15px;

}



.event-item {

    margin-bottom: 25px;

}



#events-section-wrap .event-item:nth-child(4) {

    border-bottom: 0px;

    margin-bottom: 0px;

    padding-bottom: 0px;

}



.event-date-wrap {

    background: #558195;

    width: 100%;

    max-width: 70px;

    min-height: 200px;

    display: inline-flex;

    justify-content: center;

    align-items: center;

    flex-direction: column;

}



.event-details-wrap {

    vertical-align: top;

    width: calc(100% - 70px);

    width: -webkit-calc(100% - 70px);

    width: -moz-calc(100% - 70px);

    background: #FFFFFF;

    margin-left: -5px;

    padding: 15px 15px;

    min-height: 200px;

    display: inline-flex;

    justify-content: center;

    align-items: flex-start;

    flex-direction: column;

}



.event-month {

    text-align: center;

    color: #fff;

    font-size: 18px;

    font-weight: 500;

    font-family: 'Poppins', sans-serif;

}



.event-date {

    text-align: center;

    color: #fff;

    font-size: 32px;

    font-weight: 700;

    font-family: 'Poppins', sans-serif;

    line-height: 36px;

}



#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: 6px;

}



a.ev-title-link {

    color: #333333;

    font-size: 18px;

    font-weight: 600;

    text-decoration: underline;

    font-family: 'Poppins', sans-serif;

    text-transform: none;

    word-wrap: break-word;

}



a.ev-title-link:hover {

    color: #20598E;

    text-decoration: underline;

}



.event-content {

    font-family: 'Nunito', sans-serif;

    font-size: 16px;

    font-weight: 400;

    color: #4D4D4D;

}



#event-section-wrap .orange-btn-wrap {

    text-align: center;

    margin-top: 20px;

}





/* CTA section */



#cta-section-wrap {

    margin-top: 15px;

    margin-bottom: 60px;

}



#cta-section-wrap img {

    min-height: 220px;

    height: 220px !important;

    max-width: 100% !important;

    width: 360px !important;

    object-fit: cover;

}



#cta-section-wrap .column {

    min-height: 220px;

}



#cta-section-wrap .column .col-content-wrap a:last-child {

    background: rgba(85, 129, 149, .9);

    width: 360px;

    text-align: center;

    position: relative;

    top: auto;

    height: 50px;

    line-height: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    max-width: 100%;

    font-family: 'LibreFranklin', sans-serif;

    font-size: 20px;

    font-weight: 500;

    text-decoration: none;

    color: #fff;

    bottom: auto;

    margin-top: -50px;

    word-break: break-word;

}



#cta-section-wrap .column .col-content-wrap a:hover {

    background: rgba(85, 129, 149, 1);

}





/* Featured Bottom Slideshow */



.featured-bottom-slideshow-wrap {

    margin-top: 20px;

}



.featured-bottom-slideshow-wrap .container {

    width: 100%;

}



.featured-bottom-slideshow-wrap .carousel-inner .item img {

    width: 100%;

    max-height: 350px;

    object-fit: cover;

    height: 350px;

}



.featured-bottom-slideshow-wrap a {

    text-decoration: none;

}



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

    padding: 0;

}



.featured-bottom-slideshow-wrap .carousel-caption {

    background: rgba(32, 89, 142, 0.75);

    top: 0;

}



.featured-bottom-slideshow-wrap .caption-inside-wrap {

    background: transparent;

    position: relative;

    top: 60px;

}



.featured-bottom-slideshow-wrap .carousel-control {

    display: none;

}



.caption-slide-btn {

    margin-top: 50px;

}



.caption-slide-btn a {

    background: #F7931E;

    border: 1px solid #F7931E;

    color: #fff;

    font-size: 17px;

    font-weight: 400;

    border-radius: 1px;

    padding: 17px 39px 17px;

    text-decoration: none;

    text-align: center;

    font-family: 'Libre Franklin', sans-serif;

}



.featured-bottom-slideshow-wrap p.caption-text {

    font-family: 'Poppins', sans-serif;

    font-weight: 700;

    font-size: 35px;

    color: #fff;

    margin-bottom: 15px;

}



.featured-bottom-slideshow-wrap p.alt-text {

    font-size: 20px;

    font-family: 'Libre Franklin', sans-serif;

    font-weight: 400;

    color: #ffffff;

}





/* Sponsors */



.sponsor-outside-wrap a {

    text-decoration: none;

}



#sponsors-section-wrap {

    padding: 70px 0px;

}



#sponsors-section-wrap h2 {

    text-align: center;

    margin-bottom: 15px;

}



#sponsors-section-wrap .carousel-caption {

    display: none;

}



#sponsors-section-wrap .carousel-control.left {

    left: 0px;

    margin-left: 0px;

    background: rgba(32, 89, 142, 0.4);

    border-radius: 0px;

    width: 40px;

    height: 40px;

}



#sponsors-section-wrap .carousel-control.right {

    right: 0px;

    margin-right: 0px;

    background: rgba(32, 89, 142, 0.4);

    border-radius: 0px;

    width: 40px;

    height: 40px;

}



.sponsor-outside-wrap .container {

    width: 100%;

}



.sponsor-outside-wrap [class*="col-"] {

    padding: 0;

}



.sponsor-outside-wrap .carousel-inner {

    max-width: 1140px;

    margin: 0 auto;

    text-align: center;

}





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

                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-top-section {

    background: #20598E;

    border-bottom: 1px solid #3873A0;

    padding: 35px 0px;

}



.footer-top-section * {

    color: #fff;

    font-size: 16px;

    font-family: 'Libre Franklin', sans-serif;

}



.footer-top-section a {

    color: #fff;

    font-size: 16px;

    font-family: 'Libre Franklin', sans-serif;

    text-decoration: underline;

}



.footer-privacy {

    margin-top: 28px;

}



.footer-privacy p {

    margin: 0px;

    padding: 0px;

}



.footer-top-logo img {

    max-width: 100%;

    height: auto;

}



footer#main-footer {

    background: #20598E;

    padding: 25px 0px;

}



footer#main-footer p {

    color: #fff;

    font-size: 15px;

    font-family: 'Libre Franklin', sans-serif;

    margin: 0;

    line-height: 30px;

}



footer#main-footer a {

    color: #fff;

    text-decoration: underline;

}



footer#main-footer a:hover {

    color: #ffffff;

}



footer#main-footer strong {

    color: #fff;

    font-family: 'Libre Franklin', sans-serif;

    font-weight: 700;

}



footer#main-footer span.footer-privacy {

    border-left: 1px solid #FFFFFF;

    margin-left: 24px;

    padding-left: 24px;

}



footer#main-footer .text-right a {

    text-decoration: underline;

}



@media (max-width: 767px) {

    .footer-top-logo {

        margin-top: 20px;

    }

    .footer-top-section .text-left,

    .footer-top-section .text-right,

    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-privacy {

        display: block;

        border-left: 0px;

        padding-left: 0px;

        margin-left: 0px;

    }

    .back-top-wrap {

        padding-top: 0px !important;

        margin-bottom: 15px;

    }

}





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

                        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: 'Libre Franklin', sans-serif;

    color: #9B9B9B;

    box-shadow: none !important;

    border: 1px solid #CCCCCC;

    border-radius: 2px;

}



.login-form input[type="submit"] {

    background: #F7931E;

    border: 1px solid #F7931E;

    color: #fff;

    font-size: 15px;

    font-weight: normal;

    border-radius: 2px;

    font-family: 'Libre Franklin', 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: #F27B06;

    border: 1px solid #F27B06;

    text-decoration: none;

}



.login-form a {

    color: #20598E;

    font-size: 14px;

    font-family: 'Libre Franklin', sans-serif;

    display: block;

    margin-left: 15px;

    padding-bottom: 10px;

    text-decoration: underline;

}



.login-form a:hover,

.login-form a:focus {

    color: #3873A0;

}



.login-form input:last-of-type {

    width: 100px;

    margin: none;

}



h6.modal-title {

    color: #333333;

    font-size: 24px;

    font-weight: 400;

    font-family: 'Libre Franklin', sans-serif;

}



h4#myModalLabel {

    font-size: 22px;

    color: #333333;

    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 {}

    .event-date-wrap,

    .event-details-wrap {

        min-height: 280px;

    }

    #cta-section-wrap .column .col-content-wrap a:last-child {

        width: 100% !important;

        position: relative;

    }

}



@media (max-width: 991px) {

    .caption-wrapper {

        max-width: 750px;

    }

}



@media (max-width: 990px) {

    .featured-bottom-slideshow-wrap .carousel-caption {

        position: absolute;

    }

}



@media (min-width: 768px) and (max-width: 990px) {

    .container {}

    #right-side-wrap {

        margin-top: 20px;

    }

    .event-details-wrap {

        padding: 13px 15px;

    }

    .event-date-wrap,

    .event-details-wrap {

        min-height: 350px;

    }

    #cta-section-wrap .column .col-content-wrap a:last-child {

        width: 100% !important;

        position: relative;

    }

    .featured-bottom-slideshow-wrap .carousel-caption {

        position: absolute;

    }

    .featured-bottom-slideshow-wrap .caption-inside-wrap {

        top: 45px;

    }

    .featured-bottom-slideshow-wrap .carousel-control {

        bottom: 0px !important;

    }

    #sponsors-section-wrap {

        text-align: center;

    }

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

    }

    #sponsors-section-wrap .carousel-control {

        bottom: 0;

    }

    #sponsors-section-wrap .carousel-control.left {

        left: 0px;

    }

    #sponsors-section-wrap .carousel-control.right {

        right: 0px;

    }

}



@media (max-width: 767px) {

    .container {}

    #top-head-wrap {

        text-align: unset;

    }

    #login-wrap {

        float: right;

        margin-top: 12px;

    }

    #main-header {

        padding: 10px 0px 20px;

    }

    #right-side-wrap {

        text-align: center;

    }

    #right-side-wrap br {

        display: none;

    }

    nav#main-menu #search-input.visible-xs {

        display: inline-block !important;

        max-width: 260px;

        margin-right: 0px;

        margin-top: 8px;

    }

    #video-section-wrap {

        text-align: center;

    }

    #welcome-section-wrap {

        margin-top: 30px;

    }

    .event-details-wrap {

        padding: 13px 15px;

    }

    #cta-section-wrap .column {

        margin-bottom: 30px;

    }

    #cta-section-wrap img {

        width: 100% !important;

        height: auto !important;

        position: relative;

    }

    #cta-section-wrap .column .col-content-wrap a:last-child {

        width: 100% !important;

        position: relative;

    }

    #sponsors-section-wrap {

        text-align: center;

    }

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

    }

    #sponsors-section-wrap .carousel-control {

        bottom: 0;

    }

    #sponsors-section-wrap .carousel-control.left {

        left: 0px;

    }

    #sponsors-section-wrap .carousel-control.right {

        right: 0px;

    }

}



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

    #cta-section-wrap .column {

        width: 33.33333333%;

    }

    #cta-section-wrap .column .col-content-wrap a:last-child {

        font-size: 17px;

    }

}



@media (max-width: 580px) {

    .event-details-wrap {

        padding: 13px 15px;

    }

    #sponsors-section-wrap .col-sm-2 {

        width: 50%;

        display: inline-block;

    }

}



@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) {}