/* @font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/Lato/Lato-Light.ttf) format("truetype");
}
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Lato/Lato-Regular.ttf) format("truetype");
}
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Lato/Lato-Bold.ttf) format("truetype");
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Montserrat/Montserrat-Regular.ttf) format("truetype");
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/Montserrat/Montserrat-Medium.ttf) format("truetype");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-Light.ttf) format("truetype");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-Regular.ttf) format("truetype");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-Medium.ttf) format("truetype");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-SemiBold.ttf) format("truetype");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-Bold.ttf) format("truetype");
} */


body,
html {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #000;
    font-variant-numeric: lining-nums;
    -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;
}

#system-message {
    display: none !important;
}

.activeFeedbackField {
    display: inline-block;
    position: relative;
    width: 0;
    overflow: hidden;
}

.translate {
    height: 33px;
}
.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: 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: #efe7da;
    color: #000000;
    border-color: #000000;
}

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

.btn-primary:hover {
    background: #ffffff;
    color: #000000;
}

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

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

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

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

/*Navbar*/

/*Navbar topinfo*/
.top-information {
    background: #ffffff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 5px;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: center;
}

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

.ti a {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.ti a:hover {
    text-decoration: underline;
}

/*Navbar topsocials*/
.top-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 10px auto 0;
}
.top-right .top-socials:first-child {
    height: 35px;
}

.top-socials a {
    transition: 0.3s all;
    max-width: 23px;
    display: flex;
}

.top-socials a:hover {
    transform: scale(1.1);
}

.top-socials a img {
    width: 100%;
    height: auto;
}

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

#homepage nav {
    background: rgba(255, 255, 255, 0.93);
    position: relative;
}

#homepage nav.slide {
    background: #ffffff;
    position: fixed;
}

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 .content {
    max-width: 3000px;
    display: flex;
    align-items: center;
    padding: 0;
}

.inner-logo {
    max-width: 420px;
    padding: 10px 15px;
    display: inline-block;
    vertical-align: middle;
}

.inner-logo a {
    display: flex;
}

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

.mobile-logo {
    display: none;
}

.topmenu {
    margin: 0 auto 0 auto;
}

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

.topmenu li {
    list-style: none;
    position: relative;
    padding: 0 2px 0px 0;
    border-right: 1px solid #8e8e8e;
}

.topmenu li:last-child,
.topmenu li ul li {
    border-right: none;
}

.topmenu li.parent:after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 0;
    height: 0;
    margin-right: 8px;
    vertical-align: middle;
    color: #7f7f7f;
    border-top: 4px solid #7f7f7f;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.topmenu li a,
span.nav-header,
span.span-separator {
    text-decoration: none;
    text-transform: none;
    font-size: 20px;
    font-weight: 500;
    color: #7f7f7f;
    transition: all 0.3s;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 3px;
}

.topmenu li.parent a {
    padding: 6px 20px 6px 12px;
}

.topmenu li.active li a {
    color: #c4b07d;
    /*border-bottom: 3px solid transparent;*/
}

.topmenu li a:hover,
.topmenu li.active a,
.topmenu li li a:hover,
.topmenu li.active li a:hover,
.topmenu li li.active a {
    color: #c4b07d;
    /*border-bottom: 3px solid #7f7f7f;*/
}

.topmenu li.parent li a {
    padding: 6px 12px;
    color: #7f7f7f;
}

.topmenu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    display: block;
    background: #ffffff;
    max-height: 0;
    overflow-y: hidden;
    transition: all 0.2s;
}

nav.fixed .topmenu li ul {
    background: #ffffff;
}

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

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

.top-right {
    margin: 0 10px 0 auto;
    text-align: right;
}

.top-phone,
.top-phone a {
    display: inline-block;
    vertical-align: top;
    font-size: 34px;
    font-weight: 500;
    color: #fff;
}

.top-phone {
    /*margin: -3px 10px 0 0;*/
    margin: -1px 10px 0 0;
}

.top-loc {
    color: #cac9c9;
    font-size: 20px;
    display: block;
    margin-right: 8px;
}

nav .social-btns {
    display: inline-flex;
    margin-top: 4px;
}

nav .social-btn {
    margin-right: 5px;
    cursor: pointer;
    transition: all 0.3s;
    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: 32px;
    height: 32px;
    white-space: nowrap;
    margin-right: 5px;
}

