body, html {width: 100%; height: 100%; padding: 0; margin: 0;  font-family: 'Lato', sans-serif; font-weight: 400; font-size: 17px; line-height: 1.5; color: #000; -webkit-text-size-adjust: 100%;}
body {overflow-x: hidden;}
a {text-decoration: none; color: #1e87f0; cursor: pointer;}
.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 {
  	display: none !important;
	} 

h2, h3, h4, h5, h6, .fakeh {
    color: #2b4678;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 600;
    }

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

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

.btn-primary {
    background: #01528b;
    color: #fff;
    border-color: #01528b;
	}

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

.btn-primary:hover {
    background: transparent;
    color: #01528b;
	}

.btn-primary:hover a {
    color: #01528b;
	}

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

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

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

.notice {
    text-align: center;
    font-size: 23px;
    padding: 2px 0;
    background: #4b75c3;
    color: #fff;
    text-transform: uppercase;
    }

/*Navbar*/
nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    background: #ffffff;
    transition: all 0.3s;
    box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	}

#homepage nav {
    background: #ffffff;
    position: relative;
    box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	}

#homepage nav.slide {
    background: #ffffff;
    position: fixed;
    box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	}

nav.slide {
    position: fixed;
    background: #ffffff;
    box-shadow: 0 3px 3px rgba(0,0,0,0.2);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
	}

nav.slide.fixed {
    opacity: 1;
    max-height: 2000px;
    overflow: visible;
	}

nav.slide.fixed .content, 
nav.slide.fixed .notice {
    display: none;
    }

nav .content {
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
	}

.socials-header {
    display: flex;
    gap: 7px;
    }

.social-header a {
    color: #83bd49;
    font-size: 18px;
    padding: 7px;
    background: #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    border: 1px solid #83bd49;
    box-sizing: border-box;
    }

.social-header a:hover {    
    border: 2px solid #83bd49;
    }

.inner-logo {
    flex: 2;
    text-align: center;
	}

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

.topmenu {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
    background: #4473c5;
    background: linear-gradient(180deg,rgba(68,115,197,1) 0%,rgba(37,67,119,1) 100%);
	}

.topmenu ul {
    padding: 0;
    margin: 0;
    display: flex;
	}

.topmenu ul li {
    list-style: none;
    position: relative;
	}

.topmenu ul li.parent:after {
    font-family: "Font Awesome 5 Free";
    content: '\f107';
    margin-left: 0;
    font-size: 18px;
    font-weight: 900;
    display: inline-block;
    vertical-align: top;
    margin-top: 0;
    color: #fff;
    position: absolute;
    top: 16px;
    right: 15px;
	}

.topmenu ul li a,
span.nav-header,
span.span-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: 60px;
    font-size: 15px;
    color: #fff;
    padding: 0 15px;
    text-decoration: none;
    transition: 0.3s all;
    text-transform: uppercase;
	}

.topmenu ul li.deeper.parent a:first-child,
.topmenu ul li.deeper.parent span.nav-header:first-child {
    padding-right: 45px;
    }

.topmenu ul li.active ul li a {
    background-color: #79bd47;
	}

.topmenu ul li a:hover,
.topmenu ul li.active a {
    background-color: #79bd47;
	} 

.topmenu ul li.parent ul li a {
    background-color: #ffffff;
    display: block;
    padding: 10px 15px !important;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    border: 1px solid #d4d4d4;
    text-transform: capitalize;
    height: auto;
    white-space: nowrap;
    transition: 0.3s all;
	}

.topmenu ul li.parent ul li a:hover,
.topmenu ul li.parent ul li.active a {
    color: #fff;
    background-color: #164093;
	} 

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

.topmenu ul li.item-968 ul {
    width: 100%;
    }

.topmenu ul li.item-927 ul {
    display: flex;
    width: 400px;
    flex-wrap: wrap;
    }

.topmenu ul li.item-927 ul li {
    flex: 50%;
    }

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

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

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

.top-right {
    width: 100%;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column: 2 / -1;
    max-width: 672px;
    margin: 0 0 0 auto;
	}

.top-socials {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    flex: 1;
    flex-direction: column;
    }

.top-socials span {
    font-family: 'Oswald',sans-serif;
    font-size: 27px;
    font-weight: 400;
    color: #000;
    }

.phone-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    font-family: 'Oswald',sans-serif;
    font-family: 'Oswald',sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #000;
    }

.top-phone {
    margin: 0;
    flex: 1;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 40px;
	}

.top-phone a {
    color: #2b4678;
    }

.top-phone i {
    color: #83bd49;
    margin-right: 10px;
    }

.top-phone a:hover {
    text-decoration: underline;
    }

.hamburger {
    display: none;
	}

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

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

/* Welcome Block */
.welcome-block {
    background: url(../images/welcome-bg.jpg) no-repeat center;
    background-size: cover;
    padding: 50px 0;
    }

.welcome-block .content {
    text-align: center;
    max-width: 1300px;
    }

.welcome-block h2 {
    font-family: 'Oswald',sans-serif;
    text-align: center;
    font-size: 44px;
    line-height: 48px;
    font-weight: 300;
    color: #79bd47;
    margin: 0;
    }

.welcome-block h2 span {
    display: block;
    color: #2b4678;
    }

.welcome-block h3 {
    font-family: 'Lato',sans-serif;
    text-align: center;
    color: #000;
    margin: 15px auto 0;
    font-size: 24px;
    font-weight: 400;
    }

.welcome-block a {
    display: block;
    color: #000000;
    transition: 0.3s all;
    }
    
.welcome-block a:hover {
    opacity: 0.5;
    }

