@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
*,
::after,
::before {
  box-sizing: border-box;
}

/*html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  }*/

@font-face {
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
    url("../fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
    url("../fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  color: #fff;
  background-color: var(--theme-blue-color);
}
::-moz-selection {
  color: #fff;
  background-color: var(--theme-blue-color);
}

body {
  font-family: var(--theme-primary-font-family);
  font-weight: 400;
  color: var(--theme-black-color);
  background-color: var(--theme-white-color);
  overflow-x: hidden;
  font-family: var(--theme-primary-font-family);
}

html,
body {
  scroll-behavior: smooth;
}

:root {
  /*--theme-blue-color: #007aff;*/
  --theme-blue-color: #07a7e3;
  --theme-dark-blue-color: #5173a6;
  --theme-orange-color: #ee3e25;
  --theme-green-color: #20c19e;
  --theme-yellow-color: #ff7b1e;
  --theme-light-green-color: #dfefe7;
  --theme-white-color: #ffffff;
  --theme-black-color: #010109;
  /*--theme-para-color: #5e4945;*/
  --theme-para-color: #8c7d7d;
  --theme-dark-gray-color: #444f5d;
  --theme-header-font-family: "Roboto";
  --theme-primary-font-family: "Open Sans";
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}
a,
a:focus {
  text-decoration: none;
}
a:focus {
  color: initial;
}
img.cmn-img  {
  width: 100%;
}
.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*common css====================================*/
.row-flex {
  display: flex;
  flex-wrap: wrap;
}

.noscroll {
  overflow: hidden;
  height: 100vh;
}

.layout_padding {
  padding: 80px 0;
}

a.cmn_btn {
  display: inline-block;
  padding: 15px 25px;
  background: var(--theme-blue-color);
  color: var(--theme-white-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 16px;
  font-weight: 600;
}
a.cmn_btn:hover {
  background: #258cfc;
}
a.cmn_btn .bi{
  font-size: 20px;
}

.notes small{
  font-size: 10px;
}

.heading_container h1 {
    color: var(--theme-black-color);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--theme-header-font-family);
}
.heading_container h2{
  font-size: 26px;
  font-weight: 300;
  color: var(--theme-black-color);
  font-family: var(--theme-header-font-family);
}
.heading_container h4{
  font-size: 20px;
  font-weight: 600;
  color: var(--theme-black-color);
  font-family: var(--theme-header-font-family);
}
.heading_container p {
    font-size: 18px !important;
    color: var(--theme-para-color) !important;
}
.heading_container p:last-child{
  margin-bottom: 0;
}
.heading_container p a{
    font-size: 18px !important;
    color: #07a7e3 !important;
}
.heading_container p a:hover{
  color: var(--theme-dark-gray-color) !important;
}
.heading_container ol{
  margin: 0;
  padding-left: 15px;
  margin-bottom: 15px;
}
.heading_container ol li{
  font-size: 18px !important;
  color: var(--theme-black-color) !important;
}
.heading_container .cmn-table tbody, 
.heading_container .cmn-table td, 
.heading_container .cmn-table tfoot, 
.heading_container .cmn-table th, 
.heading_container .cmn-table thead, 
.heading_container .cmn-table tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    font-size: 18px;
    padding: 5px;
}

.heading_container .content-row{
  margin-top: 20px;
}
.heading_container .content-row:first-child{
  margin-top: 0;
}
#scroll {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999;
  box-shadow: 0px 2px 5px rgb(51 51 51 / 58%);
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: var(--theme-blue-color);
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}
#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: var(--theme-white-color);
}
#scroll:hover {
  background: var(--theme-dark-blue-color);
  opacity: 0.8;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