nav .fb-wrap iframe,
nav .fb-wrap .fb-like {
    width: 32px !important;
    height: 32px !important;
    overflow: hidden;
}

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;
}
/*
.topline {
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #fff;
	}
*/
/*Top Buttons*/
.top-buttons {
    margin: 5px 0 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.top-button {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    background: #c4b07d;
    border: 1px solid #000000;
    padding: 8px 13px;
    border-radius: 13px;
    display: block;
    /* min-width: 192px; */
    text-align: center;
    white-space: nowrap;
    transition: 0.3s all;
}

.top-button:hover {
    color: #000000;
    background: transparent;
    border: 1px solid #000000;
}

.top-button.pay {
    color: #000000;
    background: #efe7da;
}

.top-button.pay:hover {
    color: #000000;
    background: #ffffff;
}

/*Style for translate button*/
#google_translate_element2 select.notranslate,
select.notranslate {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    background: #ffffff;
    border: 1px solid #000000;
    padding: 5px 13px;
    border-radius: 13px;
    display: block;
    width: 100%;
    margin: 0 auto 10px;
    max-width: 217px;
}

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

.slider-holder {
    background: url(../images/blankSlide.webp) no-repeat center center;
    background-size: cover;
}

.nivo-slider-wrapper {
    position: relative;
    z-index: 10;
}

.maintext-block-wrapper {
    position: absolute;
    top: 50%;
    left: 25px;
    width: auto;
    z-index: 11;
    transform: translate(0%, -50%) !important;
}

.maintext-block-wrapper .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.maintext-block {
    display: inline-block;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #c4b07d;
    box-sizing: border-box;
    border-radius: 20px;
}

.maintext-block h2 {
    font-size: 32px;
    color: #fff;
    font-weight: 500;
    margin: 0px 0 10px 0;
}

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

.maintext-block li {
    display: block;
    list-style: none;
    padding: 5px 0 5px 0px;
    position: relative;
    font-size: 21px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
}

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

.maintext-block li a {
    font-size: 21px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
}

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

.opening-soon {
    /* display: inline-block; */
    display: none;
}

/* .opening-soon .maintext-block-wrap-img {
    max-width: 680px;
    }

.opening-soon .maintext-block-wrap-img img {
    width: 100%;
	height: auto;
    } */

.subtext-block {
    font-weight: 600;
    text-align: center;
    position: absolute;
    bottom: -1px;
    padding: 20px 15px;
    background: rgb(239 231 218 / 90%);
    color: #000000;
    left: 0;
    width: 100%;
    z-index: 9;
    font-size: 30px;
    box-sizing: border-box;
    display: none;
}

.subtext-block p {
    padding: 0;
    margin: 0;
}

.nivo-caption {
    background: transparent;
    padding: 0;
    opacity: 1;
}

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

.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: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #fff;
    background: #c4b07d;
    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 #c4b07d;
    box-shadow: 0 0 60px rgb(195 195 195 / 64%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
}

.rabutton .buttonrs:hover,
.buttonrs:focus {
    color: #c4b07d;
    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;
    animation-delay: 5s;
}

.rabutton .buttonsr:hover::after,
.buttonrs:focus::after {
    animation: none;
    display: none;
}

/*About-block*/
.about-block {
    position: relative;
    padding: 75px 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.about-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/logo.png)
    no-repeat left center;
    background-size: 33%;
    opacity: 0.15;
    pointer-events: none;
}

.about-block > * {
    position: relative;
    z-index: 1;
}

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

.about-block h2 {
    font-size: 36px;
    color: #000000;
    text-align: left;
    font-weight: 600;
    padding: 0 0 20px 0;
    margin: 0 auto 0px auto;
    position: relative;
}

.about-block h2::after {
    display: none;
}

.about-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
}

.about-block .about-text {
    order: 1;
    color: #000000;
    font-weight: 500;
    max-width: 675px;
}

.about-block .about-text p {
    margin: 43px auto;
}

.about-block .about-text a {
    font-weight: 700;
}