/* Insurance Block */

.insurance-block {
    padding: 50px 0;
    border-top: 1px solid #c3c3c3;
    border-bottom: 1px solid #c3c3c3;
    }

.insurance-block .content {
    max-width: 1300px;
    }

.insurance-block h2 {
    font-family: 'Oswald',sans-serif;
    display: block;
    margin: 0;
    text-align: center;
    font-size: 42px;
    color: #2b4678;
    font-weight: 300;
    }

.insurance-block img {
    display: block;
    margin: 0 auto;
    box-shadow: 20px 5px 15px #dfdfdf;
    }

/* Services Block */
.services-block {
    padding: 50px 0;
    }

.services-block .content {
    max-width: 1700px;
    }

.services-block h2 {
    font-family: 'Oswald',sans-serif;
    text-align: center;
    color: #2b4678;
    font-size: 44px;
    font-weight: 400;
    margin: 0;
    }

.services-block h3 {
    font-family: 'Lato',sans-serif;
    text-align: center;
    color: #000;
    margin: 0;
    font-size: 24px;
    margin: 25px auto;
    font-weight: 400;
    }

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

.services-block .services-wrap .services-item {
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    max-width: 370px;
    border: 1px solid #ebebeb;
    }

.services-block .services-wrap .services-item img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    transition: 0.3s all;
    }

.services-block .services-wrap .services-item span {
    font-family: 'Lato',sans-serif;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2e4b81;
    color: #fff;
    padding: 5px;
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    transition: 0.3s all;
    }

.services-block .services-wrap .services-item:hover span {
    opacity: 0.7;
    }

.services-block .services-wrap .services-item:hover img {
    transform: scale(1.15);
    }

/* Consultation Block */
.consultation-block {
    background: url(../images/consultation-bg.jpg);
    background-attachment: fixed;
    }

.consultation-block .content {
    max-width: 1300px;
    }

.consultation-block h2 {
    display: block;
    font-size: 48px;
    font-family: 'Oswald',sans-serif;
    font-weight: 400;
    color: #fff;
    margin: 0;
    }

.consultation-block h3 {
    color: #ffffff;
    margin: 0;
    font-size: 26px;
    }

.consultation-block .heading-wrap {
    text-align: center;
    padding: 40px 0 80px;
    }

.consultation-block .consultation-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
    background: linear-gradient(to right,rgba(44,41,41,.3) 0%,rgba(44,41,41,.3) 100%);
    }

.consultation-block .consultation-wrap .consultation-item {
    flex: 1 1 50%;
    }

.consultation-block .consultation-wrap h3 {
    position: relative;
    font-size: 26px;
    font-weight: 300;
    color: #fff;
    padding-bottom: 15px;
    margin: 0 auto;
    }

.consultation-block .consultation-wrap h3::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 96px;
    height: 1px;
    background: #fff;
    }

.consultation-block .consultation-wrap h4 {
    color: #fff;
    font-size: 39px;
    font-weight: 700;
    margin: 15px 0;
    }

.consultation-block .consultation-wrap p {
    color: #fff;
    font-size: 18px;
    margin: 10px 0 0;
    }

.consultation-block .consultation-wrap a {
    float: right;
    width: 100%;
    max-width: 340px;
    position: relative;
    display: block;
    background: #f7aa40;
    color: #000;
    box-shadow: 0px 4px 4px rgba(0,0,0,.25);
    line-height: 60px;
    border-radius: 30px;
    font-size: 19px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s all;
    }

.consultation-block .consultation-wrap a:hover {
    opacity: 0.7;
    }

/* Testimonials Block */
.testimonials-block {
    background: url(../images/testimonials-bg.jpg) no-repeat center;
    background-size: cover;
    }

.testimonials-block .content {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px 15px;
    text-align: center;
    max-width: 1270px;
    }

.testimonials-block h2 {
    margin: 0;
    font-family: 'Lato',sans-serif;
    font-size: 39px;
    line-height: 50px;
    font-weight: 400;
    color: #fff;
    }

.testimonials-block .reviews-btn {
    max-width: 400px;
    background: #f0a743;
    margin: 0 auto;
    padding: 10px;
    border-radius: 50px;
    color: #000;
    display: inline-block;
    max-width: 400px;
    width: 100%;
    transition: 0.3s all;
    box-sizing: border-box;
    }

.testimonials-block .reviews-btn:hover {
    opacity: 0.5;    
    }

/* Phone Block */
.phone-block {
    background: url(../images/phone-block-bg.jpg) no-repeat center;
    background-size: cover;
    padding: 80px 0;
    }

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

.phone-block p {
    color: #2a4577;
    font-size: 34px;
    margin: 0;
    font-family: 'Oswald',sans-serif;
    font-weight: 300;
    text-align: center;
    }

.phone-block a {
    font-family: 'Oswald',sans-serif;
    font-weight: 500;
    color: #000000;
    font-size: 52px;
    transition: 0.3s all;
    text-align: center;
    }

.phone-block a:hover {
    opacity: 0.5;
    }

/* Map Block */
.map-block {
    display: flex;
    }

.map-block iframe {
    border: 0;
    width: 100%;
    height: 150px;
    }

/*Locations block*/
.locations-block {
    background: url(../images/location-background.jpg) no-repeat center;
    background-size: cover;
    padding: 50px 0;
	}

.locations-upper-links p {
    color: #374d65;
    font-weight: 400;
    font-size: 32px;
    margin: 20px 0;
    }

.locations-upper-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    max-width: 1150px;
    margin: 0 auto;
    }

.socials-upper {
    display: flex;
    gap: 10px;
    }

