body, html {width: 100%; height: 100%; padding: 0; margin: 0; font-family: 'Lato', sans-serif; font-weight: 400; font-size: 17px; color: #373737; -webkit-text-size-adjust: 100%;}
body {overflow-x: hidden;}
a {text-decoration: none;}
.clear {clear: both;}
input,textarea,button {outline:none;}
a img {border: none;}
form {padding: 0; margin: 0;}
img {max-width: 100%; height: auto;}
#system-message , #system-message-container {
  	display: none !important;
	} 

.content {
    margin: 0 auto;
    text-align: left;
    width: 100%;
    max-width: 1300px;
    padding: 0 15px;
    box-sizing: border-box;
	}

.btn {
    width: 100%;
    max-width: 250px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    box-sizing: border-box;
	}

.btn-primary {
    background: #0a6a9a;
    color: #fff;
    border-color: #0a6a9a;
	}

.btn-primary a {
    color: #fff;
    padding: 13px 34px;
    display: block;
	}

.btn-primary:hover {
    background: transparent;
    color: #0a6a9a;
	}

.btn-primary:hover a {
    color: #0a6a9a;
	}

.table {
    display: table;
    vertical-align: middle;
	}

.table-row {
    display: table-row;
	}

.table-cell {
    display: table-cell;
    vertical-align: middle;
	}

.table-cell.duble {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
	}

/*Navbar*/

.top-banner {
    height: 30px;
    overflow: hidden;
    position: relative;
    background: #94BDCF;
    color: #fff;
    animation-iteration-count: infinite;
    transform: translate3d(0, 0, 0);
    }

.top-banner p {
    position: absolute;
    height: 100%;
    margin: 0;
    line-height: 40px;
    text-align: center;
    transform: translateX(100%);
    animation: scroll-left 30s linear infinite;
	width: 100%;
	}

@-moz-keyframes scroll-left {
	0% {
		-moz-transform: translateX(100%);
	}
	
	to {
		-moz-transform: translateX(-100%);
	}
	}
	
	@-webkit-keyframes scroll-left {
	0% {
		-webkit-transform: translateX(100%);
	}
	
	to {
		-webkit-transform: translateX(-100%);
	}
	}
	
	@keyframes scroll-left {
	0% {
		-moz-transform: translateX(100%);
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
	
	to {
		-moz-transform: translateX(-100%);
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

.header-text {
    text-align: center;
    padding: 70px 0 0 0;
    }

.header-text h3 {
    margin: 0 auto 10px;
    font-size: 32px;
    color: #0a6a9a;
    }

.header-text h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 0;
    }
    
.phone-container {
    text-align: center;
	position: relative;
    }
    
.mobile-social-icons {
	display: none;
	}

.call-button {
	background-color: #1c6b99;
    color: #fff;
    border: none;
    padding: 5px 20px 5px 10px;
    font-size: 16px;
    border-radius: 0px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    }
    
.call-button:hover {
    background-color: #0056b3;
    }
    
.info-container {
    margin-top: 20px;
    color: #fff;
    position: absolute;
    top: 10px;
    right: 0;
    background: #1c6b99;
    padding: 10px;
    font-size: 18px;
    width: 250px;
    box-sizing: border-box;
    }
    
.info-container p {
	display: block;
	}

.info-container p a {
    color: #fff;
    font-weight: 600;
	}

.hidden-phones {
    display: none;
    }

/*Navbar*/

.header-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
    flex: 1;
    }

nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    background: #daebf2;
    transition: all 0.3s;
    box-shadow: 3px 3px 3px #d3d3d3e6;
	}

/* .homepage nav {
	position: absolute;
	}

.homepage nav.slide {
	position: relative;
  	display: none;
	} */

nav.slide {
	position: fixed;
	display: none;
	}

.inner-nav.slide.fixed {
  	display: none;
	}

nav.slide.fixed , .inner-nav.slide.fixed {
	position: fixed !important;
  	display: block;
	}

nav .content {
    max-width: 3000px;
    display: flex;
    align-items: stretch;
    padding: 0;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 25px;
	}

.inner-logo {
	display: flex;
	vertical-align: middle;
	}

.inner-logo a {
	display: flex;
	align-items: center;
	justify-content: center;
	}

.inner-logo img {
    width: 100%;
	}

.topmenu {
    margin: 0 auto;
    width: 100%;
    border-top: 1px solid lightgray;
    padding: 10px 10px 15px 10px;
	}

.topmenu ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	}

.topmenu ul li {
    list-style: none;
    padding: 0 5px;
    position: relative;
	}

.topmenu ul li.parent:after {
    content: '';
    position: absolute;
    top: 10px;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
	}

.topmenu ul li a , span.nav-header , span.separator {
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    white-space: nowrap;
    color: #474747;
    padding: 5px 10px;
    text-transform: uppercase;
	}

.topmenu ul li.active ul li a {
    color: #474747;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
	border-bottom: 3px solid transparent;
	}

.topmenu ul li a:hover,
.topmenu ul li.active a,
.topmenu ul li.active ul li a:hover,
.topmenu ul li ul li.active a {
    border-bottom: 3px solid #84d4eb;
	}

.topmenu ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    display: block;
    background: #f8f8f8;
    max-height: 0;
    overflow-y: hidden;
    transition: all 0.2s;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	}

/* nav.fixed .topmenu ul li ul {
    background: #fff;
	} */