.about-block .doctors {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-block .doctor {
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 280px;
}

.doctor a {
    display: block;
    font-size: 22px;
    color: #000000;
    font-weight: 500;
    max-width: 400px;
}

.about-block .doctor img {
    max-width: 100%;
    box-shadow: 3px 5px 3px rgb(0 0 0 / 20%);
    display: block;
    margin-bottom: 15px;
    transition: all 0.3s;
    border: 3px solid rgba(83, 18, 18, 0.1);
    border-radius: 4px;
    box-sizing: border-box;
}

.about-block .doctor:hover img {
    transform: scale(1.02);
}

.about-text .top-button {
    color: #fff !important;
    display: block;
    max-width: 265px;
    text-align: center;
    font-weight: 600 !important;
}

.about-text .top-button:hover {
    color: #000 !important;
}

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

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

.services-block h2 {
    font-size: 31px;
    color: #000000;
    text-align: center;
    font-weight: 600;
    padding: 20px 0;
    margin: 0 auto 0px auto;
    position: relative;
}

.service-block {
    display: inline-flex;
    margin: 10px;
    transition: all 0.2s;
}

.service-block:hover {
    background-size: auto 120%;
}

.service1 {
    background: url(../images/service1.jpg) no-repeat center;
    background-size: auto 100%;
}

.service2 {
    background: url(../images/service2.jpg) no-repeat center;
    background-size: auto 100%;
}

.service3 {
    background: url(../images/service3.jpg) no-repeat center;
    background-size: auto 100%;
}

.service4 {
    background: url(../images/service4.jpg) no-repeat center;
    background-size: auto 100%;
}

.service5 {
    background: url(../images/service5.jpg) no-repeat center;
    background-size: auto 100%;
}

.service6 {
    background: url(../images/service6.jpg) no-repeat center;
    background-size: auto 100%;
}

.service7 {
    background: url(../images/service7.jpg) no-repeat center;
    background-size: auto 100%;
}

.service8 {
    background: url(../images/service8.jpg) no-repeat center;
    background-size: auto 100%;
}

.service-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: 240px;
    height: 213px;
}

