@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: "Poppins", sans-serif !important;
  font-weight: 300;
  font-size: 18px;
  color: #000;
  -webkit-text-size-adjust: 100%;
}


.font-bold {
  font-weight: bold !important;
}

body {
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
.clear {
  clear: both;
}
input,
textarea,
button {
  outline: none;
}
a img {
  border: none;
}

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

form {
  padding: 0;
  margin: 0;
}

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

.translate {
  height: 33px;
}
.content {
  margin: 0 auto;
  text-align: left;
  width: 100%;
  max-width: 1300px;
  padding: 0 15px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.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;
  font-family: "Lato", sans-serif;
}

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

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

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

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

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

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

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

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

.activeFeedbackField input{
    position:absolute;
    left:10px;
    }

.activeFeedbackDescription {
    padding-top: 5px;
    margin: 0;
    }

/*Navbar*/

/*Navbar topinfo*/
.top-information {
  background: #f5f6f7;
  font-family: "Montserrat", sans-serif;
  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;
}

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

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

.top-socials a {
  display: flex;
  transition: 0.3s all;
}

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

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: 1500px;
  display: flex;
  align-items: center;
  padding: 0;
}

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

.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 {
  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-family: "Montserrat", sans-serif;
  font-size: 18px;
  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: #fb8fc3;
}

.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: #82b440;
}

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

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

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

.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: -1px 10px 0 0;
}

.top-loc {
  font-family: "Lato", sans-serif;
  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;
}

/*Top Buttons*/
.top-buttons {
  margin: 5px 0 15px;
}

.top-button {
  font-size: 23px;
  font-weight: 400;
  color: #fff;
  background: #82b440;
  padding: 8px 13px;
  border-radius: 13px;
  font-family: "Montserrat", sans-serif;
  display: block;
  min-width: 192px;
  text-align: center;
  white-space: nowrap;
  transition: 0.3s all;
  border: 1px solid #82b440;
}

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

/*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;
  font-family: "Montserrat", sans-serif;
  display: block;
  width: 100%;
  margin: 0 auto 10px;
  max-width: 217px;
}

/* Slider block*/
.slider-block {
  text-align: center;
  position: relative;
}
.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: 100px;
  left: 0;
  width: 100%;
  z-index: 11;
}

.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 #82b440;
  box-sizing: border-box;
  border-radius: 20px;
}

.maintext-block h2 {
  font-size: 26px;
  color: #fff;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  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: 23px;
  color: #fff;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  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: 23px;
  color: #fff;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}

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

.opening-soon {
  display: none;
}

.subtext-block {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-align: center;
  position: absolute;
  bottom: 0;
  padding: 20px 15px;
  background: #96D8D8;
  left: 0;
  width: 100%;
  z-index: 9;
  font-size: 30px;
  color: #fff;
  box-sizing: border-box;
}

.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: 18px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #fff;
  background: #82b440;
  border: none;
  border-radius: 3px;
  box-shadow: 12px 12px 24px rgb(25 54 78 / 22%);
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px 20px;
  transition: 0.3s all;
}

.rabutton .buttonrs::before {
  content: "";
  border-radius: 13px;
  min-width: calc(250px + 28px);
  min-height: calc(40px + 4px);
  border: 4px solid #82b440;
  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: #82b440;
  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 {
  padding: 75px 20px;
  box-sizing: border-box;
  background: #fff;
  background-size: cover;
  margin-top: 60px;
}

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

.about-block h2 {
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  color: #2e2e2e;
  text-align: left;
  font-weight: 500;
  padding: 20px 0;
  margin: 0 auto 0px auto;
  position: relative;
}

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

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

.about-block .about-text {
  order: 1;
  color: #2e2e2e;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  max-width: 675px;
}

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

.about-block .doctors {
  order: 2;
  white-space: nowrap;
}

.about-block .doctor {
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  width: 490px;
}

.doctor a {
    display: block;
    font-size: 20px;
    color: #2e2e2e;
    font-family: "Poppins", sans-serif;
    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 #82b440;
  border-radius: 4px;
  box-sizing: border-box;
}

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

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

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

.about-block .about-text .top-button a {
  color: #82b440;
}

.about-text .about-text .top-button:hover a , .about-text .about-text .top-button:hover , .about-text .top-button:hover a , .about-text .top-button a:hover {
  color: #000;
}

.bio-highlights {
  list-style: none;
  padding: 0;
  margin: 35px 85px 0 85px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 50px;
}

.bio-highlights li {
  position: relative;
  padding-left: 38px;
  font-weight: 500;
  line-height: 1.5;
}

.bio-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background: #82b440;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 14px;
  font-weight: bold;
}