.topmenu ul li:hover ul {
    padding-top: 10px;
    max-height: 3000px;
    overflow-y: auto;
	}

.topmenu ul li ul li {
    display: block;
    padding: 10px 15px;
	}

.topmenu ul li ul li:last-child {
    border-bottom: 5px #0a6a9a solid;
	}

nav .social-btns {
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    width: 100%;
    max-width: 420px;
	}

.top-phone {
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: center;
    }

nav .social-btn {
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 1px;
    display: inline-block;
    vertical-align: middle;
	}

nav .social-btn:hover {
    transform: scale(1.1);
	}

nav .fb-wrap {
    position:relative;
    display: inline-block;
    vertical-align: middle;
    width: 46px;
    height: 46px;
    white-space: nowrap;
    margin: 0 2px;
	}

nav .fb-ico {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
	}

nav .fb-wrap:hover .fb-ico {
    transform: scale(1.1);
	}

.hamburger {
    display: none;
	}

nav p {
    padding: 0;
    margin: 0;
    display: inline-block;
	}

/*Dropdown Menu*/
.slide.fixed .header-wrapper {
    flex-direction: unset;
    padding: 10px;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex: unset;
    flex-direction: column;
	}

.slide.fixed .header-wrapper .social-btns {
    width: unset;
    max-width: unset;
	}

.slide.fixed .header-wrapper .inner-logo {
    max-width: 250px;
	}

.slide.fixed .topmenu {
    margin: 0 auto;
    width: unset;
    border-top: none;
    padding: 10px 10px 15px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
	}

/* .slide.fixed .topmenu ul li {
	list-style: none;
	padding: 0;
	position: relative;
	} */

/* Slider block*/
.slider-block {
    text-align: center;
	position: relative;
	}

.slider-block .content {
	text-align: center;
	max-width: 1600px;
	}

.mobile-slide {
    display: none;
	}

.nivo-caption {
    background: rgba(0,0,0,0.7);
    padding: 0;
    opacity: 1;
	}

.theme-pure .nivoSlider {
    margin-bottom: 0;
	}

.maintext-block-serv-wrapper {
    position: absolute;
    top: 19%;
    left: 0;
    width: 100%;
    z-index: 11;
	}

.maintext-block-serv {
    display: inline-block;
    padding: 25px;
    float: left;
    text-align: left;
    background: rgba(4, 4, 4, 0.38);
	}

.maintext-block-serv h2 {
	font-size: 37px;
    color: #fff;
    font-weight: 400;
    font-family: 'Cabin',sans-serif;
    margin: 0px 0 10px 0;
	}

.maintext-block-serv ul {
    padding: 0;
    margin: 0;
	}

.maintext-block-serv ul li {
    display: block;
    list-style: none;
    padding: 5px 0 5px 35px;
    position: relative;
    text-transform: uppercase;
	}

.maintext-block-serv ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 24px;
    height: 24px;
    background: url(../images/bullet.png) no-repeat center;
	}

.maintext-block-serv ul li a,
.maintext-block-serv ul li {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
	}

.maintext-block-serv ul li a:hover {
    text-decoration: underline;
	}

.maintext-block {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 10px;
	}

.maintext-block p {
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    padding: 15px 0 5px;
    margin: 0;
    font-family: 'Cabin',sans-serif;
	}

.maintext-block h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-top: 10px;
    font-family: 'Cabin', sans-serif;
	}

.slider-overlay-text {
	position: absolute;
	top: 18%;
	right: 20px;
	}

.slider-overlay-text p {
	padding: 0px 0;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 2px 2px #0a6a9a;
    max-width: 215px;
	}

/* About block*/

.about-block {
    background-color: #ffffff;
    padding: 50px 15px;
	}

.about-block .content {
    max-width: 1600px;
	}

.about-block h2 {
    font-family: "Cabin", sans-serif;
    font-size: 48px;
    text-align: center;
    font-weight: 400;
    color: #0a6a9a;
    padding-bottom: 20px;
    margin: 0 auto 20px;
    position: relative;
    }

.about-block h3 {
    text-align: center;
    font-size: 30px;
    margin: 0 auto 25px;
	}

.about-block p {
    color: #474747;
    text-align: center;
    font-size: 20px;
    background-color: #daebf2;
    padding: 5px 10px 7px;
	margin: 15px auto;
	}

.about-block ul {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
	list-style: none;
	}

.about-block ul li {
	color: #474747;
	background-color: #daebf2;
    font-size: 20px;
	padding: 5px 10px 7px;
	margin: 15px auto;
	}

/*Services block*/
.services-block {
	background-color: #daebf2;
	padding: 50px 0 0;
	}

.services-bloc {
    padding: 40px 25px;
    }

.services-block h2 {
    font-family: "Cabin", sans-serif;
    font-size: 48px;
    text-align: center;
    font-weight: 400;
    color: #0a6a9a;
    padding-bottom: 20px;
    margin: 0 auto 20px;
    position: relative;
    }

.triple-services-wrap {
	text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    }

.triple-service-wrap {
    color: #0a6a9a;
    justify-content: center;
    margin: 12px;
    }

.triple-service-wrap, .triple-service-wrap a {
    font-size: 28px;
    font-weight: 400;
    color: #0a6a9a;
    }

/*Quad Image Block*/
.quad-images-block {
	background-color: #daebf2;
	}
	
.quad-block-wrap {
	max-width: 1817px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 99px 25px;
    }