.service-block .service-title {
    width: 100%;
    padding: 10px 5px;
    background: rgb(239 231 218 / 90%);
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

/*Reviews Block*/
.reviews-block {
    background: #efe7da;
    background-size: cover;
    padding: 25px 20px;
}

.rb-tittle {
    margin: 0;
    position: relative;
    text-transform: none;
    font-weight: 700;
    color: #ffffff;
    font-size: 44px;
    text-align: center;
}

.review-block .fa.fa-star.checked {
    color: gold;
}

/*
.rb-tittle.bckeff::after {
	top: 65%;
	}
*/
.rb-tittle.bckeff.expand::after {
    background: rgb(142 48 178 / 25%);
    width: calc(30% + 60px);
}

:root {
    --theme-color: #3950ca;
    --bg-color: rgba(79, 48, 183, 0.06);
    --comp-color: #ff6584;
    --gradient: linear-gradient(#6a5fdd 0%, #241d8c 100%);
}

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

.reviews-block h2,
.reviews-block h1 {
    margin: 0;
    padding-top: 30px;
}

.bg-color {
    background: var(--bg-color);
}

.half-color-box {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    font-weight: 300;
    font-size: 20px;
}

.text-whtie {
    color: #fff !important;
}

.bold {
    font-weight: bolder;
}

.por {
    position: relative;
}

.review-box .quote {
    position: absolute;
    width: 40px;
    right: 10px;
    bottom: 10px;
}

.test-arrowbox {
    position: absolute;
    right: 20px;
    display: flex;
    top: 70px;
}

.review-box {
    border-radius: 3px;
    background: #fff;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.review-block p {
    font-size: 26px;
    /* margin-bottom: 0;
      margin-top: 10px;
      color: #7d8597; */
}

.review-block h5 {
    font-size: 20px;
    margin-bottom: 0;
}

.user-post {
    font-size: 14px;
    margin: 0 !important;
}

.swiper-testimonial {
    padding: 100px 20px;
    padding-top: 30px;
}

.swiper-pagination-bullet {
    background: #fff !important;
}

.test-arrowbox .swiper-button-next-test,
.test-arrowbox .swiper-button-prev-test {
    margin-right: 20px;
    /* background: var(--comp-color);2 */
    border-radius: 50%;
    --size: 55px;
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-right {
    transform: rotate(180deg);
    margin-top: -8px;
}

.arrow {
    cursor: pointer;
    transition: all 0.2s ease-in;
}

.arrow:hover {
    transform: translateX(-15px);
}

.swiper-pagination-bullet {
    width: var(
            --swiper-pagination-bullet-width,
            var(--swiper-pagination-bullet-size, 8px)
    );
    height: var(
            --swiper-pagination-bullet-height,
            var(--swiper-pagination-bullet-size, 8px)
    );
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

.banner-podcast-block {
    padding: 50px 0 0;
}

.banner-podcast-block .content {
    text-align: center;
}

.banner-podcast-block p {
    text-align: center;
    color: #000000;
    font-weight: 500;
    font-size: 22px;
}

.banner-podcast-block a {
    display: inline-block;
    margin: 20px auto 0;
    background-color: #c4b07d;
    color: #000000;
    font-size: 24px;
    padding: 10px 20px;
    font-weight: 400;
    border: 1px solid #000;
    border-radius: 13px;
    text-align: center;
    translate: 0.3s ease-in-out
}

.banner-podcast-block a:hover {
    background-color: #fff;
    color: #000;
}

/*Middle Socials Block*/
.middle-socials-block {
    padding: 100px 30px 120px;
}

.middle-socials-block h2 {
    text-align: center;
    color: #000000;
    font-weight: 600;
    font-size: 30px;
}

.msb-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.msb-wrap a:hover {
    transform: scale(1.1);
}

/*Duo article block*/

.duo-articles {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.da {
    max-width: 600px;
}

.da img {
    width: 100%;
    border-radius: 25px;
}

.da.left h3 {
    text-transform: uppercase;
    color: #c4b07d;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
}

.da.right h3 {
    text-transform: uppercase;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
}

.da h2 {
    font-size: 26px;
    color: #000000;
    text-align: left;
    font-weight: 500;
    padding: 0px 0;
    margin: 0 auto 0px auto;
    position: relative;
}

.da p {
    color: #000000;
    font-weight: 500;
    line-height: 1.5;
    max-width: 460px;
}

.da-btn {
    font-weight: 600;
    background-color: #efe7da;
    color: #000000;
    border: 2px solid #000000;
    padding: 10px 20px;
    border-radius: 25px;
    display: block;
    text-align: center;
    max-width: 130px;
    transition: 0.3s all;
}

.da-btn:hover {
    background-color: #ffffff;
}

/*Locations block*/
.locations-block {
    padding: 40px 25px;
    box-sizing: border-box;
}

.locations-block .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 50px 20px;
}

.locat {
    text-align: center;
}

.locat h2 {
    font-weight: 600;
}

.loc-schedule {
    width: 535px;
    height: 340px;
    border: 2px solid black;
    border-radius: 15px;
    box-sizing: border-box;
    background: #c4b07d;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    padding: 30px;
}

.loc-schedule p {
    color: #fff;
    font-weight: 500;
    margin: 5px;
    text-align: left;
}

.loc-map {
    width: 535px;
    height: 340px;
    border: 2px solid black;
    border-radius: 15px;
    box-sizing: border-box;
    background: #efe7da;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}

.loc-map iframe {
    border-radius: 15px;
}
.fa.fa-star.checked {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url(../images/star.svg) no-repeat top center;
}

.membership-block {
    padding: 0 15px 50px;
}

/*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: #000;
    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 li {
    list-style: none;
    display: block;
    padding: 8px 0 8px 15px;
    position: relative;
	}

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

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

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

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

.logo-block {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    max-width: 1360px;
    padding: 0 15px 50px;
}

.spec-logo-wrap a {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
    flex-direction: column;
    color: #000000;
    font-weight: 500;
    transition: all 0.3s;
}

.spec-logo-wrap a:hover {
    transform: scale(1.02);
}

.spec-logo-wrap a img {
    width: 100%;
    height: 100%;
}

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

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

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

/*Footer*/
footer {
    background: #efe7da;
}

footer .content {
    text-align: center;
}

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

.logo-footer p {
    color: #000000;
    margin: 15px auto 0;
    font-weight: 500;
    text-align: center;
}

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

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

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

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

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

.quick-links-block li a {
    color: #000000;
    font-size: 20px;
    line-height: 25px;
    text-decoration: none;
    font-weight: 500;
}

.quick-links-block 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: top;
    padding: 30px 0 30px 30px;
    text-align: left;
    color: #000000;
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
}

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

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

/*New Patients*/
.np-btn {
    font-size: 23px;
    font-weight: 400;
    color: #000000 !important;
    background: #efe7da;
    border: 1px solid #000000;
    padding: 8px 13px;
    border-radius: 13px;
    display: block;
    margin: 5px 0;
    text-align: center;
    max-width: 220px;
}

.np-btn:hover {
    color: #000000 !important;
    background: #ffffff;
    border: 1px solid #000000;
}

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

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

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

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

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

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

#title2 .inner-pages .page-header {
    display: none;
    margin: 0 auto;
}

#title2 .item-pagetitle2 .page-header {
    display: block;
    margin-bottom: 20px;
}

.doctors {
    display: flex;
    justify-content: center;
    gap: 10%;
    text-align: center;
    padding: 0 0 40px 0;
    font-weight: 600;
    flex-flow: wrap;
    }

.doctorl {margin-bottom: 20px;}

.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: 135px;
    margin-bottom: 20px;
}

.hours {
    float: left;
    width: 120px;
    margin-bottom: 20px;
    white-space: nowrap;
}

.gallery-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin: 15px auto 25px;
    max-width: 100%;
}

