*, *: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: 'Nunito Sans', sans-serif;
	color: #4c5360;
	font-size: 16px;
}
p {
	font-family: 'Nunito Sans', sans-serif;
	color: #4c5360;
	font-size: 16px;
}
/*#subpage-main p:empty { display: none; } */
/*#subpage-main br + br { 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 {
	margin: 0px;
	padding: 0px;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 300;
	color: #282561;
    padding-bottom: 10px;
}
h1 a, h2 a, h3 a, h4 a {
	color: #282561;
	text-decoration: none;
}

h1 { 
	font-size: 35px;
	color: #282561;
}
h2 { font-size: 29px;}
h3 { font-size: 26px; }
h4 { font-size: 23px; }

h1.title{
	margin-bottom: 	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: 27px 0px;
    background: #00314f;
}
#logo-wrap {
    z-index: 199;
    padding-top: 0px;
    position: absolute;
}
#logo-wrap a {
	text-decoration: none;
}
.logo-wrap {
    display: inline-block;
    vertical-align: middle;
}
svg#main-logo, svg#modal-main-logo {
    width: 160px;
    height: 160px;
    max-width: 100%;
}
#right-side-wrap {
    float: right;
    text-align: right;
    margin-top: 12px;
}
    @media (max-width: 990px) {
        #right-side-wrap {
            margin-top: 30px;
        }
    }
    @media (max-width: 767px) {
    	#right-side-wrap {
            margin-top: 10px;
        }
	}
    @media (max-width: 480px) {
    	#right-side-wrap {
            margin-top: 15px;
            padding-left: 0px;
        }
	}
    @media (max-width: 420px) {
    	#right-side-wrap {
            margin-top: 15px;
            padding-left: 0px;
        }
	}
    @media (max-width: 380px) {
    	#right-side-wrap {
            margin-top: 15px;
            padding-left: 0px;
        }
	}


.find-doctor-login-wrap {
    margin-bottom: 15px;
}
.find-doctor-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}
.find-doctor-wrap a {
    background: #2591ce;
    color: #fff;
    border-radius: 1px;
    padding: 8px 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
}
.login-wrap {
    display: inline-block;
    vertical-align: middle;
}
.login-wrap a {
    background: #2591ce;
    color: #fff;
    border-radius: 1px;
    padding: 8px 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
}


.mobile-find-doctor-wrap a, .mobile-login a {
    background: #2591ce !important;
    color: #fff !important;
    border-radius: 2px;
    padding: 8px 15px !important;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500 !important;
    font-size: 16px !important;
}
.mobile-find-doctor-wrap {
    margin-top: 45px;
}
.mobile-login {
    margin-top: 15px;
    width: 80px;
}
.mobile-login a {
    padding: 5px 15px !important;
}

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

#search-login-wrap {
    display: inline-block;
}
#search-input {
    max-width: 240px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 13px;
    color: #4a4f57;
}
	@media (min-width: 768px) and (max-width: 990px) {
		#search-input {
            max-width: 240px;
        }
	}
    @media (max-width: 480px) {
    	#search-input {
            max-width: 155px;
        }
	}
    @media (max-width: 420px) {
    	#search-input {
            max-width: 135px;
        }
	}
    @media (max-width: 380px) {
    	#search-input {
            max-width: 115px;
        }
	}
.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: #4a4f57;
}

#search-input :-moz-placeholder { /* Firefox 18- */
   color: #4a4f57;  
}

#search-input ::-moz-placeholder {  /* Firefox 19+ */
   color: #4a4f57;  
}

#search-input :-ms-input-placeholder {  
   color: #4a4f57;  
}
.icon-search:before {
    content: url("../images/search-icon.png");
}
#search-input input {
    border: 0px;
    box-shadow: none;
    height: 31px;
    color: #4a4f57;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
    padding: 0px 10px;
}
#search-input button {
    background: transparent;
    border: 1px solid #fff;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 4px 12px 0px;
    height: 31px;
    border-radius: 0px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}
.input-group.search-input-wrap {
    border: 1px solid #c7d1e5;
    background: #fff;
    border-radius: 1px;
}


/* Mobile Search Bar */

