*, *: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: 'Inter', sans-serif;
    font-size: 16px;
    color: #333333;
}
p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #333333;
}

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

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

h1 {
    font-size: 30px;
    color: #1A1A1A;
}
h2 {
    font-size: 26px;
    color: #1A1A1A;
}
h3 {
    font-size: 22px;
    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*/
}
/*--------------------------------------------------------
    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.*/
}
/*--------------------------------------------------------
                        HEADER
--------------------------------------------------------*/


#main-header {
    padding: 20px 0px 15px;
}
@media (max-width: 767px) {
    #main-header {
        padding: 0px;
    }
}


svg#main-logo {
    max-width: 100%;
    width: 310px;
    height: 80px;
}

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


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




/* Login */

#login-wrap {
    display: inline-block;
    vertical-align: middle;
}
#login-wrap a {
    background: #204393;
    border: 1px solid #204393;
    color: #fff;
    padding: 11px 25px;
    position: relative;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    border-radius: 3px;
    font-weight: 600;
    text-align: center;
}
#login-wrap a:hover, #login-wrap a:focus {
    background: #204393;
    border: 1px solid #204393;
}

/* Mobile Login */

li.mobile-login {
    margin-top: 10px;
}
li.mobile-login a {
    border-bottom: 0px !important;
}
li.mobile-login span {
    margin-left: 5px;
}
li.mobile-login a {
    background: #232d69 !important;
    color: #fff !important;
    padding: 10px 14px;
    position: relative;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    border-radius: 17px;
    font-weight: 600;
    text-align: center;
    border-radius: 30px;
    width: 140px !important;
    border-radius: 35px !important;
}


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

.dropdown-menu li{
    width: 100%;
}
.nav>li>a:hover, .nav>li>a:focus {
    background-color: ;
}

/*--------------------------------------------------------
                    Index / Main Body
--------------------------------------------------------*/
main {
    min-height: calc(100vh - 120px - 50px - 297px);
    /*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-top: 40px;
    margin-bottom: 50px;
    position: relative;
}
/*.slideshow-wrap .container {
    width: 100%;
}*/
.slideshow-wrap img {
    width: 100%;
}
/*.slideshow-wrap [class*="col-"] {
    padding: 0;
}*/
#slide-row{
    margin-bottom: 10px;
}
#slideshow-inside-wrap .carousel img {
    width: 100%;
    min-height: 420px;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
}

    @media (min-width: 768px) and (max-width: 990px) {
        #slideshow-inside-wrap .carousel img {
            object-position: left;
        }

    }
    @media (max-width: 767px) {
        .slideshow-wrap {
            margin-top: 20px;
            margin-bottom: 0px;
        }
        #slideshow-inside-wrap .carousel img {
            object-position: left;
        }

    }

#slideshow-inside-wrap .carousel img, #slideshow-inside-wrap .carousel .carousel-caption {
    border-radius: 3px;
}
.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: 44px;
    width: 44px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Inter', sans-serif;
    background: rgba(0,0,0,0.6);
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 0px;
    border-radius: 30px;
    margin-left: 15px;
}
.carousel-control.right {
    height: 44px;
    width: 44px;
    color: #fff;
    top: 0px;
    left: auto;
    right: 0px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Inter', sans-serif;
    background: rgba(0,0,0,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 {
            bottom: 5%;
        }
    }
    @media (max-width: 767px) {
        .carousel-control.left, .carousel-control.right {
            height: 38px;
            width: 38px;
        }
    }
.carousel-control img {
    width: 15px;
    height: 23px;
    margin-top: 10px;
}
    @media (max-width: 767px) {
        .carousel-control img {
            margin-top: 5px;
        }
    }


.caption-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 45px;
    padding-left: 45px;
}   
    @media (min-width: 768px) and (max-width: 990px) {
        .caption-wrapper {
            padding: 15px;
        }
    }
    @media (max-width: 767px) {
        .caption-wrapper {
            padding: 15px;
        }
        .carousel-caption p.caption-text {
            padding-bottom: 0px !important;
            margin: 0px;
        }
    }
