*,
*: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: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4D4D4D;
    overflow-x: hidden;
}

p {
    font-family: 'Mulish', 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: 'Be Vietnam Pro', 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: 'Be Vietnam Pro', sans-serif;
}

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

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

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

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


/* Title banner styles  */

#title-banner {
    position: relative;
}

#title-banner .background-image {
    object-fit: cover;
    width: 100%;
    max-height: 250px;
}

#title-banner figcaption {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% - 1.5em);
    margin: 0;
    padding: 0;
    font-style: normal;
}

#title-banner h1.title {
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
    color: #1D364F;
}


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

.button-link {
    display: block;
    width: fit-content;
    background: #28ABE2;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 28px 11px;
    color: #fff;
    margin-bottom: 1em;
    transition: .125s background ease-in-out;
    /* text-transform: uppercase; */
}

.button-link:hover,
.button-link:focus {
    background: #EF861D;
    text-decoration: none;
    color: white;
}


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

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

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

[class*="row-background-"] {
    position: relative;
    padding-top: 1em;
    padding-bottom: 1em;
}

[class*="row-background-"]:not(#mycanvas .row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
}

.row-background-1::before {
    background: #F0F5F7;
}

.row-background-2::before {
    background: #683b28;
    opacity: .1;
}

.row-background-3::before {
    background: #3528682b;
}

@media (min-width: 767px) {
    #subpage-main [class*="row-background-"]:not(#mycanvas .row) {
        margin-bottom: 0;
    }
}

#subpage-main [class*="row-background-"]:not(#mycanvas .row):last-child {
    margin-bottom: -1em;
}


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

#main-header {
    padding: 18px 0px 9px;
}

svg#main-logo {
    max-width: 100%;
    width: 203px;
    height: 50px;
}

#logo-wrap svg#Layer_2 {
    max-width: 100%;
    width: 214px;
}

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


/* Login */

#login-wrap {
    display: inline-block;
    vertical-align: middle;
}

#login-wrap a {
    background: transparent;
    border: 2px solid #EF861D;
    color: #EF861D;
    padding: 6px 22px 7px;
    position: relative;
    text-decoration: none;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 18px;
}

@media (max-width: 767px) {
    #login-wrap a {}
}

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

#login-wrap a:hover,
#login-wrap a:focus {
    background: #EF861D;
    color: #fff;
}


/* Mobile Login */

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

.mobile-login-wrap a {
    background: transparent !important;
    color: #EF861D !important;
    padding: 6px 22px 7px!important;
    position: relative;
    text-decoration: none;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #EF861D;
    border-radius: 18px !important;
    width: 160px !important;
}


/* Donate */

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

#donate-wrap a {
    background: #EF861D;
    border: 2px solid #EF861D;
    color: #fff;
    padding: 6px 22px 7px;
    position: relative;
    text-decoration: none;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 18px;
}

#donate-wrap a:hover {
    background: transparent;
    border: 2px solid #EF861D;
    color: #EF861D;
}


/* Mobile Donate */

.mobile-donate-wrap {
    margin-top: 0px;
    margin-left: 15px;
    border-bottom: 0px !important;
}

.mobile-donate-wrap a {
    background: #EF861D !important;
    border: 2px solid #EF861D !important;
    color: #fff;
    padding: 5px 22px 6px !important;
    position: relative;
    text-decoration: none;
    font-family: 'Mulish', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700;
    text-align: center;
    border-radius: 18px !important;
    width: 103px !important;
}


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

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

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


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

#search-input {
    max-width: 300px;
    display: inline-block;
    vertical-align: middle;
    color: #4D4D4D;
    margin-right: 20px;
    top: 0px;
    position: relative;
}

@media (max-width: 420px) {
    #search-input {
        max-width: 230px;
    }
}

@media (max-width: 360px) {
    #search-input {
        max-width: 180px;
    }
}

.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 {
    border: 0px;
    box-shadow: none;
    height: 40px;
    color: #4D4D4D;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Be Vietnam Pro', sans-serif;
    padding: 0px 15px;
}