.bio-highlights strong {
  font-weight: 600;
}


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

.services-block .content {
  text-align: center;
  max-width: 1000px;
}

.services-block h2 {
  font-family: "Poppins", sans-serif;
  font-size: 31px;
  color: #2e2e2e;
  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: 120% auto;
}

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

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

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

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

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

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

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

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

.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: #96D8D8;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

/*Reviews Block*/
.reviews-block {
  background: #fb8fc3;
  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.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;
}

.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;
  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: #2e2e2e;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 22px;
	}

.banner-podcast-block a {
    display: inline-block;
    margin: 20px auto 0;
    background-color: #fb8fc3;
    color: #fff;
    font-size: 24px;
    padding: 10px 20px;
    font-weight: 400;
    color: #fff;
    background: #fb8fc3;
    border: 1px solid #000;
    border-radius: 13px;
    font-family: "Montserrat",sans-serif;
    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;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #4c4c4c;
  font-weight: 500;
  font-size: 30px;
}

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

.msb-wrap a {
  display: flex;
  transition: 0.3s all;
}

.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: #82b440;
  font-size: 16px;
  font-weight: 900;
  margin-top: 30px;
}

.da.right h3 {
  text-transform: uppercase;
  color: #82b440;
  font-size: 16px;
  font-weight: 900;
  margin-top: 30px;
}

.da h2 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  color: #2e2e2e;
  text-align: left;
  font-weight: 500;
  padding: 0px 0;
  margin: 0 auto 0px auto;
  position: relative;
}

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

.da-btn {
  font-weight: 600;
  color: #82b440;
  border: 2px solid #82b440;
  padding: 10px 20px;
  border-radius: 25px;
  display: block;
  text-align: center;
  max-width: 120px;
}

.da-btn:hover {
  background-color: #82b440;
  color: #fff;
  border: 2px solid #82b440;
}

/*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: 150px 20px;
}

.locat {
  text-align: center;
}

.loc-schedule {
  width: 535px;
  height: 340px;
  border: 2px solid #82b440;
  border-radius: 15px;
  box-sizing: border-box;
  background: #82b440;
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: space-evenly;
  align-items: start;
  flex-direction: column;
  padding: 30px;
}

.loc-schedule p {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin: 5px;
  text-align: left;
}

.loc-map {
  width: 535px;
  height: 340px;
  border: 2px solid #82b440;
  border-radius: 15px;
  box-sizing: border-box;
  background: #fb8fc3;
  font-family: "Montserrat", sans-serif;
  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;
}
/*Blogs block*/

.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: #1b98d6;
  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: #39601a;
  padding: 75px 0;
}

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

.logo-footer {
  display: inline-block;
  vertical-align: middle;
  padding: 30px;
  max-width: 330px;
  /* height: 100%;
  width: 200px; */  
  text-align: center;
}

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

.logo-footer p {
  margin: 10px auto 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
}

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

footer h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  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: #fff;
  font-size: 18px;
  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: #fff;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
}

.white-text {
  color: #fff;
}

.offices-block {
  display: flex;
}

.office {
  padding-right: 30px;
}

/* office-hour */
office-hours {
  margin-top: 20px;
  max-width: 480px;
}

.office-hours div {
  display: flex;
  gap: 15px;
  padding: 4px 0;
}

.office-hours span:first-child {
  font-weight: 600;
  width: 50px;
}

office-hours .hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

office-hours .hours-row:last-child {
  border-bottom: none;
}

office-hours .day {
  font-weight: 600;
}

office-hours .time {
  color: #444;
}

office-hours .closed {
  color: #999;
  font-style: italic;
}


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

.copy-left a,
.copy-right a {
  color: #fff;
  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;
}

/* Doctor Page */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.doctor-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT SIDE */
.doctor-content {
  flex: 1;
}

.doctor-content h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #82b440;
}

.doctor-content .lead {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

.doctor-content h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2e2e2e;
}

.doctor-content p {
  line-height: 1.7;
  color: #444;
}

.doctor-content ul {
  margin-top: 15px;
  padding-left: 20px;
}

.doctor-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* RIGHT SIDE */
.doctor-image {
  width: 350px;
  text-align: center;
}

.doctor-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.doctor-name {
  margin-top: 15px;
  font-weight: 600;
  font-size: 18px;
  color: #82b440;
}

