:root {
  --primary-color: #0098c1;
  --secondary-color: #e5eaec;
  --text-color: #606778;
  --accent-color: #4ccd27;
  --white-color: #ffffff;
  --black-color: #000000;
  --divider-color: #ffffff33;
  --dark-divider-color: #d4f0f533;
  --error-color: rgb(230, 87, 87);
  --default-font: "Sora", sans-serif;
  --accent-font: "Marcellus", serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  background-color: var(--white-color);
}

p {
  line-height: 1.5em;
  margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--accent-font);
  font-weight: 400;
  line-height: 1.2em;
  color: var(--primary-color);
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1200px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row>* {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters>* {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  display: inline-flex;
  line-height: 1.2em;
  background: var(--secondary-color);
  text-transform: capitalize;
  border-radius: 100px;
  padding: 2px 25px 2px 2px;
  border: none;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.btn-defaults {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2em;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 100px;
  padding: 15px 20px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background: rgb(0, 152, 193);
}

.btn-default:hover {
  background-color: transparent;
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  background-image: url("../images/arrow-blue.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  transform: translate(-10px, -50%);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.btn-default:hover:before {
  filter: brightness(0) invert(1);
  transform: translate(-10px, -50%);
}

.btn-default::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  border-radius: 100px;
  background: var(--primary-color);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.btn-default:hover::after {
  width: 100%;
}

.btn-default span {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2em;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 100px;
  padding: 15px 20px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  z-index: 1;
  background: rgb(0, 152, 193);
  background: radial-gradient(circle, rgba(0, 152, 193, 1) 0%, rgba(1, 86, 108, 1) 99%);
}

.btn-default:hover span {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-default span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  border-radius: 100px;
  background: var(--secondary-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-default:hover span::after {
  width: 100%;
}

.btn-default.btn-highlighted {
  background-color: var(--primary-color);
}

.btn-default.btn-highlighted:hover:after {
  background-color: var(--secondary-color);
}

.btn-default.btn-highlighted::before {
  background-image: url("../images/arrow-white.svg");
}

.btn-default.btn-highlighted:hover:before {
  filter: brightness(0.1) invert(0);
}

.btn-default.btn-highlighted span {
  background-color: var(--secondary-color);
  color: #ffffff;
}

.btn-default.btn-highlighted:hover span {
  background-color: transparent;
  color: var(--secondary-color);
}

.btn-default.btn-highlighted span::after {
  background-color: var(--primary-color);
}

#magic-cursor {
  position: absolute;
  width: 10px !important;
  height: 10px !important;
  pointer-events: none;
  z-index: 1000000;
}

#ball {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 8px !important;
  height: 8px !important;
  background: var(--accent-color);
  margin: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 1 !important;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: #0098c1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.bg-radius-section {
  position: relative;
  /* border-radius: 50px 50px 0 0; */
  margin-top: -50px;
}

.section-row {
  margin-bottom: 60px;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-btn {
  text-align: end;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h3 {
  display: inline-block;
  position: relative;
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--text-color);
  padding-left: 10px;
  margin-bottom: 10px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary-color);
  width: 6px;
  height: 15px;
}

.section-title h1 {
  font-size: 66px;
  margin-bottom: 0;
}

/* .section-title h2 {
  font-size: 40px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
} */
/* .section-titles h2{
  font-size: 40px;
  margin-bottom: 0;
  display: flex;
  justify-content: start;
  gap: 15px;
} */
.section-title h2 {
  font-size: 40px;
  margin-bottom: 0;
}

/* .section-title h2 {
	font-size: 40px;
	margin-bottom: 0;
} */

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 18px;
  align-items: baseline;
  gap: 10px;

}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.topbar {
  padding: 15px 0 65px;
  background-color: var(--primary-color);
  background: rgb(0, 152, 193);
  background: linear-gradient(90deg, rgba(0, 152, 193, 1) 0%, rgba(1, 86, 108, 1) 99%);
}

.topbar-contact-info {
  text-align: left;
}

.topbar-contact-info ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  line-height: 1em;
  padding: 0;
  margin: 0;
  gap: 30px;
}

.topbar-contact-info ul li a {
  color: var(--white-color);
  display: flex;
  align-items: center;
}

.topbar-contact-info ul li a img {
  max-width: 20px;
  margin-right: 10px;
}

.topbar-social-links {
  text-align: right;
}

.topbar-social-links ul {
  list-style: none;
  line-height: 1em;
  padding: 0;
  margin: 0;
}

.topbar-social-links ul li {
  display: inline-block;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li:last-child {
  margin-right: 0;
}

.topbar-social-links ul li a {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
  color: #64ff37;
}

.topbar-social-links ul li a i {
  font-size: 20px;
  color: inherit;
}

header.main-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--divider-color);
  position: relative;
  z-index: 100;
  margin-top: -50px;
  top: -4px;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--accent-color);
  border-bottom: 1px solid var(--divider-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.navbar {
  /* padding: 62px 0 0; */
  align-items: center;
}

.navbar-light .navbar-nav .nav-link {
  color: #1e84b5 !important;
  font-weight: 500;
  font-size: 17px;

}

.header-btn {
  padding-left: 20px !important;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  padding-bottom: 12px;
}

.main-menu .nav-menu-wrapper>ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0 9px;
  position: relative;
}

.main-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  padding: 14px 6px !important;
  color: #1e84b5;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: #b3b3b3;
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 220px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 100%;
  overflow: hidden;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul li.submenu:first-child ul {
  width: 220px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--white-color);
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: #99de85 !important;
  background-color: transparent;
  padding: 8px 20px 8px 23px !important;
}

.header-btn .btn-default {
  padding: 2px 30px 2px 2px;
}

.header-btn .btn-default::before {
  background-image: url("../images/-icon-phone-header-btn.svg");
  width: 15px;
  height: 15px;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: var(--primary-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--white-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--primary-color);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--text-color);
}

.slicknav_menu ul ul li a {
  padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--white-color);
  position: absolute;
  right: 15px;
  top: 15px;
  transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
  transform: rotate(-180deg);
  color: var(--text-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
  background: var(--primary-color) url("../images/hero-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 240px 0 210px;
  margin-top: 0px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--black-color);
  opacity: 50%;
  width: 100%;
  height: 100%;
}

.hero.hero-video {
  overflow: hidden;
}

.hero.hero-video .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero.hero-video .hero-bg-video::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--black-color);
  opacity: 50%;
  width: 100%;
  height: 100%;
}

.hero.hero-video .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.hero-slider-layout {
  background: none;
  padding: 0;
  z-index: 0;
}

.hero.hero-slider-layout .hero-slide {
  position: relative;
  padding: 170px 0 170px;
}

.hero.hero-slider-layout .hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--black-color);
  opacity: 65%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
  position: absolute;
  bottom: 70px;
  text-align: center;
  z-index: 1;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  z-index: 1;
}

.hero-content .section-title h1 {
  color: var(--white-color);
}

.hero-content .section-title h2 {
  color: var(--white-color);
}

.hero-content .section-title h3 {
  color: var(--white-color);
}

.hero-content .section-title p {
  font-size: 18px;
  color: var(--white-color);
}

.hero-content-body .btn-default.btn-highlighted {
  margin-left: 30px;
}

/************************************/
/***      05. Our Benefits css	  ***/
/************************************/

.our-benefits {
  background-color: var(--primary-color);
  padding: 50px 0 100px;
  background: rgb(0, 152, 193);
  background: linear-gradient(90deg, rgba(0, 152, 193, 1) 0%, rgba(1, 86, 108, 1) 99%);
}

.benefits-item {
  display: flex;
  align-items: start;
  border-right: 1px solid var(--divider-color);
  padding-right: 15px;
}

.our-benefits .col-lg-4:last-child .benefits-item {
  border: none;
  padding-right: 0;
}

.benefits-item .icon-box {
  position: relative;
  margin-right: 20px;
}

.benefits-item .icon-box::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  background-color: #bebebe96;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.benefits-item .icon-box img {
  position: relative;
  width: 35px;
  z-index: 1;
}

.benefits-content {
  width: calc(100% - 55px);
}

.benefits-content h3 {
  font-size: 18px;
  text-transform: capitalize;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.benefits-content p {
  color: var(--white-color);
  margin: 0;
}

/************************************/
/***       06. About Us css 	  ***/
/************************************/

.about-us {
  background-color: var(--white-color);
  padding: 70px 0 100px;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-content-body {
  margin-bottom: 40px;
}

.about-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.about-list-item:last-child {
  margin-bottom: 0;
}

.about-list-item .icon-box {
  position: relative;
  margin-right: 20px;
}

.about-list-item .icon-box::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.about-list-item .icon-box img {
  position: relative;
  max-width: 40px;
  z-index: 1;
}

.about-list-content {
  width: calc(100% - 60px);
}

.about-list-content p {
  font-weight: 600;
  color: var(--primary-color);
  text-transform: capitalize;
  margin: 0;
}

.about-trusted-customer {
  background-color: var(--white-color);
  box-shadow: 0px 0px 30px 0px #0000001a;
  border-radius: 10px;
  padding: 25px;
}

.trusted-customer-image {
  margin-bottom: 15px;
}

.trusted-customer-image img {
  max-width: 160px;
}

.trusted-customer-rating {
  margin-bottom: 5px;
}

.trusted-customer-rating ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trusted-customer-rating ul li i {
  font-size: 14px;
  color: #ff7d05;
}

.trusted-customer-content p {
  text-transform: capitalize;
  margin: 0;
}

.about-us-images {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  z-index: 1;
}

.about-image {
  width: calc(50% - 15px);
}

.about-image figure {
  box-shadow: 0px 0px 30px 0px #00000033;
}

.about-image.img-box-1 figure,
.about-image.img-box-1 img {
  border-radius: 500px 0 0 0;
}

.about-image.img-box-2 figure,
.about-image.img-box-2 img {
  border-radius: 0 500px 0 0;
}

.about-image.img-box-3 figure,
.about-image.img-box-3 img {
  border-radius: 0 0 0 500px;
}

.about-image.img-box-4 figure,
.about-image.img-box-4 img {
  border-radius: 0 0 500px 0;
}

.about-circle-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white-color);
  box-shadow: 0px 0px 30px 0px #0000004d;
  border-radius: 50%;
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
  z-index: 1;
}

.about-us-images:hover .about-circle-logo {
  background-color: #ffffff;
}

.about-circle-logo::before {
  background-color: var(--primary-color);
}

.about-us-images:hover .about-circle-logo::before {
  transform: scale(1.1);
}

.about-us-images .about-circle-logo img {
  max-width: 85px;
  transition: all 0.4s ease-in-out;
}

/* .about-us-images:hover .about-circle-logo img {
      filter: brightness(0) invert(1);
    } */

/************************************/
/***     07. Our Services css 	  ***/
/************************************/

.our-services {
  position: relative;
  background: var(--secondary-color);
  padding: 100px 0;
}

.our-services::before {
  content: "";
  position: absolute;
  top: -380px;
  left: 0;
  right: 0;
  background: url("../images/service-bg-shape.svg") no-repeat;
  background-position: top center;
  background-size: cover;
  width: 100%;
  height: 50%;
  z-index: 0;
}

.our-services::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 0;
  background: url("../images/service-bg-cricle.svg") no-repeat;
  background-position: top right;
  background-size: auto;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.our-services .section-row {
  position: relative;
  z-index: 1;
}

.service-item {
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  z-index: 1;
}

.service-item-image {
  position: relative;
  box-shadow: 0px 0px 30px 0px #00000026;
  border-radius: 10px;
  overflow: hidden;
}

.service-item-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--black-color);
  opacity: 50%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-item-image img {
  aspect-ratio: 1 / 0.98;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

.service-item:hover .service-item-image img {
  transform: scale(1.1);
}

.service-item .icon-box {
  position: absolute;
  top: 0;
  left: 30px;
  border-radius: 0 0 10px 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}

.service-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white-color);
  opacity: 20%;
  width: 100%;
  height: 100%;
}

.service-item .icon-box::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  border-radius: 0 0 10px 10px;
}

.service-item:hover .icon-box::after {
  transform: scale(1.1);
}

.service-item .icon-box img {
  position: relative;
  max-width: 56px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.service-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.service-body {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 10px;
  z-index: 2;
}


.service-content h3 {
  font-size: 22px;
  text-transform: capitalize;
}

.service-content p {
  /* color: var(--white-color); */
  margin: 0;
}

.service-btn a {
  position: relative;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.service-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary-color);
  opacity: 30%;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.service-btn a:hover:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
}

.service-btn a img {
  position: relative;
  max-width: 16px;
  z-index: 1;
}

.more-service-btn {
  position: relative;
  text-align: center;
  margin-top: 20px;
  z-index: 1;
}

.more-service-btn a {
  font-family: var(--accent-font);
  font-size: 24px;
  color: var(--white-color);
}

.more-service-btn a img {
  max-width: 24px;
  margin-left: 20px;
}

.bg-section {
  position: relative;
  background-color: var(--primary-color);
  padding: 0px 0;
  border-radius: 50px 50px 0 0;
  margin-top: 0px;
}

/*************************************/
/***  08. Care Rehabilitation css  ***/
/*************************************/

.care-rehabilitation {
  background-color: var(--white-color);
  padding: 100px 0 120px;
}

.rehab-benefits-item {
  background-color: var(--primary-color);
  border-radius: 10px;
  text-align: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px 30px;
}

.rehab-benefits-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.rehab-benefits-item .icon-box::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.rehab-benefits-item .icon-box img {
  position: relative;
  max-width: 50px;
  z-index: 1;
}

.rehab-benefits-content h3 {
  font-size: 18px;
  text-transform: capitalize;
  color: var(--white-color);
}

/************************************/
/***   09. Quality Treatment css  ***/
/************************************/

.our-quality {
  background-color: var(--secondary-color);
}

.quality-treatment {
  background: linear-gradient(90deg,
      var(--secondary-color) 50%,
      transparent 50%),
    url(../images/quality-treatment-img.jpg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto;
  padding: 100px 0 150px;
  overflow: hidden;
}

.quality-treatment::before {
  content: "";
  position: absolute;
  bottom: 50px;
  right: 0;
  background: url("../images/quality-treatment-img-shape.svg") no-repeat;
  background-position: bottom right;
  background-size: auto;
  width: 100%;
  height: 100%;
}

.quality-treatment::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(99%);
  background: var(--secondary-color);
  border-radius: 0 0 200px 0;
  width: 200px;
  height: 100%;
}