.social-upper a {
    color: #2b4678;
    font-size: 24px;
    padding: 10px;
    background: #8ed8ff;
    border-radius: 50%;
    width: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 26px;
    transition: 0.3s;
    }

.social-upper a:hover {
    transform: scale(1.05);
    }

.location-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: rgb(255 255 255 / 80%);
    max-width: 1080px;
    margin: 0 auto;
    padding: 25px;
    border-radius: 35px;
    box-sizing: border-box;
    }

.our-location-title {
    font-size: 42px;
    font-weight: 400;
    margin: 0 0 15px;
    font-family: 'Oswald', sans-serif;
    color: #2b4678;
    font-size: 44px;
    font-weight: 400;
    }

.location-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    }

.location-info-left i {
    color: #2b4678;
    font-size: 24px;
    padding: 10px;
    background: #8ed8ff;
    border-radius: 50%;
    width: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 26px;
    transition: 0.3s;
    }

.location-info-right h3 {
    margin: 0;
    }

.location-info-right p {
    margin: 0;
    }

.location-info-right a {
    color: #000;
    }

.locations-lower-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    border-top: 1px solid;
    }

.locations-lower-links p {
    color: #000;
    font-weight: 600;
    font-size: 26px;
    }

.socials-lower {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    }

.social-lower a {
    color: #2b4678;
    font-size: 24px;
    padding: 10px;
    background: #8ed8ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    transition: 0.3s;
    }

.social-lower a:hover {
    transform: scale(1.05);
    }

.location-wrap-right {
    /* width: 550px; */
    height: 350px;
    flex: 1 1 0;
    }

.location-wrap-left {
    flex: 1 1 0;
    }

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

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

.blogs-block h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 400;
    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-color: #2a4678;
    padding: 15px 0 0;
	}

footer .copyright-wrap {
    background-color: #122f65;
    }

footer .content {
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
	}

footer .content.first-block {
    align-items: center;
    justify-content: center;
    }

.logo-footer {
    filter: brightness(0) invert(1);
    }

/* .logo-footer {
    display: inline-block;
    vertical-align: middle;
    padding: 30px;
    max-width: 150px;
	}

.quick-links-block {
    display: inline-block;
    vertical-align: middle;
    padding: 70px;
    text-align: left;
    display: none;
	}

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

.footer-rate a {
    color: #fff;
    }

.footer-rate a:hover {
    text-decoration: underline;
    }

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

.quick-links-block ul li {
    display: block;
    list-style: none;
    padding: 0;
	}

.quick-links-block ul li a {
    color: #ffffff;
    font-size: 22px;
    line-height: 32px;
    text-decoration: none;
	}

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

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

.bottom-loc-block {
    display: inline-block;
    vertical-align: middle;
    padding: 30px;
    text-align: left;
    color: #ffffff;
    font-size: 18px;
    line-height: normal;
	} */

.bottom-block {
    display: inline-block;
    padding: 30px;
    vertical-align: top;
    }

.bottom-block h3 {
    font-size: 30px;
    color: #ffffff;
    margin: 0;
    text-align: left;
    font-weight: 400;
    font-family: 'Oswald',sans-serif;
    }

.bottom-block p {
    margin: 0;
    color: #fff;
    text-align: left;
    }

.offices-block a {
    color: #ffffff;
    text-decoration: underline;
    }

.offices-block a:hover {
    text-decoration: none;
    }

.office-hours .table-cell {
    color: #ffffff;
    }   
    
.office-hours .table-cell.day {
    width: 100px;
    }  

.socials-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    }

.social-footer a {
    color: #ffffff;
    font-size: 22px;
    padding: 7px;
    background: transparent;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    border: 1px solid #ffffff;
    box-sizing: border-box;
    transition: 0.3s all;
    }

.social-footer a:hover {
    border: 2px solid #ffffff;    
    }

.white-text {
    color: #fff;
	} 

.offices-block {
    display: flex;
	}

/* .office {
    padding-right: 30px;
	} */

.copy-left , .copy-right {
    text-align: left;
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
    padding: 15px;
	}

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

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

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

.copy-left {
    float: left;
	}

.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-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #fff;
    background: #b71c1c;
    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 #bf0000;
    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: #da0000;
    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*/
.social-btns p , .top-phone p , .connect-block p , .about-block h2 p , .topline p {
    display: inline-block;
    padding: 0;
    margin: 0;
	}

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

.social-btns a:hover {
    color: #3dc1fd;
	}

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


.google-review img:hover {
    transform: scale(1.02);
    transition: all 300ms ease;
    }