.quad-box {
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin-bottom: 40px;
    width: 49%;
    }

.quad-box img {
    width: 100%;
    }

.quad-box.one h3 {
    text-align: center;
    width: 100%;
    }

.quad-box.one h3,
.quad-box.three h3,
.quad-box.two h3 {
    color: #fff;
    position: absolute;
    font-weight: 100;
    font-size: 35px;
    margin: 0;
    font-family: "Lato";
    bottom: 20px;
    }

.quad-box.two h3 {
    right: 35px;
    }

.quad-box.three h3 {
    left: 35px;
    }

.quad-box.four .quad-text-wrap {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 275px;
    text-align: right;
    }

.quad-box.four h3,
.quad-box.four p {
    color: #000;
    font-family: "Lato";
    text-align: right;
    }

.quad-box.four h3 {
    font-weight: 500;
    font-size: 35px;
    margin: 0;
    }

.quad-box.four p {
    font-size: 16px;
    font-weight: 600;
    }

/*Doctors block*/
.doctors-block {
    padding: 50px 0;
	background: url(../images/our-doctor-bg.jpg) no-repeat center;
	background-size: cover;
	}

.doctors-block .content {
    text-align: center;
    max-width: unset;
	}

.doctors-box {
    margin: 0 auto;
    padding: 30px;
    max-width: 767px;
    background-color: rgb(255 255 255 / 70%);
	}

.doctors-box h2 {
    padding: 0;
    text-align: center;
    color: #0a6a9a;
    font-weight: 300;
    font-family: "Lato";
    font-size: 44px;
    padding-bottom: 15px;
    margin: 0;
    position: relative;
	}

.doctors-box .doctor {
    display: inline-block;
    padding: 15px;
    box-sizing: border-box;
    max-width: 100%;
    transition: all 0.3s;
	}

.doctors-box .doctor:hover {
    transform: scale(1.02);
	}

.doctor a {
    font-size: 24px;
    color: #0a6ea3;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	}

.doctors-box .doctor img {
    max-width: 100%;
    box-shadow: 3px 5px 3px rgba(0,0,0,0.2);
    display: block;
    margin-bottom: 15px;
	}

/*Locations block*/
.locations-title {
    padding: 50px 15px 0;
	background-color: #daebf2;
	}

.locations-title h2 {
    color: #0a6a9a;
    text-align: center;
    padding-bottom: 0px;
    margin: 0 auto 0px;
    position: relative;
    font-weight: 400;
    font-family: "Cabin", sans-serif;
    font-size: 44px;
	}

.locations-block {
    /* background: #fff; */
	background-color: #daebf2;
    background-size: cover;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    }

.loc h2,
.locations-block h2 {
    font-weight: 400;
    font-family: "Cabin", sans-serif;
    font-size: 44px;
    }

.locations-block h2 {
    color: #0a6a9a;
    text-align: center;
    padding-bottom: 20px;
    margin: 0 auto 20px;
    position: relative;
    }

.locations-block .content {
    display: flex;
    justify-content: center;
    max-width: 1700px;
    }

.loc-img {
    box-shadow: 0 0 5px 5px #0a6a9a3b;
    display: flex;	
    max-width: 480px;
	}

.loc {
    margin: 0;
    max-width: 480px;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    background: rgb(255 255 255/90%);
    text-align: center;
    box-shadow: 0 0 5px 5px #0a6a9a3b;
    }

.loc h2 {
    color: #096ea3;
    margin: 0;
    }

.loc .address {
    font-size: 20px;
    margin: 10px 0 30px;
    color: #000;
    }

.loc .phone {
    font-size: 26px;
    font-weight: 500;
    color: #096ea3;
    white-space: nowrap;
    }

.loc .shedule {
    margin: 15px auto 0;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    text-align: left;
    }

.loc .day {
    padding-right: 10px;
    }

.loc .btn {
    margin: 30px auto 0;
    border-radius: 10px;
    font-size: 20px;
    }

.loc .loc-note {
 	display: block;
    margin: 10px auto 0;
    font-size: 18px;
    max-width: 350px;
    font-weight: 700;
	}

/*Blogs block*/
/*
.blogs-block {
    padding: 50px 0;
    background: url(../images/blogs-bg.jpg) no-repeat center;
    background-size: cover;
    text-align: center;
	}
*/
/*Blogs block*/

.blogs-block {
	padding: 50px 0;
	text-align: center;
    background-image: linear-gradient(to bottom, rgb(12 65 96 / 85%), rgb(12 65 96 / 85%)), url(../images/blogs-bg.jpg);
	background-size: cover;
  	background-position: center;
    background-repeat: no-repeat;
	}

.blogs-block .content {
    text-align: center;
	}

.blogs-block h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 300;
    text-align: center;
    display: block;
    margin: 10px 0;
	}

.blogs-list ul {
    display: inline-block;
    padding: 0;
    margin: 0 auto;
    text-align: left;
	}

.blogs-list ul li {
    list-style: none;
    display: block;
    padding: 8px 0 8px 15px;
    position: relative;
	}

.blogs-list ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 10px;
    color: #fff;
	}

.blogs-list ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
	}

.blogs-list ul li a:hover {
    text-decoration: underline;
	}

.blogs-block .btn {
    margin-top: 30px;
	}

/*Footer*/
footer {
    background: #94bdcf;
	}

footer .content {
	text-align: center;
	}

.logo-footer {
	display: inline-block;
	vertical-align: top;
	padding: 30px;
	max-width: 510px;
	}

