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

h1 {
    font-size: 42px;
    color: #010101;
}
h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    color: #010101;
}
h3 {
    font-size: 30px;
    color: #1A1A1A;
}
h4 {
    font-size: 26px;
}

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




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

#top-header .container {
    padding: 0;
}
#top-header .container .row {
    margin: 0;
}
#top-content-wrap {
    padding: 0;
}
.top-outside-wrap {
    background: #E4F4F9;
    height: 68px;
}
.top-inside-wrap {
    text-align: right;
    height: 68px;
    display: flex;
    float: right;
}
.top-menu-links-wrap {
    margin-right: 20px;
    padding: 22px 10px;
}
.top-menu-links-wrap ul {
    padding: 0;
    margin: 0;
}
.top-menu-links-wrap ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
.top-menu-links-wrap li a {
    color: #4A5260;
    padding: 0px 10px;
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}
    @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;
        }
    }
.top-menu-links-wrap li a:hover {
    color: #4AC0E5;
}

.top-right-links-wrap {
    background: #6BC4E8;
    padding: 22px 80px;
}
#find-doctor-wrap {
    display: inline-block;
}
.top-right-links-wrap a {
    text-transform: uppercase;
    text-decoration: none;
    color: #20315D;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
}



/* Login */

#login-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
}
#login-wrap a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
}


/* Mobile Login */
.mobile-login-wrap {
    margin-top: 25px;
}
.mobile-login-wrap a {
    background: #4F85C4 !important;
    color: #fff;
    padding: 8px 19px 11px !important;
    position: relative;
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #4F85C4;
    border-radius: 2px;
    width: 150px !important;
}





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

.search-icon-wrap {
    background: #005CB9;
    padding: 22px 30px;
    margin-left: -5px;
}
#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: 'Rubik', 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: 'Rubik', 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;
}




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


#main-header .container {
    padding: 2.5% 3%;
}
svg#main-logo {
    width: 214px;
    height: 84px;
}

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

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




/*--------------------------------------------------------
                    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 {
    position: relative;
    background: #F7FAFC;
}
.slideshow-wrap [class*="col-"] {
    padding: 0;
}
.carousel-caption:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    z-index: -1;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    background-blend-mode: multiply;
    background: rgba(15,25,45,0.65);
    background-size: cover;
    background-position: center;
}
.slideshow-wrap .carousel-inner .slide-inside-wrap {
    display: flex;
    flex-flow: row-reverse;
    align-items: center;
    justify-content: center;
}
.slideshow-wrap .carousel-inner .slide-inside-wrap img {
    max-width: 100%;
    width: 100%;
}
.slideshow-wrap a {
    text-decoration: none;
    color: #fff;
}
.carousel-control.left, .carousel-control.right, .carousel-control:hover{
    background-image: none;
    font-size: ;
    font-weight: ;
    z-index: 101;
}
.carousel-control {
    margin: auto 0px;
    display: none;
}
.carousel-control.left {
    height: 50px;
    width: 50px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Rubik', sans-serif;
    background: rgba(77, 77, 77, 0.6);
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 0px;
    border-radius: 30px;
    margin-left: 15px;
}
.carousel-control.right {
    height: 50px;
    width: 50px;
    color: #fff;
    top: 0px;
    left: auto;
    right: 0px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Rubik', sans-serif;
    background: rgba(77, 77, 77, 0.6);
    vertical-align: middle;
    text-align: center;
    padding-left: 2px;
    border: 0px;
    border-radius: 30px;
    margin-right: 15px;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .carousel-control.left, .carousel-control.right {
        }
    }
    @media (max-width: 767px) {
        .carousel-control.left, .carousel-control.right {
            height: 38px;
            width: 38px;
        }
    }
.carousel-control img {
    width: 16px;
    height: 22px;
    margin-top: 13px;
}
    @media (max-width: 767px) {
        .carousel-control img {
            margin-top: 7px;
        }
    }

.caption-outside-wrap {
    position: relative;
    background: transparent;
    min-height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.caption-wrapper {
    padding-left: 10%;
    padding-right: 10%;
    width: 100%;
    position: relative;
    top: 25%;
    bottom: auto;
    max-width: 685px;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .caption-wrapper {
            top: 0;
        }
    }

.carousel-caption {
    position: absolute;
    z-index: 1;
    background: transparent;
    left: auto;
    top: 0;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: left;
    text-shadow: none;
    padding: 20px 0 60px;
    margin: 0;
    min-height: 103px;
}
    @media (max-width: 990px) {
        .carousel-caption {
            width: 100%;
            height: auto !important;
        }
    }
   @media (max-width: 767px) {
        .carousel-caption {
            width: 100%;
            height: auto !important;
            border: none;
        }
    }
.caption-inside-wrap {
    padding: 14px 0px;
}
p.caption-text {
    font-size: 36px;
    font-weight: 700;
    display: block;
    color: #C0EDF9;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    margin-bottom: 0px;
    word-wrap: break-word;
    line-height: normal;
}
p.alt-text {
    font-size: 18px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    color: #F4F5F9;
    margin-bottom: 0px;
    text-align: left;
    display: inline-block;
    word-wrap: break-word;
    line-height: 26px;
    margin-top: 10px;
}
    @media (max-width: 767px) {
        p.caption-text {
            font-size: 18px;
        }
        p.alt-text {
            font-size: 14px;
            line-height: 20px;
        }
    }

a.slide-caption-btn {
    text-decoration: none;
    color: #C0EDF9;
    font-size: 16px;
    font-weight: 600;
    display: block;
    font-family: 'Rubik', sans-serif;
    border: 1px solid #C0EDF9;
    border-radius: 0px;
    width: 150px;
    padding: 8px 10px 9px;
    text-align: center;
    margin-top: 35px;
}
a.slide-caption-btn:hover {
    color: #C0EDF9;
}


.carousel-indicators {
    bottom: 10px;
    margin-bottom: 0px;
}
.carousel-indicators li {
    width: 7px;
    height: 7px;
    margin-left: 10px !important;
    margin: 0 auto;
    background-color: rgba(0,0,0,0.2);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 100%;
}
.carousel-indicators li.active {
    width: 7px;
    height: 7px;
    margin-left: 10px !important;
    margin: 0 auto;
    background-color: rgba(0,0,0,1);
    border: 1px solid rgba(0,0,0,1);
    border-radius: 100%;
}
.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: 'Rubik', 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
--------------------------------------------------------*/