/*Owl Nav Button====================================*/
.cmn-nav-htn .owl-carousel .owl-nav button.owl-next,
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev {
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.cmn-nav-htn .owl-carousel .owl-nav button.owl-next {
  font-family: "bootstrap-icons";
  right: 0px;
}
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev {
  font-family: "bootstrap-icons";
  left: 0px;
}

.cmn-nav-htn .owl-carousel .owl-nav button.owl-next,
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev {
  text-align: center;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  padding: 15px;
  border: 2px solid var(--theme-black-color);
  box-shadow: 3px 2px var(--theme-black-color);
  font-size: 33px;
  color: var(--theme-black-color);
}
.cmn-nav-htn .owl-carousel .owl-nav button.owl-next img,
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev img {
  width: 78%;
}

.cmn-nav-htn .owl-dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
}
.cmn-nav-htn .owl-dots .owl-dot.active span,
.cmn-nav-htn .owl-dots .owl-dot:hover span {
  border: 1px solid var(--theme-blue-color);
  background: var(--theme-white-color);
  position: relative;
}
.cmn-nav-htn .owl-dots .owl-dot.active span:after,
.cmn-nav-htn .owl-dots .owl-dot:hover span:after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 13px;
  height: 13px;
  border-radius: 30px;
  background: var(--theme-blue-color);
}
.cmn-nav-htn .owl-dots .owl-dot span {
  width: 21px;
  height: 21px;
  margin: 5px 7px;
  border: 1px solid var(--theme-skyblue-color);
  background: var(--theme-white-color);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.4s ease;
  border-radius: 30px;
}

/*Header section =================================*/
.header_section .hdr-top{
  background: var(--theme-white-color);
  padding: 8px 0;
}
.header_section .hdr-top a.hdr-logo{
  width: 454px;
  display: block;
  margin: auto;
}
.header_section .hdr-top .hdr-logo img{
  width: 100%;
}
.hdr-number p{
  font-size: 18px;
}
.hdr-number p a{
  color: var(--theme-dark-blue-color);
  font-weight: 700;
}
.book_btn {
  background: var(--theme-white-color);
  color: var(--theme-orange-color);
  font-size: 16px;
  padding: 20px 12px;
  font-weight: 500;
  text-align: center;
  width: 180px;
  transition: 0.4s;
}
.book_btn:hover{
  background: var(--theme-orange-color);
  color: var(--theme-white-color);
}

ul.cmn-link-list li{
  position: relative;
}
ul.cmn-link-list li:after{
  content: '\f105';
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 18px;
  color: var(--theme-blue-color);
}
ul.cmn-link-list li p{
  font-size: 16px;
  color: var(--theme-black-color);
  font-weight: 700;
  margin-left: 20px;
  padding: 5px 10px;
  display: block;
}
ul.cmn-link-list li a{
  font-size: 20px;
  color: var(--theme-dark-gray-color);
  font-weight: 700;
  margin-left: 20px;
  padding: 5px 10px;
  display: block;
}
ul.cmn-link-list li a:hover{
    background: #08A8E2;
    background: linear-gradient(98deg, rgba(8, 168, 226, 1) 0%, rgba(54, 213, 193, 1) 100%);
    color: #fff !important;
    border-radius: 5px;
    padding: 5px 10px;
}

/*Hero section ====================================*/
.hero-slider .slide-item {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slider .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-slider .slide-content {
  position: absolute;
  z-index: 2;
  text-align: left;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}

.hero-slider .hero-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 30px;
  animation: fadeInDown 1s;
  color: var(--theme-black-color);
}

.hero-slider p {
  font-size: 18px;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s;
  color: var(--theme-gray-color);
}

.hero-slider .btn {
  padding: 10px 25px;
  border-radius: 50px;
}

/*All section Css ==========================================*/
.abt-card{
  background: linear-gradient( 
358deg, rgb(230 68 40 / 3%) 0%, rgb(0 93 221 / 13%) 35%, rgb(239 64 34 / 2%) 100%);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0px 0px 16px 0px rgb(210 189 189 / 75%);
}

.we-treat{
  background: url(../images/we-treat.jpeg) center center no-repeat;
  background-size: cover;
}
.we-treat-card{
  padding: 30px;
  border-radius: 15px;
  background: rgb(255 255 255 / 50%);
  box-shadow: 0px 0px 16px 0px rgb(210 189 189 / 75%);
}
.we-treat-img{
  border-radius: 15px;
  width: 100%;
}

.treatment-sec{
  background: url(../images/treatment.jpeg) center center no-repeat;
  background-size: cover;
}