/*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%;
	height: auto;
    }

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

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

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

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

.inner-pages a {
    color: #01528b;
	}

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

.inner-pages .page-header {
    margin-bottom: 20px;
	}

.inner-pages .page-header h2 {
    font-size: 48px;
    color: #01528b;
    text-align: center;
    font-weight: 400;
    position: relative;
    padding: 20px 0;
    margin: 0 auto 20px auto;
    position: relative;
	}

.inner-pages .page-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    height: 2px;
    background-color: #a2c9e5;
	}

.one {
    float: left;
    width: 49%;
    padding-right: 2%;
    margin-bottom: 20px;
	}

.two {
    width: 49%;
    float: right;
    margin-bottom: 20px;
	}

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

.one .address {
    float: left;
    width: 45%;
    margin-bottom: 20px;
	}

.week {
    float: left;
    width: 105px;
    margin-bottom: 20px;
	}

.hours {
    float: left;
    width: 120px;
    margin-bottom: 20px;
	}
	
.coloredtext.semi {
	font-weight: 600;
	}

.inner-pages .doctor {
    float: right;
    text-align: center;
    margin: 0 0 5px 10px;
	max-width: 250px;
    font-size: 20px;
    color: #01528b;
    font-weight: 500;
	}

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

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

.video-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin: 25px auto;
	}
	
.video-item {
	max-width: 560px;
	width: 100%;
	text-align: center;
	}

.video-content {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; 
	height: 0;
	}

.video-content iframe{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	} 

a.learn-more {
    float: right;
    margin-top: 35px;
    font-weight: 700;
    color: #1f465e;
    text-decoration: underline;
    }

a.learn-more:hover {
    opacity: 0.7;
    }

.featured-interior {
    position: relative;
    padding: 4px;
    margin: 0 0 20px;
    background: #f5f5f5;
    border: 1px solid #d5e0e5;
    box-shadow: 0 10px 6px -6px #0000001c;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    max-width: 876px;
    }

.featured-interior img {
    width: 100%;
    }

.form-btn-interior {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: block;
    max-width: 220px;
    background: #f7aa40;
    color: #000 !important;
    padding: 9px 16px;
    font-size: 16px;
    margin: 10px 0 0;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    transition: 0.3s all;
    }

.form-btn-interior:hover {
    opacity: 0.5;
    }

p.cta {
    text-align: center;
    font-style: italic;
    font-weight: 700;
    color: #900;
    }

.phright {
    float: right;
    margin: 0 0 20px 20px;
    border: 2px solid #3a97d8;
    border-radius: 5px;
    }

.phleft {
    float: left;
    margin: 10px 20px 20px 0;
    border: 2px solid #3a97d8;
    border-radius: 5px;
    }

 .form-btn {
    display: block;
    width: 100%;
    max-width: 220px;
    background: #f7aa40;
    color: #000 !important;
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 45px;
    text-align: center;
    font-weight: 700;
    transition: 0.3s all;
    margin: 0 auto;
    }

.form-btn:hover {
    opacity: 0.5;
    }

.items-collum-wrap {
    display: flex;
    gap: 30px;
    }

.items-collum-wrap .item-collum {
    flex: 50%;
    }

.vright {
    max-width: 400px;
    border: 2px solid #f1f1f1;
    box-shadow: 0 10px 6px -6px #0000001c;
    float: right;
    margin: 20px 0 20px 20px;
    }

.video-wrapper {
    display: flex;
    max-width: 550px;
    font-size: 22px;
    background: #2c7cb5;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    }

.video-wrapper video {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    }

.doubleul {
    margin-right: 30px;
    float: left;
    margin-top: 0;
    margin-bottom: 0;
    }

.collapsible {
    background-color: #3e87b4;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    margin: 15px auto 0;
    }
    
.collapsible-content .active, .collapsible:hover {
    background-color: #2e688d;
    }
    
.collapsible-content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
    }

.rev4 {
    font-weight: 500;
    font-size: 26px;
    text-align: center;
    }

.rev3 {
    text-align: center;
    font-style: italic;
    font-size: 18px;
    }

a.review-us {
    max-width: 288px;
    width: 100%;
    background: #3663bf;
    color: #fff;
    border-radius: 4px;
    padding: 12px 10px;
    margin: 20px auto 25px auto;
    display: block;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s all;
    }

a.review-us:hover {
    opacity: 0.7;
    }

.testimonials-item {
    border: 1px solid #e6e6e6;
    border-left: 4px solid #16455e;
    padding: 20px;
    background: #f5f5f5;
    margin-bottom: 30px;
    box-shadow: 0 10px 6px -6px #0000001c;
    }

.testimonials-item h3 {
    color: #033663;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 4px;
    font-size: 25px;
    line-height: 1.5;
    }

.testimonials-item .stars {
    margin-bottom: 7px;
    color: #ffd400;
    font-size: 18px;
    }

.testimonials-item p {
    font-size: 18px;
    margin: 0 0 20px;
    font-style: italic;
    color: #333;
    line-height: 1.5;
    }

.testimonials-item cite {
    font-weight: 400;
    font-style: normal;
    }

span.about-title {
    font-size: 30px;
    color: #015692;
    }

ul.top-doctor-list {
    text-align: left;
    margin: 10px auto;
    }

ul.top-doctor-list li {
    list-style: none;
    margin-bottom: 8px;
    font-size: 17px;
    }

ul.top-doctor-list i {
    color: #8bbc4b;
    }

span.recognized-section-smaller {
    color: #334a78;
    font-size: 22px;
    }

.readmore .btn {
  max-width:100%!important
}

.contact-title {
    position: relative;
    display: block;
    text-align: center;
    font-size: 38px;
    margin: 0 0 30px;
    padding-bottom: 15px;
    color: #000;
    }

.contact-title span {
    display: block;
    font-weight: 400;
    font-size: 19px;
    margin-top: 6px;
    }

.contact-title:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 55px;
    height: 3px;
    background: #095395;
    }

.contact-wrap .contact-item {
    position: relative;
    padding-left: 60px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 28px;
    padding-bottom: 28px;
    margin-right: 40px;
    }

.contact-wrap .contact-item .icon {
    position: absolute;
    left: 0;
    width: 45px;
    height: 45px;
    background: #16455e;
    border-radius: 50%;
    text-align: center;
    }

.contact-wrap .contact-item .icon i {
    color: #fff;
    margin-top: 14px;
    margin-left: 1px;
    display: block;
    font-size: 19px;
    }

.contact-wrap .contact-item .text {
    display: inline-block;
    }

.contact-wrap .contact-item .text span {
    display: block;
    font-weight: 600;
    color: #000;
    }

.contact-wrap .contact-item .text p {
    margin: 0;
    }

.contact-wrap .contact-item .text a {
    color: #9bb951;
    font-weight: 700;
    }

span.form-title {
    display: block;
    text-align: center;
    font-size: 25px;
    }

span.form-sub {
    text-align: center;
    display: block;
    }

.contact-block-wrap {
    display: flex;
    }

.contact-form-item {
    flex: 1;
    }

tbody#rsform_6_page_0 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    }

tbody#rsform_6_page_0 td {
    padding: 5px;
    font-weight: 600;
    display: flex;
    box-sizing: border-box;
    }

tbody#rsform_6_page_0 .rsform-block td:nth-child(1) {
    display: none;
    }

tbody#rsform_6_page_0 tr {
    display: flex;
    flex-direction: column;
    }

tbody#rsform_6_page_0 input,
tbody#rsform_6_page_0 textarea {
    width: 100% !important;
    padding: 10px 5px;
    font-family: 'Lato', sans-serif;
    }

tbody#rsform_6_page_0 .rsform-block-your-name, 
tbody#rsform_6_page_0 .rsform-block-your-email {
    flex: 50%;
    }
tbody#rsform_6_page_0 .rsform-block-phone,
tbody#rsform_6_page_0 .rsform-block-message {
    flex: 100%;
    }

tbody#rsform_6_page_0 p#rsfp-counter-64 {
    display: none;
    }   

tbody#rsform_6_page_0 input#submit {
    background: #01528b;
    color: #fff;
    border-color: #01528b;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid transparent;
    border-radius: 50px;
    background: #f7aa40;
    margin: 0px auto;
    cursor: pointer;
    color: #ffffff;
    transition: 0.3s all;
    }

tbody#rsform_6_page_0 input#submit:hover {
    background: #fff;
    color: #f7aa40;
    border-color: #fff;
    border: 2px solid;
    cursor: pointer;
    }

.sidebar-title {
    position: relative;
    color: #163860;
    font-weight: 400;
    font-size: 19px;
    line-height: 24px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #16455e;
    }

.doc-wrap {
    background: #f5f5f5;
    border: 1px solid #d6d6d6;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    margin: 0 auto 20px auto;
    border-radius: 5px;
    }

.doc-wrap p {
    font-size: 16px;
    font-style: italic;
    }

.doc-name {
    font-weight: 400;
    font-size: 19px;
    border-left: 2px solid #16455e;
    padding-left: 10px;
    }

.doc-phone {
    text-align: center;
    margin-top: 10px;
    font-size: 21px;
    line-height: 33px;
    color: #4d7b41;
    font-style: normal;
    font-weight: 400;
    }

.doc-phone a.cta {
    color: #000;
    }

.experts-wrap {
    border: 1px solid #d6d6d6;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    margin: 0 auto 20px auto;
    background: #3998e9;
    border-radius: 5px;
    }

.experts-title {
    position: relative;
    color: #fff;
    font-weight: 600;
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 20px;
    text-align: center;
    }

.experts-title span {
    display: block;
    font-style: normal;
    font-size: 19px;
    font-weight: 600;
    }

.divRight.q-form {
    flex: 0 0 315px;
    }

.divRight.q-form .moduletable {
    margin-top: 25px;
    padding-left: 15px;
    }

.divContent.q-form {
    flex: 1 1 0;
    }

.inner-pages .page-header {
    margin: 0 0 25px;
    }

.inner-pages .page-header h2 {
    display: none;
    }

tbody#rsform_7_page_0 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    }

tbody#rsform_7_page_0 td {
    padding: 3px;
    font-weight: 600;
    display: flex;
    box-sizing: border-box;
    }

tbody#rsform_7_page_0 .rsform-block td:nth-child(1) {
    display: none;
    }

tbody#rsform_7_page_0 tr {
    display: flex;
    flex-direction: column;
    }

tbody#rsform_7_page_0 input,
tbody#rsform_7_page_0 textarea {
    width: 100% !important;
    padding: 10px 5px;
    font-family: 'Lato', sans-serif;
    border: none;
    }

tbody#rsform_7_page_0 .rsform-block-your-name, 
tbody#rsform_7_page_0 .rsform-block-your-email,
tbody#rsform_7_page_0 .rsform-block-phone,
tbody#rsform_7_page_0 .rsform-block-message {
    flex: 100%;
    }

tbody#rsform_7_page_0 p#rsfp-counter-70 {
    display: none;
    }   

tbody#rsform_7_page_0 input#submit {
    background: #01528b;
    color: #fff;
    border-color: #01528b;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid transparent;
    border-radius: 50px;
    background: #f7aa40;
    margin: 0px auto;
    cursor: pointer;
    color: #ffffff;
    transition: 0.3s all;
    }

tbody#rsform_7_page_0 input#submit:hover {
    background: #fff;
    color: #f7aa40;
    border-color: #fff;
    border: 2px solid;
    cursor: pointer;
    }

.slide-title {
    font-family: 'Oswald',sans-serif;
    color: #000;
    font-weight: 300;
    font-size: 52px !important;
    line-height: 1 !important;
    text-align: center;
    }

.header-wrap ul {
    list-style: none !important;
    margin: 20px 0 !important;
    padding-left: 30px !important;
    text-align: left !important;
    }

.header-wrap ul li {
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 24px !important;
    }

ul.doubleul {
    float: left !important;
    }

.doubleul2 {
    float: left !important;
    margin-top: 0 !important;
    }

.slide-caption p {
    font-size: 18px !important;
    line-height: 25px !important;
    color: #000 !important;
    text-align: center !important;
    margin: 0 0 20px !important;
    }

.slide-caption p.white,
.slide-title.white {
    color: #fff !important;
    }

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

div.latestItemsCategory h2 {
   display: none;
	}

h2.latestItemTitle a {
    color: #01528b;
	}

#k2Container {
    padding-top: 30px;
	}

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

.formTableLayout {
  	margin: 0 auto;
	}

.formTableLayout input#Send, .formTableLayout input#submit {
    background: #01528b;
    color: #fff;
    border-color: #01528b;
    padding: 5px 30px;
    border-radius: 5px;
    font-size: 19px;
    font-weight: bold;
    border: 2px solid transparent;
	}

.formTableLayout input#Send:hover, .formTableLayout input#submit:hover {
    background: #fff;
    color: #01528b;
    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;
	}

.osmap-items ul li .even {
    padding: 2px 0 !important;
	}

table.pe ul {
	margin: 0;
	}

/*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: right;
    width: 30px;
	}

div.genericItemReadMore {
    display: none !important;
	}

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

/* @media only screen and (max-width: 1800px) {
.about-block-wrap {
    max-width: 550px;
    position: absolute;
    top: 150px;
    right: 10%;
    }
} */