.top-announcement-wrap .container {
    padding: 0;
}
.top-announcement-wrap .container .row {
    margin: 0;
}
.top-announcement-wrap .container .row .column {
    padding: 0;
}
.top-announcement-wrap .col-content-wrap {
    background: #005CB9;
    padding: 18px 15px;
    padding-right: 30px;
    text-align: right;
}
.top-announcement-wrap * {
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
}
.top-announcement-wrap p {
    margin: 0;
}


/* Buttons */
.btn-wrap {
    margin-top: 50px;
    margin-bottom: 50px;
}
.btn-wrap a {
    background: #C2A303;
    border-radius: 2px;
    font-family: 'Rubik', sans-serif;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 9px 25px;
    color: #fff;
}
.btn-wrap a:hover {
    background: #A08204;
}


.view-btn a {
    color: #133A7F;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding-right: 10px;
}
.view-btn a:after {
    display: inline-block;
    content: url(../images/view-more-icon.png);
    text-indent: 0;
    position: relative;
    z-index: 100;
    left: 10px;
    width: 17px;
    height: 12px;
    vertical-align: text-top;
}
.view-btn a:hover {
    color: #F47D08;
}
.view-btn a:hover:after {
    filter: brightness(400%) hue-rotate( 180deg) saturate(500%) contrast(100%);
}




/* Welcome */

.welcome-outside-wrap [class*="col-"] {
    padding: 0;
}
#welcome-right-wrap {
    padding-top: 100px;
    padding-left: 80px;
}
#welcome-right-wrap .row {
    margin: 0;
}
#welcome-right-wrap h1 {
    color: #20315D;
    padding-bottom: 70px;
    line-height:  56px;
}
#welcome-right-wrap h1 span {
    color: #2DAAE2;
}
#welcome-right-wrap p {
    margin-bottom: 30px;
}

#welcome-search {
    margin-top: 15px;
}
#welcome-search p {
    margin-bottom: 25px;
}
form.search-directory-form input {
    background: #F7F7F7;
    border: 1px solid #E6E6E6;
    width: 200px;
    height: 48px;
    padding: 5px 10px;
    outline: none;
}
form.search-directory-form {
    display: flex;
}
form.search-directory-form button {
    background: #005CB9;
    border: 1px solid #005CB9;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 38px;
    outline: none;
    margin-left: 12px;
}



/* Donate - Member */

.donate-member-wrap .col-content-out-wrap {
    display: flex;
    background: #79D6F7;
}