.quality-treatment-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  z-index: 1;
}

.quality-treatment-body {
  margin-bottom: 40px;
}

.quality-treatment-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quality-treatment-body ul li {
  position: relative;
  color: var(--primary-color);
  text-transform: capitalize;
  padding-left: 30px;
  margin-bottom: 15px;
}

.quality-treatment-body ul li:last-child {
  margin-bottom: 0;
}

.quality-treatment-body ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  color: var(--primary-color);
  display: inline-block;
  line-height: normal;
  position: absolute;
  top: 2px;
  left: 0;
}

.quality-treatment-footer .btn-default {
  background-color: var(--white-color);
}

.quality-treatment-footer .btn-default span::after {
  background-color: var(--white-color);
}

/************************************/
/***      10. How It Work css     ***/
/************************************/

.how-it-work {
  background: var(--white-color) url("../images/how-work-bg.svg") no-repeat;
  background-position: left top;
  background-size: auto;
  padding: 130px 0 70px;
}

.how-work-images {
  background: url("../images/how-work-image-bg-shape.svg") no-repeat;
  background-position: right -30px bottom;
  background-size: auto;
  padding: 0 40px 40px 0;
}

.how-work-image-box-1 {
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}

.how-work-image-box-2 {
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}

.how-work-img-4,
.how-work-img-3,
.how-work-img-2,
.how-work-img-1 {
  width: 100%;
}

.how-work-img-4 figure,
.how-work-img-3 figure,
.how-work-img-2 figure,
.how-work-img-1 figure {
  display: block;
}

.how-work-img-4 img,
.how-work-img-3 img,
.how-work-img-2 img,
.how-work-img-1 img {
  width: 100%;
  object-fit: cover;
}

.how-work-img-1 img {
  aspect-ratio: 1 / 1.1;
}

.how-work-img-2 img {
  aspect-ratio: 1 / 1.12;
}

.how-work-img-3 img {
  aspect-ratio: 1 / 2.28;
}

.how-work-img-4 img {
  aspect-ratio: 1 / 0.57;
}

.how-work-accordion .accordion-item {
  margin-bottom: 25px;
  border-radius: 10px;
  overflow: hidden;
}

.how-work-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.how-work-accordion .accordion-header {
  position: relative;
}

.how-work-accordion .accordion-item .icon-box {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--secondary-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.how-work-accordion .accordion-item .accordion-header .icon-box img {
  max-width: 36px;
}

.how-work-accordion .accordion-header .accordion-button {
  position: relative;
  font-family: var(--accent-font);
  font-size: 22px;
  line-height: 1.2em;
  background-color: transparent;
  color: var(--primary-color);
  padding: 15px 30px 15px 110px;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}

.how-work-accordion .accordion-button:not(.collapsed) {
  padding: 30px 30px 30px 110px;
  background-color: var(--primary-color);
  color: var(--white-color);
}

.how-work-accordion .accordion-header .accordion-button.collapsed {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.how-work-accordion .accordion-item .accordion-button::after,
.how-work-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f077";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 0;
  top: 50%;
  bottom: auto;
  transform: translate(-30px, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  width: 20px;
  height: 20px;
  padding: 5px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.how-work-accordion .accordion-item .accordion-button.collapsed::after {
  transform: translate(-30px, -50%) rotate(-180deg);
  color: var(--primary-color);
}

.how-work-accordion .accordion-item .accordion-body {
  background-color: var(--primary-color);
  padding: 0px 30px 20px 30px;
}

.how-work-accordion .accordion-item .accordion-body p {
  color: var(--white-color);
  margin: 0;
}

/************************************/
/***    11. Our Pricing css    ***/
/************************************/

.our-pricing {
  background: url("../images/pricing-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 130px 0 120px;
  overflow: hidden;
}

.our-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(252.64deg,
      rgba(2, 48, 71, 0) 50.13%,
      rgba(0, 0, 0, 0.9) 77.06%,
      #021c29 96.7%);
  width: 100%;
  height: 100%;
}

.our-pricing-content {
  position: relative;
  z-index: 1;
}

.our-pricing-content .section-title p,
.our-pricing-content .section-title h3,
.our-pricing-content .section-title h2 {
  color: var(--white-color);
}

.our-pricing-content .section-btn {
  text-align: left;
}

.pricing-item {
  position: relative;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 30px;
}

.pricing-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white-color);
  opacity: 20%;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.pricing-item.highlighted-box::after {
  content: "Recommended";
  position: absolute;
  top: 0;
  left: 30px;
  transform: translateY(-100%);
  background-color: var(--white-color);
  color: var(--primary-color);
  font-size: 10px;
  line-height: normal;
  border-radius: 5px 5px 0 0;
  padding: 8px;
  z-index: 1;
}

.pricing-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--white-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
  z-index: 1;
}

.pricing-title {
  margin-right: 10px;
}

.pricing-title h3 {
  font-size: 26px;
  text-transform: capitalize;
  color: var(--white-color);
}

.pricing-tag h2 {
  font-family: var(--default-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
}

.pricing-tag h2 sub {
  font-size: 14px;
  font-weight: 300;
  bottom: 0;
}

.pricing-tag p {
  font-size: 10px;
  color: var(--white-color);
  margin: 0;
}

.pricing-body {
  position: relative;
  z-index: 1;
}

.pricing-content {
  margin-bottom: 20px;
}

.pricing-content p {
  color: var(--white-color);
  margin: 0;
}

.pricing-list {
  margin-bottom: 20px;
}

.pricing-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list ul li {
  position: relative;
  color: var(--white-color);
  margin-bottom: 15px;
  padding-left: 25px;
}

.pricing-list ul li:last-child {
  margin-bottom: 0;
}

.pricing-list ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/icon-pricing-list.svg) no-repeat;
  background-position: left center;
  background-size: cover;
  width: 16px;
  height: 16px;
}

.pricing-btn {
  padding: 8px 0;
}

.pricing-btn a {
  position: relative;
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white-color);
  padding-right: 50px;
  transition: all 0.3s ease-in-out;
}

.pricing-btn a:hover {
  color: var(--primary-color);
}

.pricing-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  background-image: url("../images/arrow-readmore-btn.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px auto;
  border-radius: 10px;
  width: 40px;
  height: 40px;
}

/************************************/
/***    12. Therapist Team css    ***/
/************************************/

.therapist-team {
  background-color: var(--white-color);
  padding: 120px 0 100px;
}

.team-member-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.team-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.team-image img {
  width: 100%;
  aspect-ratio: 1/1.2;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
  transform: scale(1.1);
}

.team-social-icon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  transform: translateY(100%);
  text-align: center;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-social-icon {
  bottom: 20px;
  transform: translateY(0);
}

.team-social-icon ul {
  display: inline-block;
  list-style: none;
  line-height: normal;
  margin: 0;
  padding: 15px 30px;
  background: var(--white-color);
  border-radius: 20px;
}

.team-social-icon ul li {
  display: inline-block;
  text-align: center;
  margin-right: 20px;
}

.team-social-icon ul li:last-child {
  margin-right: 0;
}

.team-social-icon ul li a {
  display: block;
}

.team-social-icon ul li a i {
  color: var(--primary-color);
  font-size: 22px;
  transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover i {
  color: var(--text-color);
}

.team-content {
  text-align: center;
}

.team-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.team-content p {
  text-transform: capitalize;
  margin: 0;
}

/************************************/
/***  	13. Our Testimonial css   ***/
/************************************/

.our-testimonial {
  background: var(--primary-color);
  background-position: center right;
  background-size: contain;
  padding: 70px 0 120px;
}

.our-testimonial .section-title {
  position: sticky;
  top: 20px;
  margin-bottom: 0;
}

.our-testimonial .section-title p,
.our-testimonial .section-title h2,
.our-testimonial .section-title h3::before,
.our-testimonial .section-title h3 {
  color: var(--white-color);
}

.our-testimonial .swiper-wrapper {
  cursor: none;
}

.testimonial-item {
  background: var(--white-color);
  border-radius: 10px;
  padding: 30px;
}

.testimonial-item .testimonial-header {
  margin-bottom: 30px;
}

.testimonial-header .testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-header .testimonial-rating i {
  font-size: 16px;
  color: #f56700;
  margin-right: 2px;
}

.testimonial-header .testimonial-rating i:last-child {
  margin-right: 0;
}

.testimonial-header .testimonial-content p {
  color: var(--text-color);
  margin: 0;
}

.testimonial-body {
  display: flex;
  align-items: center;
}

.testimonial-body .author-image {
  margin-right: 15px;
}

.testimonial-body .author-image img {
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-body .author-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.testimonial-body .author-content {
  width: calc(100% - 66px);
}

.testimonial-body .author-content p {
  color: var(--text-color);
  text-transform: capitalize;
  margin: 0;
}

.testimonial-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  border-radius: 6px;
  transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next {
  margin-left: 20px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
  background-color: var(--white-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/arrow-blue-readmore-btn.svg") no-repeat center center;
  background-size: 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before {
  transform: rotate(180deg);
}

/************************************/
/***   	  14. Our Blog css        ***/
/************************************/

.our-blog {
  background-color: var(--white-color);
  padding: 70px 0 70px;
}

.blog-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.post-featured-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.post-featured-image a {
  display: block;
  cursor: none;
  border-radius: 10px;
}

.post-featured-image img {
  aspect-ratio: 1/0.72;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.5s ease-out;
}

.blog-item:hover .post-featured-image img {
  transform: scale(1.1);
}

.blog-item .post-tags {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.blog-item .post-tags a {
  position: relative;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--white-color);
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 12px;
  text-transform: capitalize;
  cursor: pointer;
  overflow: hidden;
}

.blog-item .post-tags a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--white-color);
  opacity: 30%;
  width: 100%;
  height: 100%;
}

.article-meta {
  margin-bottom: 20px;
}

.article-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-meta ul li a {
  font-size: 14px;
  color: var(--text-color);
}

.post-item-body {
  margin-bottom: 20px;
}

.post-item-body h2 {
  font-size: 22px;
  line-height: 1.4em;
}

.post-item-body h2 a {
  color: inherit;
}

.post-item-footer .readmore-btn {
  position: relative;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--primary-color);
  padding-right: 20px;
  transition: 0.3s ease-in-out;
}

.post-item-footer .readmore-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  transform: translateY(-50%);
  background-image: url("../images/arrow-blue-readmore-btn.svg");
  background-repeat: no-repeat;
  background-position: center center;
  width: 12px;
  height: 12px;
  transition: 0.3s ease-in-out;
}

/************************************/
/***        15. Footer css  	  ***/
/************************************/

footer.main-footer {
  background: var(--primary-color);
  background-position: bottom center;
  background-size: contain;
  padding: 50px 0 50px;
  z-index: 2;
}

.about-footer {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.footer-logo img {
  width: 100%;
  max-width: 280px;
}

.about-footer-content h3 {
  font-family: var(--default-font);
  font-size: 22px;
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 20px;
}

.about-footer-content p {
  color: var(--white-color);
  margin-bottom: 0;
  margin-right: 30px;
  font-size: 15px;

}

.about-footer-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  column-gap: 100px;
}

.footer-links {
  width: 100%;
}