/* @media only screen and (max-width: 1700px) {
footer {
    padding-bottom: 140px;
    }
} */

/* @media only screen and (max-width: 1620px) {
.about-block-wrap {
    max-width: 550px;
    position: absolute;
    top: 150px;
    right: 5%;
    }
} */

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

.topmenu ul li.parent ul li a {
    font-size: 14px;
    }

.topmenu ul li.deeper.parent a:first-child,
.topmenu ul li.deeper.parent span.nav-header:first-child {
    padding-right: 25px;
    }

.topmenu ul li.parent:after {
    font-size: 12px;
    top: 17px;
    right: 10px;
    }

/*Header*/
/* .inner-logo {
    max-width: 250px;
    } */

/* .top-right {
    margin: 20px 0px 0 auto;
    }

.top-phone, .top-phone a {
    margin-right: 5px;
    } */
    
/*Slider*/

/* .slider-overlay-wrap {
    max-width: 961px;
    margin: 0 auto;
    }

.overlay-upper-left h3 {
    font-size: 28px;
    }

.overlay-upper-left ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    margin: 14px 0;
    font-weight: 500;
    }

.overlay-upper-left ul li {
    font-size: 18px;
    margin: 10px 0;
    } */

/* .overlay-button {
    font-size: 18px;
    width: 280px;
    font-weight: bold;
    height: 45px;
    } */