#donate-section-wrap .row {
    display: flex;
    flex-direction: column;
}
#donate-section-wrap .row .column, #member-section-wrap .row .column {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 70px;
    padding-right: 70px;
    text-align: center;
}
#donate-icon {
    background: #79D6F7;
}
#donate-content {
    background: #6BC4E8;
}
#donate-section-wrap .row .column#donate-content {
    padding-top: 100px;
    padding-bottom: 85px;
}
#donate-section-wrap *, #donate-section-wrap h2, #donate-section-wrap p {
    color: #20315D;
}
#member-section-wrap .row .column#member-portal {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 70px;
    padding-right: 70px;
}
#member-portal {
    background: #005CB9;
}
#member-section-wrap h1 {
    color: #C0EDF9;
    padding-bottom: 50px;
}
#member-section-wrap *, #member-section-wrap p {
    color: #FFFFFF;
}
#member-section-wrap .member-btn {
    margin-top: 45px;
}
#member-section-wrap .member-btn a {
    padding: 10px 30px;
    color: #20315D;
    background: #6BC4E8;
    border: 1px solid #6BC4E8;
    text-decoration: none;
}
#member-section-wrap #become-member {
    background: #79D6F7;
    padding-top: 32px;
    padding-bottom: 32px;
}
#member-section-wrap #become-member p {
    margin: 0;
    color: #20315D;
}
#member-section-wrap #become-member p a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 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-inner-wrap {
    display: flex;
    background: url(../images/footer-backdrop.png) no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: auto;
    background-position: 80% 55%;
}
.footer-inner-wrap .column {
    padding: 0;
}
.footer-insider-section {
    display: flex;
    flex-direction: column;
    padding: 60px 60px;
    align-items: center;
    justify-content: center;
}
.logo-sm-wrap .footer-insider-section {
    background: #005CB9;
    padding: 130px 30px 120px;
}
.footer-logo-wrap {
    display: inline-block;
    vertical-align: middle;
}
.footer-logo-wrap svg#footer-logo {
    width: 153px;
    height: 60px;
}


/* Social Media Icons */

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

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

.social-media-wrap ul {
    float: left;
    margin: 0;
    text-align: right;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.social-media-wrap ul>li {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    color: #D9D9ED;
    font-size: 16px;
    vertical-align: middle;
}
.social-media-wrap ul>li:last-child {
    margin-right: 0px;
}
.social-media-wrap svg {
    width: 30px;
    height: 30px;
}
svg#fb-icon {
    width: 12px;
    height: 21px;
}
svg#ig-icon {
    width: 22px;
    height: 22px;
}
svg#twitter-icon {
    width: 21px;
    height: 17px;
}
svg#linkedin-icon {
    width: 21px;
    height: 21px;
}
.social-media-wrap a:hover svg .cls-1 {
    fill: #FFFFFF !important;
}


.footer-menu-wrap .footer-insider-section, .footer-secondary-menu-wrap .footer-insider-section {
    align-items: flex-start;
}
.footer-inner-wrap h3 {
    color: #2DAAE2;
    display: block;
    border-bottom: 2px solid #2DAAE2;
    width: 100%;
    margin-bottom: 25px;
}


.footer-menu #nav_menu .navbar-nav {
    display: inline-block;
    padding: 0px;
}
.footer-menu #nav_menu .navbar-nav .caret {
    display: none;
}
.footer-menu #nav_menu .navbar-nav>li {
    float: none;
    text-align: left !important;
}
.footer-menu #nav_menu .navbar-nav>li a {
    padding: 12px 0px;
    text-align: center;
    color: #5F6572;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    border: 0px;
    display: inline-block;
    text-align: left;
}
.footer-menu #nav_menu .navbar-nav>li a:hover, 
.footer-menu #nav_menu .navbar-nav>li a:focus {
    background: transparent;
    color: #2DAAE2;
    text-decoration: none;
}
.footer-menu #nav_menu .navbar-nav .dropdown-menu,
.footer-menu #nav_menu .navbar-nav .dropdown:hover .men-level-0,
.footer-menu #nav_menu .navbar-nav .dropdown:hover .men-level-,
.footer-menu #nav_menu .navbar-nav .dropdown:hover .men-level-1,
.footer-menu #nav_menu .navbar-nav .dropdown:hover .men-level-2 {
    display: none;
    width: 100%;
    position: relative;
    float: none;
    margin: 0;
    min-width: 100%;
    background: transparent;
    box-shadow: none;
}