li.mobile-search-wrap {
    margin-top: 35px;
    margin-bottom: 5px;
    padding-left: 0px;
    width: 260px;
}
li.mobile-search-wrap a {
    border-bottom: 0px !important;
}
li.mobile-search-wrap:hover, li.mobile-search-wrap:focus, li.mobile-search-wrap a:hover, li.mobile-search-wrap a:focus {
    background: transparent !important;
}
li.mobile-search-wrap .input-group.search-input-wrap {
    border: 1px solid #c7d1e5;
    background: #fff;
}
li.mobile-search-wrap .icon-search:before {
    content: url(../images/search-icon.png);
}
.mobile-search-wrap input {
    border: 0px;
    box-shadow: none;
    height: 31px;
    color: #4a4f57;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    padding: 0px 12px;
    font-weight: normal;
}
.mobile-search-wrap ::-webkit-input-placeholder {
   color: #4a4f57;
}

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

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

.mobile-search-wrap :-ms-input-placeholder {  
   color: #4a4f57;  
}
.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;
}



/* Social Media Icons */


.social-media-wrap {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 13px;
    margin-top: 3px;
}
	@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 {
    float: left;
    position: relative;
    display: block;
    margin-right: 0px;
}
li.fb-icon-wrap.social-media-wrap {
    margin-right: 6px;
}
.social-media-wrap svg {
    width: 33px;
    height: 33px;
}

/*.social-media-wrap a:hover svg#fb-icon .cls-1, .social-media-wrap a:hover svg#ig-icon .cls-1,
.social-media-wrap a:hover svg#twitter-icon .cls-1, .social-media-wrap a:hover svg#twitter-icon .cls-2,
.social-media-wrap a:hover svg#linkedin-icon .cls-1, .social-media-wrap a:hover svg#youtube-icon .cls-1 {
    fill: #fff !important;
    stroke: #2591ce !important;
}
.social-media-wrap a:hover svg#fb-icon .cls-2, .social-media-wrap a:hover svg#ig-icon .cls-2,
.social-media-wrap a:hover svg#twitter-icon .cls-3, .social-media-wrap a:hover svg#linkedin-icon .cls-2,
.social-media-wrap a:hover svg#youtube-icon .cls-2 {
    fill: #2591ce !important;
}*/


/* Mobile Social Media */

.mobile-sm-wrap svg {
    width: 33px;
    height: 31px;
}
li.mobile-sm-wrap {
    margin-top: 15px;
    margin-bottom: 0px;
}
    @media (max-width: 767px) {
        li.mobile-sm-wrap {
            display: inline-block !important;
        }
    }
li.mobile-sm-wrap:hover, li.mobile-sm-wrap a:hover {
    background: transparent !important;
}
li.mobile-sm-wrap a {
    border-bottom: 0px !important;
    padding: 0px !important;
    margin-right: 1px;
}
.mobile-sm-wrap svg .cls-1, .mobile-sm-wrap svg#twitter-icon .cls-1, .mobile-sm-wrap svg#twitter-icon .cls-2 {
    fill: #2591ce !important;
    stroke: #2591ce !important;
}
.mobile-sm-wrap svg .cls-2, .mobile-sm-wrap svg#twitter-icon .cls-3 {
    fill: #fff !important;
}
.mobile-sm-wrap a:hover svg .cls-1, .mobile-sm-wrap a:hover svg#twitter-icon .cls-1, .mobile-sm-wrap a:hover svg#twitter-icon .cls-2  {
    fill: #fff !important;
    stroke: #2591ce !important;
}
.mobile-sm-wrap a:hover svg .cls-2, .mobile-sm-wrap a:hover svg#twitter-icon .cls-3 {
    fill: #2591ce !important;
}



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

.burger-menu-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0px;
}
	@media (max-width: 767px) {
		.burger-menu-wrap {
		    margin-right: 0px;
		}	
	}
	@media (max-width: 480px) {
    	.burger-menu-wrap {
		    margin-top: 5px;
		}
	}
	@media (max-width: 420px) {
    	.burger-menu-wrap {
		    margin-top: 5px;
		}
	}
	@media (max-width: 380px) {
    	.burger-menu-wrap {
		    margin-top: 5px;
		}
	}

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