.gallery-wrap .row-one,
.gallery-wrap .row-two {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.gallery-wrap .row-one .item {
    width: 50% !important;
    display: flex;
}

.gallery-wrap .row-two .item {
    width: 33% !important;
    display: flex;
}

.gallery-wrap .row-one img .gallery-wrap .row-two img {
    width: 100% !important;
}

.coloredtext.semi {
    font-weight: 600;
}

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

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

/*Swift page*/

.swift-img-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
    gap: 10px;
}

.swift-img-wrap img {
    width: auto;
    margin: 1%;
}

/* Swift page---END */

/*Video on Radial page*/
.vid_container {
    display: flex;
    justify-content: center;
    margin: 0 auto 35px;
    flex-wrap: wrap;
    max-width: 840px;
}

.vid {
    background: #000000;
    width: 100%;
}

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

div.latestItemsCategory h2 {
    display: none;
}

h2.latestItemTitle a {
    color: #c4b07d;
}

#k2Container {
    padding-top: 30px;
}

div.itemToolbar {
    display: none;
}

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

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

.clearList {
    display: none !important;
}

.formTableLayout {
    margin: 0 auto;
}

.formTableLayout input#Send , button#submit , button#Send {
    background: #efe7da;
    color: #000000;
    border: 2px solid #000000;
    padding: 5px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
}

.formTableLayout input#Send:hover , button#submit:hover , button#Send:hover {
    background: #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 li .even {
    padding: 2px 0 !important;
}

.pe ul {
    margin: 0;
}

/*Testimonials*/

.testimonial-container {
    border: 2px solid #c4b07d;
    background-color: rgba(2, 48, 32, 0.05);
    border-radius: 5px;
    padding: 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;
}

.checked {
    color: gold;
}

/*End of Testimonials Code*/

/*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 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 li a {
    color: #c4b07d;
}

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

.images-wrap .tiktok-embed {
    max-width: 410px !important;
}


/* ToeFX Article Container - Isolated Styles */
#toefx-article-container {
    font-weight: 400;
    font-size: 17px;
    color: #373737;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
}

#toefx-article-container * {
    box-sizing: border-box;
}

#toefx-article-container a {
    text-decoration: none;
}

/* Article body container */
#toefx-article-container .com-content-article__body {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Typography */
#toefx-article-container .com-content-article__body h3 {
    font-size: 19.89px;
    font-weight: 400;
    color: #373737;
    margin: 25px 0 15px 0;
    line-height: 1.4;
}

#toefx-article-container .com-content-article__body p {
    font-size: 17px;
    line-height: 1.6;
    margin: 15px 0;
    color: #373737;
}

#toefx-article-container .com-content-article__body strong {
    font-weight: 700;
    color: #373737;
}

#toefx-article-container .com-content-article__body em {
    font-style: italic;
}

/* Lists */
#toefx-article-container .com-content-article__body ul,
#toefx-article-container .com-content-article__body ol {
    margin: 15px 0;
    padding-left: 30px;
}

#toefx-article-container .com-content-article__body ul {
    list-style-type: disc;
}

#toefx-article-container .com-content-article__body ol {
    list-style-type: decimal;
}