#search-input button {
    background: #fff;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 5px 13px 0px;
    height: 40px;
    border-radius: 0px;
    outline: none;
}

.input-group.search-input-wrap {
    border: 1px solid #D9D8D6;
    background: #fff;
    border-radius: 2px;
}


/* 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: 31px;
    color: #646464;
    font-size: 16px;
    font-family: 'Be Vietnam Pro', sans-serif;
    padding: 0px 12px;
    font-weight: normal;
}

.mobile-search-wrap ::-webkit-input-placeholder {
    color: #646464;
}

.mobile-search-wrap :-moz-placeholder {
    /* Firefox 18- */
    color: #646464;
}

.mobile-search-wrap ::-moz-placeholder {
    /* Firefox 19+ */
    color: #646464;
}

.mobile-search-wrap :-ms-input-placeholder {
    color: #646464;
}

.mobile-search-wrap button {
    background: transparent;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 0px 10px;
    height: 31px;
    border-radius: 0px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.mobile-search-wrap button:hover,
.mobile-search-wrap button:focus {
    background: transparent;
    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: 70px;
    position: relative;
}

@media (min-width: 768px) and (max-width: 990px) {
    .slideshow-wrap {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .slideshow-wrap {
        margin-bottom: 50px;
    }
}

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

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

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

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

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

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

.slideshow-wrap .caption-inside-wrap {
    display: inline-block;
    vertical-align: middle;
    width: 92%;
    padding: 0;
}

.slideshow-wrap .carousel-control {
    top: auto !important;
    bottom: 20px !important;
}

.slideshow-wrap .carousel-control.left {
    right: 0px;
    left: 83.5%;
}

.slideshow-wrap .carousel-control.right {
    right: 10%;
}

#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: 29px;
    width: 29px;
    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: #28ABE2;
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 0px;
    border-radius: 14px;
    margin-left: 15px;
}

.carousel-control.right {
    height: 29px;
    width: 29px;
    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: #28ABE2;
    vertical-align: middle;
    text-align: center;
    padding-left: 2px;
    border: 0px;
    border-radius: 14px;
    margin-right: 15px;
}

@media (min-width: 768px) and (max-width: 990px) {
    .carousel-control.left,
    .carousel-control.right {}
}

@media (max-width: 767px) {
    .carousel-control.left,
    .carousel-control.right {}
}

.carousel-control img {
    width: 8px;
    height: 13px;
    margin-top: 0px;
}

@media (max-width: 767px) {
    .carousel-control img {}
}

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

.carousel-caption {
    position: relative;
    z-index: 100;
    background: #284B68;
    left: auto;
    top: auto;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: left;
    text-shadow: none;
    padding: 0;
    margin: 0;
    min-height: 68px;
}

@media (max-width: 990px) {
    .carousel-caption {
        display: block;
        position: static;
        width: 100%;
        height: auto !important;
    }
}

@media (max-width: 767px) {
    .carousel-caption {
        display: block;
        position: static;
        width: 100%;
        height: auto !important;
        border: none;
    }
    .slideshow-wrap .caption-inside-wrap {
        width: 75%;
    }
}

@media (max-width: 640px) {
    .carousel-caption {}
}

@media (max-width: 510px) {
    .carousel-caption {}
}

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

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

p.caption-text {
    font-size: 18px;
    font-weight: 500;
    display: block;
    color: #ffffff;
    font-family: 'Mulish', sans-serif;
    text-align: left;
    margin-bottom: 0px;
    word-wrap: break-word;
    line-height: normal;
    padding-top: 20px;
    padding-bottom: 20px;
}

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

@media (max-width: 767px) {
    p.alt-text {
        font-size: 16px;
    }
}

.carousel-indicators {
    bottom: 0px;
}

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

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

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

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

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


/*--------------------------------------------------------
                    News and Events Feeds
--------------------------------------------------------*/


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


/* Buttons */

.btn-wrap {
    margin-top: 40px;
    margin-bottom: 40px;
}

.btn-wrap a {
    background: #28ABE2;
    border-radius: 20px;
    font-family: 'Mulish', sans-serif;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 28px 11px;
    color: #fff;
    text-transform: uppercase;
}

.btn-wrap a:hover {
    background: #EF861D;
}


/* Welcome */

#welcome-section-wrap h1 {
    padding-bottom: 20px;
}