/*--------------------------------------------------------
					Index / Main Body
--------------------------------------------------------*/
main {
	min-height: calc(100vh - 146px - 200px);
	/*The minimum height of the main section of the page should be the height of the screen minus the header and footer*/
	position: relative;
}
#subpage-main {
    padding-top: 50px;
}
    @media (max-width: 767px) {
        #subpage-main {
            padding-top: 120px;
        }
    }
#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: 0px;
    position: relative;
}
.slideshow-wrap a {
    text-decoration: none;
}
.slideshow-wrap .container {
    width: 100%;
}
.slideshow-wrap img {
    width: 100%;
}
    @media (max-width: 1925px) {
        .slideshow-wrap img {
            max-height: 550px;
            object-fit: cover;
        }
        .slideshow-wrap img[src="https://mms.optla.org/slideshows/images/OPTL/default/B0.072489001568048791.png"] {
            object-fit: fill;
        }
    }
.slideshow-wrap [class*="col-"] {
    padding: 0;
}
.carousel-control {
    margin: auto 0px;
}

#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: 50px;
    width: 50px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Nunito Sans', sans-serif;
    background: rgba(74,79,87,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: 'Nunito Sans', sans-serif;
    background: rgba(74,79,87,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: 34px;
            width: 34px;
            top: -38px;
        }
    }
.carousel-control img {
    width: 17px;
    height: 26px;
    margin-top: 12px;
}
    @media (max-width: 767px) {
        .carousel-control img {
            margin-top: 4px;
        }
    }
    @media (max-width: 560px) {
        .carousel-control img {
            width: 12px;
            height: 18px;
        }
    }
.caption-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 13px;
    padding-right: 15px;
    padding-left: 15px;
    background: rgba(0,49,79,.8);
}
    @media (min-width: 768px) and (max-width: 990px) {
        .caption-wrapper {
            background: rgba(0,49,79,.9);
        }
    }
    @media (max-width: 767px) {
        .caption-wrapper {
            background: rgba(0,49,79,.9);
        }
    }

.carousel-caption {
    position: absolute;
    z-index: 10;
    background: transparent;
    padding: 0px;
    left: 0px;
    top: auto;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
    text-shadow: none;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .carousel-caption {
            display: block;
            position: static;
            width: 100%;
            height: auto !important;
            border: none;
        }
    }
    @media (max-width: 767px) {
        .carousel-caption {
            display: block;
            position: static;
            width: 100%;
            height: auto !important;
            border: none;
        }
    }

.carousel-caption p.caption-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 33px;
    display: block;
    color: #fff;
    margin-bottom: 20px;
}
.carousel-caption p.alt-text{
	font-size: 16px;
	font-family: serif;
	font-style: italic;
	color: white;
	margin-bottom: 10px;
    display: none;
}
.carousel-indicators {
    bottom: 0px;
}
.carousel-indicators li {
    width: 12px;
    height: 12px;
    margin-left: 5px !important;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 15px;
}
.carousel-indicators li.active {
    width: 12px;
    height: 12px;
    margin-left: 5px !important;
    margin: 0 auto;
    background-color: #2591ce;
    border: 1px solid #ffffff;
    border-radius: 15px;
}


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


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

.btn-wrap {
    margin-top: 10px;
    margin-bottom: 20px;
}
.btn-wrap a {
    color: #2591ce;
    text-decoration: none;
}
.btn-wrap a:hover {
    color: #2591ce;
}
.btn-wrap a:after {
    content: url(../images/arrow-icon.png);
    width: 33px;
    height: 12px;
    display: inline-block;
    padding-left: 10px;
    position: relative;
    top: 4px;
}


/* Ads Section */

.ads-inside-wrap {
    background: #f2f4f7;
    padding: 29px 0px;
    margin-bottom: 60px;
}
    @media (max-width: 767px) {
        .ads-inside-wrap {
            margin-bottom: 30px;
        }
    }
#ads-section-wrap img, #ads-section-wrap div {
    margin: 0 auto;
    text-align: center;
}
#ads-section-wrap a {
    text-decoration: none;
}