#toefx-article-container .com-content-article__body li {
    margin: 8px 0;
    line-height: 1.6;
    font-size: 17px;
    color: #373737;
}

#toefx-article-container .com-content-article__body li strong {
    font-weight: 700;
}

/* Links */
#toefx-article-container .com-content-article__body a {
    color: #0f6e91;
    transition: color 0.3s;
}

#toefx-article-container .com-content-article__body a:hover {
    color: #c4b07d;
    text-decoration: underline;
}

/* Images */
#toefx-article-container .com-content-article__body img {
    max-width: 100% !important;
    height: auto !important;
}

#toefx-article-container .com-content-article__body img.se {
    margin-left: 10px;
    margin-bottom: 10px;
    float: right;
}

/* Images wrap */
#toefx-article-container .com-content-article__body .images-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px auto;
}

#toefx-article-container .com-content-article__body .images-wrap img {
    max-width: 100%;
    height: auto;
    float: none;
    margin: 0;
}

/* Inner buttons */
#toefx-article-container .com-content-article__body .inner-btn {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 25px 0;
}

#toefx-article-container .com-content-article__body .inner-btn a {
    color: #000000;
    background-color: #c4b07d;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    border: 2px solid #000000;
    transition: 0.3s all;
    text-decoration: none;
}

#toefx-article-container .com-content-article__body .inner-btn a:hover {
    background-color: #ffffff;
}

#toefx-article-container .com-content-article__body .inner-btn .phone-btn {
    background-color: #c4b07d;
    border-color: #c4b07d;
    color: #ffffff;
}

#toefx-article-container .com-content-article__body .inner-btn .phone-btn:hover {
    background-color: #fff;
    color: #c4b07d;
}

/* Clear floats */
#toefx-article-container .com-content-article__body::after {
    content: "";
    display: table;
    clear: both;
}

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

@media only screen and (max-width: 1550px) {
    .subtext-block {
        padding: 15px 15px;
        font-size: 25px;
    }

    /*About Us*/

    .about-block .content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .about-block .doctor {
        width: 100%;
    }

    .about-block .doctor img {
        max-width: 400px;
        height: auto;
    }
}

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

    .top-button {
        font-size: 16px;
        padding: 8px;
    }

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

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

    /* .top-button {
      font-size: 15px;
      } */

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

@media only screen and (max-width: 1300px) {
   /*About Block*/
    .about-block {
        padding: 40px 20px;
        background: unset;
        background-size: cover;
        margin-top: 0;
    }

    .about-block .content {
        background: url(../images/about-bg.jpg) no-repeat center;
        background-size: cover;
    }

    .logo-block img {
        width: auto;
        height: 70px;
    }

    .spec-logo-wrap {
        flex: 1 1 100%;
    }

    .spec-logo-wrap a {
        width: 170px;
        margin: 0 auto;
    }

    /*Duo Article Block*/
    .da {
        max-width: 400px;
    }

    .da img {
        max-width: 400px;
        height: auto;
    }

    /*Location Block*/
    .locations-block .content {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .loc-schedule {
        width: 400px;
    }

    .loc-map {
        width: 400px;
    }
}

@media only screen and (max-width: 1250px) {
    .subtext-block {
        font-size: 22px;
        padding: 10px 15px;
    }

    /*Inner pages*/
    .one .address {
        width: 100%;
    }

    .map iframe {
        height: 675px;
    }
}

@media only screen and (max-width: 1200px) {
    /*Navbar*/
    .top-right {
        margin: 10px auto;
    }

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

    .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
        background-color: #000000;
    }

    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: #ffffff;
        transition: all 0.3s;
        margin: 0;
    }

    .topmenu.active {
        top: 0;
    }

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

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

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

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

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

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

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

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

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

    .topline {
        margin-bottom: 0;
    }

    .top-button {
        font-size: 18px;
        padding: 7px 15px;
    }

    #google_translate_element2 select.notranslate,
    select.notranslate {
        font-size: 15px;
    }

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