/*New Patients*/
.np-btn {
  font-size: 23px;
  font-weight: 400;
  color: #fff !important;
  background: #fb8fc3;
  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: transparent;
  border: 1px solid #000000;
}

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

.inner-pages a {
  color: #82b440;
}

.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-family: "Lato", sans-serif;
  font-size: 48px;
  color: #82b440;
  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: #96D8D8;
}

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

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

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

.week {
  width: 125px;
  margin-bottom: 20px;
}

.hours {
  margin-bottom: 20px;
}

.one {
  float: left;
  width: 48%;
}

.two {
  float: right;
  width: 48%;
}

.address {
  margin-bottom: 10px;
}

.phone {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}

.offices.images {
  margin: 23px auto 32px;
  text-align: left;
}

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

.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: 250px;
  font-size: 20px;
  color: #82b440;
  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: #82b440;
}

#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: #82b440;
  color: #fff;
  border:2px solid #82b440;
  padding: 5px 30px;
  border-radius: 5px;
  font-size: 19px;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  transition: 0.3s all;
}

.formTableLayout input#Send:hover , button#submit:hover , button#Send:hover {
  background: #fff;
  color: #82b440;
  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 #fa8fc3;
  background-color: #ffeff7;
  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%;
}

.divRight {
  flex: 0 0 20%;
}

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

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

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

@media only screen and (max-width: 1700px) {
  .topmenu li a,
  span.nav-header,
  span.span-separator {
    font-size: 17px;
    padding: 6px;
  }
  
  footer {
    padding: 75px 0;
  }
}

@media only screen and (max-width: 1550px) {
  /*Slider Block*/
  .maintext-block h2 {
    font-size: 22px;
  }

  .maintext-block-wrapper {
    top: 75px;
  }

  .maintext-block img {
    height: 160px;
    width: auto;
  }

  .maintext-block li {
    font-size: unset;
  }

  .maintext-block li a {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
  }

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

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

@media only screen and (max-width: 1530px) {
  .top-button {
    font-size: 18px;
    padding: 8px;
  }

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

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

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

  .topmenu li a,
  span.nav-header,
  span.span-separator {
    font-size: 15px;
  }
  
  .bio-highlights {
    margin: 35px 0 0 0;
  }
}

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

@media only screen and (max-width: 1370px) {
  /*Header*/

  /*Slider Block*/
  .maintext-block-wrapper {
    top: 50px;
  }
}

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

@media only screen and (max-width: 1300px) {
  .maintext-block-wrapper {
    top: 30px;
  }
  /*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) {
  .topmenu li a,
  span.nav-header,
  span.span-separator {
    font-size: 15px;
  }

  .top-button {
    font-size: 16px;
    padding: 6px 19px;
    min-width: 180px;
  }

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

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

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

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

  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: #f5f6f7;
    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;
  }
}
@media only screen and (max-width: 1150px) {
  .maintext-block-wrapper {
    top: 15px;
  }

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

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

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

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

  /* .bio-highlights {
    color: #fff;
  } */
  
  .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: 15px;
  }

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

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

  /*About Us*/

  .about-block {
    padding: 50px 15px;
    /* background-color: #82b440; */
  }

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

  .about-doctor {
    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 a {
    /* color: #ffffff; */
    font-weight: 700;
  }

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

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

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

  /* .doctor a {
    color: #fff;
  } */

  /* .about-block .about-text {
    color: #fff;
  } */

  .about-block h2 {
    padding: 0;
    margin: 0 auto;
    /* color: #fff; */
    text-align: center;
  }

  .reviews-block {
    /* background: #ffffff; */
    padding: 0 15px;
  }

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

  .half-color-box {
    color: #2e2e2e;
  }

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

@media only screen and (max-width: 930px) {
  .doctor-layout {
    flex-direction: column-reverse;
    align-items: center;
  }

  .doctor-image {
    width: 100%;
    max-width: 350px;
  }

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

  .doctor-content ul {
    text-align: left;
  }
  
  .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 (max-width: 768px) {
    
  .slider-holder {
    max-height: 288px;
  }    
    
  .formCaption {
    width: 100% !important;
  }

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

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

  .bio-highlights {
    grid-template-columns: 1fr;
  }
}

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

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

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

  .service-inner {
    width: 185px;
    height: 165px;
  }

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

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

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

  footer .content {
    text-align: left;
  }

  .logo-footer {
    display: block;
    padding: 30px 0 15px;
    max-width: 90%;
  }

  .logo-footer p {
    font-size: 18px;
  }

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

  footer h4 {
    font-size: 14px;
  }

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

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

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

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

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

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

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