/* Featured Quicklinks */

#featured-quicklinks-wrap {
    color: #4c5360;
    margin-top: 10px;
    margin-bottom: 40px;
}
#featured-quicklinks-wrap h3 {
    background: #0a557a;
    border: 1px solid #0a557a;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 5px;
}
#featured-quicklinks-wrap img {
    border: 1px solid #c7d1e5;
    border-top: 0px;
    margin-bottom: 12px;
}

    @media (max-width: 767px) {
        #featured-quicklinks-wrap .column {
            margin-bottom: 10px;
        }
    }
    @media (min-width: 561px) and (max-width: 767px) {
        #featured-quicklinks-wrap img {
            width: 50%;
            margin-right: 15px;
            display: inline-block;
            vertical-align: middle;
        }
        .featured-quick-text {
            width: 47%;
            display: inline-block;
            vertical-align: middle;
        }
    }
    @media (max-width: 560px) {
        #featured-quicklinks-wrap img {
            width: 100%;
        }
    }


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

.events-inside-wrap {
    background: #f2f4f7;
    padding: 50px 0px 70px;
}
.events-inside-wrap h2 {
    text-align: center;
    color: #4a4f57;
    font-size: 30px;
    font-weight: 800;
    padding-bottom: 25px;
}
.events-item {
    background: #ffffff;
    padding: 10px 15px 10px;
    border: 1px solid #d9dfe2;
    border-radius: 1px;
    min-height: 230px;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .events-item {
            min-height: 300px;
        }
    }
    @media (max-width: 767px) {
        .events-item {
            margin-bottom: 25px;
        }
    }

.events-item:hover {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.events-title {
    padding-bottom: 10px;
}
.ev-title-link {
    color: #4a4f57;
    text-decoration: underline;
    font-size: 18px;
    font-weight: 600;
}
.ev-title-link:hover {
    color: #2591ce;
    text-decoration: underline;
}
.events-date {
    padding-bottom: 12px;
    border-bottom: 1px solid #c7cfd3;
    margin-bottom: 12px;
}
.events-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.events-date span {
    color: #6b6d70;
    font-size: 15px;
    font-weight: 700;
}
.events-blurb {
    text-transform: none;
    color: #4c5360;
    font-size: 16px;
    padding-bottom: 15px;
}
.events-btn a {
    color: #2591ce;
    text-decoration: none;
}
.events-btn a:hover {
    color: #2591ce;
}
.events-btn a:after {
    content: url(../images/arrow-icon.png);
    width: 33px;
    height: 12px;
    display: inline-block;
    padding-left: 10px;
    position: relative;
    top: 4px;
}
.view-btn-wrap {
    margin: 0 auto;
    margin-top: 35px;
    text-align: center;
}
.view-btn-wrap a {
    text-decoration: none;
    background: #2591ce;
    border: 1px solid #2591ce;
    border-radius: 2px;
    color: #fff;
    padding: 6px 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: #00314f;
    padding: 42px 0px 32px;
}
footer#main-footer p{
    color: #c7cfd3;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
}
footer#main-footer a {
    color: #fff;
    text-decoration: underline;
}
footer#main-footer a:hover {
    color: #2591ce;
}
footer#main-footer .text-left span {
    border-left: 1px solid #c7d1e5;
    margin-left: 18px;
    padding-left: 18px;
}

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



/*--------------------------------------------------------------
                      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: 'Nunito Sans', sans-serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}
.login-form input[type="submit"] {
    background: #2591ce;
    border: 1px solid #2591ce;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 2px;
    font-family: 'Nunito Sans', sans-serif;
    margin-left: 10px;
    outline: none;
    text-decoration: none;
    text-align: center;
    padding: 8px 20px;
    height: auto;
}
.login-form input[type="submit"]:hover, .login-form input[type="submit"]:focus {
    background: #2591ce;
    border: 1px solid #2591ce;
    text-decoration: none;
}
.login-form a {
    color: #2591ce;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    display: block;
    margin-left: 15px;
    padding-bottom: 10px;
    text-decoration: underline;
}
.login-form a:hover, .login-form a:focus {
    color: #2591ce;
}
.login-form input:last-of-type{
    width: 100px;
    margin: none;
}
h6.modal-title {
    color: #222e3f;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
}
h4#myModalLabel {
    color: #4a4f57;
    font-size: 22px;
    padding-bottom: 0px;
    font-weight: 800;
    font-family: 'Nunito Sans', sans-serif;
}


/*--------------------------------------------------------------
                      Navigation Menu Modal
--------------------------------------------------------------*/