.logo-footer p {
    color: #000000;
    font-size: 18px;
  	text-align: center;
	}

.quick-links-block {
	display: inline-block;
	vertical-align: top;
	padding: 30px;
	text-align: left;
	}

footer h4 {
	font-size: 18px;
	font-weight: 400;
	color: #000000;
	margin-top: 0;
	padding-top: 0;
	}

.quick-links-block ul {
	padding: 0;
	margin: 0;
	}

.quick-links-block ul li {
	display: block;
	list-style: none;
	padding: 2px 0;
	color: #000000;
	font-size: 18px;
	}

.quick-links-block ul li a , .quick-links-block ul li.a {
	color: #000000;
	font-size: 18px;
	line-height: 25px;
	text-decoration: none;
	}

.quick-links-block ul li a:hover {
	text-decoration: underline;
	}

.quick-links-block ul li ul {
	margin: 5px 0 0 5px;
	}

.bottom-loc-block {
	display: inline-block;
	vertical-align: top;
	padding: 30px 0 30px 30px;
	text-align: left;
	color: #000000;
	font-size: 18px;
	line-height: 25px;
	}

.white-text {
	color: #000000;
	}

.offices-block {
	display: flex;
	}

.office {
	padding-right: 30px;
	}

.copy-left, .copy-right {
	text-align: left;
	float: left;
	color: #000000;
	font-size: 14px;
	padding: 30px;
	}

.copy-left a, .copy-right a {
	color: #000000;
	text-decoration: none;
	}

.copy-left a:hover, .copy-right a:hover {
	text-decoration: underline;
	}

.copy-right {
	text-align: right;
	float: right;
	}

.scroll-to-top {
	position: fixed;
	bottom: 72px;
	left: 20px;
	z-index: 8999;
	opacity: 1;
	transition: all 0.3s;
	display: none;
    cursor: pointer;
	}

.scroll-to-top.active {
	display: block;
	}

.scroll-to-top:hover {
	opacity: 0.8;
	}

.rabutton {
	max-width: 350px;
	position: fixed;
	right: 20px;
	bottom: 80px;
	z-index: 99;
	}

.rabutton .wrap {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	}
		
.rabutton .buttonrs {
	min-width: 255px;
	min-height: 45px;
	font-size: 18px;
	font-family: 'Lato',sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.3px;
	font-weight: 700;
	color: #ffffff;
	background: #51716b;
	border: none;
	border-radius: 3px;
	box-shadow: 12px 12px 24px rgb(25 54 78 / 22%);
	transition: all 0.3s ease-in-out 0s;
	cursor: pointer;
	outline: none;
	position: relative;
	padding: 10px 20px;
	}
	
.rabutton .buttonrs::before {
	content: '';
	border-radius: 13px;
	min-width: calc(250px + 28px);
	min-height: calc(40px + 4px);
	border: 4px solid #51716b;
	box-shadow: 0 0 60px rgb(195 195 195 / 64%);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: all .3s ease-in-out 0s;
	}
		
.rabutton .buttonrs:hover, .buttonrs:focus {
	color: #51716b;
	transform: translateY(-6px);
	background: #fff;
	}
		
.rabutton .buttonrs:hover::before, .rabutton .buttonrs:focus::before {
	opacity: 1;
	}
	
.rabutton .buttonrs::after {
	content: '';
	width: 30px; height: 30px;
	border-radius: 100%;
	border: 6px solid #cccccc;
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: ring 1.5s infinite;
	}
		
.rabutton .buttonsr:hover::after, .buttonrs:focus::after {
	animation: none;
	display: none;
	}
		
@keyframes ring {
	0% {
		width: 30px;
		height: 30px;
		opacity: 1;
	}
	100% {
		width: 200px;
		height: 200px;
		opacity: 0;
	}
	}

/*Joomla corrections*/
tr.rsform-block.rsform-block-ref {
    vertical-align: text-bottom;
    }

.social-btns p, .connect-block p, .doctors-box h2 p {
	display: inline-block;
	padding: 0;
	margin: 0;
	}

.social-btns a {
	color: #074075;
	}

/*Rate US*/

.inner-wrap {
    padding: 50px 2% 100px;
    text-align: center;
    }

.inner-wrap h2 {
    font-size: 44px;
    margin: 0 auto;
    font-weight: 500;
    }

.inner-wrap h5 {
    margin: 25px auto;
    }

.google-review {
	margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-wrap: wrap;
    gap: 30px;
    }

.google-review img {
    transition: 0.3s all;
    }

.google-review img:hover {
    transform: scale(1.02);
    }

/*Rate Us --- END*/

/* How Are We Doing? */
    
.thumbs-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 2% 100px;
    }

.thumbs-wrap .item {
    margin: 0 20px;
    max-width: 300px;
    }

.thumbs-wrap .item:hover {
    transform: scale(1.02);
    transition: all 300ms ease;
    }

.thumbs-wrap .item img {
    width: 100%;
    }

.thumbs-wrap .item span {
    font-size: 23px;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
    }

/* How Are We Doing? --- END */

/*Inner pages*/
.inner-pages {
	padding-bottom: 30px;
	}

.inner-pages a {
	color: #074075;
	}

.inner-pages img {
	max-width: 100% !important;
	height: auto !important;
	}