.footer-secondary-menu ul {
    margin: 0;
    padding: 0;
}
.footer-secondary-menu ul li {
    position: relative;
    list-style-type: none;
}
.footer-secondary-menu ul li a {
    padding: 10px 0px;
    text-align: center;
    color: #5F6572 !important;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none !important;
    border: 0px;
    display: inline-block;
}
.footer-secondary-menu ul li a:hover, 
.footer-secondary-menu ul li a:focus {
    background: transparent;
    color: #2DAAE2 !important;
    text-decoration: none;
}


.footer-featured-credits .footer-insider-section {
    padding: 40px 60px;
}
.footer-featured-logo-section img {
    max-width: 100%;
    margin-bottom: 30px;
}
.footer-featured-logo-section a:last-child img {
    margin-right: 0px;
}


.footer-credits p {
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
    color: #4A5260;
    text-align: center;
    margin-bottom: 15px;
}
.footer-credits p a {
    color: #4A5260;
    text-decoration: underline;
}




/*--------------------------------------------------------
                        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: 'Rubik', sans-serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}
.login-form input[type="submit"] {
    background: #2DAAE2;
    border: 1px solid #2DAAE2;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 18px;
    font-family: 'Rubik', 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: #F7931E;
    border: 1px solid #F7931E;
    text-decoration: none;
}
.login-form a {
    color: #3A3A3A;
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
    display: block;
    margin-left: 15px;
    padding-bottom: 10px;
    text-decoration: underline;
}
.login-form a:hover, .login-form a:focus {
    color: #F7931E;
}
.login-form input:last-of-type{
    width: 100px;
    margin: none;
}
h6.modal-title {
    color: #527785;
    font-size: 24px;
    font-weight: 600;
   font-family: 'Poppins', sans-serif;
}
h4#myModalLabel {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #1A1A1A;
    padding-bottom: 0px;
}




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




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

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

}

@media (min-width: 1200px) {
    .container {
    width: 100%;
    max-width: 1600px;
    }
}
@media (max-width: 1200px) {
    .caption-wrapper {
        max-width: 970px;
    }
}

@media (min-width: 1000px) {

}

@media (min-width: 990px) and (max-width: 1199px) {
    .container {}
    
    .top-right-links-wrap {
        background: #6BC4E8;
        padding: 22px 40px;
    }
    .top-menu-links-wrap li a {
        padding: 0px 5px;
    }
    #welcome-right-wrap {
        padding-top: 30px;
        padding-left: 40px;
    }
    #welcome-right-wrap h1 {
        padding-bottom: 30px;
        line-height: 44px;
        font-size: 34px;
    }
    #welcome-right-wrap p {
        margin-bottom: 12px;
        font-size: 15px;
    }
}


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


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

    #mobile-menu-col {
        margin-left: 20px;
    }
    .top-menu-links-wrap {
        display: none;
    }
    #welcome-right-wrap {
        padding-top: 30px;
        padding-left: 30px;
    }
    #welcome-right-wrap h1 {
        padding-bottom: 20px;
        line-height: 42px;
        font-size: 34px;
    }
    #welcome-right-wrap p {
        margin-bottom: 10px;
        font-size: 14px;
    }
    form.search-directory-form button {
        width: 35%;
        text-align: center;
        padding: 10px;
    }
    .footer-inner-wrap {
        display: block;
    }
    .footer-menu #nav_menu {
        display: block !important;
    }
    .footer-featured-logo-section img {
        margin-left: 20px;
    }
}


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

    #top-header {
        display: none;
    }
    #main-header .container {
        padding: 5% 5% 5% 5%;
    }
    .top-announcement-wrap .col-content-wrap {
        padding: 8px 5px;
        padding-right: 10px;
    }
    .top-announcement-wrap * {
        font-size: 13px;
    }
    a.slide-caption-btn {
        display: none;
    }

    .welcome-outside-wrap > .row_wrapper > .container > .row {
        display: flex;
        flex-direction: column-reverse;
    }
    #welcome-left-wrap img {
        width: 100% !important;
    }
    #welcome-right-wrap {
        padding-top: 30px;
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 50px;
    }
    #welcome-right-wrap h1 {
        font-size: 28px;
        line-height: 34px;
        padding-bottom: 30px;
    }
    form.search-directory-form button {
        width: 35%;
        text-align: center;
        padding: 10px;
    }
    .donate-member-wrap .col-content-out-wrap {
        display: block;
    }
    .footer-inner-wrap {
        display: block;
    }
    .footer-menu #nav_menu {
        display: block !important;
    }

}

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

}

@media (max-width: 580px) {


}


@media (min-width: 490px) {
    #subpage-main .container {
        padding: 1% 3%;
    }

}

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


}