/* .slider-overlay-lower h3 {
    font-size: 72px;
    } */

/*About Us*/
/* .about-block-wrap {
    top: 100px;
    left: 25px;
    }

.about-block {
    background: url(../images/about-us-background.jpg) no-repeat right;
    height: 500px;
    background-size: cover;
    }

.about-block-wrap {
    top: 20px;
    left: 25px;
    right: 25px;
    max-width: unset;
    text-align: center;
    background: #ffffff7d;
    padding: 25px;
    border-radius: 40px;
    } */

}

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

    .topmenu ul li.item-927 ul {
    width: 325px;
    }
}

@media only screen and (max-width: 1250px) {
/*Inner pages*/
.one .address {
	width: 100%;
	}

/* .about-block-wrap p {
    color: #000000;
    } */
}

@media only screen and (max-width: 1200px) {
/* .inner-logo {
    max-width: 170px;
    }

.topmenu.top-right-inner {
    display: none;
    } */

/*Navbar*/
.topmenu-wrap {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    background: #4473c5;
    background: linear-gradient(180deg,rgba(68,115,197,1) 0%,rgba(37,67,119,1) 100%);
    }

.hamburger {
    display: inline-block;
    position: relative;
    z-index: 9002;
    margin: 20px 20px 15px;
	}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    background-color: #ffffff;
    }
	
body .accessib-block {
    top: 30% !important;
	}

nav.slide {
	max-height: 3000px;
	overflow: visible;
	opacity: 1;
	}

.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: #2250a5;
    transition: all 0.3s;
	margin: 0;
    text-align: left;
	}

.topmenu.active {
	top: 0;
	}

.topmenu ul {
	display: block;
	padding: 40px 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.span-separator {
	font-size: 15px;
    height: 40px;
	}

.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: none;
    }

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

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

.topmenu ul li a, span.nav-header, span.span-separator, .topmenu ul li.parent ul li a {
    font-size: 15px;
    background: transparent;
    color: #fff;
    border: none;
    text-align: left;
    justify-content: flex-start;
    }

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

.topmenu ul li:hover ul {
	overflow-y: visible;
	padding: 5px 0 0 0;
	}
	
.hamburger.hamburger--slider.is-active {
	position: fixed;
	right: 0;
	top: 15px !important;
	}
	
.inner-nav.slide {display: none;}

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

nav .content {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    }

.top-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0 25px 10px;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    order: 2;
    }

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

/*Location*/
.locations-upper-links {
    max-width: 580px;
    }

.location-wrap {
    flex-direction: column;
    max-width: 580px;
    /* padding: 10px; */
    }

.location-wrap-right {
    flex: auto;
    width: 100%;
    }
}

@media only screen and (max-width: 1080px) {
/*Footer*/
/* .logo-footer {
    padding: 30px;
    } */

/* .quick-links-block,
.bottom-loc-block {
    padding: 30px;
    } */

/* footer h4 {
    font-size: 20px;
    } */

/* .bottom-loc-block,
.quick-links-block ul li a {
    font-size: 18px;
    line-height: 26px;
    } */
  
/*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;
	height: auto !important;
    }

/*Rate Us -- END*/
}

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