#welcome-section-wrap p {
    margin-bottom: 25px;
}


/* News */

.news-section-outside-wrap {
    background: #F9F9F9;
    padding: 60px 0px 35px;
}

#news-section-wrap h2 {
    padding-bottom: 18px;
}

.news-item {
    background: #FFFFFF;
    box-shadow: 0px 2px 8px rgb(0 0 0 / 10%);
    border-radius: 4px;
    min-height: 460px;
    margin-bottom: 25px;
    border: 1px solid #F2F2F2;
}

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

@media (min-width: 768px) and (max-width: 990px) {
    .news-details-inside-wrap {
        padding: 15px 10px 20px;
    }
}

.news-image img {
    max-width: 100%;
    width: 100%;
    min-height: 220px;
    height: 220px;
    object-fit: contain;
    object-position: center;
    background-position: center;
    background-size: cover;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

h3.news-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #283991;
    padding-bottom: 10px;
}

a.news-title-link {
    color: #005BA4;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

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

.news-date {
    margin-bottom: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 15px;
}

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

.news-date span {
    display: inline-block;
    vertical-align: sub;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #808080;
}

.news-blurb {
    font-size: 16px;
    font-family: 'Mulish', sans-serif;
    color: #666666;
    margin-top: 8px;
    margin-bottom: 25px;
}

#news-section-wrap .btn-wrap {
    margin-top: 15px;
}

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

.news-btn a {
    color: #5D5C61;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.news-btn a:after {
    content: url(../images/arrow-icon.png);
    width: 19px;
    height: 11px;
    display: inline-block;
    padding-left: 15px;
    position: relative;
    top: 2px;
}


/* Upcoming Events */

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

.event-item {
    margin-bottom: 25px;
    background: #fff;
    border: 1px solid #F2F2F2;
    padding: 13px 20px;
    border-radius: 3px;
}

.event-item:hover {
    box-shadow: 0px 2px 8px rgb(0 0 0 / 10%);
    cursor: pointer;
}

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

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

.event-month {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Mulish', sans-serif;
    text-align: center;
    text-transform: uppercase;
}

.event-date {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Mulish', sans-serif;
    line-height: 27px;
}

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

.event-date span {
    color: #808080;
    font-size: 14px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 400;
}

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

h3.event-title {
    font-weight: 600;
    padding-bottom: 0px;
    margin-bottom: 8px;
    line-height: 24px;
    font-size: 18px;
}

a.ev-title-link {
    color: #005BA4;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Be Vietnam Pro', sans-serif;
    text-transform: none;
    word-wrap: break-word;
}

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

.event-blurb {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4D4D4D;
    line-height: 18px;
    margin-top: 5px;
}


/* Carpe Careers */

.careers-quick-wrap {
    background: #F0F5F7;
    padding: 70px 0px 40px;
    margin-top: 50px;
}

#careers-section-wrap h2 {
    padding-bottom: 28px;
}

.rss-item {
    margin-bottom: 35px;
}

.rss-item h4 {
    color: #005BA4;
    font-size: 18px;
    padding-bottom: 8px;
}

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

.rss-date span {
    display: inline-block;
    vertical-align: middle;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4D4D4D;
    margin-top: 1px;
}

.rss-item .description {
    color: #4D4D4D;
    padding-top: 8px;
}


/* Quick Links */

#quicklinks-section-wrap h2 {
    font-size: 28px;
    color: #1A1A1A;
    padding-bottom: 30px;
}

#quicklinks-section-wrap ul {
    padding: 0px;
    margin: 0px;
}

#quicklinks-section-wrap ul li {
    list-style: none;
    padding-bottom: 0px;
    color: #005BA4;
    font-size: 16px;
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    border-top: 1px solid #DDE9ED;
    padding: 18px 0px;
}