.inner-hero-banner{
  margin-top: 20px;
}

.inner-hdr-title-section{
  background: #ff7b1e;
  background: -webkit-gradient(linear, left top, right top, from(#ff7b1e), to(#37d6c0));
  background: -webkit-linear-gradient(left, #ff7b1e, #37d6c0);
  background: -moz-linear-gradient(left, #ff7b1e, #37d6c0);
  background: -ms-linear-gradient(left, #ff7b1e, #37d6c0);
  background: -o-linear-gradient(left, #ff7b1e, #37d6c0);
  background: linear-gradient(to right, #ff7b1e, #37d6c0);
  padding: 20px 0;
}
.inner-hdr-title-section h3{
  color: var(--theme-white-color);
  font-weight: 400;
}

.contact-area{
  padding: 40px 0;
}
.contact-area .form-control{
  border-radius: 30px;
  padding: .375rem 1rem;
}
.contact-area .form-control:focus {
  color: var(--theme-black-color);
  background-color: var(--bs-body-bg);
  border-color: #c0c0c0;
  outline: 0;
  box-shadow: none;
}
.contact-area .form-label{
  color: var(--theme-para-color);
}
.send-btn{
  background: #07a7e3;
  border: 1px solid #07a7e3;
  padding: 10px 35px;
  font-size: 14px;
  color: var(--theme-white-color);
  border-radius: 30px;
  transition: 0.4s;
}
.send-btn:hover{
  background: transparent;
  color: #07a7e3;
  border: 1px solid #07a7e3;
}
.contact-dtls h3{
  font-size: 24px;
  font-weight: 700;
  color: var(--theme-black-color);
}
.contact-dtls p{
  font-size: 18px;
  color: var(--theme-para-color);
}
.contact-dtls a{
  color: var(--theme-black-color);
}
.contact-dtls h4{
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-black-color);
}
.contact-dtls .map img{
  width: 400px;
}

ul.cmn-inner-list li{
  position: relative;
}
ul.cmn-inner-list li:after{
  content: '\f105';
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 14px;
  color: var(--theme-blue-color);
}
ul.cmn-inner-list li p{
  font-size: 18px!important;
  color: var(--theme-black-color)!important;
  margin-left: 20px;
  margin-bottom: 0;
  padding: 5px 0;
  display: block;
}

.callus-btn {
  background: var(--theme-yellow-color);
  border: 2px solid var(--theme-yellow-color);
  color: var(--theme-white-color);
  padding: 6px 30px;
  border-radius: 30px;
  font-size: 20px !important;
  transition: 0.4s;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}
.callus-btn:hover {
  background: transparent;
  border: 2px solid var(--theme-yellow-color);
  color: var(--theme-yellow-color);
}

.about-inner{
  padding: 40px 0;
}

.name-line {
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 300;
}
.name-line span {
  margin-right: 20px; /* space between text and line */
}
.name-line::after {
  content: "";
  flex: 1;
  height: 1.5px;
  background-color: var(--theme-green-color); /* line color */
}

.heading-line {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 26px;
  font-weight: 400;
}

.heading-line::before,
.heading-line::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid var(--theme-green-color); /* line color */
}

.heading-line:not(:empty)::before {
  margin-right: 15px; /* space between left line and text */
}

.heading-line:not(:empty)::after {
  margin-left: 15px; /* space between right line and text */
}

/*Fancybox ===========================================*/
.gallery-list {
  overflow: visible;
}

.gallery-list .sk-box {
  position: relative;
  overflow: hidden;
  /*background: #0e86d4 !important;*/
  color: var(--theme-black-color);
  /*-webkit-border-radius: 4px;
  border-radius: 0;*/
}

.gallery-list .sk-box p{
  font-size: 18px;
  padding-top: 10px;
  font-family: var(--theme-header-font-family);
  margin-bottom: 0;
}

.gallery-list .sk-box a {
  display: block;
  color: inherit;
}

.gallery-list .sk-box figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 104%;
  border-radius: 0;
  text-align: center;
  margin-bottom: 0;
}

.gallery-list .sk-box figure img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%) scale(1.01);
  transform: translate(0, -50%) scale(1.01);
  width: 100%;
  height: 100%;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  object-fit: cover;
}

.sk-box:hover a figure img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.gallery-list .sk-box .sk-text {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 10px;
  margin: 0;
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  margin: 0 auto;
  text-align: center;
}

.gallery-list .sk-box:hover .sk-text {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.gallery-list .readmore {
  width: 50px !important;
  height: 50px !important;
  display: block;
  margin: auto;
  background: #fff !important;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  color: #0e86d4 !important;
  font-size: 0;
  position: relative;
}

.gallery-list .readmore:before {
  content: "\f002";
  display: block;
  font-family: "FontAwesome";
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.gallery-list .sk-video-box .readmore:before {
  content: "\f16a";
}

.gallery-list .readmore:hover {
  color: #4f5cc5;
}

.gallery-list .sk-box .sk-text .subheading {
  text-align: inherit;
  color: inherit;
  text-transform: uppercase;
}

.gallery-list .sk-box:hover figure img {
  -webkit-transform: translate(0, -50%) scale(1.1);
  transform: translate(0, -50%) scale(1.1);
  opacity: 0.5;
}

.gallery-list .sk-box:hover .sk-text {
  top: 45%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-align: center;
  margin: 0 auto;
}

/*Faq ========================================*/
.faq-item {
  /* background: #fff; */
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 5px 0;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  cursor: pointer;
  transition: 0.3s;
}
.faq-question {
  font-size: 15px;
  font-weight: 300;
  position: relative;
  padding-left: 40px;
}
.faq-question:hover::after{
  background: var(--theme-green-color);
  color: var(--theme-white-color);
  border-color: var(--theme-green-color);
}
.faq-answer {
  display: none;
  margin-top: 10px;
  color: #8c7d7d;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 40px;
}
.faq-question::after {
  content: "+";
  position: absolute;
  left: 0;
  font-size: 20px;
  transition: transform 0.3s;
  border: 1px solid #d2d2d2;
  border-radius: 30px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 20px;
  transition: 0.4s;
}
.faq-item.active .faq-question::after {
  content: "-";
}

/*Blog Section ===============================*/
.inner-blog-title-section{
  background: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#37d6c0));
  background: -webkit-linear-gradient(left, #ffffff, #37d6c0);
  background: -moz-linear-gradient(left, #ffffff, #37d6c0);
  background: -ms-linear-gradient(left, #ffffff, #37d6c0);
  background: -o-linear-gradient(left, #ffffff, #37d6c0);
  background: linear-gradient(to right, #ffffff, #37d6c0);
  padding: 20px 0;
}
.blog-rgt{
  border-left: 1px solid #e5e5e5;
  padding: 70px 0 30px 40px;
  height: 100%;
}
.blog-rgt h2{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}
.blog-rgt ul li{
    display: flex;
    align-items: start;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    padding-left: 30px;
}
.widget_recent_entries{margin-bottom: 30px;}
.blog-rgt ul li:before{
  content: "\f3d7";
  display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        position: absolute;
    left: 0;
    top: 5px;
        color: #bebebe;
    font-size: 16px;
}
.blog-rgt ul li:last-child{
  border-bottom: 0;
}
.blog-rgt ul li .bi {
    color: #bebebe;
    font-size: 16px;
    margin-right: 10px;
}
.blog-rgt ul li a{
    color: var(--theme-dark-gray-color);
    font-size: 18px;
}
.blog-rgt ul li a:hover{
  color: #07a7e3;
}

.blog-lft{
  padding: 20px 40px 30px 0;
}
.blog-card{
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  overflow: hidden;
}
.blog-card .post-img img{
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.post-title{
  padding: 25px 30px;
}
.post-title h1, .post-title a{
  color: #373f50;
  font-size: 26px;
}
.post_cont_info{
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.post_post_date {
  color: #c0c0c0;
  font-size: 11px;
  margin-right: 20px;
}
.post_post_date .published{
  text-decoration: none;
}
.post_user_name{
  color: #c0c0c0;
  font-size: 11px;
  margin-right: 20px;
}
.post_user_name .vcard{
  color: #07a7e3;
}
.post_category{
  color: #c0c0c0;
  font-size: 11px;
}
.post_category .category {
  color: #07a7e3;
}
.post_meta_info a{
  display: flex;
}
.post_meta_info span.number{
  color: #333333!important;
  font-size: 14px;
  margin-right: 5px;
}
span.postLike .bi{
  font-size: 16px;
  color: #c0c0c0;
}
span.postLike .bi:hover{
  color: #07a7e3;
}
.post_content{
  padding: 15px 30px;
}
.post_content p{
  font-size: 18px !important;
  color: var(--theme-para-color) !important;
}
.post_content p a{
  color: #07a7e3;
}
.post_content p a:hover{
  color: var(--theme-para-color);
}
.post_content ul, .post_content ol {
    list-style-position: inside;
    margin-bottom: 20px;
    margin-left: 0;
    padding: 0;
}
.post_content ul li, .post_content ol li{
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  color: #373f50;
  padding-left: 20px;
}
.post_content ul li:after, .post_content ol li:after{
    content: '\f105';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 14px;
    color: var(--theme-blue-color);
}

.post_footer {
    padding: 0 30px 15px;
}
.post_footer a.post_read_more{
  font-size: 12px;
  color: #07a7e3;
}
.post_footer a.post_read_more:hover{
  color: #c0c0c0;
}
.post_nav{
  padding: 25px 0;
  margin: 40px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
}
.post_nav a{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--theme-black-color);
}
.post_nav a span.next-prev-icon{
  width: 26px;
  height: 26px;
  border-radius: 30px;
  line-height: 27px;
  border: 1px solid #d2d2d2;
  color: rgb(1 1 9 / 54%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-nav-text{
  width: 90%;
  padding: 0 10px;
  font-size: 14px;
}
.share-post h3 {
  font-size: 22px;
  font-weight: 400;
}
.share-post .twitter{
  background: var(--theme-black-color);
  color: var(--theme-white-color);
  font-size: 12px;
  border-radius: 15px;
  padding: 5px 10px;
  margin: 0 2px 0 0;
}
.share-post .pinterest{
  background: red;
  color: var(--theme-white-color);
  font-size: 12px;
  border-radius: 15px;
  padding: 5px 10px;
}
.recent-post h3 {
  font-size: 22px;
  font-weight: 400;
}
.recent-post-card{
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  overflow: hidden;
}
.recent-post-card .post-img{
  height: 246px;
  overflow: hidden;
  position: relative;
  transition: 0.4s;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.recent-post-card .post-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.recent-post-card .post-img:hover img{
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  transform: scale(1.3);
}
.recent-post-card .post-img .img_rollover {
    background-color: transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.4s;
}
.recent-post-card .post-img:hover .img_rollover{
  background: #37D6C0;
  background: linear-gradient(90deg,rgba(55, 214, 192, 0.72) 0%, rgba(7, 167, 227, 1) 100%);
}
.recent-post-card .post-img .img_rollover a.image_view{
  font-size: 18px;
  width: 3em;
  height: 3em;
  position: absolute;
  left: -54px;
  right: 50%;
  top: 0;
  bottom: 0;
  margin: auto!important;
  opacity: 0;
  border: 1px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  text-align: center;
  line-height: 3.5rem;
  -webkit-transition: left 0.2s ease-out 0.2s, right 0.2s ease-out 0.2s,
  color 0.3s ease-in-out, background-color 0.3s ease-in-out,
  opacity 0.3s ease-out 0.3s;
-moz-transition: left 0.2s ease-out 0.2s, right 0.2s ease-out 0.2s,
  color 0.3s ease-in-out, background-color 0.3s ease-in-out,
  opacity 0.3s ease-out 0.3s;
-ms-transition: left 0.2s ease-out 0.2s, right 0.2s ease-out 0.2s,
  color 0.3s ease-in-out, background-color 0.3s ease-in-out,
  opacity 0.3s ease-out 0.3s;
-o-transition: left 0.2s ease-out 0.2s, right 0.2s ease-out 0.2s,
  color 0.3s ease-in-out, background-color 0.3s ease-in-out,
  opacity 0.3s ease-out 0.3s;
transition: left 0.2s ease-out 0.2s, right 0.2s ease-out 0.2s,
  color 0.3s ease-in-out, background-color 0.3s ease-in-out,
  opacity 0.3s ease-out 0.3s;
}
.recent-post-card .post-img .img_rollover:hover a.image_view{
  top: 0;
  bottom: 0;
  left: -65px;
  right: 0;
  opacity: 1;
  margin: auto!important;
}
.recent-post-card .post-img .img_rollover a.image_view:hover{
  background: #ffffff;
  color: #07a7e3;
}
.recent-post-card .post-img .img_rollover a.image_link{
  font-size: 18px;
  width: 3em;
  height: 3em;
  position: absolute;
  left: 50%;
  right: -54px;
  top: 0;
  bottom: 0;
  margin: auto!important;
  opacity: 0;
  border: 1px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  text-align: center;
  line-height: 3.5rem;
  -webkit-transition: left 0.2s ease-out 0.2s, right 0.2s ease-out 0.2s,
  color 0.3s ease-in-out, background-color 0.3s ease-in-out,
  opacity 0.3s ease-out 0.3s;
-moz-transition: left 0.2s ease-out 0.2s, right 0.2s ease-out 0.2s,
  color 0.3s ease-in-out, background-color 0.3s ease-in-out,
  opacity 0.3s ease-out 0.3s;
-ms-transition: left 0.2s ease-out 0.2s, right 0.2s ease-out 0.2s,
  color 0.3s ease-in-out, background-color 0.3s ease-in-out,
  opacity 0.3s ease-out 0.3s;
-o-transition: left 0.2s ease-out 0.2s, right 0.2s ease-out 0.2s,
  color 0.3s ease-in-out, background-color 0.3s ease-in-out,
  opacity 0.3s ease-out 0.3s;
transition: left 0.2s ease-out 0.2s, right 0.2s ease-out 0.2s,
  color 0.3s ease-in-out, background-color 0.3s ease-in-out,
  opacity 0.3s ease-out 0.3s;
}
.recent-post-card .post-img .img_rollover:hover a.image_link{
  top: 0;
  bottom: 0;
  left: 0;
  right: -65px;
  opacity: 1;
  margin: auto!important;
}
.recent-post-card .post-img .img_rollover a.image_link:hover{
  background: #ffffff;
  color: #07a7e3;
}


.recent-post-card .recent-post-details{
  padding: 15px;
}
.recent-post-card .recent-post-details a.post-title{
  color: var(--theme-black-color);
  font-size: 16px;
  padding: 0;
  font-weight: 400;
  display: block;
}
.recent-post-card .recent-post-details a.blog-link{
  color: #07a7e3;
  font-size: 16px;
  padding: 0;
  display: block;
}
.recent-post-card .recent-post-details a.blog-link:hover{
  color: var(--theme-para-color);
}

/*Exercise Section ============================================*/
.exc-cnt h3{
  font-size: 26px;
  font-weight: 600;
  color: #0478c3;
  font-family: var(--theme-header-font-family);
}
.exc-cnt p {
    font-size: 14px !important;
    color: var(--theme-black-color) !important;
}
.exe-card{
  background: #f2f8fc;
  padding: 20px;
  border-radius: 40px;
  height: 100%;
}
.exe-img{
  height: 250px;
}
.exe-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.exe-cnt{
  margin-top: 20px;
}
.exe-cnt h4{
  color: #0478c3;
  font-size: 18px;
}
.exe-cnt p{
  color: var(--theme-black-color);
  font-size: 14px;
}
.exe-cnt ul li:last-child p{
  margin-bottom: 0;
}
.exe-cnt p a{
  color: #0478c3;
}
.exe-btn{
  font-size: 14px;
  background: #0478c3;
  color: var(--theme-white-color);
  text-transform: uppercase;
  padding: 15px 15px;
  border-radius: 8px;
  text-align: center;
  transition: 0.4s;
  margin-top: 15px;
  display: inline-block;
}
.exe-btn:hover{
  background: var(--theme-black-color);
}
.exe-btn:focus{
  color: var(--theme-white-color)!important;
}



/*Footer Section =============================*/
.ftr-top{
  background: var(--theme-dark-gray-color);
  padding: 40px 0;
}
.ftr-top .ftr-cnt h3{
  font-size: 25px;
  color: var(--theme-white-color);
  font-family: var(--theme-header-font-family);
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
}
.ftr-top .ftr-cnt h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 63px;
  height: 1px;
  background: var(--theme-green-color);
}
.slide-item a{
  margin-right: 5px;
}
.slide-item a img{
  width: 40px;
  height: 40px;
}
.ftr-top .ftr-cnt p{
  margin-bottom: 5px;
}
.ftr-top .ftr-cnt a, .ftr-top .ftr-cnt p{
  color: var(--theme-white-color);
  font-size: 14px;
}
.unblock{
  background: var(--theme-green-color);
  border: 2px solid var(--theme-green-color);
  color: var(--theme-white-color);
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 16px !important;
  transition: 0.4s;
  font-weight: 600;
}
.unblock:hover{
  background: transparent;
  border: 2px solid var(--theme-white-color);
}
.ftr-cnt hr{
  border: 1px solid rgba(255,255,255,0.52);
}
.news-list ul li{
  display: flex;
  align-items: start;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255 255 255 / 18%);
}
.news-list ul li:last-child{
  border-bottom: none;
}
.news-list li .bi{
  color: var(--theme-white-color);
  font-size: 14px;
}
.news-list li a{
  color: var(--theme-white-color);
  font-size: 14px;
  padding-left: 20px;
}
.ftr-btm{
  padding: 15px 0;
}
.ftr-btm .copyright p{
  color: var(--theme-black-color);
  font-size: 14px;
  margin-bottom: 0;
}
.ftr-btm ul.ftr-menu{
  display: inline-block;
}
.ftr-btm ul.ftr-menu li{
  display: inline-block;
  margin-left: 5px;
  border-right: 1.6px solid #333333;
  padding-right: 8px;
  line-height: 16px;
}
.ftr-btm ul.ftr-menu li a{
  color: #07a7e3;
  font-size: 14px;
}
.ftr-btm ul.ftr-menu li a:hover{
  color: var(--theme-black-color);
}
.menu-item-has-children .megamenu-list li:first-child{display: none;}
.cmn-inner-list{
  font-size: 18px !important;
    color: var(--theme-para-color) !important;
}
.cmn-inner-list li:after {
    content: '\f105';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 14px;
    color: var(--theme-blue-color);
}
.cmn-inner-list ul{margin-bottom: 20px; position: relative;}
.cmn-inner-list ul li{position: relative; padding-bottom: 6px; padding-left: 20px; color: #373f50;}
.morp{
  float: right;
    padding-left: 20px;
}
.tbletext{
  line-height: 40px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.cmn-inner-list h3, .cmn-inner-list table{color: #373f50;}
.cmn-inner-list ol li{padding-bottom: 6px; color: #373f50;}
.cmn-inner-list h3{font-size: 20px;}
.cmn-inner-list ol li:after{display: none !important;}
.main-menu-more{display: none;}
.boxt{display: none;}

.imgfr{
  float: right;
  padding-left: 15px;
}
.imgfl{
  float: left;
  padding-right: 15px;
}

/* Pagination wrapper */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* wrap for very small screens */
  gap: 8px;
  margin: 30px 0;
  font-family: Arial, sans-serif;
}

/* Links and numbers */
.nav-links a.page-numbers,
.nav-links span.page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #0073aa;
  transition: all 0.3s ease;
  font-size: 14px;
  min-width: 36px; /* ensures clickable area */
  box-sizing: border-box;
}

/* Hover effect */
.nav-links a.page-numbers:hover {
  background-color: #0073aa;
  color: #fff;
  border-color: #0073aa;
}

/* Current page */
.nav-links .page-numbers.current {
  background-color: #0073aa;
  color: #fff;
  border-color: #0073aa;
  font-weight: bold;
}

/* Dots (…) */
.nav-links .page-numbers.dots {
  border: none;
  background: none;
  color: #666;
  cursor: default;
  padding: 8px;
}

/* Prev & Next links */
.nav-links a.prev,
.nav-links a.next {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

/* Prev/Next hover */
.nav-links a.prev:hover,
.nav-links a.next:hover {
  background-color: #0073aa;
  color: #fff;
  border-color: #0073aa;
}

/* SVG icons inside Prev/Next */
.nav-links svg.svg-icon {
  fill: currentColor;
  width: 20px;
  height: 20px;
}

/* Responsive styles */

/* Tablet */
@media (max-width: 768px) {
  .nav-links {
    gap: 6px;
  }

  .nav-links a.page-numbers,
  .nav-links span.page-numbers {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
    padding: 0 8px;
  }

  .nav-links a.prev,
  .nav-links a.next {
    padding: 6px 10px;
  }

  .nav-links .nav-prev-text,
  .nav-links .nav-next-text {
    display: none; /* Hide long text on tablets */
  }
}

/* Mobile */
@media (max-width: 480px) {
  .nav-links {
    gap: 4px;
  }

  .nav-links a.page-numbers,
  .nav-links span.page-numbers {
    min-width: 28px;
    height: 28px;
    font-size: 12px;
    padding: 0 6px;
  }

  .nav-links a.prev,
  .nav-links a.next {
    padding: 4px 8px;
    font-size: 12px;
  }

  .nav-links svg.svg-icon {
    width: 16px;
    height: 16px;
  }

  .nav-links .dots {
    display: none; /* Hide "…" for very small screens */
  }
}

/* Extra small screens < 360px */
@media (max-width: 360px) {
  .nav-links {
    gap: 2px;
  }

  .nav-links a.page-numbers,
  .nav-links span.page-numbers {
    min-width: 24px;
    height: 24px;
    font-size: 11px;
    padding: 0 4px;
  }

  .nav-links a.prev,
  .nav-links a.next {
    padding: 3px 6px;
    font-size: 11px;
  }

  .nav-links svg.svg-icon {
    width: 14px;
    height: 14px;
  }
}

:root {
    --color-content-bg-grad: #ffffff;
    --color-content-primary: #60b674;
    --color-content-secondary: #1e73be;
    --color-content-text: #828282;
    --color-content-bg-alt-grad: #dbdbdb;
    --color-content-bg-alt: #eee;
}

.cliniko-booking-form .step{
background: #ddd;
  padding: 24px;
}
.cliniko-booking-form .step-heading{
font-size: 21px;
  font-weight: bold;
  color: #5e5e5e;
}
.cliniko-booking-form .nav-buttons {
margin: 20px 0px;
text-align: left !important;
}

#prev_btn, #next_btn, #submit_btn {

    margin: 0 0px;
    padding: 5px 30px;
    border-radius: 0px;
    font-size: 18px !important;
}
.service-cat{background: #575f5b;
  color: white;
  padding: 20px 1rem;}
.service-group{
background:white;
}
.button.select.auto-next.primary {
  font-size: 1rem;
  background: #60b674;
  border-radius: 0px;
  padding: 12px 16px;
}
.any-practitioner, .practitioner{
background: #f7f7f7;
  padding: 0px;
  color: #5e5e5e;

}
.any-practitioner a, .practitioners .practitioner label {
  cursor: pointer;
  display: block;
  border: 1px solid #ccc;
  padding: 20px;
  transition: .4s;
}
.calendar-body, .booking-hours{

display: inline-block;
}
.time{
background: #60b674;
  color: white;
  border-radius: 0px;}
.calendar-head h4{
text-align: center;
  background: #eee;
font-weight : bold;
  padding: 10px;
  border: 1px solid #ddd;
}
.form-calendar tr td.day{
padding:10px
}
.cliniko-booking-form input, .cliniko-booking-form select {
  font-size: 16px !important;
  color: black !important;
}
.cliniko-booking-form h5 {
  font-weight: bold;
  font-size: 15px;
  padding-top: 20px;
}