.inner-pages .page-header h2 {
	font-size: 44px;
    color: #0a6a9a;
	text-align: center;
	font-weight: 400;
	position: relative;
	margin: 0 0 20px 0;
	padding: 15px 0 20px 0;
	}

.inner-pages .page-header h2::after {
	content: '';
	height: 5px;
	width: 100px;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin: 0 0 0 -50px;
	background: #84d4eb;
	}

.inner-pages .doctor {
	width: 223px;
	float: right;
	margin: 0px 0 10px 10px;
	text-align: center;
	padding: 3px;
    color: #1c6b99;
	font-weight: 700;
	}

.inner-pages .doctor img {
	width: 100%;
	margin-bottom: 10px;
	}

/* Testimonial Page */
.testimonial-container {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 16px 16px 0px 16px;
    margin: 16px 0;
	}

.testimonial-container::after {
    content: "";
    clear: both;
    display: table;
	}

.testimonial-container span {
    font-size: 20px;
    margin-right: 6px;
	}

.testimonial-p {
    text-align: left;
	}

.testimonial-container .headline {
    display: inline-block;
    vertical-align: middle;
	}

.testimonial-container .star {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
	}

/*K2*/
div.latestItemsCategory {
	background: transparent;
	border: none;
	border-radius: 4px;
	margin: 0;
	padding: 0;
	}

div.latestItemsCategory h2 {
	font-size: 44px;
	color: #586064;
	text-align: center;
	font-weight: 400;
	position: relative;
	margin: 0 0 20px 0;
	padding: 15px 0 20px 0;
	}

div.latestItemsCategory h2 a {
	color: #586064;
	}

div.latestItemsCategory h2::after {
	content: '';
	height: 5px;
	width: 100px;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin: 0 0 0 -50px;
	background: #0a6a9a;
	}

h2.latestItemTitle a {
	color: #0a6a9a;
	}

#k2Container.latestView {
	padding-top: 0;
	}

#k2Container {
	padding-top: 40px;
	}

div.itemToolbar {
	display: none;
	}

div.k2LatestCommentsBlock ul, div.k2TopCommentersBlock ul, div.k2ItemsBlock ul, div.k2LoginBlock ul, div.k2UserBlock ul.k2UserBlockActions, div.k2UserBlock ul.k2UserBlockRenderedMenu, div.k2ArchivesBlock ul, div.k2AuthorsListBlock ul, div.k2CategoriesListBlock ul, div.k2UsersBlock ul {
	padding: 10px 20px;
	margin: 0;
	}

div.k2LatestCommentsBlock ul li, div.k2TopCommentersBlock ul li, div.k2ItemsBlock ul li, div.k2LoginBlock ul li, div.k2ArchivesBlock ul li, div.k2AuthorsListBlock ul li, div.k2CategoriesListBlock ul li, div.k2UsersBlock ul li {
	margin: 0;
	display: block;
	padding: 8px 0 8px 15px;
	}

.clearList {
	display: none !important;
	}

#second {
	margin: 0;
	width: 100%;
	float: left;
	margin-top: 10px;
	}

#one {
	float: left;
	width: 53%;
	padding-right: 2%;
	}

#two {
	width: 45%;
	float: right;
	margin-bottom: 20px;
	}

#address {
	float: left;
	width: 45%;
	height: 200px;
	}

#week {
	float: left;
	width: 105px;
	}

#hours {
	float: left;
	width: 120px;
	}

#offices span.loc-note {
    float: left;
    max-width: 300px;
    font-size: 15px;
    font-weight: 700;
    margin: 5px 0 0;
	}

#offices {
	margin: 0;
	width: 100%;
	float: left;
	}

#offices.images {
    margin: 23px auto 7px;
    text-align: center;
    }

#offices.images .n2-section-smartslider {
    max-width: 450px;
    margin: 0 auto;
    }

#map {
	margin: 20px 0;
	float: left;
	width: 100%;
	}

#osmap.osmap-sitemap .even {
	padding: 2px 0;
	}

body.rsform h1 , body.sitemap h1 {
	font-size: 44px;
	color: #586064;
	text-align: center;
	font-weight: 400;
	position: relative;
	margin: 0 0 20px 0;
	padding: 15px 0 20px 0;
	}

body.rsform h1::after , body.sitemap h1::after {
	content: '';
	height: 5px;
	width: 100px;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin: 0 0 0 -50px;
	background: #0a6a9a;
	}

.formTableLayout {
	margin: 0 auto;
	}

.formTableLayout input#Send , .formTableLayout input#submit {
	background: #48b5c5;
	color: #fff;
	border-color: #48b5c5;
	padding: 5px 20px 7px ;
	border-radius: 5px;
	font-size: 17px;
	font-weight: bold;
	font-family: 'Lato', sans-serif;
	border: 2px solid transparent;
	}

.formTableLayout input#Send:hover , .formTableLayout input#submit:hover {
	background: #fff;
	color: #48b5c5;
	border-color: #fff;
	border: 2px solid;
	cursor: pointer;
	}

.formTableLayout tr.rsform-block>td {
	padding: 5px;
	font-weight: 600;
	}

input, textarea, button , select {
	outline: none;
	padding: 4px;
	}

/*Joomla content*/

body.homepage .content.h {display: none;}

.content.full {
	flex-wrap: wrap;
    display: flex;
	}

.divContent {
	flex: 0 0 80%;
	/*max-width: 1000px;
	float: left;*/
	}

.divRight {
	flex: 0 0 20%;
	/*max-width: 300px;
	float: right;*/
	}