@media only screen and (max-width: 1100px) {
    /*Slider Block*/
    .maintext-block-wrapper {
        top: auto;
        left: auto;
        position: relative;
        margin: 0 auto;
        background: #efe7da;
        transform: none !important;
    }

    .maintext-block-wrapper .content {
        justify-content: space-around;
        gap: 30px;
        padding: 30px 15px;
    }

    .maintext-block {
        display: block;
        max-width: 410px;
        margin: 0;
        background: rgb(0 0 0 / 80%);
    }

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

    .maintext-block li a,
    .maintext-block li {
        font-size: 16px;
    }

    .subtext-block {
        display: none;
    }

    #homepage .block-wrap-order {
        display: flex;
        flex-direction: column-reverse;
    }

    .services-block {
        padding: 50px 0;
    }

    .service-block .service-title {
        font-size: 16px;
    }

    .services-block h2 {
        padding: 0 0 20px;
    }

    .service-inner {
        width: 200px;
        height: 180px;
    }

    /*About Us*/

    .about-block {
        padding: 50px 15px;
    }

    .about-block .content {
        background: none;
    }

    .about-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .about-block .about-text {
        max-width: 100%;
    }

    .about-block .about-text p {
        margin: 15px auto;
    }

    .about-block .about-text a {
        color: #c4b07d;
        font-weight: 700;
    }

    .about-block .doctor {
        width: 100%;
        max-width: 280px;
    }

    .about-block .doctor img {
        max-width: 100%;
    }

    .about-text .top-button {
        color: #fff !important;
        display: block;
        max-width: 215px;
        text-align: center;
        margin: 0 auto;
        background: #c4b07d;
        font-size: 18px;
    }

    .about-block h2 {
        padding: 0;
        margin: 0 auto;
        text-align: center;
    }

    .swiper-testimonial {
        padding: 30px 20px 50px;
    }

    .half-color-box {
        color: #000000;
    }

    .swiper-pagination-bullet {
        background: rgba(0, 0, 0, 0.5) !important;
    }

    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #000 !important;
    }

    .locations-block {
        padding: 50px 15px;
        order: 4;
        display: flex;
        background-color: #ffffff;
        margin-top: 50px;
    }

    .locations-block .content {
        padding: 0;
    }

    .locat {
        width: 45%;
    }

    .locat h2 {
        margin-top: 0;
    }

    .loc-map,
    .loc-schedule {
        width: 100%;
    }

    .logo-block {
        order: 2;
        padding: 30px 15px;
    }

    .duo-articles {
        order: 2;
        background-color: #ffffff;
        padding: 50px 15px;
    }

    .middle-socials-block {
        padding: 30px 15px;
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .middle-socials-block h2 {
        margin-top: 0;
    }
}

@media only screen and (max-width: 1080px) {
    /*Rate Us*/

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

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

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

    /*Rate Us -- END*/

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

    /*sidebar*/
    .divContent {
        flex: 0 0 70%;
    }

    .divRight {
        flex: 0 0 30%;
    }

    .map iframe {
        height: 630px;
    }
}

@media only screen and (max-width: 1000px) {
    .maintext-block-wrapper .content {
        flex-direction: column-reverse;
    }

    /* .opening-soon .maintext-block-wrap-img {
      padding-right: 60px;
      } */
}

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

    .pe ul {
        margin: 0;
    }

    .map iframe {
        height: 590px;
    }
}

@media only 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 */

    body .accessib-block {
        top: 40% !important;
    }

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

    .copy-right p {
        margin-top: 0;
    }

    .map iframe {
        height: 554px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1100px) {
    .about-block .doctors {
        flex-direction: row;
        white-space: normal;
        gap: 20px;
    }

    .about-block .doctor {
        display: inline-block;
        width: auto;
        flex: 0 0 auto;
    }
}

@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) {
    body {
        font-size: 18px;
    }

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

    .btn-primary a {
        padding: 10px 50px;
    }

    .logo-block img {
        height: 65px;
    }

    .inner-nav.slide.fixed .top-information,
    .inner-nav.slide.fixed .top-right {
        display: none;
    }

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

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

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

    .review-block h5 {
        font-size: 18px;
    }

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

    .banner-podcast-block a {
        font-size: 20px;
    }

    .middle-socials-block h2 {
        font-size: 27px;
    }

    .about-block h2 {
        font-size: 27px;
    }

    .da h2 {
        font-size: 20px;
    }

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

    footer .content {
        text-align: left;
    }

    .logo-footer {
        display: block;
        vertical-align: top;
        padding: 30px 0 15px;
        max-width: 450px;
    }

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

    footer h4 {
        font-size: 16px;
    }

    .bottom-loc-block,
    .quick-links-block li a {
        font-size: 16px;
        line-height: 16px;
    }

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

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

    .rabutton .buttonrs {
        /*min-width: 250px;
        font-size: 15px;*/
        display: none;
    }

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

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

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

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

    .gallery-wrap {
        margin: 5px auto 30px;
    }

    .map iframe {
        height: 450px;
    }

    /*sidebar*/

    .divContent {
        flex: 0 0 70%;
    }

    .divRight {
        flex: 0 0 30%;
    }
}