.carousel-caption {
    position: absolute;
    z-index: 100;
    background: rgba(12,12,25,.65);
    padding: 0px;
    left: inherit;
    bottom: 0px;
    right: 0px;
    top: 0px;
    width: 100%;
    text-align: left;
    text-shadow: none;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: flex-end;
    justify-content: center;
}
    @media (min-width: 768px) and (max-width: 990px) {
 
    }
    @media (max-width: 767px) {

    }

.caption-inside-wrap {
    background: rgba(48, 48, 48, .8);
    padding: 10px 15px;
}
.carousel-caption p.caption-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    display: block;
    color: #ffffff;
    padding-bottom: 25px;
}
.carousel-caption p.alt-text{
    font-size: 16px;
    font-family: serif;
    font-style: italic;
    color: white;
    margin-bottom: 10px;
    display: none;
}
.carousel-indicators {
    display: none;
}

#slideshow-inside-wrap .carousel-indicators {
    display: none;
}
#slideshow-inside-wrap .carousel-indicators li {
    width: 13px;
    height: 13px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 15px;
}
#slideshow-inside-wrap .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
--------------------------------------------------------*/


.blue-btn-wrap {
    margin-top: 20px;
}
.blue-btn-wrap a {
    background: #204393;
    border: 1px solid #204393;
    color: #fff;
    padding: 15px 23px;
    position: relative;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    border-radius: 3px;
    font-weight: 600;
    text-align: center;
}
.blue-btn-wrap a:hover, .blue-btn-wrap a:focus {
    background: #204393;
    border: 1px solid #204393;
}


/* Featured Section */

.featured-section-wrap {
    margin: 80px 0px;
}

    @media (max-width: 767px) {
        .featured-section-wrap {
            margin: 50px 0px;
        }
    }

.featured-section-wrap .col-content-wrap {
    box-shadow: 0 2px 15px -2px rgba(0, 0, 0, .25);
    background: #fff;
    min-height: 410px;
    margin-bottom: 35px;
    border-radius: 3px;
}
.featured-section-wrap .column:nth-child(odd) .col-content-wrap {
    background: #F2F4F7;
}
#featured-inside-wrap .col-content-wrap img {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    object-position: center;
}

.featured-section-wrap .col-content-wrap h4 a {
    background: rgba(35,47,68,.85);
    width: 360px;
    text-align: center;
    position: relative;
    top: auto;
    height: 50px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    bottom: auto;
    margin-top: -50px;
    word-break: break-word;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .featured-section-wrap .col-content-wrap h4 a {
            font-size: 18px;
        }
    }

.featured-section-wrap .col-content-wrap h4 a:hover {
    background: rgba(238,48,38,.85);
}
.featured-section-wrap .col-content-wrap p {
    color: #333333;
    font-size: 15px;
    padding: 5px 22px;
}
.featured-section-wrap .col-content-wrap .feat-link {
    padding: 5px 22px;
}
.featured-section-wrap .col-content-wrap .feat-link a {
    color: #204393;
    text-decoration: underline;
    font-size: 16px;
}
.featured-section-wrap .col-content-wrap .feat-link a:hover {
    color: #EE3026;
}



.quick-blog-events-wrap {
    margin: 70px 0px;
}
    @media (max-width: 767px) {
        .quick-blog-events-wrap {
            margin: 50px 0px 80px;
        }
        #blogs-section-wrap, #events-section-wrap {
            margin-top: 50px;
        }
    }

.quick-blog-events-wrap h2 {
    color: #1A1A1A;
    font-size: 25px;
    padding-bottom: 30px;
}

/* Quick Links */

#quicklinks-section-wrap ul {
    padding: 0px;
    margin: 0px;
    background: #4D576D;
}
#quicklinks-section-wrap ul li:first-child {
    border-top: 1px solid #667289;
}
#quicklinks-section-wrap ul li {
    list-style: none;
    padding-left: 0px;
    padding: 8px 12px;
    border-bottom: 1px solid #667289;
}
#quicklinks-section-wrap ul li a {
    display: block;
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    font-weight: 500;
}
#quicklinks-section-wrap ul li a:hover, #quicklinks-section-wrap ul li a:focus {
    color: #fff;
    text-decoration: none;
}



/* Blogs */