.footer-links h3 {
  display: inline-block;
  /* background-color: var(--secondary-color); */
  color: var(--primary-color);
  border-radius: 100px;
  font-family: var(--default-font);
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 5px 0px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links ul li {
  position: relative;
  /* display: inline-block; */
  color: var(--white-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  padding-left: 12px;
  margin-right: 15px;
  list-style: none !important;
  margin-top: 10px;
}

.footer-links ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  bottom: 0;
  transform: translateY(-50%);
  background-color: var(--secondary-color);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.footer-links ul li:last-child {
  margin-right: 0;
}

.footer-links ul li a {
  color: inherit;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.footer-links ul li:hover {
  color: #64ff37;
}

.footer-links.service-links {
  width: 100%;
}

.footer-links.social-links {
  width: 100%;
  text-align: center;
  display: flex;
}

.footer-links.social-links ul {
  list-style: none;
  display: flex;
}

.footer-links.social-links ul li {
  padding-left: 0;
}

.footer-links.social-links ul li::before {
  display: none;
}

.footer-links.social-links ul li a i {
  color: var(--white-color);
  font-size: 30px;
  transition: all 0.3s ease-in-out;
}

.footer-links.social-links ul li:hover a i {
  color: #64ff37;
}

.footer-links.working-links {
  width: 100%;
}

.footer-links.footer-contact-details {
  width: 100%;
}

.footer-contact-box {
  display: flex;
  /* align-items: center; */
  flex-direction: column;
}

.footer-contact-details .footer-info-box {
  display: flex;
  margin-right: 25px;
  padding-top: 15px;
}

.footer-contact-details .footer-info-box:last-child {
  margin-right: 0;
}

.footer-info-box .icon-box {
  margin-right: 10px;
}

.footer-info-box .icon-box img {
  max-width: 20px;
}

.footer-info-box-content {
  width: calc(100% - 30px);
}

.footer-info-box-content p {
  color: var(--white-color);
  margin-bottom: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.footer-links.terms-condition-links {
  width: 100%;
}

.footer-copyright-text {
  margin-bottom: 5px;
}

.footer-copyright-text p {
  color: var(--white-color);
  text-transform: capitalize;
  margin: 0;
}

.footer-terms-condition ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-terms-condition ul li {
  display: inline-block;
}

.footer-terms-condition ul li a {
  color: var(--white-color);
  text-transform: capitalize;
  text-decoration: none;
}

/************************************/
/***     16. About us Page css	  ***/
/************************************/

.page-header {
  background: var(--primary-color) url(../images/hero-bg.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.steam-bath-banner {
  background: var(--primary-color) url(../assets/images/recovery/steam-bath-banner.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.sports-fitness-training {
  background: var(--primary-color) url(../assets/images/rehab/banners/sports-fitness-training-banner-img.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.gait-training {
  background: var(--primary-color) url(../assets/images/rehab/banners/gait-training-banner-img.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.yoga-training-img {
  background: var(--primary-color) url(../assets/images/rehab/banners/yoga-banner-img.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.terms-conditions-page-header {
  background: var(--primary-color) url(../assets/images/banner/terms-conditions.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.neuro-banner-img {
  background: var(--primary-color) url(../assets/images/conditions/neutro-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.sports-banner-image {
  background: var(--primary-color) url(../assets/images/conditions/sports-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.ortho-banner-image {
  background: var(--primary-color) url(../assets/images/conditions/ortho-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.ortho-banner-image {
  background: var(--primary-color) url(../assets/images/conditions/ortho-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.preandpost-surgical-banner-image {
  background: var(--primary-color) url(../assets/images/rehab/banners/pre-post-surgical-rehab-banner-img.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.posture-banner-image {
  background: var(--primary-color) url(../assets/images/rehab/banners/posture-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.icebath-banner-image {
  background: var(--primary-color) url(../assets/images/recovery/ice-bath-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}


.offline-phyiso-banner-image {
  background: var(--primary-color) url(../assets/images/consultation/banners/offline-phisyo.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 285px 0 60px;
  margin-top: -100px;
}

.online-phyiso-banner-image {
  background: var(--primary-color) url(../assets/images/consultation/banners/online-phisyo.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.diet-consultation-online-banner-image {
  background: var(--primary-color) url(../assets/images/consultation/banners/diet-consultation-online-banner.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.diet-consultation-online-banner-image {
  background: var(--primary-color) url(../assets/images/consultation/banners/diet-consultation-online-banner.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.bamboo-banner-image {
  background: var(--primary-color) url(../assets/images/cupping-therapy/banner/bambo-banner-img.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.about-banner-image {
  background: var(--primary-color) url(../assets/images/about/about-image.png);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.dry-banner-image {
  background: var(--primary-color) url(../assets/images/cupping-therapy/banner/dry-cupping-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.wet-banner-image {
  background: var(--primary-color) url(../assets/images/cupping-therapy/banner/wet-cupping-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.fire-banner-image {
  background: var(--primary-color) url(../assets/images/cupping-therapy/banner/fire-cupping-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.pre-and-post-nata-training-banner-image {
  background: var(--primary-color) url(../assets/images/womens-health/banner/pre-and-post-nata-training-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.pcos-and-pcod-banner-image {
  background: var(--primary-color) url(../assets/images/womens-health/banner/pcos-and-pcod-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.pelvic-floor-strengthening-banner-image {
  background: var(--primary-color) url(../assets/images/womens-health/banner/pelvic-floor-strengthening-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.diastasis-recti-banner-image {
  background: var(--primary-color) url(../assets/images/womens-health/banner/diastasis-recti-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.combination-therapy-banner-image {
  background: var(--primary-color) url(../assets/images/modality/banner/combination-therapy-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.tens-banner-image {
  background: var(--primary-color) url(../assets/images/modality/banner/tens-banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.russian-current-banner-image {
  background: var(--primary-color) url(../assets/images/modality/banner/russian-current.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.elector-needling-banner-image {
  background: var(--primary-color) url(../assets/images/neddling/banner/elector-needling-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.dry-needling-banner-image {
  background: var(--primary-color) url(../assets/images/neddling/banner/dry-needling.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.maxo-needling-banner-image {
  background: var(--primary-color) url(../assets/images/neddling/banner/maxo-needling.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}


.online-training-banner-image {
  background: var(--primary-color) url(../assets/images/services/banner/online-training-banner.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.home-visit-banner-image {
  background: var(--primary-color) url(../assets/images/services/banner/home-visit-banner.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.foot-banner {
  background: var(--primary-color) url(../assets/images/services/banner/banner-image.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}


.shockwave-therapy {
  background: var(--primary-color) url(../assets/images/services/banner/shockwave-therapy-banner.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.ulterasound {
  background: var(--primary-color) url(../assets/images/services/banner/banner-ultersound.png);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.iastm {
  background: var(--primary-color) url(../assets/images/services/banner/iastm-banner.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}


.diet-consultation-offline {
  background: var(--primary-color) url(../assets/images/consultation/banners/diet-consultation-offline.png);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}

.interferential-therapy {
  background: var(--primary-color) url(../assets/images/modality/banner/interferential-therapy.webp);
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding: 250px 0 150px;
  margin-top: -100px;
}


.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--black-color);
  opacity: 50%;
  width: 100%;
  height: 100%;
}

.page-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("../images/page-header-bg-shape-1.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto;
  width: 100%;
  height: 100%;
}

.page-header-box {
  position: relative;
  text-align: center;
  z-index: 1;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 66px;
  color: var(--white-color);
  margin-bottom: 5px;
}

.page-header-box ol {
  margin: 0;
  padding: 0;
  justify-content: center;
  margin-top: 10px;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 18px;
  font-weight: 400;
  color: var(--white-color);
  text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item.active {
  color: var(--secondary-color);
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
  color: var(--white-color);
}

.page-about-us {
  background-color: var(--white-color);
  padding: 100px 0px 130px;
}

.page-about-us-2 {
  padding: 0px 0px 130px;
}

.page-about-us-3 {
  padding: 90px 0px 120px;
}

.page-about-us-4 {
  padding: 40px 0px 80px;
}

.page-about-us-5 {
  padding: 80px 0px 0px;
}


.page-about-us .container-fluid {
  padding: 0;
}

.page-about-content {
  padding-right: 30px;
}

.page-about-content-body {
  margin-bottom: 40px;
}

.page-about-content-item {
  position: relative;
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  overflow: hidden;
}

.page-about-content-item:last-child {
  margin-bottom: 0;
}

.page-about-content-item::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: var(--secondary-color);
  transition: all 0.4s ease-in-out;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0;
}

.page-about-content-item:hover:before {
  top: 0;
  opacity: 1;
}

.page-about-content-item .icon-box {
  position: relative;
  margin-right: 10px;
  padding: 0 5px 5px 0;
  z-index: 1;
}

.page-about-content-item .icon-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--secondary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.4s ease-in-out;
}

.page-about-content-item:hover .icon-box::before {
  background-color: var(--white-color);
}

.page-about-content-item .icon-box img {
  position: relative;
  max-width: 60px;
  z-index: 1;
}

.page-about-item-content {
  position: relative;
  width: calc(100% - 70px);
  z-index: 1;
}

.page-about-item-content p {
  margin: 0;
}

.page-about-content-box {
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 15px 20px;
}

.page-about-box-title {
  margin-bottom: 20px;
}

.page-about-box-title h3 {
  font-size: 20px;
  color: var(--white-color);
  text-transform: capitalize;
}

.page-about-box-list ul {
  list-style-type: circle;
  padding: 0;
  margin: 0;
  padding-left: 20px;
}

.page-about-box-list ul li {
  color: var(--white-color);
  margin-bottom: 10px;
}

.page-about-box-list ul li:last-child {
  margin-bottom: 0;
}

.page-about-body-content {
  margin-top: 30px;
}

.page-about-body-content p {
  margin: 0;
}

.page-about-img-1 {
  position: relative;
}

.page-about-img-1::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: radial-gradient(50.39% 43.6% at 62.48% 53.16%,
      rgba(255, 255, 255, 0) 46.27%,
      var(--white-color) 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-about-img-1 img {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  opacity: 50%;
  object-fit: cover;
}

.page-about-img-2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
}

.about-testimonial-box {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: 55%;
  background: linear-gradient(90deg, #10455f 9.97%, #023047 100%);
  border-radius: 50px 0 0 0;
  padding: 15px;
  padding-left: calc(((100vw - 1300px) / 2) - 0px);
}

.about-testimonial-item p {
  font-family: var(--accent-font);
  font-size: 22px;
  color: var(--secondary-color);
  margin: 0;
}

.about-testimonial-btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(-100%);
  display: flex;
  align-items: center;
  justify-content: right;
  z-index: 1;
}

.about-testimonial-btn .about-testimonial-button-next,
.about-testimonial-btn .about-testimonial-button-prev {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.about-testimonial-btn .about-testimonial-button-next {
  margin-left: 10px;
}

.about-testimonial-btn .about-testimonial-button-next:hover,
.about-testimonial-btn .about-testimonial-button-prev:hover {
  background-color: var(--white-color);
}

.about-testimonial-btn .about-testimonial-button-next::before,
.about-testimonial-btn .about-testimonial-button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/arrow-blue-readmore-btn.svg") no-repeat center center;
  background-size: 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.about-testimonial-btn .about-testimonial-button-prev::before {
  transform: rotate(180deg);
}

.about-icon-box-list {
  background-color: var(--primary-color);
  border-radius: 0 50px 0 0;
  padding: 100px 0 120px;
  z-index: 1;
}

.about-icon-list-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  text-align: center;
}

.about-icon-list-item .icon-box {
  position: relative;
  width: 70px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.about-icon-list-item .icon-box::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.4s ease-in-out;
}

.about-icon-list-item .icon-box img {
  position: relative;
  max-width: 70px;
  z-index: 1;
}

.about-icon-list-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  color: var(--secondary-color);
}

.our-rehabilitation {
  position: relative;
  background: var(--white-color);
  padding: 70px 0 70px;
  z-index: 1;
}

.our-rehabilitation .section-title {
  text-align: center;
}

.therapy-rehabilitation-item {
  position: relative;
  border-radius: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.therapy-rehabilitation-image a {
  position: relative;
  display: block;
}

.therapy-rehabilitation-image a::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(179.94deg,
      rgba(0, 0, 0, 0.9) 0.05%,
      rgba(0, 0, 0, 0) 45%);
  height: 100%;
  width: 100%;
  z-index: 1;
}

.therapy-rehabilitation-image img {
  aspect-ratio: 1 / 1.28;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

.therapy-rehabilitation-item:hover .therapy-rehabilitation-image img {
  transform: scale(1.1);
}

.therapy-rehabilitation-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 1;
}

.therapy-rehabilitation-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.therapy-rehabilitation-btn {
  margin-right: 20px;
}

.therapy-rehabilitation-btn a {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.therapy-rehabilitation-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--white-color);
  opacity: 10%;
  height: 100%;
  width: 100%;
}

.therapy-rehabilitation-btn a img {
  max-width: 20px;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.therapy-rehabilitation-item:hover .therapy-rehabilitation-btn a img {
  transform: rotate(0deg);
}

.therapy-rehabilitation-title {
  width: calc(100% - 70px);
}

.therapy-rehabilitation-title h3 {
  font-size: 22px;
  text-transform: capitalize;
  color: var(--white-color);
}

.therapy-rehabilitation-dec p {
  color: var(--white-color);
  margin: 0;
}

.therapy-rehabilitation-body {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 18px 30px 30px;
  z-index: 1;
}

.therapy-rehabilitation-list {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
}

.therapy-rehabilitation-list::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--white-color);
  opacity: 20%;
  height: 100%;
  width: 100%;
}

.therapy-rehabilitation-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.therapy-rehabilitation-list ul li {
  position: relative;
  color: var(--white-color);
  margin-bottom: 10px;
  padding-left: 25px;
}

.therapy-rehabilitation-list ul li:last-child {
  margin-bottom: 0;
}

.therapy-rehabilitation-list ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/icon-pricing-list.svg) no-repeat;
  background-position: left center;
  background-size: cover;
  width: 16px;
  height: 16px;
}

.therapy-process {
  background: var(--primary-color) url("../images/therapy-process-bg-circle-1.svg") no-repeat;
  background-position: right bottom;
  padding: 80px 0 80px;
  z-index: 1;
}

.therapy-process .section-title h3::before,
.therapy-process .section-title h2,
.therapy-process .section-title h3 {
  color: var(--white-color);
}

.therapy-process .section-btn .btn-default::after {
  background-color: var(--accent-color);
}

.therapy-process-content {
  margin-right: 30px;
}

.therapy-process-item {
  position: relative;
  background-color: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 15px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  margin-bottom: 30px;
}

.therapy-process-item:last-child {
  margin-bottom: 0;
}

.therapy-process-item:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateX(20px);
}

.therapy-process-item::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: #64ff37a3;
  transition: all 0.4s ease-in-out;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0;
}

.therapy-process-item:hover:before {
  top: 0;
  opacity: 1;
}

.therapy-process-item .icon-box {
  position: relative;
  background-color: var(--white-color);
  border-radius: 10px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  z-index: 1;
}

.therapy-process-item .icon-box img {
  max-width: 50px;
}

.therapy-process-item-content {
  position: relative;
  width: calc(100% - 120px);
  z-index: 1;
}

.therapy-process-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}

.therapy-process-item:hover .therapy-process-item-content h3 {
  color: var(--white-color);
}

.therapy-process-item-content p {
  margin: 0;
  transition: all 0.4s ease-in-out;
  font-size: 18px;
}

.therapy-process-item:hover .therapy-process-item-content p {
  color: var(--white-color);
}

.therapy-process-images {
  position: relative;
  margin: 10px;
  margin-bottom: 0;
}

.therapy-process-img-1 {
  text-align: center;
  width: 530px;
  margin: 0 auto;
  padding: 55px 0;
}

.therapy-process-img-2 {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-4deg);
  z-index: 1;
}

.therapy-process-img-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(4deg);
  z-index: 1;
}

.therapy-process-img-3 figure,
.therapy-process-img-2 figure,
.therapy-process-img-1 figure {
  border-radius: 10px;
}

.therapy-process-img-3 img,
.therapy-process-img-2 img,
.therapy-process-img-1 img {
  width: 100%;
  border-radius: 10px;
}

.therapy-process-img-1 img {
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
}

.therapy-process-img-2 img {
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}

.therapy-process-img-3 img {
  aspect-ratio: 1 / 1.14;
  object-fit: cover;
}

.our-video {
  background: var(--white-color);
  padding: 100px 0 150px;
  z-index: 2;
  overflow: hidden;
}

.our-video::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: url("../images/our-video-bg.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 50%;
  width: 60%;
  height: 100%;
}

.our-video::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: radial-gradient(50.03% 56.03% at 50% 49.99%,
      rgba(255, 255, 255, 0) 57.33%,
      #ffffff 100%);
  width: 60%;
  height: 100%;
}

.our-video-content .section-btn {
  text-align: left;
}

.our-video-content {
  position: relative;
  margin-right: 40px;
  z-index: 1;
}

.video-play-button {
  position: relative;
  text-align: center;
  z-index: 1;
}

.video-play-button a {
  position: relative;
  cursor: none;
}

.video-play-button a::before {
  content: "\f04b";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 30px;
  color: var(--primary-color);
}

.video-play-button a img {
  max-width: 168px;
  animation: rotate 30s infinite linear;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.process-steps {
  background: url("../images/process-steps-line.svg"), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: bottom 160px center;
  background-size: contain;
  padding: 100px 0 150px;
  z-index: 2;
}

.process-steps .section-title {
  text-align: center;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.process-steps-line {
  padding-top: 100px;
}

.process-step-box {
  position: relative;
  text-align: center;
  padding-top: 70px;
}

.process-steps .col-lg-3:nth-last-child(even) .process-step-box {
  margin-top: 50px;
}

.process-step-no {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.process-step-no h2 {
  font-family: var(--default-font);
  font-size: 114px;
  font-weight: 600;
  background-image: linear-gradient(180deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-step-content {
  position: relative;
  z-index: 1;
}

.process-step-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.process-step-content p {
  margin: 0;
}

.our-testimonial.about-our-testimonial,
.therapist-team.about-therapist-team {
  z-index: 2;
}

.page-about-faqs {
  background-color: var(--white-color);
  padding: 100px 0 150px;
  z-index: 2;
  overflow: hidden;
}

.page-about-faqs::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(9.88% 40.69% at 18.54% 52.54%,
      rgba(255, 255, 255, 0) -60%,
      #ffffff 150%),
    url("../images/page-about-faqs-bg-1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.page-about-faqs::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: radial-gradient(53.62% 49.95% at 53.62% 50.05%,
      rgba(255, 255, 255, 0) -60%,
      #ffffff 100%),
    url("../images/page-about-faqs-bg-2.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 50%;
  height: 100%;
}

.about-faqs-content {
  position: relative;
  z-index: 1;
}

.about-faq-section .accordion-item {
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.about-faq-section .accordion-item:last-child {
  margin-bottom: 0;
}

.about-faq-section .accordion-header .accordion-button {
  font-size: 20px;
  line-height: 1.2em;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 20px 50px 20px 20px;
  transition: all 0.3s ease-in-out;
}

.about-faq-section .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-bottom: 1px solid var(--divider-color);
}

.about-faq-section .accordion-header .accordion-button.collapsed {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.about-faq-section .accordion-item .accordion-button::after,
.about-faq-section .accordion-item .accordion-button.collapsed::after {
  content: "\f077";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 20px;
  top: 50%;
  bottom: auto;
  transform: translate(0px, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  width: 20px;
  height: 20px;
  padding: 5px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.about-faq-section .accordion-item .accordion-button.collapsed::after {
  transform: translate(0px, -50%) rotate(-180deg);
  color: var(--primary-color);
}

.about-faq-section .accordion-item .accordion-body {
  background-color: var(--primary-color);
  padding: 20px 50px 20px 20px;
}

.about-faq-section .accordion-item .accordion-body p {
  color: var(--white-color);
  margin: 0;
}

.cta-box {
  background: url("../images/cta-box-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 50px 0 10px;
  z-index: 5;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black-color);
  opacity: 30%;
  width: 100%;
  height: 100%;
}

.cta-box-content {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.cta-box-content .section-title h3::before,
.cta-box-content .section-title h3,
.cta-box-content .section-title h2,
.cta-box-content .section-title p {
  color: var(--white-color);
}

.cta-box-content .section-btn {
  text-align: center;
}

/************************************/
/*** 	 17. Page service css	  ***/
/************************************/

.page-header.service-page-header::after {
  background-image: url("../images/page-header-bg-shape-2.svg");
}

.service-process {
  background: var(--secondary-color);
  padding: 100px 0 150px;
}

.service-process-list .service-process-list-item {
  display: flex;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--white-color);
}

.service-process-list .service-process-list-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-process-list-item .icon-box {
  margin-right: 20px;
}

.service-process-list-item .icon-box img {
  max-width: 17px;
}

.service-process-list-item .service-process-content {
  width: calc(100% - 37px);
}

.service-process-list-item .service-process-content-body {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.service-process-list-item .service-process-content-body .service-process-btn {
  margin-left: 20px;
}

.service-process-list-item .service-process-title h3 {
  font-size: 22px;
}

.service-process-list-item .service-process-btn a {
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.service-process-list-item .service-process-btn img {
  transform: rotate(-45deg);
  max-width: 20px;
  transition: all 0.3s ease-in-out;
}

.service-process-list-item:hover .service-process-btn a {
  background: var(--accent-color);
}

.service-process-list-item:hover .service-process-btn a img {
  transform: rotate(0deg);
}

.service-process-list-item .service-process-footer p {
  margin: 0;
}

.service-process-img img {
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  border-radius: 10px;
}

.service-process-box-content {
  text-align: right;
}

.service-process-box-content .section-btn {
  margin: 0;
}

.service-process-box-content .section-btn .btn-default {
  background: var(--white-color);
}

.page-services {
  position: relative;
  background: var(--white-color);
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  padding: 100px 0 120px;
}

.page-services .section-title {
  text-align: center;
}

/************************************/
/*** 	 18. service Single css	  ***/
/************************************/

.page-header.service-single-page-header::after {
  background-image: url("../images/page-header-bg-shape-3.svg");
}

.page-service-single {
  background-color: var(--white-color);
  padding: 100px 0 150px;
}

.service-sidebar {
  position: sticky;
  top: 20px;
}

.service-catagery-list {
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
}

.service-catagery-list h3 {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.service-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-catagery-list ul li {
  margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
  margin-bottom: 0;
}

.service-catagery-list ul li a {
  display: block;
  position: relative;
  font-family: var(--accent-font);
  text-transform: capitalize;
  background-color: var(--white-color);
  color: var(--text-color);
  border-radius: 10px;
  line-height: normal;
  padding: 20px 40px 20px 20px;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.service-catagery-list ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(-20px, -50%);
  background-image: url("../images/arrow-blue-readmore-btn.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 16px;
  height: 16px;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::after {
  filter: brightness(0) invert(1);
}

.working-hours {
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
}

.working-hours h3 {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.working-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.working-hours ul li {
  margin-bottom: 20px;
}

.working-hours ul li:last-child {
  margin-bottom: 0;
}

.working-hours ul li a {
  display: block;
  position: relative;
  font-family: var(--accent-font);
  text-transform: capitalize;
  background-color: var(--white-color);
  color: var(--text-color);
  border-radius: 10px;
  line-height: normal;
  padding: 20px 20px 20px 50px;
  transition: all 0.3s ease-in-out;
}

.working-hours ul li:hover a {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.working-hours ul li a::after {
  content: "\f017";
  font-family: "FontAwesome";
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translate(20px, -50%);
  font-size: 20px;
  color: var(--primary-color);
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}

.working-hours ul li:hover a::after {
  color: var(--white-color);
}

.working-hours-btn {
  margin-top: 20px;
}

.working-hours-btn .btn-default {
  background: var(--white-color);
  width: 100%;
}

.working-hours-btn .btn-default span {
  text-align: center;
  width: 100%;
}

.sidebar-cta-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.sidebar-cta-image {
  position: relative;
}

.sidebar-cta-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 70%;
  width: 100%;
  height: 100%;
}

.sidebar-cta-image img {
  width: 100%;
  aspect-ratio: 1 / 1.01;
  object-fit: cover;
  border-radius: 10px;
}

.sidebar-cta-item {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.sidebar-cta-item .icon-box {
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.sidebar-cta-item .icon-box figure {
  position: relative;
  background-color: var(--secondary-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sidebar-cta-item .icon-box figure::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.sidebar-cta-item:hover .icon-box figure::before {
  transform: scale(1);
}

.sidebar-cta-item .icon-box figure img {
  position: relative;
  max-width: 36px;
  z-index: 1;
}

.sidebar-cta-content {
  text-align: center;
}

.sidebar-cta-content h3 {
  font-size: 30px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 15px;
}

.sidebar-cta-content p {
  font-size: 22px;
  font-weight: 600;
  color: var(--white-color);
  margin: 0;
}

.service-single-image {
  margin-bottom: 30px;
}

.service-single-image img {
  border-radius: 10px;
  aspect-ratio: 1 / 0.55;
  object-fit: cover;
}

.service-entry {
  margin-bottom: 40px;
}

.service-entry h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.service-entry h3 {
  font-size: 20px;
  margin-bottom: 25px;
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry p:last-child {
  margin-bottom: 0px;
}

.service-entry ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.service-entry ul li {
  position: relative;
  width: calc(50% - 10px);
  color: var(--primary-color);
  font-size: 16px;
  text-transform: capitalize;
  padding-left: 30px;
}

.service-entry ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--primary-color) url(../images/arrow-white.svg) no-repeat;
  background-position: center center;
  background-size: 8px auto;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.service-entry-img-1 figure,
.service-entry-img-2 figure {
  display: block;
}

.service-entry-img-1 img,
.service-entry-img-2 img {
  aspect-ratio: 1 / 1.01;
  object-fit: cover;
  border-radius: 10px;
}

.about-faq-section.our-faqs-section .accordion-item .accordion-body {
  background-color: var(--secondary-color);
}

.about-faq-section.our-faqs-section .accordion-item .accordion-body p {
  color: var(--text-color);
}

.about-faq-section.our-faqs-section .accordion-item .accordion-button::after,
.about-faq-section.our-faqs-section .accordion-item .accordion-button.collapsed::after {
  content: "\f062";
}

/************************************/
/***     19. Blog Archive css     ***/
/************************************/

.page-header.blog-page-header::after {
  background-image: url("../images/page-header-bg-shape-4.svg");
}

.page-blog {
  background-color: var(--white-color);
  padding: 100px 0 150px;
}

.page-blog .blog-item {
  height: calc(100% - 40px);
  margin-bottom: 40px;
}

.page-pagination {
  margin-top: 30px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 700;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/************************************/
/***      20. Blog Single css	  ***/
/************************************/

.page-header.blog-single-page-header::after {
  background-image: url("../images/page-header-bg-shape-5.svg");
}

.page-single-post {
  background-color: var(--white-color);
  padding: 100px 0 150px;
}

.post-single-meta {
  margin-top: 10px;
}

.post-single-meta ol li.breadcrumb-item {
  font-size: 18px;
}

.post-single-meta ol li i {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 5px;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
}

.post-image figure,
.post-image img {
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
  border-radius: 10px;
}

.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.post-entry:after {
  content: "";
  display: block;
  clear: both;
}

.post-entry a {
  color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  margin: 0 0 0.6em;
}

.post-entry h1 span,
.post-entry h2 span {
  font-weight: 400;
}

.post-entry h1 {
  font-size: 66px;
}

.post-entry h2 {
  font-size: 54px;
}

.post-entry h3 {
  font-size: 40px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 18px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ol li {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ul li {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  position: relative;
  margin-bottom: 15px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background-color: var(--secondary-color);
  background-image: url(../images/icon-blockquote.svg);
  background-repeat: no-repeat;
  background-position: left 35px top 40px;
  background-size: 45px;
  border-radius: 10px;
  padding: 30px 30px 30px 100px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-block;
}

.post-tags .tag-links a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 10px;
  padding: 8px 20px;
  margin-left: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
  background: var(--text-color);
}

.post-social-sharing {
  text-align: right;
}

.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-social-sharing ul li:last-child {
  margin-right: 0;
}

.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 10px;
  width: 38px;
  height: 38px;
  transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background-color: var(--text-color);
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a i {
  color: var(--secondry-color);
}

/************************************/
/***      21. Page Team css 	  ***/
/************************************/

.page-header.team-page-header::after {
  background-image: url("../images/page-header-bg-shape-6.svg");
}

.page-team {
  background-color: var(--white-color);
  padding: 100px 0 120px;
}

/************************************/
/***      22. Team Single css 	  ***/
/************************************/

.page-header.team-page-single-header::after {
  background-image: url("../images/page-header-bg-shape-1.svg");
}

.page-team-single {
  background: var(--white-color);
  padding: 100px 0 150px;
}

.page-team-single .team-member-image figure {
  width: 100%;
}

.page-team-single .team-member-image img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
}

.team-member-details {
  margin-left: 50px;
}

.member-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--secondary-color);
}

.member-detail-header .member-detail-title h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.member-detail-header .member-detail-title p {
  text-transform: capitalize;
  margin: 0;
}

.member-social-list ul {
  margin: 0;
  padding: 0;
}

.member-social-list ul li {
  display: inline-flex;
  margin-right: 10px;
}

.member-social-list ul li:last-child {
  margin-right: 0;
}

.member-social-list ul li a i {
  color: var(--primary-color);
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a i {
  color: var(--text-color);
}

.member-detail-content {
  margin-bottom: 30px;
}

.member-detail-content p {
  margin: 0;
}

.member-detail-body {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.member-detail-body .member-detail-list-item {
  width: calc(50% - 20px);
  display: flex;
}

.member-detail-list-item .icon-box {
  position: relative;
  margin-right: 20px;
  padding: 0 10px 10px 0;
}

.member-detail-list-item .icon-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--secondary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.member-detail-list-item .icon-box img {
  max-width: 45px;
  position: relative;
  top: 4px;
}

.member-detail-list-content {
  width: calc(100% - 75px);
}

.member-detail-list-content h3 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.member-detail-list-content p {
  font-size: 18px;
  margin: 0;
}

.about-icon-box-list.member-expertise {
  border-radius: 50px 50px 0 0;
  z-index: 0;
}

.about-icon-box-list.member-expertise .section-title {
  text-align: center;
}

.about-icon-box-list.member-expertise .section-title h3::before {
  color: var(--white-color);
}

.about-icon-box-list.member-expertise .section-title h3,
.about-icon-box-list.member-expertise .section-title h2 {
  color: var(--white-color);
}

.member-personal-info {
  background: var(--white-color);
  padding: 100px 0 150px;
}

.member-info-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.member-info-list ul li {
  position: relative;
  color: var(--primary-color);
  padding-left: 30px;
  margin-bottom: 15px;
}

.member-info-list ul li:last-child {
  margin-bottom: 0;
}

.member-info-list ul li:before {
  position: absolute;
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  font-weight: 900;
  color: var(--primary-color);
  display: inline-block;
  line-height: normal;
  top: 3px;
  left: 0;
}

.member-working-hour {
  position: relative;
  background: url("../images/working-hour-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 10px;
  margin-left: 50px;
  overflow: hidden;
}

.member-working-hour-box {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 30px;
}

.member-working-hour::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--white-color);
  opacity: 20%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.member-working-hour .section-title {
  position: relative;
  z-index: 1;
}

.member-working-hour .section-title h3::before {
  color: var(--white-color);
}

.member-working-hour .section-title h3,
.member-working-hour .section-title h2,
.member-working-hour .section-title p {
  color: var(--white-color);
}

.member-working-hour .section-title h2 {
  font-size: 36px;
}

.member-working-hour-list {
  position: relative;
  z-index: 1;
}

.member-working-hour-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.member-working-hour-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.member-working-hour-list ul li:last-child {
  margin-bottom: 0;
}

.member-working-hour-list ul li h3 {
  font-size: 18px;
  text-transform: capitalize;
  color: var(--white-color);
}

.member-working-hour-list ul li span {
  border: 1px solid var(--white-color);
  width: 40%;
}

.member-working-hour-list ul li p {
  font-size: 18px;
  color: var(--white-color);
  margin: 0;
}

.member-working-history {
  background: var(--secondary-color);
  padding: 100px 0 150px;
}

.member-working-history .member-contact-form {
  background: var(--white-color);
  padding: 30px;
  border-radius: 10px;
  margin-right: 100px;
}

.member-contact-form .section-title {
  margin-bottom: 30px;
}

.member-contact-form .form-control {
  padding: 13px 20px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: none;
  border: none;
  border-radius: 10px;
}

.member-contact-form .form-control::placeholder {
  color: var(--text-color);
  text-transform: capitalize;
}

.member-contact-form form button {
  text-align: center;
}

.member-working-history-content .working-history-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--white-color);
}

.member-working-history-content .working-history-item:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: none;
}

.working-history-item .working-history-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.working-history-item .working-history-content h3 span {
  color: var(--text-color);
}

.working-history-item .working-history-content p {
  margin: 0;
}

.member-winning-award {
  background: var(--white-color);
  padding: 100px 0 150px;
}

.member-winning-award .section-title {
  text-align: center;
}

.winning-award-image img {
  width: 100%;
  max-width: 230px;
}

/************************************/
/***     23. Video Gallery css    ***/
/************************************/

.page-header.Video-page-header::after {
  background-image: url("../images/page-header-bg-shape-2.svg");
}

.page-video-gallery {
  background: var(--white-color);
  padding: 100px 0 120px;
}

.video-gallery-image {
  border-radius: 10px;
  overflow: hidden;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.video-gallery-image a {
  position: relative;
  cursor: none;
}

.video-gallery-image a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black-color);
  border-radius: 10px;
  opacity: 0%;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
  opacity: 50%;
  visibility: visible;
  transform: scale(1);
}

.video-gallery-image a::after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 900;
  background: var(--white-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}

.video-gallery-image img {
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  border-radius: 10px;
}

/************************************/
/***      24. Page FAQs css       ***/
/************************************/

.page-header.faqs-page-header::after {
  background-image: url("../images/page-header-bg-shape-3.svg");
}

.page-faqs {
  background: var(--white-color);
  padding: 100px 0 150px;
}

.page-faqs-images figure {
  display: block;
}

.page-faqs-images img {
  width: 100%;
  aspect-ratio: 1 / 1.31;
  object-fit: cover;
  border-radius: 10px;
}

/************************************/
/***    25. Contact Us Page css   ***/
/************************************/

.page-header.contact-page-header::after {
  background-image: url("../images/page-header-bg-shape-4.svg");
}

.page-contact-us {
  background: var(--white-color);
  padding: 100px 0 150px;
}

.contact-information {
  margin-right: 30px;
}

.contact-information .section-title {
  margin-bottom: 20px;
}

.contact-info-list {
  margin-bottom: 40px;
}

.contact-info-list p {
  margin-bottom: 15px;
}

.contact-info-list p:last-child {
  margin-bottom: 0;
}

.contact-info-list .support-btn {
  background: url("../images/arrow-blue-readmore-btn.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 14px auto;
  text-transform: capitalize;
  color: var(--primary-color);
  padding-right: 20px;
  transition: all 0.3s ease-in-out;
}

.contact-info-list .support-btn:hover {
  color: var(--text-color);
  padding-right: 22px;
}

.contact-information-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.contact-info-item {
  width: calc(50% - 15px);
  display: flex;
  justify-content: space-between;
}

.contact-info-item .icon-box {
  margin-bottom: 20px;
}

.contact-info-item .icon-box img {
  max-width: 30px;
}

.contact-info-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.contact-info-content p {
  margin: 0;
}

.contact-us-form {
  background: var(--secondary-color);
  border-radius: 10px;
  height: 100%;
  padding: 30px;
}

.contact-us-form .section-title h2 {
  font-size: 30px;
}

.contact-us-form .form-control {
  padding: 20px;
  font-size: 16px;
  background-color: var(--white-color);
  border: none;
  border-radius: 10px;
  color: var(--text-color);
  line-height: normal;
  box-shadow: none;
  outline: none;
}

.contact-us-form .form-control::placeholder {
  color: var(--text-color);
  text-transform: capitalize;
}

.contact-form-btn {
  text-align: center;
}

.contact-form-btn .btn-default {
  background: var(--white-color);
}

.google-map {
  overflow: hidden;
}

.google-map .container-fluid {
  padding: 0;
}

.google-map-iframe {
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.google-map-iframe iframe {
  width: 100%;
  height: 700px;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}

.google-map-iframe iframe:hover {
  filter: grayscale(0);
}

.contact-faqs {
  background: var(--white-color);
  padding: 100px 0 150px;
}

.contact-faqs-content {
  margin-right: 50px;
}

.contact-faqs-content .section-btn {
  text-align: left;
}

/*************************************/
/*** 26. Make Appointment Page css ***/
/*************************************/

.page-header.appointment-page-header::after {
  background-image: url("../images/page-header-bg-shape-5.svg");
}

.page-book-appointment {
  background: var(--white-color);
  padding: 100px 0 150px;
}

.page-book-appointment .section-title {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.contact-us-form.appointment-form {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  background: transparent;
  padding: 0;
}

.contact-us-form.appointment-form .form-control {
  background-color: var(--secondary-color);
}

.contact-us-form.appointment-form .btn-default.btn-highlighted {
  background: var(--primary-color);
}

.contact-us-form.appointment-form .btn-default.btn-highlighted:hover {
  background-color: var(--secondary-color);
}

.booking-process {
  position: relative;
  background-color: var(--white-color);
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  padding: 100px 0 150px;
}

.booking-process .section-title {
  text-align: center;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.booking-process-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.booking-process-item {
  position: relative;
  width: calc(25% - 22.5px);
  text-align: center;
  z-index: 1;
}

.booking-process-item::before {
  content: "";
  position: absolute;
  top: calc(50% - 30px);
  left: 0;
  right: 0;
  transform: translateY(-50%);
  border: 1px solid var(--secondary-color);
  width: 115%;
  z-index: -1;
}

.booking-process-item:nth-child(4n + 4):before {
  width: 100%;
}

.booking-process-no {
  margin-bottom: 10px;
}

.booking-process-no h3 {
  font-family: var(--default-font);
  font-size: 26px;
  font-weight: 600;
  color: var(--secondary-color);
}

.booking-process-item .icon-box {
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 20px;
}

.booking-process-item:nth-last-of-type(odd) .icon-box {
  background-color: var(--secondary-color);
}

.booking-process-item .icon-box img {
  max-width: 26px;
}

.booking-process-item:nth-last-of-type(even) .icon-box img {
  filter: brightness(0) invert(1);
}

.booking-process-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.booking-process-content p {
  margin: 0;
}

/************************************/
/*** 	   27. 404 Page css       ***/
/************************************/

.page-header.error-page-header::after {
  background-image: url("../images/page-header-bg-shape-6.svg");
}

.error-page {
  background-color: var(--white-color);
  padding: 100px 0 150px;
}

.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}

.error-page-image img {
  max-width: 50%;
}

.error-page .error-page-content {
  text-align: center;
}

.error-page-content-heading {
  margin-bottom: 30px;
}

.error-page-content-heading h2 {
  font-size: 54px;
}

.error-page-content-body p {
  margin-bottom: 30px;
}

/************************************/
/***     28. responsive css       ***/
/************************************/

@media only screen and (max-width: 1366px) {
  .our-services::before {
    top: -270px;
  }

  .page-about-us {
    padding-left: 0;
  }

  .page-about-us .container-fluid {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 1024px) {
  .navbar {
    padding: 20px 0px;
  }

  .main-menu ul li {
    margin-left: 0;
  }

  .our-services::before {
    top: -200px;
  }
}

@media only screen and (max-width: 991px) {
  #magic-cursor {
    display: none !important;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .btn-default span {
    font-size: 16px;
    padding: 14px 18px;
  }

  .bg-radius-section {
    border-radius: 30px 30px 0 0;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 56px;
  }

  .section-title h2 {
    font-size: 42px;
  }

  .section-title p {
    margin-top: 15px;
  }

  .section-btn {
    text-align: left;
    margin-top: 15px;
  }

  .section-title-content {
    text-align: left;
    margin-top: 20px;
  }

  .topbar-contact-info ul {
    justify-content: center;
    gap: 20px;
  }

  .topbar-contact-info ul li a img {
    max-width: 18px;
    margin-right: 5px;
  }

  .topbar-social-links {
    display: none;
  }

  .hero {
    padding: 150px 0 100px;
  }

  .hero.hero-slider-layout .hero-slide {
    padding: 150px 0;
  }

  .hero.hero-slider-layout .hero-pagination {
    bottom: 80px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content .section-title p {
    font-size: 16px;
  }

  .our-benefits {
    padding: 50px 0 80px;
  }

  .benefits-item {
    margin-bottom: 20px;
  }

  .our-benefits .col-lg-4:nth-child(2n + 2) .benefits-item {
    border: none;
    padding-right: 0;
  }

  .benefits-content h3 {
    font-size: 20px;
  }

  .about-us {
    padding: 50px 0 100px;
  }

  .about-content {
    margin-bottom: 30px;
  }

  .about-content-body {
    margin-bottom: 30px;
  }

  .about-list-item .icon-box {
    margin-right: 15px;
  }

  .about-list-item .icon-box img {
    max-width: 34px;
    padding: 0 5px 5px 0;
  }

  .about-list-content {
    width: calc(100% - 49px);
  }

  .about-us-images {
    max-width: 630px;
    margin: 0 auto;
  }

  .about-circle-logo {
    width: 180px;
    height: 180px;
  }

  .about-us-images .about-circle-logo img {
    max-width: 70px;
  }

  .our-services {
    padding: 0px 0;
  }

  .our-services::before {
    top: -155px;
    background-size: 100% auto;
  }

  .our-services::after {
    background-size: 50% auto;
  }

  .service-item .icon-box {
    left: 20px;
    width: 70px;
    height: 70px;
  }

  .service-item .icon-box img {
    max-width: 46px;
  }

  .service-body {
    bottom: 20px;
    left: 20px;
  }

  .service-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .service-btn a {
    width: 30px;
    height: 30px;
  }

  .service-btn a img {
    max-width: 14px;
  }

  .more-service-btn {
    margin-top: 10px;
  }

  .more-service-btn a {
    font-size: 22px;
  }

  .more-service-btn a i {
    font-size: 18px;
    margin-left: 15px;
  }

  .bg-section {
    margin-top: -250px;
  }

  .care-rehabilitation {
    padding: 50px 0 70px;
  }

  .rehab-benefits-item {
    padding: 30px 15px;
  }

  .rehab-benefits-item .icon-box img {
    max-width: 44px;
  }

  .rehab-benefits-content h3 {
    font-size: 16px;
  }

  .quality-treatment {
    padding: 50px 0 100px;
    overflow: hidden;
  }

  .quality-treatment::before {
    background-size: 20% auto;
  }

  .quality-treatment::after {
    width: 130px;
  }

  .quality-treatment-body {
    margin-bottom: 30px;
  }

  .how-it-work {
    padding: 50px 0 100px;
  }

  .how-work-images {
    background-position: right -30px bottom;
    padding: 0 0px 40px 0;
  }

  .how-work-img-1 img {
    aspect-ratio: 1 / 0.95;
  }

  .how-work-img-2 img {
    aspect-ratio: 1 / 0.78;
  }

  .how-work-img-3 img {
    aspect-ratio: 1 / 1.61;
  }

  .how-work-img-4 img {
    aspect-ratio: 1 / 0.5;
  }

  .how-work-content {
    margin-bottom: 30px;
  }

  .how-work-accordion .accordion-item .accordion-header .icon-box {
    left: 20px;
    width: 50px;
    height: 50px;
  }

  .how-work-accordion .accordion-item .accordion-header .icon-box img {
    max-width: 30px;
  }

  .how-work-accordion .accordion-header .accordion-button {
    font-size: 20px;
    padding: 15px 20px 15px 90px;
  }

  .how-work-accordion .accordion-button:not(.collapsed) {
    padding: 30px 20px 30px 90px;
  }

  .how-work-accordion .accordion-item .accordion-body {
    background-color: var(--primary-color);
    padding: 0px 20px 20px 20px;
  }

  .how-work-accordion .accordion-item .accordion-button::after,
  .how-work-accordion .accordion-item .accordion-button.collapsed::after {
    font-size: 18px;
    width: 18px;
    height: 18px;
    transform: translate(-20px, -50%);
  }

  .how-work-accordion .accordion-item .accordion-button.collapsed::after {
    transform: translate(-20px, -50%) rotate(-180deg);
  }

  .our-pricing {
    padding: 50px 0 70px;
  }

  .our-pricing-content {
    margin-bottom: 60px;
  }

  .pricing-item {
    padding: 20px;
  }

  .our-pricing::before {
    background: linear-gradient(0deg,
        rgba(2, 48, 71, 0) 30.13%,
        rgba(0, 0, 0, 0.9) 100.06%,
        #021c29 100.7%);
  }

  .pricing-title h3 {
    font-size: 24px;
  }

  .pricing-btn a {
    font-size: 18px;
    padding-right: 40px;
  }

  .pricing-btn a::before {
    background-size: 14px auto;
    width: 30px;
    height: 30px;
  }

  .therapist-team {
    padding: 50px 0 70px;
  }

  .team-image img {
    aspect-ratio: 1 / 1.1;
  }

  .team-content h3 {
    font-size: 20px;
  }

  .our-testimonial {
    padding: 50px 0 100px;
    background-position: bottom right;
  }

  .testimonial-content {
    margin-bottom: 30px;
  }

  .testimonial-item {
    padding: 20px;
  }

  .testimonial-header .testimonial-rating {
    margin-bottom: 15px;
  }

  .testimonial-content {
    margin-bottom: 20px;
  }

  .testimonial-btn {
    justify-content: center;
    margin-top: 30px;
  }

  .our-blog {
    padding: 0px 0 70px;
  }

  .post-featured-image {
    margin-bottom: 20px;
  }

  .article-meta {
    margin-bottom: 15px;
  }

  .post-item-body h2 {
    font-size: 20px;
  }

  .post-item-body {
    margin-bottom: 15px;
  }

  footer.main-footer {
    padding: 50px 0;
    background-size: auto;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .about-footer {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .about-footer-content p {
    margin-right: 0px;
  }

  .about-footer-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 30px;
  }

  .footer-links {
    width: calc(45% - 15px);
  }

  .footer-links ul li {
    margin-right: 12px;
  }

  .footer-links.service-links {
    width: calc(55% - 15px);
  }

  .footer-links.social-links {
    width: calc(25% - 15px);
    text-align: left;
  }

  .footer-links.working-links {
    width: calc(75% - 15px);
  }

  .footer-links.footer-contact-details {
    width: 100%;
  }

  .page-header {
    padding: 200px 0 80px;
  }

  .page-header::after {
    background-size: 50% auto;
  }

  .page-header-box h1 {
    font-size: 56px;
  }

  .page-header-box ol li.breadcrumb-item {
    font-size: 16px;
  }

  .page-about-us {
    padding: 50px 0 100px;
  }

  .page-about-content {
    padding-right: 0px;
    margin-bottom: 30px;
  }

  .page-about-content-body {
    margin-bottom: 30px;
  }

  .page-about-content-item {
    padding: 15px;
  }

  .page-about-content-box {
    padding: 20px;
  }

  .page-about-box-title {
    margin-bottom: 15px;
  }

  .page-about-img-1 img {
    aspect-ratio: 1 / 0.6;
  }

  .page-about-img-2 {
    left: auto;
    right: 0;
    text-align: right;
    z-index: 2;
    max-width: 30%;
  }

  .about-testimonial-box {
    width: 75%;
    padding: 15px 15px 15px 15px;
    border-radius: 30px 0 0 0;
    z-index: 1;
  }

  .about-testimonial-item p {
    font-size: 20px;
  }

  .about-testimonial-btn {
    transform: translateX(-20%);
  }

  .about-icon-box-list {
    padding: 50px 0 70px;
    border-radius: 0 30px 0 0;
    z-index: 2;
  }

  .about-icon-list-item .icon-box {
    margin-bottom: 15px;
  }

  .about-icon-list-item .icon-box img {
    max-width: 60px;
  }

  .about-icon-list-content h3 {
    font-size: 20px;
  }

  .our-rehabilitation {
    padding: 50px 0 70px;
    z-index: 2;
  }

  .therapy-rehabilitation-header {
    padding: 20px;
  }

  .therapy-rehabilitation-content {
    margin-bottom: 20px;
  }

  .therapy-rehabilitation-btn a {
    width: 40px;
    height: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .therapy-rehabilitation-title {
    width: calc(100% - 60px);
  }

  .therapy-rehabilitation-title h3 {
    font-size: 24px;
  }

  .therapy-rehabilitation-body {
    padding: 20px;
  }

  .therapy-rehabilitation-list {
    padding: 15px;
  }

  .therapy-process {
    padding: 0px 0 60px;
    background-size: 50% auto;
    z-index: 2;
  }

  .therapy-process-item:hover {
    transform: translateX(0px);
  }

  .therapy-process-item .icon-box {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }

  .therapy-process-item .icon-box img {
    max-width: 40px;
  }

  .therapy-process-item-content {
    width: calc(100% - 100px);
  }

  .therapy-process-content {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .our-video {
    padding: 50px 0 100px;
    z-index: 2;
  }

  .our-video-content {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .video-play-button img {
    max-width: 130px;
  }

  .process-steps {
    background-position: center center;
    background-size: 140% auto;
    padding: 50px 0 100px;
  }

  .process-steps-line {
    padding-top: 70px;
  }

  .process-step-box {
    padding-top: 60px;
  }

  .process-step-no h2 {
    font-size: 94px;
  }

  .process-step-content h3 {
    font-size: 20px;
  }

  .process-step-content p {
    font-size: 14px;
  }

  .page-about-faqs {
    padding: 50px 0 100px;
  }

  .about-faq-section .accordion-header .accordion-button {
    padding: 15px 45px 15px 15px;
  }

  .about-faq-section .accordion-item .accordion-body {
    padding: 15px 45px 15px 15px;
  }

  .about-faq-section .accordion-item .accordion-button::after,
  .about-faq-section .accordion-item .accordion-button.collapsed::after {
    right: 15px;
  }

  .cta-box {
    padding: 50px 0 100px;
  }

  .service-process {
    padding: 50px 0 100px;
  }

  .service-process-list {
    margin-bottom: 30px;
  }

  .service-process-list .service-process-list-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .service-process-list-item .service-process-title h3 {
    font-size: 20px;
  }

  .service-process-img {
    text-align: center;
  }

  .service-process-box-content {
    text-align: left;
    margin-bottom: 30px;
  }

  .page-services {
    padding: 50px 0 70px;
  }

  .page-service-single {
    padding: 50px 0 100px;
  }

  .service-sidebar {
    position: initial;
    margin-bottom: 30px;
  }

  .service-catagery-list {
    padding: 20px;
    margin-bottom: 30px;
  }

  .service-catagery-list h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .service-catagery-list ul li a {
    padding: 15px 35px 15px 15px;
  }

  .service-catagery-list ul li a::after {
    transform: translate(-15px, -50%);
  }

  .working-hours {
    padding: 20px;
    margin-bottom: 30px;
  }

  .working-hours h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .working-hours ul li a {
    padding: 15px 15px 15px 45px;
  }

  .working-hours ul li a::after {
    transform: translate(15px, -50%);
    font-size: 18px;
    width: 18px;
    height: 18px;
  }

  .sidebar-cta-image img {
    aspect-ratio: 1 / 0.5;
  }

  .sidebar-cta-item .icon-box {
    margin-bottom: 20px;
  }

  .sidebar-cta-content h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .sidebar-cta-content p {
    font-size: 20px;
  }

  .service-entry {
    margin-bottom: 30px;
  }

  .service-entry h2 {
    font-size: 32px;
  }

  .service-entry ul li {
    padding-left: 25px;
  }

  .service-entry ul li:before {
    background-size: 6px auto;
    width: 18px;
    height: 18px;
  }

  .page-blog {
    padding: 50px 0 100px;
  }

  .page-blog .blog-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 50px 0 100px;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry blockquote {
    background-position: left 30px top 35px;
    padding: 25px 25px 25px 90px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-entry h2 {
    font-size: 42px;
  }

  .post-entry ul li {
    font-size: 16px;
  }

  .post-tag-links {
    padding: 0 0px;
  }

  .post-tags {
    margin-bottom: 10px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .post-tags .tag-links a {
    font-size: 16px;
    padding: 8px 15px;
  }

  .page-team {
    padding: 50px 0 70px;
  }

  .page-team-single {
    padding: 50px 0 100px;
  }

  .team-member-image {
    margin-bottom: 30px;
  }

  .team-member-details {
    margin-left: 0px;
  }

  .member-detail-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .member-detail-header .member-detail-title h2 {
    font-size: 26px;
  }

  .member-detail-content {
    margin-bottom: 20px;
  }

  .page-team-single .team-member-image img {
    aspect-ratio: 1 / 0.85;
  }

  .member-detail-body {
    gap: 30px;
  }

  .member-detail-body .member-detail-list-item {
    width: calc(50% - 15px);
  }

  .member-detail-list-item .icon-box {
    margin-right: 15px;
  }

  .member-detail-list-item .icon-box::before {
    width: 40px;
    height: 40px;
  }

  .member-detail-list-item .icon-box img {
    max-width: 40px;
  }

  .member-detail-list-content {
    width: calc(100% - 65px);
  }

  .member-detail-list-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }

  .member-detail-list-content p {
    font-size: 16px;
  }

  .about-icon-box-list.member-expertise {
    border-radius: 30px 30px 0 0;
  }

  .member-personal-info {
    padding: 50px 0 100px;
  }

  .member-info-content {
    margin-bottom: 30px;
  }

  .member-working-hour {
    margin-left: 0;
  }

  .member-working-hour-box {
    padding: 20px;
  }

  .member-working-hour .section-title h2 {
    font-size: 32px;
  }

  .member-working-hour-list ul li span {
    width: 55%;
  }

  .member-working-history {
    padding: 50px 0 100px;
  }

  .member-working-history .member-contact-form {
    padding: 20px;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .member-contact-form .form-control {
    padding: 10px 20px;
  }

  .member-working-history-content .working-history-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .working-history-item .working-history-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .member-winning-award {
    padding: 50px 0 100px;
  }

  .page-video-gallery {
    padding: 50px 0 70px;
  }

  .video-gallery-image img {
    aspect-ratio: 1 / 0.8;
  }

  .page-faqs {
    padding: 50px 0 100px;
  }

  .page-faqs-images {
    margin-bottom: 30px;
  }

  .page-faqs-images img {
    aspect-ratio: 1 / 0.95;
    margin-top: 20px;
  }

  .page-contact-us {
    padding: 50px 0 100px;
  }

  .contact-information {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .contact-info-list {
    margin-bottom: 30px;
  }

  .contact-info-item .icon-box img {
    max-width: 26px;
  }

  .contact-info-item .icon-box {
    margin-bottom: 15px;
  }

  .contact-info-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .contact-us-form {
    padding: 20px;
  }

  .contact-us-form .section-title h2 {
    font-size: 26px;
  }

  .contact-us-form .form-control {
    padding: 15px;
  }

  .google-map-iframe iframe,
  .google-map-iframe {
    height: 500px;
  }

  .contact-faqs {
    padding: 50px 0 100px;
  }

  .contact-faqs-content {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .page-book-appointment {
    padding: 50px 0 100px;
  }

  .booking-process {
    padding: 50px 0 100px;
  }

  .booking-process-item::before {
    top: calc(50% - 65px);
    width: 120%;
  }

  .booking-process-no h3 {
    font-size: 24px;
  }

  .booking-process-item .icon-box {
    margin-bottom: 15px;
  }

  .error-page {
    padding: 50px 0 100px;
  }

  .error-page-image {
    margin-bottom: 20px;
  }

  .error-page-content-heading {
    margin-bottom: 20px;
  }

  .error-page-content-heading h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767px) {
  .section-row {
    margin-bottom: 30px;
  }


  .section-title {
    margin-bottom: 20px;
  }

  .section-title h1 {
    font-size: 40px;
  }


  .section-title h2 {
    font-size: 30px !important;
  }

  .topbar-contact-info ul li.hide-mobile {
    display: none;
  }

  .topbar-contact-info ul li a img {
    max-width: 16px;
  }

  .topbar-contact-info ul li:last-child {
    margin-bottom: 0;
  }

  .hero-content-body .btn-default.btn-highlighted {
    margin: 15px 0 0 0;
  }

  .benefits-item {
    border: none;
    padding-right: 0;
  }

  .benefits-content h3 {
    font-size: 18px;
  }

  .about-content-list {
    margin-bottom: 30px;
  }

  .about-circle-logo {
    width: 140px;
    height: 140px;
  }

  .about-us-images .about-circle-logo img {
    max-width: 60px;
  }

  .our-services::before {
    display: none;
  }

  .service-item .icon-box {
    width: 60px;
    height: 60px;
  }

  .service-item .icon-box img {
    max-width: 40px;
  }

  .service-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .more-service-btn a {
    font-size: 18px;
  }

  .bg-section {
    padding: 100px 0;
    margin-top: -160px;
  }

  .rehab-benefits-item {
    padding: 20px 15px;
  }

  .rehab-benefits-item .icon-box {
    margin-bottom: 15px;
  }

  .quality-treatment {
    background: var(--secondary-color);
  }

  .quality-treatment::before {
    display: none;
  }

  .quality-treatment::after {
    display: none;
  }

  .how-work-image {
    max-width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }

  .how-work-image::before {
    background-size: 90% auto;
    margin: 0;
  }

  .how-work-accordion .accordion-item .accordion-header .icon-box {
    left: 15px;
    width: 40px;
    height: 40px;
  }

  .how-work-accordion .accordion-item .accordion-header .icon-box img {
    max-width: 22px;
  }

  .how-work-accordion .accordion-header .accordion-button {
    font-size: 18px;
    padding: 15px 15px 15px 70px;
  }

  .how-work-accordion .accordion-button:not(.collapsed) {
    padding: 20px 15px 20px 70px;
  }

  .how-work-accordion .accordion-item .accordion-body {
    padding: 0px 15px 15px 15px;
  }

  .how-work-accordion .accordion-item .accordion-button::after,
  .how-work-accordion .accordion-item .accordion-button.collapsed::after {
    font-size: 16px;
    width: 16px;
    height: 16px;
    transform: translate(-15px, -50%);
  }

  .how-work-accordion .accordion-item .accordion-button.collapsed::after {
    transform: translate(-15px, -50%) rotate(-180deg);
  }

  .how-work-accordion .accordion-item .accordion-body p {
    font-size: 14px;
  }

  footer.main-footer {
    padding: 50px 0 50px;
  }

  .about-footer-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .footer-links ul li {
    display: block;
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .footer-links ul li:last-child {
    margin-bottom: 0;
  }

  .footer-links.social-links {
    width: 100%;
  }

  .footer-links.working-links {
    width: 100%;
  }

  .footer-links.social-links ul li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 0;
  }

  .footer-links.social-links ul li:last-child {
    margin-right: 0;
  }

  .footer-contact-box {
    display: block;
  }

  .footer-info-box {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .footer-info-box:last-child {
    margin-bottom: 0;
  }

  .footer-terms-condition ul li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 0px;
  }

  .page-header-box h1 {
    font-size: 40px;
  }

  .page-about-content-list {
    margin-bottom: 30px;
  }

  .page-about-box-title h3 {
    font-size: 18px;
  }

  .page-about-body-content {
    margin-top: 20px;
  }

  .page-about-img-2 {
    position: relative;
    max-width: 100%;
    margin-top: -100px;
    z-index: 1;
  }

  .about-testimonial-box {
    width: 100%;
    background: linear-gradient(0deg, #10455f 9.97%, #023047 100%);
    border-radius: 30px 30px 0 0;
    text-align: center;
    padding: 20px 20px 70px;
  }

  .about-testimonial-item p {
    font-size: 18px;
  }

  .about-testimonial-btn {
    position: relative;
    transform: translateX(0%);
    justify-content: center;
    margin-top: 15px;
  }

  .about-icon-box-list {
    padding: 50px 0 70px;
    border-radius: 30px 30px 0 0;
    margin-top: -95px;
    z-index: 2;
  }

  .about-icon-list-item .icon-box::before {
    bottom: -5px;
    right: -5px;
  }

  .about-icon-list-item .icon-box img {
    max-width: 50px;
  }

  .about-icon-list-content h3 {
    font-size: 18px;
  }

  .therapy-rehabilitation-title h3 {
    font-size: 22px;
  }

  .therapy-process-item {
    display: block;
    text-align: center;
    padding: 15px;
  }

  .therapy-process-item .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .therapy-process-item-content {
    width: 100%;
  }

  .therapy-process-item-content h3 {
    font-size: 20px;
  }

  .therapy-process-img-1 {
    width: 100%;
    padding: 55px 0;
  }

  .therapy-process-img-2 img {
    max-width: 200px;
    aspect-ratio: 1 / 1.01;
  }

  .therapy-process-img-3 img {
    max-width: 200px;
    aspect-ratio: 1 / 0.9;
  }

  .our-video::after {
    width: 100%;
  }

  .our-video::before {
    background-position: center center;
    width: 100%;
  }

  .video-play-button a img {
    max-width: 140px;
  }

  .process-steps {
    background-image: none;
  }

  .process-steps-line {
    padding-top: 0px;
  }

  .process-steps .col-lg-3:nth-last-child(even) .process-step-box {
    margin-top: 0px;
  }

  .process-step-box {
    padding-top: 50px;
    margin-bottom: 30px;
  }

  .process-steps .col-lg-3:last-child .process-step-box {
    margin-bottom: 0;
  }

  .process-step-no h2 {
    font-size: 74px;
  }

  .process-step-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .about-faq-section .accordion-header .accordion-button {
    font-size: 18px;
  }

  .about-faq-section .accordion-item .accordion-button::after,
  .about-faq-section .accordion-item .accordion-button.collapsed::after {
    font-size: 18px;
  }

  .service-process-list {
    margin-bottom: 0px;
  }

  .about-faq-section .accordion-item .accordion-body {
    padding: 15px;
  }

  .service-process-list-item .service-process-content-body {
    margin-bottom: 10px;
  }

  .service-process-list-item .service-process-title h3 {
    font-size: 18px;
  }

  .service-process-list-item .service-process-btn a {
    width: 30px;
    height: 30px;
  }

  .service-process-list-item .service-process-btn img {
    max-width: 16px;
  }

  .service-process-img {
    margin-bottom: 30px;
  }

  .working-hours h3,
  .service-catagery-list h3 {
    font-size: 22px;
  }

  .sidebar-cta-image img {
    aspect-ratio: 1 / 0.95;
  }

  .sidebar-cta-item .icon-box {
    width: 90px;
    height: 90px;
  }

  .sidebar-cta-item .icon-box figure {
    width: 70px;
    height: 70px;
  }

  .sidebar-cta-item .icon-box figure img {
    max-width: 30px;
  }

  .sidebar-cta-content h3 {
    font-size: 22px;
  }

  .service-single-image img {
    aspect-ratio: 1 / 0.7;
  }

  .service-entry h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .service-entry p {
    margin-bottom: 15px;
  }

  .service-entry ul {
    gap: 15px;
  }

  .service-entry ul li {
    width: 100%;
  }

  .post-image figure,
  .post-image img {
    aspect-ratio: 1 / 0.8;
  }

  .post-entry blockquote {
    background-position: left 20px top 20px;
    background-size: 35px;
    padding: 55px 20px 20px 20px;
  }

  .post-entry h2 {
    font-size: 30px;
  }

  .tag-links {
    font-size: 20px;
  }

  .page-team-single .team-member-image img {
    aspect-ratio: 1 / 1.15;
  }

  .member-detail-header .member-detail-title h2 {
    font-size: 22px;
  }

  .member-detail-body {
    gap: 20px;
  }

  .member-detail-body .member-detail-list-item {
    width: 100%;
  }

  .about-icon-box-list.member-expertise {
    margin-top: -50px;
  }

  .member-working-hour .section-title h2 {
    font-size: 28px;
  }

  .member-working-hour-list ul li {
    justify-content: start;
  }

  .member-working-hour-list ul li span {
    display: none;
  }

  .member-working-hour-list ul li h3 {
    font-size: 16px;
    margin-right: 20px;
  }

  .member-working-hour-list ul li p {
    font-size: 16px;
  }

  .contact-information-box {
    gap: 20px;
  }

  .contact-info-item {
    width: calc(50% - 10px);
  }

  .contact-info-item .icon-box img {
    max-width: 22px;
  }

  .contact-info-content p {
    font-size: 14px;
  }

  .contact-us-form .section-title h2 {
    font-size: 22px;
  }

  .google-map-iframe iframe,
  .google-map-iframe {
    height: 400px;
  }

  .booking-process-item {
    width: calc(50% - 15px);
  }

  .booking-process-item::before {
    display: none;
  }

  .booking-process-content h3 {
    margin-bottom: 10px;
  }

  .error-page-image img {
    max-width: 100%;
  }

  .error-page-content-heading h2 {
    font-size: 30px;
  }
}

/* custom  tab css section */

#services img {
  border-radius: 20px;
}

.nav.nav-pills .nav-link.active {
  background-color: #ffffff !important;
  color: #000000;
}

.nav .nav-link,
.navbar-brand,
.navbar-brand:hover {
  color: #fff;
}

.text-colored {
  color: #ff3131;
}

.nav-service-item {
  color: #ffffff !important;
}

.text-start.nav-link.text-colored.nav-service-item.active {
  color: #000000 !important;

}

#flexofservices {
  display: flex;
  justify-content: center;
  gap: 70px;
  padding: 12px;
  /* border-bottom: 2px solid #0098c1; */
  background: #0098c1;
  border-radius: 40px;
  color: white;
  background: rgb(0, 152, 193);
  background: linear-gradient(90deg, rgba(0, 152, 193, 1) 0%, rgba(1, 86, 108, 1) 99%);
}

.footer-copyrigths {
  border-top: 1px solid #ffffff;
  padding-top: 10px;
  background-color: var(--primary-color);
}

#blogstyle {
  border: 1px solid #0098c1;
  border-radius: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.post-item-content {
  padding: 5px 20px 20px;
}

/* .bookappointmenttitle {
	font-size: 30px !important;
	text-align: start !important;
} */

.footer-info-box-content a {
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.footer-info-box-content a:hover {
  color: #64ff37;
}

@media (max-width: 575.98px) {

  br {
    display: none !important;
  }

  .section-title h3 {
    /* display: block !important; */
    gap: 10px;
  }

  .icon-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }

  .section-row .section-title {
    margin-bottom: 0;
    margin-top: 15px;
  }

  .section-title p {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 18px;
    display: block !important;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column !important;
  }

  .flex-content {
    display: flex;
    justify-content: space-between;
    flex-direction:column ;
  }


  #flexofservices {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 12px;
    /* border-bottom: 2px solid #0098c1; */
    background: #0098c1;
    border-radius: 40px;
    color: white;
    background: rgb(0, 152, 193);
    background: linear-gradient(90deg, rgba(0, 152, 193, 1) 0%, rgba(1, 86, 108, 1) 99%);
  }

  .centerlineofthetab {
    display: none;
  }

  footer.main-footer {
    padding: 100px 0 50px;
  }

  .footer-links {
    width: calc(45% - 15px);
    margin-top: 0px;
  }

  .cta-box {
    padding: 50px 0 50px;
  }

  .topbar {
    display: none;
  }

  .navbar {
    padding: 65px 0px 20px;
  }

  .about-content-list {
    display: block !important;
    align-items: baseline;
    flex-direction: column;
    gap: 5px;
  }

  .how-it-work {
    padding: 100px 0 50px;
  }
  .video-border iframe{
    width: 100%;
  }
}

.flex-one {
  display: flex;
}

.about-content-list {
  display: flex;
  align-items: baseline;
  gap: 50px;
}

.bookappointmenttitle {
  font-size: 32px !important;
}

.treatment-card-position {
  position: relative;
}

.treatment-card {
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: absolute;
  bottom: -50px;
  left: 18px;
  width: 340px;
}

.new-treament-img img {
  border-radius: 20px;
}

.new-treament-img::after {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.inside-treatment-card h3 {
  font-size: 23px;
  margin-bottom: 20px;
}

.inside-treatment-card p {
  font-size: 16px;
}

/* treament card start */

section a {
  display: inline-block;
  text-decoration: none;
}

.card:nth-child(1) .box .icon .iconBox {
  background: #1e84b5;
}

.card:nth-child(2) .box .icon .iconBox {
  background: #70b3b1;
}

.card:nth-child(3) .box .icon .iconBox {
  background: #d05fa2;
}

.content {
  padding: 0.938rem 0.625rem;
}

.content h3 {
  text-transform: capitalize;
  font-size: 24px;
  margin-bottom: 20px;
}

.card-inner {
  position: relative;
  width: inherit;
  height: 18.75rem;
  background: var(--clr);
  border-radius: 1.25rem;
  border-bottom-right-radius: 0;
  overflow: hidden;
}

.box {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
}

.imgBox {
  position: absolute;
  inset: 0;
}

.imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon {
  position: absolute;
  bottom: -0.375rem;
  right: -0.375rem;
  width: 6rem;
  height: 6rem;
  background: var(--clr);
  border-top-left-radius: 50%;
}

.icon:hover .iconBox {
  transform: scale(1.1);
}

.icon::before {
  position: absolute;
  content: "";
  bottom: 0.375rem;
  left: -1.25rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
}

.icon::after {
  position: absolute;
  content: "";
  top: -1.25rem;
  right: 0.375rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
}

.iconBox {
  position: absolute;
  inset: 0.625rem;
  background: #282828;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.icon {
  position: absolute;
  bottom: -0.375rem;
  right: -0.375rem;
  width: 6rem;
  height: 6rem;
  background: var(--clr);
  border-top-left-radius: 50%;

  &:hover .iconBox {
    transform: scale(1.1);
  }

  &::before {
    position: absolute;
    content: "";
    bottom: 0.375rem;
    left: -1.25rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
  }

  &::after {
    position: absolute;
    content: "";
    top: -1.25rem;
    right: 0.375rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
  }

  .iconBox {
    position: absolute;
    inset: 0.625rem;
    background: #282828;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;

    span {
      color: #fff;
      font-size: 1.5rem;
    }
  }
}

.footer-copyright-text a {
  color: #f1f1f1;
  font-weight: 600;
}

.footer-copyright-text a:hover {
  color: #64ff37;
  font-weight: 600;
}


.outlineofthenavbar {
  border: 1px solid #000000;
  border-radius: 40px;
  padding: 4px;
}


.centerlineofthetab {
  color: #fff;
  background-color: #ffffff;
  width: 3px;
  height: 50px;
  position: relative;
}


/* whatsapp css icon */

.whatsapp-floater {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 60px;
  display: flex;
  z-index: 999;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: all 0.4s ease-in-out;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: scale;
  animation-name: scale;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.whatsapp-floater:hover {
  transform: scale(1.05);
}

.whatsapp-floater svg {
  fill: #ffffff;
  width: 30px;
  flex: 0 0 25px;
  height: auto;
}

@-webkit-keyframes scale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes scale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Call-icon-fixed section */

.btn-call-fixed {
  position: fixed;
  z-index: 10;
  bottom: 20px;
  right: 20px;
  margin-left: 1158px;
  margin-top: -50px;
  position: fixed;
  bottom: 100px;
  right: 30px;
}

.btn-call-fixed .icon-wrap {
  float: left;
  position: relative;
  z-index: 10;
  width: 50px;
  height: 50px;
}

.btn-call-fixed .icon-wrap i.fa {
  font-size: 19px;
  color: #fff;
  background: radial-gradient(circle, rgba(0, 152, 193, 1) 0%, rgba(1, 86, 108, 1) 99%);
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 1000;
  top: 40px;
  left: 0px;
  border-radius: 50%;
  text-align: center;
  line-height: 39px;
  animation: icon-luc-lac 1.2s infinite ease-in-out;
}


@media(max-width: 1599px) {
  .btn-call-fixed .text {
    display: none;
  }

  .btn-call-fixed:hover .text {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: calc(100% + 20px);
    white-space: nowrap;
    text-shadow: 1px 1px 0 #fff;
  }
}

@keyframes icon-luc-lac {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }

  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }

  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}

@keyframes vien-nho-zoom {
  0% {
    transform: rotate(0) scale(.7) skew(1deg);
    opacity: .2;
  }

  50% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: .5;
  }

  100% {
    transform: rotate(0) scale(.7) skew(1deg);
    opacity: .2;
  }
}

@keyframes vien-lon-zoom {
  0% {
    transform: rotate(0) scale(.5) skew(1deg);
    opacity: .1;
  }

  30% {
    transform: rotate(0) scale(.7) skew(1deg);
    opacity: .1;
  }

  100% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: .1;
  }
}

.icon-disability img {
  width: 48px !important;
}



@media (max-width: 768px) {

  /* Styles for tablets and mobile devices */
  .btn-call-fixed {
    position: fixed;
    z-index: 1000;
    top: 82%;
    left: 10px;
    margin-left: 287px;
    margin-top: -7px;
  }

  .mf-social-side-list {
    position: fixed;
    z-index: 100;
    bottom: 125px !important;
    right: 20px !important;
  }

}


/* @media (min-width: 1200px){
  .btn-call-fixed {
    position: fixed;
    z-index: 1000;
    top: 70%;
    left: 170px;
    margin-left: 1158px;
    margin-top: -50px;
}
} */






.footer-links {
  font-family: Arial, sans-serif;
}

.main-menu,
.sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu li {
  position: relative;
}

.main-menu>li {
  margin-bottom: 10px;
}

.main-menu a {
  text-decoration: none;
  color: #333;
  /* font-weight: bold; */
}

.sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #f4f4f4;
  border: 1px solid #ccc;
  padding: 10px;
  min-width: 160px;
  z-index: 10;
}

.sub-menu li {
  margin: 5px 0;
}

.has-submenu:hover .sub-menu {
  display: block;
}

/* Optional: Arrow Indicator */
.has-submenu>a::after {
  content: " ▼";
  font-size: 0.7em;
}

/* Responsive: Show on click (mobile support) */
@media (max-width: 768px) {
  .has-submenu.open .sub-menu {
    display: block;
  }
}




/*  */

.megamenuforservices {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 1200px !important;
  border-radius: 20px;
  position: absolute;
  left: -552px !important;
  top: 65px !important;
  overflow: hidden;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}


.topicofhead a {
  font-size: 22px !important;
  font-weight: bold !important;
  text-align: center;
}

.topicofhead {
  border-bottom: 1px solid #fff;

}

.main-menu ul.mega-menu>li>a::after,
.main-menu ul.mega-menu>li>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}

.main-menu ul.mega-menu>li>a::after {
  width: calc(100% - 20px);
  left: 20px;
}

.main-menu ul.mega-menu>li>a::after,
.main-menu ul.mega-menu>li>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}

/* megamenu for css */

.main-menu a {
  display: block;
  position: relative;
  color: var(--title-color);
  font-family: var(--title-font);

}

.main-menu a:hover {
  color: #64ff37;
}

.main-menu>ul>li {
  margin: 0 14px
}

.main-menu>ul>li>a {
  padding: 47px 0
}

.main-menu>ul>li>a:hover {
  color: var(--theme-color)
}

.main-menu ul {
  margin: 0;
  padding: 0
}

.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative
}

.main-menu ul li.menu-item-has-children>a:after {
  content: "\f078";
  position: relative;
  font-family: var(--icon-font);
  margin-left: 4px;
  font-weight: 600;
  top: 0;
  font-size: 1em
}

.main-menu ul li:last-child {
  margin-right: 0 !important
}

.main-menu ul li:first-child {
  margin-left: 0 !important
}

.main-menu ul li:hover>ul.sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  z-index: 9
}

.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  z-index: 9;
  -webkit-transform: scaleY(1) translateX(-50%);
  -ms-transform: scaleY(1) translateX(-50%);
  transform: scaleY(1) translateX(-50%);
  height: 800px;
}

.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  visibility: hidden;
  min-width: 190px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 7px;
  left: -14px;
  opacity: 0;
  z-index: -1;
  border: 0;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-radius: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s
}

.main-menu ul.sub-menu a,
.main-menu ul.mega-menu a {
  font-size: 16px;
  line-height: 30px
}

.main-menu ul.sub-menu {
  padding: 18px 20px 18px 18px;
  left: -27px
}

.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px 9px
}

.main-menu ul.sub-menu li.menu-item-has-children>a:after {
  content: "\f105";
  float: right;
  top: 1px
}

.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 23px;
  text-transform: capitalize
}

.main-menu ul.sub-menu li a:before {
  content: "\f649";
  position: absolute;
  top: 8px;
  left: 0;
  font-family: var(--icon-font);
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1;
  color: var(--theme-color);
  font-weight: 500
}

.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto
}

.main-menu .mega-menu-wrap {
  position: static
}

.main-menu ul.mega-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: var(--main-container);
  padding: 20px 15px 23px 15px;
  left: 50%;
  -webkit-transform: scaleY(0) translateX(-50%);
  -ms-transform: scaleY(0) translateX(-50%);
  transform: scaleY(0) translateX(-50%)
}

.main-menu ul.mega-menu li {
  display: block;
  width: 100%;
  padding: 0 15px
}

.main-menu ul.mega-menu li li {
  padding: 2px 0
}

.main-menu ul.mega-menu li a {
  display: inline-block;
  text-transform: capitalize
}

.main-menu ul.mega-menu>li>a {
  /* display: block; */
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--title-color);
  border-color: var(--theme-color)
}

.main-menu ul.mega-menu>li>a::after,
.main-menu ul.mega-menu>li>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color)
}

.main-menu ul.mega-menu>li>a::after {
  width: calc(100% - 20px);
  left: 20px
}

.main-menu ul.mega-menu>li>a:hover {
  padding-left: 0
}

.main-menu.style2>ul>li {
  margin: 0 6px
}

.main-menu.style2>ul>li>a {
  padding: 2px 16px;
  border-radius: 100px;
  background-color: transparent;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out
}

.main-menu.style2>ul>li>a:hover {
  background-color: rgba(64, 102, 242, 0.1)
}

.main-menu.style2 ul.sub-menu {
  padding: 18px 20px 18px 18px;
  left: -27px;
  margin-top: 15px
}

/* Dropdown Submenu Styles */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

.dropdown-menu.show,
.dropdown-submenu:hover>.dropdown-menu {
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.navbar-light .nav-item .nav-link:focus,
.navbar-light .nav-item .nav-link:hover {
  color: rgb(78 78 78 / 70%) !important;
}

.dropdown-item {
  color: #fff !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #0000007a !important;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu>a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
  display: none;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #fff;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}


/* fixed social iocns */

.mf-social-side-list {
  position: fixed;
  z-index: 100;
  bottom: 175px;
  right: 30px;
}

.mf-social-side-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0
}

.mf-social-side-list ul li a {
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 28px;
  margin-top: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  font-size: 23px;
  margin-top: 0px;
  padding-top: 7px;
  margin-top: 6px;
}

.mf-social-side-list ul li a:hover {
  opacity: .9;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.mf-social-side-list ul li a[href*='facebook'] {
  background: #3b5998;
}

.mf-social-side-list ul li a[href*='instagram'] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  ;
}

.mf-social-side-list ul li a[href*='youtube'] {
  background: #c4302b;
}

.mf-social-side-list ul li a[href*='linkedin'] {
  background: #0077B5;
}

.mf-social-side-list ul li a[href*='twitter'] {
  background: #00acee;
}


@media (min-width: 1200px) {
  .mf-social-side-list {
    position: fixed;
    z-index: 100;
    bottom: 130px;
    right: 23px;
  }
}




.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: none !important;
  border-radius: .25rem;
}


.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: none !important;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  width: 225px;
}

#nav-bar-submenu-sizeone {
  width: 400px !important;
}

#nav-bar-submenu-sizetwo {
  width: 400px !important;
}

#nav-bar-submenu-sizethree {
  width: 400px !important;
}

#nav-bar-submenu-sizeone {
  width: 600px !important;
  column-count: 2;
  column-gap: 10px;
  padding: 15px;
}

/* #nav-bar-submenu-sizeone .dropdown-item {
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
} */


.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  padding: 0px !important;
}

#consultation-width-nav {
  width: 250px;
}

.readmore-buttons {
  margin-top: 85px;
}


/* appointment form */

/* Enhanced Cupping Services Section Styles */
.cupping-services-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-header .subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.section-header .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 20px;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.title-divider .line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), transparent);
}

.title-divider .circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 25px;
}

.icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper img {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.service-card:hover .icon-wrapper img {
  transform: scale(1.1);
}

.icon-bg-shape {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
  border-radius: 50%;
  z-index: 1;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-color), #2980b9);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.service-title {
  font-size: 24px;
  font-weight: 600;
  color: #2d3436;
  margin-bottom: 15px;
}

.service-description {
  color: #636e72;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 25px 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #2d3436;
}

.service-features li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 16px;
}

.btn-book-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  background: linear-gradient(135deg, var(--primary-color), #2980b9);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-book-service i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-book-service:hover {
  background: linear-gradient(135deg, #2980b9, var(--primary-color));
  transform: translateY(-2px);
}

.btn-book-service:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .section-header .section-title {
    font-size: 28px;
  }

  .service-card {
    padding: 20px;
  }
}


.popup-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}

.form-container {
  background: #fff;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 420px;
}

.right-form {
  padding: 40px;
  flex: 1;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f4f4f4;
  border: none;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.right-form h2 {
  color: #00AEEF;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.right-form h2 span {
  display: block;
}

.right-form p {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

.input-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

input,
select {
  flex: 1;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  color: #00AEEF;
}

.submit-btn {
  background: #00AEEF;
  color: white;
  padding: 15px;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

#yogaPopup {
  display: none;
}

.submit-btn span {
  margin-left: 10px;
}

#our-team-member {
  border: 2px solid #1e84b5;
}

#contact-details-section a {
  display: block;
  font-size: 18px;
  color: #000;
}

.healthandheal-mail {
  display: flex;
  justify-content: start;
  gap: 20px;
  margin-bottom: 20px;
  align-items: baseline;
}

.healthandheal-phone {
  display: flex;
  justify-content: start;
  gap: 20px;
  margin-bottom: 20px;
  align-items: baseline;


}

.healthandheal-location {
  display: flex;
  justify-content: start;
  gap: 20px;
  margin-bottom: 20px;
  align-items: baseline;

}

.healthandheal-location p {
  font-size: 18px;
}

#banner-h2-title {
  font-size: 65px;
}

.ortho-img img {
  border-radius: 20px;
  border: 1px solid #00acee;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 95%;
}

.pt---70 {
  padding-top: 70px;
}

.pb---70 {
  padding-bottom: 70px;
}

.pre-and-post-natal-ukl {
  padding: 20px 0px 0px 0px;

}

.pre-and-post-natal-ukl li {
  list-style: none;
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}


.pt---150 {
  padding-top: 150px;
}

.pb---150 {
  padding-bottom: 100px;
}

.benefits-content a:hover {
  color: #64ff37 !important;
}

/* popupmodel form */

.modal-content {
  border-radius: 15px;
  overflow: hidden;
}

.popup-left {
  background: url('https://i.ibb.co/YPKzPqx/7h-popup-form-style.png') no-repeat center center;
  background-size: cover;
  color: #000;
  padding: 0px;
  text-align: center;
}

.popup-left h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

.popup-left p {
  font-size: 14px;
}

.popup-left .deal {
  font-size: 28px;
  font-weight: bold;
  color: #67350f;
  margin: 15px 0;
}

.popup-left .features {
  display: flex;
  justify-content: space-around;
  font-size: 12px;
  margin-top: 20px;
}

.popup-left .features div {
  text-align: center;
}

.popup-right .btn-property {
  margin: 2px;
}


.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
  outline: 0;
  border-radius: 20px !important;
  border: 2px solid #0098c1 !important;
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  border-radius: 6px !important;
  border: 1px solid #0098c1 !important;
  height: 50px !important;
}

.appoinment-btn {
  color: white;
  height: 45px;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 600;
  background: radial-gradient(circle, rgba(0, 152, 193, 1) 0%, rgba(1, 86, 108, 1) 99%);
}


.form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgb(255 255 255 / 25%) !important;
}


.terms-and-contiditions-para p {
  font-size: 18px;
}


.terms-and-contiditions-para i {
  color: #0098c1;
}


.flex-content {
  display: flex;
  justify-content: space-between;
}


.section-title h3 {
  display: flex;
  gap: 10px;
}

.sectionpara {
  font-size: 20px;
}

#seperatebox {
  text-align: center;
}

#seperatebox img {
  width: 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

#seperatebox h3 {
  margin-bottom: 0px;
  padding: 10px;
}

.service-box {
  border: 1px solid #0098c1;
  border-radius: 10px;
}

.dark-section {
  background: linear-gradient(90deg, rgba(0, 152, 193, 1) 0%, rgba(1, 86, 108, 1) 99%);
  color: #fff;
  border-radius: 20px;
}

.dark-section .section-title h2,
.dark-section .section-title h3,
.dark-section .section-title p {
  color: #fff;
}

.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.icon-list .item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #00acee;
  padding: 12px 16px;
  border-radius: 12px;
  min-width: 260px;
}

.icon-list .item i {
  color: #ffffff;
  font-size: 22px;
}

.feature-card {
  background: #fff;
  border: 1px solid #0098c1;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
}

.feature-card h3 {
  font-size: 22px;
}

.badge-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.badge-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 500;
}

.badge-list li i {
  color: #007898;
  margin-right: 10px;
}

.badge-lists li i {
  color: #ffffff;
  margin-right: 10px;
}

.cta-banner {
  background: #e5eaec;
  border: 1px dashed #0098c1;
  padding: 18px 22px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cta-banner .btn-default span {
  padding: 12px 18px;
}

@media (max-width: 991px) {
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.service-entry-section2 {
  padding: 80px 0px !important;
  margin-bottom: 50px !important;
}

.service-entry-img img {
  border: 1px solid #0098c1;
  border-radius: 15px !important;
}

#about-testimonial .testimonial-item {
  background-color: #0098c1;
  color: #ffffff;
}

#about-testimonial .testimonial-item p {
  color: #ffffff;
}

#about-testimonial h2 {
  color: #0077B5;
}

#about-testimonial .author-content h3 {
  color: #ffffff;
}



.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 .25rem rgb(255 255 255 / 25%) !important;
  opacity: 1;
}


textarea.form-control {
  min-height: calc(1.5em + (.75rem + 2px));
  height: 150px !important;
}





#fixedWhatsAppIcon {
  display: block;
  position: fixed;
  right: 20px;
  bottom: 60px;
  width: 50px;
  height: 50px;
  background-color: #54b460;
  text-align: center;
  line-height: 50px;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  z-index: 9999;
}

#fixedWhatsAppIcon:hover {
  background-color: #339933;
}


@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(0.9);
  }
}

.mypage-alo-phone {
  position: fixed;
  right: -8px;
  bottom: 100px;
  visibility: visible;
  background-color: transparent;
  width: 110px;
  height: 110px;
  cursor: pointer;
  z-index: 200000 !important;
}

.mypage-alo-ph-img-circle {
  width: 30px;
  height: 30px;
  top: 43px;
  left: 43px;
  position: absolute;
  background: url(https://i.imgur.com/J9AXAq7.png) no-repeat center center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: .7;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-color: #1e84b5;
  background-size: 70%;
  -webkit-animation: pulse 01s infinite;
}

.mypage-alo-ph-circle-fill {

  width: 60px;
  height: 60px;
  top: 28px;
  left: 28px;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  background-color: #1e84b53b;
  opacity: .75 !important;
  -webkit-animation: pulse 1s infinite;
}

.mypage-alo-ph-circle {
  width: 90px;
  height: 90px;
  top: 12px;
  left: 12px;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, 0.4);
  opacity: .1;
  border-color: #1e84b5;
  opacity: .5;
}



.whatsapp-button {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  background-color: #25d366;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  width: 50px;
  height: 50px;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  animation: effect 5s infinite ease-in;
}

@keyframes effect {

  20%,
  100% {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }

  0%,
  10% {
    width: 55px;
    height: 55px;
    font-size: 35px;
  }

  5% {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 11px !important;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, .25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

.form-check-label{
      padding-top: 15px;
    padding-left: 20px;
}


.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%) !important;
}

.modal-title{
    font-size: 33px !important;
    text-align: center !important;
}


.modal-header h5{
    text-align: center!important;
}

.list-style-of-terms li{
    list-style: disc !important;
}

#get-direction-link{
  background-color: #ffffff;
  border-radius: 5px;
  padding: 5px 10px;
  margin-top: 15px;
  width: 190px;
}

#get-direction-link a{
  color: #0077B5;
}

#get-direction-link a:hover{
  color: #23ef37;
}