.divRight .moduletable {
	margin-top: 25px;
	padding-left: 40px;
	}

.divRight .moduletable ul {
	padding: 0px 4px !important;
	}

.divRight .moduletable ul li {
	padding: 5px 0 5px 3px !important;
	}

body#bfa #k2Container {
    padding-top: 0;
	}

.latestItemsCategory {
	float: none;
    width: 100%;
	}

div.genericItemReadMore {
    display: none !important;
	}

div.k2ArchivesBlock ul li a {
	color: #074075;
	}

.images-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px auto;
    }

@media only screen and (max-width: 1675px) {
.inner-logo {
    max-width: 300px;
	}

.topmenu ul li a, span.nav-header, span.separator {
    font-size: 16px;
	padding: 5px 7px;
	}

.maintext-block p {
	font-size: 26px;
	}

.maintext-block ul li a {
	font-size: 19px;
	}

footer {
	padding-bottom: 140px;
	}
}

@media only screen and (max-width: 1600px) {
.inner-logo,
nav .social-btns {
    max-width: 300px;
	}

.header-text {
    padding: 40px 0 0 0;
	}
}

@media only screen and (max-width: 1560px) {
.maintext-block-serv {
	margin-top: 0px;
	}	

.maintext-block-serv h2 {
	font-size: 28px;
	}

.maintext-block-serv ul li a,
.maintext-block-serv ul li {
	font-size: 20px;
	}
}

@media only screen and (max-width: 1470px) {
/*Nav*/
.inner-logo,
nav .social-btns {
    max-width: 250px;
	}

.topmenu ul li {
	padding: 0 3px;
	}

.topmenu ul li a, span.nav-header, span.separator {
	font-size: 15px;
	padding: 5px;
	}

.topmenu ul li.parent:after {
	display: none;
	}

/*Slider block */

.maintext-block-serv {
	margin-top: 0px;
	}

.maintext-block-serv h2 {
	font-size: 22px;
	}

.maintext-block-serv ul li a,
.maintext-block-serv ul li {
	font-size: 15px;
	}

.maintext-block-serv ul li:before {
	top: 2px;
	}

.maintext-block p {
	font-size: 20px;
	}

.maintext-block h3 {
	font-size: 18px;
	}

.slider-overlay-text {
    top: 14%;
	}
}

@media only screen and (max-width: 1320px) {
.topmenu ul li a, span.nav-header, span.separator {
    font-size: 14px;
	}
}

@media only screen and (max-width: 1280px) {
.header-text {
	display: none;
	}

.header-wrapper {
	flex: unset;
	flex-direction: row-reverse;
	align-items: center;
	gap: 20px;
	padding: 5px 0 5px 0;
	}

nav .social-btns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0px;
	width: unset;
	max-width: unset;
	}

.inner-logo,
nav .social-btns {
    max-width: 250px;
	}

.slide.fixed .header-wrapper {
	flex-direction: row-reverse;
	gap: 20px;
	padding: 5px 0 5px 0;
	}

.slide.fixed .topmenu {
	margin: 0 auto;
	width: unset;
	border-top: none;
	padding: 10px 10px 15px 10px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	}

/* .slide.fixed .topmenu ul li {
	list-style: none;
	padding: 6px;
	position: relative;
	} */

/*Navbar*/
.hamburger {
	display: inline-block;
	position: relative;
	z-index: 9002;
	margin: 17px;
	}

.topmenu {
	position: fixed;
	z-index: 9001;
	top: -150%;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	background: #fff;
	transition: all 0.3s;
	}

.topmenu.active {
	top: 0;
	}

.topmenu ul {
	display: block;
	padding: 20px 15px 15px 15px;
	}

.topmenu ul li {
	display: block;
	padding: 5px;
	}

.topmenu ul li.parent:after {
	display: none;
	}

.topmenu ul li a , span.nav-header , span.separator {
	font-size: 15px;
	}

.topmenu ul li ul {
	position: relative;
	top: 0;
	left: 0;
	width: auto;
	display: block;
	background: transparent;
	max-height: 3000px;
	overflow-y: visible;
	padding: 5px 0 0 0;
	box-shadow: unset;
	}

.topmenu ul li ul li:last-child {
	border-bottom: unset;
	}

.topmenu ul li ul li {
	padding: 5px 10px;
	}

/* nav.fixed .topmenu ul li ul {
	background: transparent;
	} */

.topmenu ul li:hover ul {
	overflow-y: visible;
	padding: 5px 0 0 0;
	}

nav .content {
	display: flex;
	}

.hamburger-box {
	margin-top: 27px;
	}
}

@media only screen and (max-width: 1250px) {

.quad-block-wrap {
	padding: 90px 0px;
	}

.quad-box {
    width: 100%;
	}

.quad-box.one, .quad-box.two, .quad-box.three h3 {
	font-size: 26px;
	}

.quad-box.four p {
	font-size: 16px;
	font-weight: 600;
	}

.quad-box.four h3 {
	font-weight: 600;
	font-size: 18px;
	margin: 0;
	}

.quad-text-wrap {
	top: 10px;
	width: 190px;
	background-color: rgb(255 255 255 / 70%);
	padding: 5px 15px 0;
	}
}

@media only screen and (max-width: 1215px) {
.maintext-block h3 {
	font-size: 17px;
	}

.maintext-block p {
	font-size: 18px;
	}

#address {
	width: 100%;
	height: auto;
	}