@media only screen and (max-width: 730px) {
    /* .opening-soon .maintext-block-wrap-img {
      padding-right: 0;
      } */

    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: 630px) {
    /*Inner pages*/
    .inner-pages .doctor {
        float: none;
        text-align: center;
        margin: 0 auto 10px auto;
    }
}

@media only screen and (max-width: 590px) {
    .top-information {
        padding: 10px;
    }

    .top-information {
        gap: 5px;
    }

    .locat {
        width: 100%;
    }

    .loc-schedule {
        height: 250px;
        gap: 10px;
    }

    .loc-map {
        height: 250px;
    }

    .logo-block {
        flex-direction: column;
        gap: 15px;
    }

    /*sidebar*/
    .divContent,
    .divRight {
        flex: 0 0 100%;
    }

    .divRight .moduletable {
        padding-left: 5px;
    }
}

@media only screen and (max-width: 580px) {
    nav .content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .inner-logo {
        order: 1;
    }

    .hamburger.hamburger--slider {
        order: 1;
    }

    .top-right {
        margin: 10px auto;
        width: 100%;
        text-align: center;
        order: 2;
    }
}

@media only screen and (max-width: 550px) {
    /*Footer*/
    .logo-footer {
        display: block;
        margin: 0 auto;
    }

    .offices-block {
        display: block;
    }

    tbody#rsform_3_page_0 td,
    tbody#rsform_4_page_0 td {
        display: block;
    }
    tbody#rsform_5_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;
    }

    .uk-width-1-3 {
        width: 100%;
    }

    .gallery-wrap .row-one,
    .gallery-wrap .row-two {
        flex-wrap: wrap;
    }

    .gallery-wrap .row-one .item,
    .gallery-wrap .row-two .item {
        width: 48% !important;
    }
}

@media only screen and (max-width: 1920px) {
    .slider-holder {
        max-height: 713px;
    }
}
@media only screen and (max-width: 1440px) {
    .slider-holder {
        max-height: 540px;
    }
}
@media only screen and (max-width: 1360px) {
    .slider-holder {
        max-height: 509px;
    }
}
@media only screen and (max-width: 1199px) {
    .slider-holder {
        max-height: 384px;
    }
}

/* Responsive styles */
@media only screen and (max-width: 730px) {
    #toefx-article-container .com-content-article__body img.se {
        float: none;
        margin: 0 0 10px 0;
        max-width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    #toefx-article-container .com-content-article__body {
        padding: 15px;
    }

    #toefx-article-container .com-content-article__body h3 {
        font-size: 18px;
    }

    #toefx-article-container .com-content-article__body p,
    #toefx-article-container .com-content-article__body li {
        font-size: 16px;
    }

    #toefx-article-container .com-content-article__body .inner-btn {
        flex-direction: column;
    }

    #toefx-article-container .com-content-article__body .inner-btn a {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    #toefx-article-container .com-content-article__body .images-wrap {
        flex-direction: column;
        gap: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .slider-holder {
        max-height: 288px;
    }
}

@media only screen and (max-width: 450px) {
    /* .staticnav .inner-logo img {
        width: 250px;
        height: 88px;
    } */

    .slider-holder {
        background: url(../images/blankSlide-xs.webp) no-repeat center center;
        background-size: cover;
        max-height: 168px;
    }
    /*Middle Socials Block*/
    /* .middle-socials-block {
      padding: 75px 30px;
      } */

    /*Duo Articles*/
    .da {
        max-width: 330px;
    }

    .da img {
        max-width: 330px;
    }

    /*Location Block*/
    /* .locations-block .content {
      padding: 0px 20px;
      }

  .loc-schedule {
      width: 330px;
      }

  .loc-map {
      width: 330px;
      } */
}

@media only screen and (max-width: 400px) {
    .ti a img {
        display: none;
    }
  
    .ti a {
        flex-direction: column;
    }
}