#blogs-section-wrap ul {
    padding: 0px;
    margin: 0px;
}
#blogs-section-wrap ul li:first-child {
    border-top: 1px solid #E6E6E6;
}
#blogs-section-wrap ul li {
    list-style: none;
    padding-left: 0px;
    padding: 10px 0px;
    border-bottom: 1px solid #E6E6E6;
}
#blogs-section-wrap ul li a {
    display: block;
    color: #204393;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    font-weight: 400;
}
#blogs-section-wrap ul li a:hover, #blogs-section-wrap ul li a:focus {
    color: #EE3026;
    text-decoration: none;
}

/* Blogs - News Manager */
#blogs-section-wrap .blog-item:first-of-type p {
    border-top: 1px solid #E6E6E6;
}
#blogs-section-wrap .blog-item p {
    padding-left: 0px;
    padding: 10px 0px;
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 0;
}
.blog-item .news-title-link {
    font-weight: normal;
    color: #204393;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

#blogs-section-wrap .news-title-link:hover, #blogs-section-wrap .news-title-link:focus {
    color: #EE3026;
    text-decoration: none;
}



/* Upcoming Events */

#events-section-wrap {
    display: none;
}
#events-section-wrap h2 {
    margin-bottom: 0px;
}
.event-item {
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 3px;
}
#events-wrap {
    margin-bottom: 30px;
}
.event-date-wrap {
    background: #646C82;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    max-width: 85px;
    margin-right: 20px;
    padding: 0px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.event-details-wrap {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 120px);
    width: -webkit-calc(100% - 120px);
    width: -moz-calc(100% - 120px);
    position: relative;
    padding: 20px 0px;
}
.event-month {
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    padding-top: 8px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.event-date {
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    padding-bottom: 4px;
    line-height: 53px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
#event-container {
    padding-left: 0px;
    margin-left: -15px;
}
h3.event-title {
    padding-bottom: 0px;
}
a.ev-title-link {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    word-break: break-word;
    overflow: hidden;
    max-height: 2.2em;
    line-height: 22px;
    display: inline-block;
}
a.ev-title-link:hover {
    color: #333333;
    text-decoration: none;
}
#events-section-wrap .blue-btn-wrap {
    margin-top: 50px;
}



/* News */

.news-outside-wrap {
    background: #f2f4f7;
    padding: 50px 0px 0px;
    margin-bottom: 30px;
}
#news-section-wrap {
    margin-bottom: 65px;
}
#news-section-wrap h2 {
    padding-bottom: 25px;
}
.news-item {
    background: #ffffff;
    border: 1px solid #c7cfd3;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    /* border-bottom: 4px solid #fcb424; */
    padding: 20px 10px;
    margin-bottom: 20px;
}
.news-details-inside-wrap {
    padding: 20px 20px 30px;
    min-height: 510px;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .news-details-inside-wrap {
            padding: 15px 10px 20px;
        }
    }
.news-image {
    margin-bottom: 20px;
}
.news-image img {
    max-width: 100%;
    width: 100%;
}
h3.news-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #232d69;
    padding-bottom: 5px;
    font-family: 'Inter', sans-serif;
}
a.news-title-link {
    font-family: 'Inter', sans-serif;
    color: #4a4f57;
    font-size: 18px;
    font-weight: 700;
}
a.news-title-link:hover {
    color: #232d69;
}
.news-date {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid #c7d1e5;
    padding-bottom: 13px;
    margin-bottom: 14px;
}
.news-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: 2px;
}
.news-date span {
    display: inline-block;
    vertical-align: sub;
}
.news-blurb {
    font-size: 16px;
    color: #323233;
}
#news-section-wrap .red-btn-wrap a {
    padding: 7px 21px;
    font-size: 16px;
}
.news-btn {
    margin-top: 10px;
}
.news-btn a {
    color: #232d69;
    text-decoration: none;
}
.news-btn a:after {
    content: url(../images/arrow-icon.png);
    width: 33px;
    height: 12px;
    display: inline-block;
    padding-left: 10px;
    position: relative;
    top: 4px;
}
#news-section-wrap .blue-btn-wrap {
    margin-top: 30px;
}


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