#week {
	margin: 20px 0 0;
	}

#hours {
	float: left;
	margin: 20px 0 0;
	}

#offices span.loc-note {
    max-width: 100%;
	}

#map iframe {
	height: 637px;
	}
}

@media only screen and (max-width: 1150px) {
/*Navbar*/
.topmenu ul li a , span.nav-header , span.separator {
	font-size: 15px;
	}

.top-right {
	text-align: right;
	}

.top-phone {
	margin: 0;
	}

.bot-social-btns {
	display: none;
	}

.maintext-block-wrapper {
	position: relative;
	left: unset;
	top: 0;
	width: 100%;
	margin: 0 auto;
	}

/*Footer */
/* .logo-footer {
	max-width: 330px;
	} */
}

@media only screen and (max-width: 1080px) {
.topmenu ul li a , span.nav-header , span.separator {
	font-size: 16px;
	}

.topmenu ul {
	margin: 0 5px;
	}

.topmenu ul li.parent:after {
	content: '';
	position: absolute;
	top: 10px;
	right: -2px;
	width: 0;
	height: 0;
	margin-left: 1px;
	vertical-align: middle;
	border-top: 2px solid;
	border-right: 2px solid transparent;
	border-left: 2px solid transparent;
	}

/*Slider block */

.maintext-block-serv-wrapper {
    top: 15%;
	}

.slider-overlay-text {
	display: none;
	}

.maintext-block-serv h2 {
	font-size: 19px;
	}

.maintext-block h3 {
	font-size: 24px;
	}

.maintext-block-serv ul li {
	line-height: 15px;
	padding: 5px 0 5px 20px;
	}

.maintext-block-serv ul li:before {
	width: 15px;
	height: 15px;
	background-size: cover;
	top: 6px;
	}

/*Services block*/
.services-item {
	height: 270px;
	padding: 15px;
	}

.services-item a {
	font-size: 18px;
	}

/*Footer */
.logo-footer {
	display: block;
	margin: 0 auto;
  	max-width: 100%;
	}
  
/*sidebar*/
	
.divContent {
	flex: 0 0 70%;
	}
	
.divRight {
    flex: 0 0 30%;
	}
  
/*Rate Us*/

.inner-wrap {
    padding: 30px 2% 60px;
    }

.inner-wrap h2 {
    font-size: 32px;
    }

.google-review img {
    width: 300px !important;
    }

/*Rate Us -- END*/
  
}

@media only screen and (max-width: 975px) {

.inner-logo img {
	width: 100%;
	}

.maintext-block-serv h2 {
	margin: 0px 0 5px 0;
	}

.maintext-block-serv {
	margin: 0;
	}
}

@media only screen and (max-width: 910px) {
.maintext-block-serv h2 {
	font-size: 20px;
	}

.maintext-block-serv ul li a,
.maintext-block-serv ul li {
	font-size: 15px;
	}

.maintext-block h3 {
	font-size: 18px;
	}

.maintext-block-serv-wrapper {
	position: relative;
	top: 0;
	padding: 30px 0;
	}

.maintext-block-serv {
	margin: 0 auto ;
	display: block;
	float: none;
	max-width: 295px;
	}

.slider-block {
	/*background: url(../images/topbg-mob.jpg) no-repeat center;*/
	background-size: cover;
	background: #1c6b99;
	}

table.pe td {
	display: block;
	}

table.pe ul {
	margin: 0;
	}
}

@media only screen and (max-width: 830px) {
.maintext-block h3 {
	font-size: 14px;
	}

.copy-left, .copy-right {
	text-align: center;
	float: left;
	font-size: 14px;
	padding: 0px;
	width: 100%;
	}
	
.copy-right p {
	margin-top: 0;
	}

#map iframe {
	height: 609px;
	}
}

@media screen and (max-width: 800px) {
/* How Are We Doing? */
.thumbs-wrap .item {
    max-width: 35%;
    margin: 0 10px 20px 10px;
    }

.thumbs-wrap .item span {
    font-size: 18px;
    }

/* How Are We Doing? --- END */
}