/*Slider*/
/*
.slider-overlay {
    position: relative;
    background: #01528b;
    bottom: unset;
    left: unset;
    width: 100%;
    max-width: unset;
    }

.slider-overlay-upper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    }

.slider-overlay-lower h3 {
    font-size: 70px;
    padding-bottom: 0;
    position: absolute;
    top: -230px;
    left: 30px;
    max-width: 315px;
    }

.overlay-upper-left ul {
    margin: 20px 0 0;
    }

.slider-overlay {
    padding: 30px 0 0;
    }

.overlay-upper-left ul li::before {
    height: 15px;
    width: 15px;
    }

.overlay-upper-left h3 {
    color: #fff;
    font-size: 26px;
    }
*/

.overlay-upper-left h3 {
    font-size: 24px;
    white-space: break-spaces;
    text-align: center;
    max-width: 270px;
    margin: 0 auto;
    }

.overlay-upper-left ul {
    flex-direction: column;
    max-width: 195px;
    margin: 0 auto;
    align-items: flex-start;
    gap: 0;
    }

.about-block {
    height: 590px;
    }
/*
.about-block-wrap {
    max-width: 600px;
    }*/

.about-block-wrap h3 {
    font-size: 34px;
    }

.about-block-wrap p {
    font-size: 16px;
    line-height: 24px;
    }
}

@media only screen and (max-width: 930px) {
table.pe td {
	display: block;
	}

table.pe ul {
	margin: 0;
	}
}

@media only screen and (max-width: 800px) {
body {
	font-size: 16px;
	}

.notice {
    font-size: 18px;
    }

nav .content {
    flex-direction: column;
    }

.inner-logo {
    order: -1;
    }

.top-phone {
    align-items: center;
    padding-bottom: 0;
    }

.phone-wrap {
    align-items: center;
    }

.top-socials {
    display: none;
    }

.welcome-block h2,
.insurance-block h2,
.services-block h2,
.consultation-block h2,
.our-location-title,
.testimonials-block h2,
.phone-block a {
    font-size: 36px;
    line-height: 40px;
    }

.services-block h3,
.consultation-block h3,
.phone-block p,
.bottom-block h3,
.location-info-right h3 {
    font-size: 22px;
    }

.services-block .services-wrap .services-item span {
    font-size: 20px;
    }

.our-location-title {
    text-align: center;
    }

.consultation-block .heading-wrap {
    padding: 40px 0;
    }

.consultation-block .consultation-wrap .consultation-item {
    flex: 1 1 100%;
    text-align: center;
    }

.consultation-block .consultation-wrap h4 {
    font-size: 32px;
    }

.consultation-block .consultation-wrap h3::after {
    width: 100%;
    }

.consultation-block .consultation-wrap {
    flex-direction: column;
    }

.consultation-block .consultation-wrap a {
    font-size: 18px;
    padding: 0 15px;
    max-width: max-content;
    }

.divRight.q-form {
    flex: 0 0 100%;
    }

.divRight.q-form .moduletable {
    margin: 25px auto;
    padding: 0;
    }

.location-info {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    }

/*Header*/
/* .social-header a {
    font-size: 16px;
    padding: 5px;
    width: 18px;
    height: 18px;
    }

.top-phone, .top-phone a {
    font-size: 28px;
    } */

/* body .accessib-block {
    top: 40% !important;
  	} */
  
footer .content {
    justify-content: center;
    flex-wrap: wrap;
    }

footer .copyright-wrap {
    padding-bottom: 150px;
    }

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

.scroll-to-top {
	width: 45px;
	bottom: 15px;
	left: 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);
    }

.vright {
    float: none;
    margin: 20px auto;
    }
  
/* 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: 768px) {

.formCaption {
	width:100% !important;
	}

input#Email , input#Your_Email {
	width:90% !important;
	}

form#userForm textarea {
	width:90% !important;
	} 
} */

@media only screen and (max-width: 767px) {
.btn {
 	width: 100%;
	max-width: 180px;
	border-radius: 5px;
	padding: 10px 10px;
	font-weight: 600;
	font-size: 15px;
	}
	
.btn-primary a {
    padding: 10px 50px;
	}

.slider-overlay-lower h3 {
    font-size: 46px;
    top: -185px;
    }

.about-block {
    background: #fff;
    height: auto;
    padding: 50px 0 0;
    }

.about-block-img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto 30px;
    }

.about-block-wrap {
    max-width: 100%;
    border-radius: 0;
    position: relative;
    top: auto;
    left: auto;
    padding: 0 15px;
    box-sizing: border-box;
    right: auto;
    margin: 0 auto;
    padding: 20px;
    background: none;
    }   

.about-block-wrap h3 {
    font-size: 28px;
    }

.homepage-service-title {
    font-size: 20px;
    }

.homepage-services-button {
    font-size: 18px;
    height: auto;
    width: auto;
    max-width: 200px;
    padding: 10px;
    }

.testimonial-block h3 {
    font-size: 28px;
    }

div#n2-ss-2 .n2-font-c02e4fb74f8f9ac11e018e2340185a06-paragraph,
div#n2-ss-2 .n2-font-179873a640c5bc67c54e5ff387c0ace3-paragraph {
    font-size: 16px !important;
    }

.locations-upper-links p {
    font-size: 28px;
    }

/* .our-location-title {
    font-size: 28px;
    } */

.locations-lower-links p {
    font-size: 22px;
    }

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

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

/*Footer*/
/* footer {
    padding-bottom: 80px;
    } */

footer .content {
	text-align: center;
	}