/* TABB Chapter Styles */
.pre-cities.row{
	background: #5a76b4; /* Old browsers */
	background: -moz-linear-gradient(top,  #5a76b4 1%, #f8ccab 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#5a76b4), color-stop(100%,#f8ccab)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #5a76b4 1%,#f8ccab 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #5a76b4 1%,#f8ccab 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #5a76b4 1%,#f8ccab 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #5a76b4 1%,#f8ccab 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5a76b4', endColorstr='#f8ccab',GradientType=0 ); /* IE6-9 */
	max-height: 85px;
	margin-bottom: 30px;
}

#cities.row{
	background-color: #5A76B4;
	margin-bottom: 30px;
	border-top: 5px solid #ffffff;
	background-image: url('../images/cities-bg.png');
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	transition: background-color .6s;
}
#cities.row:hover{
	background-color: transparent;
}
#cities.row>.col-md-3{
	padding: 0px;
}

.city-bg.dafw{
	background-image:url('../images/cities_dalasfw.png');
}
.city-bg.sana{
	background-image:url('../images/cities_san_antonio.png');
}
.city-bg.hous{
	background-image:url('../images/cities_houston.png');
}
.city-bg.aust{
	background-image:url('../images/cities_austin.png');
}
.city-bg.dafw:hover{
	background-image:url('../images/cities_dalasfw_c.png');
}
.city-bg.sana:hover{
	background-image:url('../images/cities_san_antonio_c.png');
}
.city-bg.hous:hover{
	background-image:url('../images/cities_houston_c.png');
}
.city-bg.aust:hover{
	background-image:url('../images/cities_austin_c.png');
}
.city-bg{
	background-position: center bottom;
	background-repeat: no-repeat;
	min-height: 80px;
	position: relative;
	display: block;
}
.city-name{
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: -15px;
	font-size: 20px;
	transition: bottom .3s;
	color: #062774;
}
.city-bg:hover .city-name{
	bottom: -28px;
}


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

/* Contact Bottom  */

.contact-bottom-wrap {
    background: #1B1F3F;
    padding-bottom: 42px;
    border-bottom: 1px solid #323754;
}
.contact-bottom-wrap * {
    color: #fff;
    font-family: 'Inter', sans-serif;
}
.contact-bottom-wrap h2 {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 25px;
}
.affiliate-logo-wrap {
    padding-top: 25px;
}
.affiliate-logo-wrap img {
    display: block;
    max-width: 100%;
    height: auto;
}

.footer-credits-wrap {
    padding-top: 40px;
}
footer#main-footer {
    background: #1B1F3F;
    padding: 42px 0px 32px;
}
footer#main-footer p{
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}
footer#main-footer a {
    color: #fff;
    text-decoration: underline;
}
footer#main-footer a:hover {
    color: #fff;
}
footer#main-footer strong {
    color: #fff;
}
footer#main-footer .text-right span {
    border-right: 1px solid #c7d1e5;
    margin-right: 18px;
    padding-right: 18px;
}

    @media (min-width: 768px) and (max-width: 990px) {
        .footer-credits-wrap .text-left, .footer-credits-wrap .text-right {
            text-align: center;
        }
    }

    @media (max-width: 767px) {
        footer#main-footer .text-left, footer#main-footer .text-right {
            text-align: center;
        }
        footer#main-footer .text-right span {
            display: block;
            border-right: 0px;
            padding-right: 0px;
            margin-right: 0px;
        }
    }

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


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




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



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

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

}

@media (max-width: 1200px) {

}

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

}

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

}


@media (max-width: 991px) {

}


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


}


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

    .affiliate-logo-wrap img {
        margin: 0 auto;
    }

}

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

    #quicklinks-section-wrap, #blogs-section-wrap {
        width: 50%;
        margin-top: 0px;
    }
    #featured-inside-wrap .col-content-wrap img {
        width: 100% !important;
    }
    .featured-section-wrap .col-content-wrap h4 a {
        width: 100%;
    }


}

@media (max-width: 560px) {
    #featured-inside-wrap .col-content-wrap img {
        width: 100% !important;
        max-height: 100%;
        height: auto;
    }
    .featured-section-wrap .col-content-wrap h4 a {
        width: 100%;
    }


}

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

}

@media (max-width: 350px) {

}


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


}