@media only screen and (max-width: 767px) {

.btn {
	width: 100%;
	max-width: 180px;
	border-radius: 5px;
	padding: 10px 10px;
	font-weight: 600;
	font-size: 14px;
	}
  
.blogs-block .btn {
  	padding: 0;
  	}

.services-block h2 {
	font-size: 28px;
	}

/*Location Block*/
.locations-title h2 {
	font-size: 28px;
	}

.loc h2, .locations-block h2 {
	font-size: 28px;
	}

.loc .address {
	font-size: 18px;
	margin: 5px 0 15px;
	color: #000;
	}

.loc .phone {
	font-size: 22px;
	}

.loc .shedule {
    font-size: 18px;
	}

.loc .loc-note {
    font-size: 16px;
	}

.loc .btn {
	padding: 0;
	}

.loc, .loc-img  {
	max-width: 350px;
	}

/* About block*/
.about-box {
	padding: 15px;
	}

.about-box h2 {
	font-size: 28px;
	}

.about-box h3 {
	font-size: 20px;
	}

.about-block p {
    font-size: 18px;
	}

.about-block ul li {
    font-size: 18px;
	}

/*Doctors block*/
.doctors-box h2 {
	font-size: 28px;
	}

.doctors-box .doctor {
	padding: 20px;
	max-width: 350px;
    }

.doctor a {
	font-size: 18px;
	}

/*Blogs block*/
/*
.blogs-block {
	background: url(../images/blogs-bg-mob.jpg) no-repeat center;
	background-size: cover;
	}
*/

.blogs-block {
    background-image: linear-gradient(to bottom, rgb(12 65 96 / 85%), rgb(12 65 96 / 85%)), url(../images/blogs-bg-mob.jpg);
	background-size: cover;
  	background-position: center;
    background-repeat: no-repeat;
	}

.blogs-block h2 {
	font-size: 28px;
	}

.blogs-list ul li a {
	font-size: 15px;
	}

/*Footer*/
footer {
    padding-bottom: 80px;
	}
  
footer .content {
	text-align: left;
	}

.logo-footer {
	display: block;
    vertical-align: top;
    padding: 30px 0 15px;
    /* max-width: 300px; */
  	text-align: center;
	}

.copy-left, .copy-right {
	float: left;
	font-size: 12px;
    }

footer h4 {
	font-size: 14px;
	}

.logo-footer p {
    font-size: 16px;
	}
  
.quick-links-block ul li ul {
	margin: 3px 0 0 5px;
	}

.quick-links-block ul li , .quick-links-block ul li a , .quick-links-block ul li.a {
	font-size: 14px;
	line-height: 18px;
	}

.bottom-loc-block {
	font-size: 14px;
	line-height: 18px;
	}

.scroll-to-top {
	width: 45px;
    left: 15px;
    bottom: 15px;
	}

.rabutton {
	max-width: 250px;
	bottom: 15px;
	}

.rabutton .buttonrs {
	min-width: 250px;
	font-size: 15px;
	}

.rabutton .buttonrs::before {
	min-width: calc(234px + 16px);
	min-height: calc(36px + 9px);
	}

/*Inner pages*/
.inner-pages .page-header h2 , body.rsform h1 , body.sitemap h1 , .latestItemsCategory h2 {
	font-size: 28px;
	}
  
/*sidebar*/
	
.divContent {
	flex: 0 0 70%;
	}
	
.divRight {
    flex: 0 0 30%;
	}
}

@media only screen and (max-width: 760px) {

#one {
	width: 100%;
	padding-right: 0px;
	}

#two {
	width: 100%;
	}

#map iframe {
	height: 450px;
	}
}


@media only screen and (max-width: 740px) {
.inner-logo {
	max-width: 200px;
	}

.hamburger {
	order: 1;
	}

.top-phone {
	margin: 0;
	width: 100%;
	max-width: 100%;
	order: 2;
	justify-content: center;
	padding-bottom: 10px;
	flex: unset;
    }

.header-wrapper {
	flex: unset;
	flex-direction: row-reverse;
	align-items: flex-end;
	gap: 20px;
	padding: 5px 0 5px 0;
	justify-content: flex-end;
    }

.hamburger-box {
	margin-top: 16px;
    }

nav .content {
	display: flex;
	flex-direction: unset;
	padding: 0 15px;
    }

.mobile-social-icons {
	display: inline-block;
	vertical-align: middle;
	padding: 6px 10px 0px 0;
	}

.header-wrapper .social-btns {
	display: none;
	}
}

@media only screen and (max-width: 730px) {

img.pe , img.se , img.np {
	float: none !important;
	margin: 0 0 10px 0 !important;
	max-width: 100%;
	height: auto;
	}

tbody#rsform_3_page_0 td , tbody#rsform_4_page_0 td {
	display: block;
	}

textarea#Message , tbody#rsform_4_page_0 textarea {
	width: 90%;
	display: block;
	}
}

@media only screen and (max-width: 590px) {
/*sidebar*/
	
.divContent , .divRight {
	flex: 0 0 100%;
	}
	
.divRight .moduletable {
    padding-left: 5px;
	margin-bottom: 60px;
	}
}

@media only screen and (max-width: 550px) {
/*Nav*/

.top-phone {
	order: 2;
	flex-wrap: wrap;
	}

.maintext-block {
	width: 98%;
	}

.maintext-block p {
	font-size: 15px;
	margin-bottom: 1px;
	}

.maintext-block h3 {
	font-size: 15px;
	}

.maintext-block-serv {
	float: none;
	}
  
.nivo-caption {
    position: relative;
	}

.inner-pages .doctor {
	width: 46%;
	font-size: 12px;
	}

/*Footer */
/* .logo-footer {
	display: block;
	margin: 0 auto;
	} */

/*Footer*/
.offices-block {
	display: block;
	}

.office {
	padding-right: 10px;
	padding-bottom: 23px;
	}
  
/* Testimonial Page*/
.testimonial-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 10px 15px;
	}

.testimonial-container .headline {
    margin: 15px 0;
	}

.testimonial-container .star {
    margin: 0 auto;
	}

.testimonial-container p {
    margin: 15px auto 0;
    }

tbody#rsform_5_page_0 td {
	display: block;
	}  
}


@media only screen and (max-width: 440px) {
.hamburger {
	margin: 17px 17px 12px;
    }

}

@media only screen and (max-width: 430px) {

.header-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
	}

.quad-block-wrap {
    padding: 90px 0px 0;
	}

.quad-box.four .quad-text-wrap {
	position: relative;
	top: unset;
	right: unset;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	text-align: center;
	background-color: #daebf2;
	}

.quad-box.four h3 {
	text-align: center;
    }

.quad-box.four p {
	font-size: 16px;
	font-weight: 600;
	text-align: center;
    }

}