/* .logo-footer {
    display: block;
    padding: 30px 0 15px;
    max-width: 100%;
    margin: 0 auto;
    } */

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

footer h4 {
	font-size: 14px;
	}

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

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

/*Inner pages*/
.inner-pages .page-header h2 {
	font-size: 28px;
    }

.one {
	float: none;
	width: 100%;
	padding-right: 0;
    }

.two {
	float: none;
	width: 100%;
	margin-bottom: 20px;
	}

.phleft, .phright {
    float: none;
    margin: 0 auto 20px auto;
    display: block;
    }

.items-collum-wrap {
    display: block;
    }

.items-collum-wrap hr {
    display: none;
    }

.images-wrap.buttons-wrap {
    flex-direction: column;
    }

span.about-title {
    text-align: center;
    display: block;
    }
  
/*sidebar*/
	
.divContent {
	flex: 0 0 70%;
	}
	
.divRight {
    flex: 0 0 30%;
	}
}

@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;
	}
}


@media only screen and (max-width: 650px) {
/*Nav*/
/*
nav .content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    }

.inner-logo {
    max-width: 250px;
    order: 1;
    margin: 7px auto 7px 0;
    }

.top-right {
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
    text-align: center;
    }

.top-phone, .top-phone a {
    margin-right: 10px;
    display: block;
    }

.hamburger {
    position: fixed;
    top: 78px;
    right: 0px;
    }

nav .top-line .dr-name-wrap {
    font-size: 24px;
    order: 1;
    }*/

/*Locations*/
.locations-upper-links {
    flex-direction: column;
    margin-bottom: 15px;
    }

.locations-upper-links p {
    margin-bottom: 0;
    }

.locations-lower-links {
    flex-direction: column;
    }

.locations-lower-links p {
    margin-bottom: 0;
    }

.location-wrap-right {
    width: 100%;
    height: 400px;
    }

}

@media only screen and (max-width: 630px) {
/* .about-block {
    background-position: center;
    height: 1000px;
    } */

/*Inner pages*/
/* .inner-pages .doctor {
	float: none;
	text-align: center;
	margin: 0 auto 10px auto;
    } */
}

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

@media only screen and (max-width: 550px) {
/* .slider-overlay {
    display: flex;
    flex-direction: column-reverse;
    gap: 25px;
    }

.slider-overlay-lower h3 {
    font-size: 38px;
    padding-bottom: 0;
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    text-align: center;
    order: -1;
    } */

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

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

/* .logo-footer {
    padding: 15px;
    } */

/* .bottom-loc-block {
    padding: 15px;
    }

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

.rsform-input-box {
  	width: 65% !important; 
  	display: block;
  	} */

/* table#cal4_0 tbody td {
	display: table-cell;
	} */
  
/* .office {
    padding-right: 10px;
    margin-bottom: 25px;
	} */
	
/* .bottom-loc-block {
    padding: 30px 0 0px 30px;
	} */
  
/* tbody#rsform_5_page_0 td {
	display: block;
	} */

.form-btn-interior {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    padding: 11px 10px;
    font-size: 18px;
    border-radius: 0;
    } 

.doubleul {
    margin-bottom: 0;
    }
}

/* @media only screen and (max-width: 430px) {
    
.inner-nav.slide.fixed .top-socials {display:none;}
    
    
.homepage-services-button {
    width: 100%;
    }

footer .content {
    text-align: center;
    }
} */


.np-btn {
    color: #fff !important;
    background: #4473c5;
    border: 2px solid #4473c5;
    border-radius: 7px;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 600;
    display: block;
    text-align: center;
    max-width: 155px;
}

.np-btn:hover {
    color: #4473c5 !important;
    background: transparent;
}

.blogbfa .page-header h2 {
	display:block!important;
  	font-size: 26px;
 	text-align: left;
  	padding: 30px 0 5px 0;
}

.readmore .btn {
  display: block;
    float: right;
    width: 160px;
    background: #418fc2;
    font-size: 16px;
    line-height: 46px;
    margin: 20px 0;
    font-weight: 300;
    color: #fff;
    border: 1px solid #418fc2;
    padding: 0 10px;
    text-align: center;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    -ms-transition: all .2s linear;
    transition: all .2s linear;
  border-radius: 0;
	}

.readmore .btn:hover {
	background: #233f51
	}

.pull-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 35px;
  	max-width: 300px;
	}

.pull-left img {
 	max-width:300px;
	object-fit: cover;
 	min-height: 200px;
    border-radius: 5px;     
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
     transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

.pull-left img:hover {
	transform: scale(1.02); 
  	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
	}

#bfa .pull-none.item-image {
    position: relative;
    padding: 4px;
    margin: 0 0 20px;
    background: #f5f5f5;
    border: 1px solid #d5e0e5;
    box-shadow: 0 10px 6px -6px #0000001c;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    max-width:100%;
}

#bfa .page-header h2[itemprop="headline"]  {
    font-size: 32px;
    color: #2b4678;
    display:block!important;
	text-align:left;
 	line-height: 1.2;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 600;
 	}

#bfa .page-header h2::after {
	display:none
	}

div[itemprop="blogPost"] p {
  	text-align:justify;
	}

.blogbfa {
  display: flex;
  flex-direction: column; /* stack children vertically */
	}

.blogbfa .items-row {
  flex: 0 0 100%;   /* take full width */
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 30px;
	}

ul.pagenav {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
	}

ul.pagenav li {
  list-style: none;
	}


@media screen and (max-width: 740px) {
.pull-left {
     float: none;
     margin: 0 auto 10px auto;
     display: block;
     max-width: 300px;
    }
}