#quicklinks-section-wrap ul li a {
    display: block;
    color: #005BA4;
}

#quicklinks-section-wrap ul li a:hover {
    text-decoration: none;
    color: #005BA4;
}

#quicklinks-section-wrap ul li:after {
    content: url(../images/quick-arrow-icon.png);
    display: inline-block;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
    top: -1.5em;
    left: 0;
    right: 0px;
    float: right;
}


/* Member Showcase */

.member-showcase-wrap:not(#gm-canvas #flex-content-center) {
    background: linear-gradient(120deg, rgb(0, 91, 164), #0086C1);
    padding: 75px 0px;
}

.member-showcase-wrap:not(#gm-canvas #flex-content-center) * {
    color: #fff;
}

.member-showcase-wrap h2 {
    padding-bottom: 30px;
}

#member-showcase-content .column img {
    margin-bottom: 25px;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 100%;
    min-height: 262px !important;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
}

#member-showcase-content .column h4 {
    font-size: 18px;
    padding-bottom: 10px;
}

#member-showcase-content .column p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 18px;
}


/*--------------------------------------------------------
                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#main-footer {
    background: #1D364F;
    padding: 55px 0px 45px;
}

footer#main-footer p {
    color: #fff;
    font-size: 16px;
    font-family: 'Mulish', sans-serif;
    margin: 0;
    line-height: 24px;
    font-weight: 400;
}

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

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

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

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

footer#main-footer span.footer-privacy {
    border-left: 1px solid #AFC6DB;
    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-privacy {
        display: block;
        border-left: 0px;
        padding-left: 0px;
        margin-left: 0px;
    }
    .back-top-wrap {
        padding-top: 0px !important;
        margin-bottom: 15px;
    }
}

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

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

.footer-credit-section .social-media-outside-wrap ul>li .social-media-outside-wrap svg {
    width: 30px;
    height: 30px;
}


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

.login-form input[type="submit"] {
    background: #EF861D;
    border: 1px solid #EF861D;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 18px;
    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: transparent;
    border: 1px solid #EF861D;
    color: #EF861D;
    text-decoration: none;
}

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

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

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

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

h4#myModalLabel {
    font-family: 'Be Vietnam Pro', 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 {}
    #search-input {
        width: 275px;
    }
    #member-showcase-content .column img {
        min-height: auto !important;
    }
    .slideshow-wrap .carousel-control.left {
        left: 80.5%;
    }
    .slideshow-wrap .caption-inside-wrap {
        width: 80%;
    }
}

@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;
    }
    .slideshow-wrap .caption-inside-wrap {
        width: 85%;
    }
    .slideshow-wrap .carousel-control.right {
        right: 4%;
    }
    #events-section-wrap {
        margin-top: 50px;
    }
    #member-showcase-content .column img {
        min-height: auto !important;
    }
}

@media (max-width: 767px) {
    .container {}
    .slideshow-wrap .carousel-control.left {
        left: 71%;
    }
    .slideshow-wrap .carousel-control.right {
        right: 3%;
    }
    #news-events-section-wrap h2 {
        text-align: center;
    }
    .news-date-title {
        width: 58%;
    }
    #news-section-wrap .btn-wrap {
        margin-top: 20px;
        text-align: center;
    }
    #events-section-wrap {
        margin-top: 50px;
    }
    #events-section-wrap .btn-wrap {
        text-align: center;
    }
    #quicklinks-section-wrap {
        margin-top: 40px;
    }
    #right-index-content {
        margin-top: 30px;
    }
    .member-showcase-wrap:not(#gm-canvas #flex-content-center) * {
        text-align: center;
    }
    #member-showcase-content .column {
        margin-bottom: 30px;
    }
}

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

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

@media (max-width: 480px) {
    .container {}
    .news-date-title {
        width: 58%;
    }
    #silver-sponsor-wrap img,
    #bronze-sponsor-wrap img {
        margin-right: 10px;
    }
}

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