#NavMenuModal.modal {
	z-index: 1049;
}
#NavMenuModal .modal-dialog {
    max-width: 650px;
    margin: 150px auto;
}
	@media (max-width: 480px) {
		#NavMenuModal .modal-dialog {
		    max-width: 420px;
		}
	}
	@media (max-width: 360px) {
		#NavMenuModal .modal-dialog {
		    max-width: 300px;
		}
	}
#NavMenuModal .modal-content {
    padding: 40px 30px 25px;
    border-radius: 0px;
}
#NavMenuModal .modal-header {
    border-bottom: 0px;
    min-height: 70px;
    padding: 0;
    position: relative;
}
#NavMenuModal .modal-header button.close {
    margin-top: -30px;
    margin-right: -15px;
    color: #a6a8ab;
}
.modal-menu-logo-wrap {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    float: left;
}
.modal-sm-wrap.social-media-wrap {
    text-align: right;
    float: right;
}
	@media (max-width: 480px) {
		.modal-sm-wrap.social-media-wrap {
		    margin-top: 20px;
		    margin-bottom: 20px;
		}
	}
	@media (max-width: 360px) {
		.modal-sm-wrap.social-media-wrap {
		    float: left;
		    margin-top: 20px;
		    margin-bottom: 20px;
		}
	}
#NavMenuModal .modal-body {
    padding: 0px;
}
#NavMenuModal .modal-nav-container #nav_menu {
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
	padding: 0px;
	margin-top: 20px;
}
	@media (min-width: 560px) {
		#NavMenuModal .modal-nav-container .navbar-nav {
		    -webkit-column-count: 2;
		    -moz-column-count: 2;
		    column-count: 2;
		    -webkit-column-gap: 80px;
		    -moz-column-gap: 80px;
		    column-gap: 80px;
		    padding: 0px;
		    margin-top: 20px;
		}

	}
#NavMenuModal .modal-nav-container .navbar-nav li a {
    padding: 6px 0px 0px 0px;
    line-height: 24px;
	color: #17224d;
	font-size: 18px;
    font-weight: bold;
    font-family: 'Nunito Sans', sans-serif;
}
#NavMenuModal .modal-nav-container .navbar-nav .open>a,
#NavMenuModal .modal-nav-container .navbar-nav .open>a:focus,
#NavMenuModal .modal-nav-container .navbar-nav .open>a:hover,
#NavMenuModal .modal-nav-container .dropdown-menu>li>a:focus,
#NavMenuModal .modal-nav-container .dropdown-menu>li>a:hover  {
	background: transparent;
	color: #17224d;
}
#NavMenuModal .modal-nav-container .navbar-nav .caret {
    display: none;
}
#NavMenuModal .modal-nav-container .navbar-nav .dropdown-menu {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    border: none;
    box-shadow: none;
    /*min-height: 50px;*/
}
#NavMenuModal .modal-nav-container .navbar-nav .dropdown-menu li a {
	padding: 5px 0px;
	color: #17224d;
	font-size: 16px;
    font-weight: normal;
    font-family: 'Nunito Sans', sans-serif;
}

.modal-member-login-wrap {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}
.modal-member-login-wrap a {
    background: #17224d;
    color: #fff;
    border-radius: 30px;
    padding: 6px 27px 8px;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Nunito Sans', sans-serif;
    text-decoration: none;
}
.modal-contact-wrap {
    text-align: center;
    margin-top: 50px;
}
.modal-contact-wrap a {
    color: rgba(23,34,77,0.7);
    font-size: 17px;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
    text-decoration: none;
}



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

}

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

}

@media (max-width: 580px) {


}

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


}