@import url('https://fonts.googleapis.com/css2?family=Niconne&display=swap');
:root {
  --primary-color: #26505E;
  --secondary-color: #E9F2DF;
  --accent-secondary-color: #CE9E6E33;
  --bg-color: #FFFDFA;
  --text-color: #7D898D;
  --accent-color: #689283;
  --white-color: #FFFFFF;
  --divider-color: #26505E1A;
  --dark-divider-color: #FFFFFF1A;
  --error-color: rgb(230, 87, 87);
  --default-font: "Sora", sans-serif;
}
/************************************/
/*** 	   02. General css		  ***/
/************************************/
body {
  position: relative;
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  color: var(--text-color);
  background: var(--bg-color);
}
::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
  border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar {
  width: 7px;
  background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}
::selection {
  color: var(--primary-color);
  background-color: var(--accent-secondary-color);
  filter: invert(1);
}
p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.3em;
  color: var(--primary-color);
}
figure {
  margin: 0;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  outline: 0;
}
a:focus {
  text-decoration: none;
  outline: 0;
}
html, body {
  width: 100%;
  overflow-x: clip;
}
.container {
  max-width: 1300px;
}
.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, .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-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  background: var(--accent-color);
  color: var(--white-color);
  border: none;
  border-radius: 100px;
  padding: 16px 55px 16px 20px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.btn-default::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 5px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  background-image: url('../images/arrow-white.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}
.btn-default:hover::before {
  background-color: var(--accent-color);
}
.btn-default::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.btn-default:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.btn-default.btn-highlighted {
  background: var(--primary-color);
}
.btn-default.btn-highlighted:hover {
  background: transparent;
  color: var(--primary-color);
}
.btn-default.btn-highlighted::before {
  background-color: var(--accent-color);
}
.btn-default.btn-highlighted:hover::before {
  background-color: var(--accent-color);
}
.btn-default.btn-highlighted::after {
  background-color: var(--bg-color);
}
.btn-default.btn-dark:hover {
  background: transparent;
  color: var(--primary-color);
}
.btn-default.btn-dark::after {
  background-color: var(--secondary-color);
}
.readmore-btn {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-right: 25px;
  transition: all 0.4s ease-in-out;
}
.readmore-btn:hover {
  color: var(--primary-color);
}
.readmore-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  background-image: url('../images/arrow-accent.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  transform: translate(0, -50%);
  transition: all 0.3s ease-in-out;
}
.readmore-btn:hover::before {
  transform: translate(3px, -50%);
  filter: brightness(0) invert(0);
}
.cb-cursor:before {
  background: var(--accent-color);
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--primary-color);
  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(--accent-color) transparent var(--accent-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: 66px;
  transform: translate(-50%, -50%);
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bg-section {
  background-color: var(--secondary-color);
}
.dark-section {
  background-color: var(--primary-color);
}
.bg-section {
  width: 100%;
  max-width: 1800px;
  border-radius: 20px;
  margin: 0 auto;
}
.section-row {
  margin-bottom: 80px;
}
.section-row .section-title {
  margin-bottom: 0;
}
.section-row .section-title.section-title-center {
  width: 100%;
      max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.section-btn {
  text-align: right;
}
.section-content-btn .section-btn {
  margin-top: 30px;
  text-align: left;
}
.section-title-content p {
  margin-bottom: 20px;
}
.section-title-content p:last-child {
  margin-bottom: 0;
}
.section-title {
  margin-bottom: 40px;
}
.section-title h3 {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
  padding-left: 15px;
  margin-bottom: 10px;
}
.section-title h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
.section-title h1 {
  font-size: 70px;
  line-height: 1.1em;
  margin-bottom: 0;
  cursor: none;
}
.section-title h2 {
    font-size: 32px;
    line-height: 1.1em;
    margin-bottom: 0;
    cursor: none;
}
.section-title p {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 15px;
}
.dark-section .section-title h3, .dark-section .section-title h1, .dark-section .section-title h2, .dark-section .section-title p, .dark-section .section-title-content p {
  color: var(--white-color);
}
.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		 ****/
/************************************/
header.main-header {
  position: relative;
  z-index: 100;
}
header.main-header .header-sticky {
  position: relative;
  top: 0;
  background: transparent;
  width: 100%;
  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(--bg-color);
  border: 1px solid var(--divider-color);
  border-top: none;
  border-radius: 0 0 20px 20px;
}
.navbar {
      padding: 20px 0;
  align-items: center;
}
.navbar-brand {
  padding: 0;
  margin: 0;
}
.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 1.042vw;
}
.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}
.main-menu ul li {
  margin: 0;
  position: relative;
}
.main-menu ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2em;
      padding: 14px 15px !important;
  color: var(--text-color);
  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: var(--primary-color);
}
.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scale(1, 0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 235px;
  border-radius: 12px;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}
.main-menu ul li.submenu:first-child ul {
  width: 235px;
}
.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}
.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
  padding: 5px 0;
}
.main-menu ul li.submenu ul li.submenu > a:after {
  content: '\f105';
  float: right;
}
.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 ul li a:hover, .main-menu ul ul li a:focus {
  color: var(--primary-color);
  background-color: transparent;
  padding: 8px 20px 8px 23px !important;
}
.main-menu ul li.highlighted-menu {
  display: none;
}
.responsive-menu, .navbar-toggle {
  display: none;
}
.responsive-menu {
  top: 0;
  position: relative;
}
.slicknav_btn {
  background: var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 6px;
}
.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);
  background-color: var(--white-color);
}
.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);
  background-color: var(--white-color);
}
.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--accent-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: 400;
  text-transform: capitalize;
  padding: 7px 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(--primary-color);
}
.slicknav_menu ul ul li a {
  padding: 7px 20px 7px 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: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}
.slicknav_open > a .slicknav_arrow:after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--primary-color);
}
/************************************/
/***         04. Hero css	      ***/
/************************************/
.hero {
  position: relative;
  background-image: url('../images/hero-bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 100vh;
  align-content: end;
  padding: 80px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(38, 80, 94, 0) 27%, rgba(38, 80, 94, 0.9) 92.8%);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.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 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero.hero-slider-layout {
  background: none;
  padding: 0;
}
.hero.hero-slider-layout .hero-slide {
  position: relative;
  min-height: 100vh;
  align-content: end;
  padding: 80px 0 80px;
}
.hero.hero-slider-layout .hero-slide::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(38, 80, 94, 0) 27%, rgba(38, 80, 94, 0.9) 92.8%);
  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: 30px;
  text-align: center;
  z-index: 2;
}
.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--dark-divider-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-section {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.hero .container-fluid {
  position: relative;
  padding: 0;
  z-index: 2;
}
.hero-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.satisfy-client-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.satisfy-client-images {
  display: inline-flex;
  align-items: center;
}
.satisfy-client-image {
  position: relative;
  display: inline-block;
  margin-left: -18px;
  z-index: 1;
}
.satisfy-client-image:first-child {
  margin: 0;
}
.satisfy-client-image figure {
  display: block;
  width: 50px;
  height: 50px;
  border: 1px solid var(--white-color);
  border-radius: 50%;
}
.satisfy-client-image img {
  width: 100%;
  border-radius: 50%;
}
.satisfy-client-image.add-more {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border: 1px solid var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.satisfy-client-image.add-more:hover {
  background: var(--primary-color);
}
.satisfy-client-image.add-more i {
  font-size: 20px;
  color: var(--white-color);
}
.satisfy-client-content {
    width: 100%;
}
.satisfy-client-content p {
    color: #ffffff;
    margin: 0;
    font-family: "Niconne", cursive;
    font-size: 35px;
}
.satisfy-client-content p span {
  font-weight: 700;
  color: var(--accent-color);
}
.recovery-circle {
  text-align: right;
}
.recovery-circle a {
  display: inline-block;
  border-radius: 50%;
}
.recovery-circle a img {
  max-width: 220px;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}
@keyframes infiniterotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.recovery-circle a:hover img {
  animation-play-state: paused;
}
/************************************/
/*** 	 	05. About Us css	  ***/
/************************************/
.about-us {
  padding: 100px 0;
}
.about-us-images {
  display: flex;
  flex-wrap: wrap;
  margin-right: 15px;
}
.about-img-1, .about-img-2 {
  border-radius: 20px;
  overflow: hidden;
}
.about-img-1 {
    margin-left: 0px;
}
.about-img-1 figure, .about-img-2 figure {
  display: block;
}
.about-img-1 figure img, .about-img-2 figure img {
  width: 100%;
  object-fit: cover;
}
.about-img-1 figure img {

}
.about-img-2 {
  position: relative;
  width: 100%;
  max-width: 312px;
  border: 5px solid var(--white-color);
  box-shadow: 0px 4px 14px 0px #0000000D;
  margin-top: -300px;
  z-index: 1;
}
.about-img-2 figure img {
  aspect-ratio: 1 / 1.245;
}
.working-hours-box {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--dark-divider-color);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px;
  z-index: 1;
}
.working-hours-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.working-hours-header h3 {
  font-size: 16px;
  color: var(--white-color);
}
.working-hours-header img {
  width: 100%;
  max-width: 16px;
}
.working-hours-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.working-hours-body ul li {
  color: var(--white-color);
  line-height: 1.5em;
  margin-bottom: 10px;
}
.working-hours-body ul li:last-child {
  margin-bottom: 0;
}
.about-us-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.about-experience-box {
  width: calc(65% - 15px);
}
.about-experience-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.about-experience-item:last-child {
  margin-bottom: 0;
}
.about-experience-item .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  overflow: hidden;
}
.about-experience-item .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.about-experience-item:hover .icon-box::before {
  transform: scale(1);
}
.about-experience-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.about-experience-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}
.about-experience-content {
  width: calc(100% - 80px);
}
.about-experience-content h3 {
  font-size: 20px;
}
.trusted-profession-box {
  position: relative;
  width: calc(35% - 15px);
  background: var(--accent-color);
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
}
.trusted-profession-box::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  border-radius: 100px 100px 0 0;
  transition: all 0.4s ease-in-out;
}
.trusted-profession-box:hover::before {
  height: 100%;
  border-radius: 0;
}
.trusted-profession-box .icon-box, .trusted-profession-content {
  position: relative;
  z-index: 1;
}
.trusted-profession-box .icon-box {
  margin-bottom: 40px;
}
.trusted-profession-box .icon-box img {
  width: 100%;
  max-width: 40px;
}
.trusted-profession-content h3 {
  font-size: 16px;
  color: var(--white-color);
}
.about-us-btn {
  margin-top: 40px;
}
/************************************/
/*** 	 06. Our Services css	  ***/
/************************************/
.our-services {
  padding: 100px 0;
}
.service-item {
    position: relative;
    background: #e9f2df;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px 30px;
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
        border: #dddddd solid 2px;
}
.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--accent-color);
  border-radius: 999px 999px 0 0;
  transition: all 0.4s ease-in-out;
}
.service-item.active::before, .service-item:hover::before {
  height: 100%;
  border-radius: 0;
}
.service-title, .service-item .icon-box, .service-content, .service-btn {
  position: relative;
  z-index: 1;
}
.service-title, .service-item .icon-box, .service-content {
      margin-bottom: 15px;
}
.service-title h3 {
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}
.service-title h3 a {
  color: inherit;
}
.service-item .icon-box {
  display: inline-block;
  padding: 0 10px 10px 0;
}
.service-item .icon-box::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
      background: #65b3b033;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  transition: all 0.4s ease-in-out;
}
.service-item.active .icon-box::before, .service-item:hover .icon-box::before {
  background: var(--dark-divider-color);
}
.service-item .icon-box img {
  width: 100%;
  max-width: 50px;
  transition: all 0.4s ease-in-out;
}
.service-item.active .icon-box img, .service-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}
.service-content p {
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
    font-size: 15px;
}
.service-item.active .service-title h3, .service-item:hover .service-title h3, .service-item.active .service-content p, .service-item:hover .service-content p {
  color: var(--white-color);
}
.service-item.active .service-btn .readmore-btn, .service-item:hover .service-btn .readmore-btn {
  color: var(--white-color);
}
.service-item.active .service-btn .readmore-btn::before, .service-item:hover .service-btn .readmore-btn::before {
  filter: brightness(0) invert(1);
}
.section-footer-text {
  margin-top: 30px;
  text-align: center;
}
.section-footer-text p {
  margin: 0;
}
.dark-section .section-footer-text p {
  color: var(--white-color);
}
.section-footer-text p span {
  display: inline-block;
  line-height: 1.1em;
  color: var(--white-color);
  background: var(--accent-color);
  border-radius: 30px;
  padding: 4px 12px;
  margin-right: 10px;
}
.section-footer-text p a {
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.dark-section .section-footer-text p a:hover {
  color: var(--white-color);
}
.section-footer-text p a:hover {
  color: var(--primary-color);
}
/************************************/
/*** 	 07. Why Choose Us css	  ***/
/************************************/
.why-choose-us {
  padding: 100px 0;
}
.why-choose-item-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}
.why-choose-item {
    width: calc(24% - 12px);
}
.why-choose-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #48685d;
    border-bottom: #bdbdbd dashed 1px;
    padding-bottom: 10px;
}
.why-choose-item p {
    margin-bottom: 0;
    font-size: 15px;
    color: #707070;
}
.why-choose-image-box {
  position: relative;
}
.why-choose-image {
  padding: 0 40px 0 60px;
}
.why-choose-image figure {
  display: block;
}
.why-choose-image img {
  width: 100%;
  aspect-ratio: 1 / 1.167;
  object-fit: cover;
  margin-bottom: -100px;
}
.why-choose-image-box .satisfy-client-box {
  position: absolute;
  left: 0;
  bottom: 18%;
  width: 100%;
  max-width: 260px;
  background: var(--bg-color);
  box-shadow: 0px 0px 10px 0px #201F241A;
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
  z-index: 1;
}
.why-choose-image-box .satisfy-client-box::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  border-radius: 100px 100px 0 0;
  transition: all 0.4s ease-in-out;
}
.why-choose-image-box .satisfy-client-box:hover::before {
  height: 100%;
  border-radius: 0;
}
.why-choose-image-box .satisfy-client-box .satisfy-client-images, .why-choose-image-box .satisfy-client-box .satisfy-client-content {
  position: relative;
  width: 100%;
  z-index: 1;
}
.why-choose-image-box .satisfy-client-box .satisfy-client-content p {
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
.why-choose-image-box .satisfy-client-box:hover .satisfy-client-content p {
  color: var(--white-color);
}
/************************************/
/*** 	 08. Our Feature css	  ***/
/************************************/
.our-feature {
  padding: 100px 0 70px;
}
.feature-item {
  position: relative;
  background-color: var(--bg-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
}
.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--accent-color);
  border-radius: 999px 999px 0 0;
  transition: all 0.4s ease-in-out;
}
.feature-item.active::before, .feature-item:hover::before {
  height: 100%;
  border-radius: 0;
}
.feature-item .icon-box {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 1;
}
.feature-item .icon-box img {
  width: 100%;
  max-width: 100px;
  transition: all 0.4s ease-in-out;
}
.feature-item.active .icon-box img, .feature-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}
.feature-item-header, .feature-item-content, .feature-counter-item {
  position: relative;
  z-index: 1;
}
.feature-item-header {
  border-bottom: 1px solid var(--divider-color);
  padding: 0 70px 110px 0;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
}
.feature-item.active .feature-item-header, .feature-item:hover .feature-item-header {
  border-color: var(--dark-divider-color);
}
.feature-item-header h3 {
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}
.feature-item-content {
  margin-bottom: 30px;
}
.feature-item-content p {
  transition: all 0.4s ease-in-out;
  margin-bottom: 0;
}
.feature-counter-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.feature-counter-content h2 {
  font-size: 40px;
  line-height: normal;
  transition: all 0.4s ease-in-out;
  margin-bottom: 5px;
}
.feature-counter-content h2 sup {
  top: -8px;
}
.feature-counter-content p {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.feature-item.active .feature-item-header h3, .feature-item:hover .feature-item-header h3, .feature-item.active .feature-item-content p, .feature-item:hover .feature-item-content p, .feature-item.active .feature-counter-content h2, .feature-item:hover .feature-counter-content h2, .feature-item.active .feature-counter-content p, .feature-item:hover .feature-counter-content p {
  color: var(--white-color);
}
.feature-counter-icon {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-counter-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.feature-item.active .feature-counter-icon::before, .feature-item:hover .feature-counter-icon::before {
  transform: scale(1);
}
.feature-counter-icon img {
  position: relative;
  width: 100%;
  max-width: 30px;
  z-index: 1;
}
/************************************/
/*** 	  09. What We Do css	  ***/
/************************************/
.what-we-do {
  padding: 100px 0;
}
.what-we-image-box {
  margin-right: 15px;
}
.what-we-image figure {
  display: block;
  border-radius: 20px;
}
.what-we-image img {
  width: 100%;
  aspect-ratio: 1 / 0.916;
  object-fit: cover;
  border-radius: 20px;
}
.what-we-contact-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}
.what-we-contact-item {
  display: flex;
  align-items: center;
}
.what-we-contact-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}
.what-we-contact-item .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.what-we-contact-item:hover .icon-box::before {
  transform: scale(1);
}
.what-we-contact-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}
.what-we-contact-item-content {
  width: calc(100% - 65px);
}
.what-we-contact-item-content p {
  margin-bottom: 5px;
}
.what-we-contact-item-content h3 {
  font-size: 20px;
}
.what-we-contact-item-content h3 a {
  color: initial;
  transition: all 0.3s ease-in-out;
}
.what-we-contact-item-content h3 a:hover {
  color: var(--accent-color);
}
.what-we-item {
  display: flex;
  margin-bottom: 40px;
}
.what-we-item:last-child {
  margin-bottom: 0;
}
.what-we-item .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
.what-we-item .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.what-we-item:hover .icon-box::before {
  transform: scale(1);
}
.what-we-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  z-index: 1;
}
.what-we-item-content {
  width: calc(100% - 80px);
}
.what-we-item-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    display: contents;
    text-transform: none;
    letter-spacing: 0px;
}
.what-we-item-content p {
  margin-bottom: 0;
}
/************************************/
/*** 	  10. How It Work css	  ***/
/************************************/
.how-it-work {
  padding: 100px 0;
}
.work-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.work-item {
    position: relative;
    width: calc(33% - 17.5px);
    text-align: center;
    background: #e9f2df;
    padding: 30px 30px 30px;
    border-radius: 20px;
    border: #dddddd solid 2px;
}
.work-item::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -35px;
  background: url('../images/work-item-arrow.svg') no-repeat;
  background-position: center center;
  width: 36px;
  height: 40px;
    display: none;
}
.work-item:nth-child(4n + 4):before, .work-item:last-child:before {
  display: none;
}
.work-item-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 15px;
    border-radius: 20px;
}
.work-item-image figure {
  display: block;
  mask-size: auto;
  mask-position: center center;
  mask-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.work-box-1 .work-item-image figure {

}
.work-box-2 .work-item-image figure {
  mask-image: url('../images/work-item-bg-shape-2.svg');
  background-image: url('../images/work-item-bg-shape-2.svg');
}
.work-box-3 .work-item-image figure {
  mask-image: url('../images/work-item-bg-shape-3.svg');
  background-image: url('../images/work-item-bg-shape-3.svg');
}
.work-box-4 .work-item-image figure {
  mask-image: url('../images/work-item-bg-shape-4.svg');
  background-image: url('../images/work-item-bg-shape-4.svg');
}
.work-item-image figure img {
    max-width: 100%;
    border-radius: 10px;
    background: #fff;
    padding: 5px;
}
.work-item-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}
.work-item-content p {
    margin-bottom: 0;
    color: #fff;
}
/************************************/
/*** 	 11. Our Programs css	  ***/
/************************************/
.our-programs {
  padding: 100px 0;
}
.programs-image-box {
  background: var(--accent-secondary-color);
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  overflow: hidden;
}
.programs-item-body {
  display: flex;
  align-items: end;
}
.programs-body-content {
  width: calc(100% - 210px);
}
.programs-body-content p {
  margin-bottom: 0;
}
.programs-body-image {
  margin-right: -40px;
}
.programs-body-image figure {
  display: block;
}
.programs-body-image img {
  width: 100%;
  max-width: 260px;
}
.programs-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.programs-item {
  position: relative;
  width: calc(50% - 15px);
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}
.programs-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--accent-color);
  border-radius: 999px 999px 0 0;
  transition: all 0.4s ease-in-out;
}
.programs-item:hover::before {
  height: 100%;
  border-radius: 0;
}
.programs-item-header, .programs-item-content {
  position: relative;
  z-index: 1;
}
.programs-item-header {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}
.programs-item-title h3 {
  font-size: 26px;
  transition: all 0.5s ease-in-out;
}
.program-btn a {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
.programs-item:hover .program-btn a {
  background: var(--primary-color);
}
.program-btn a img {
  width: 100%;
  max-width: 20px;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.program-btn a:hover img {
  transform: rotate(0);
}
.programs-item-content p {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.programs-item:hover .programs-item-title h3, .programs-item:hover .programs-item-content p {
  color: var(--white-color);
}
/************************************/
/*** 	 	12. CTA Box css 	  ***/
/************************************/
.cta-box {
  padding: 100px 0;
}
.cta-box-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cta-box-list ul li {
  position: relative;
  color: var(--white-color);
  line-height: 1.5em;
  padding-left: 30px;
}
.cta-box-list ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}
.cta-box-btn {
  margin-top: 40px;
}
.cta-box-image figure {
  display: block;
}
.cta-box-image img {
  width: 100%;
  aspect-ratio: 1 / 0.81;
  object-fit: cover;
  margin-bottom: -100px;
}
/************************************/
/*** 	 	13. Our FAQs css	  ***/
/************************************/
.our-faqs {
  padding: 100px 0;
        border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.faq-accordion .accordion-item {
  background: var(--accent-secondary-color);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 0;
  overflow: hidden;
}
.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.333em;
      background: #fff;
  color: var(--primary-color);
  padding: 18px 45px 18px 20px;
  transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-header .accordion-button.collapsed {
  color: var(--primary-color);
      background: #fff;
}
.faq-accordion .accordion-item .accordion-button::after, .faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: '\f068';
  font-family: "FontAwesome";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: '\2b';
  color: var(--primary-color);
}
.faq-accordion .accordion-item .accordion-body {
  background: #fff;
  border-top: 1px solid var(--divider-color);
  padding: 18px 20px;
}
.faq-accordion .accordion-item .accordion-body p {
  color: var(--text-color);
  margin: 0;
}
.faqs-image-box {
  position: relative;
  margin-left: 15px;
}
.faq-image {
  border-radius: 20px;
  overflow: hidden;
}
.faq-image figure {
  display: block;
}
.faq-image img {
  width: 100%;
  aspect-ratio: 1 / 1.125;
  object-fit: cover;
}
.faqs-contact-box {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: end;
  background: var(--primary-color);
  border-radius: 20px;
  gap: 20px;
  padding: 30px 0 30px 30px;
  overflow: hidden;
  z-index: 1;
}
.faqs-cta-box-content {
  width: calc(100% - 120px);
}
.faqs-cta-box-content h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 20px;
}
.faqs-contact-box .icon-box {
  margin-bottom: -40px;
  transform: rotate(-10deg);
}
.faqs-contact-box .icon-box img {
  width: 100%;
  max-width: 100px;
}
/************************************/
/***   14. Our Testimonials css   ***/
/************************************/
.our-testimonials {
    background: var(--accent-color);
    padding: 100px 0;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.testimonials-content .section-title h3::before {
  background: var(--white-color);
}
.testimonial-slider-box {
  border-left: 1px solid var(--dark-divider-color);
  padding-left: 30px;
}
.testimonial-author-images {
  display: inline-flex;
  margin-bottom: 40px;
}
.testimonial-author-image {
  position: relative;
  margin-left: -10px;
  z-index: 1;
}
.testimonial-author-image:first-child {
  margin: 0;
}
.testimonial-author-image figure {
  display: block;
  border-radius: 50%;
}
.testimonial-author-image img {
  width: 100%;
  max-width: 60px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
}
.testimonial-slider .swiper-wrapper {
  cursor: none;
}
.testimonials-rating {
  margin-bottom: 20px;
}
.testimonials-rating i {
  color: var(--primary-color);
  margin-right: 2px;
}
.testimonials-rating i:last-child {
  margin: 0;
}
.testimonial-content {
  margin-bottom: 40px;
}
.testimonial-content p, .author-content p {
  color: var(--white-color);
  margin-bottom: 0;
}
.author-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 5px;
}
.testimonial-slider-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: right;
  z-index: 2;
}
.testimonial-slider .testimonial-button-next, .testimonial-slider .testimonial-button-prev {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.testimonial-slider .testimonial-button-next {
  margin-left: 15px;
}
.testimonial-slider .testimonial-button-next:hover, .testimonial-slider .testimonial-button-prev:hover {
  background: 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-white.svg") no-repeat center center;
  background-size: 22px 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);
}
.testimonial-slider .testimonial-button-next:hover:before, .testimonial-slider .testimonial-button-prev:hover:before {
  filter: brightness(0) invert(0);
}
.company-supports-slider {
  border-top: 1px solid var(--dark-divider-color);
  padding: 60px 0 0;
  margin-top: 60px;
}
.company-supports-logo {
  text-align: center;
}
.company-supports-logo img {
  width: 100%;
  max-height: 41px;
  transition: all 0.4s ease-in-out;
}
/************************************/
/*** 	 	15. Our Blog css	  ***/
/************************************/
.our-blog {
  padding: 100px 0 70px;
}
.post-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.post-featured-image {
  margin-bottom: 20px;
}
.post-featured-image a, .post-featured-image figure {
  display: block;
  border-radius: 20px;
  cursor: none;
  overflow: hidden;
}
.post-featured-image img {
  width: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.post-item:hover .post-featured-image img {
  transform: scale(1.1);
}
.post-item-content {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.post-item-content h2 {
  font-size: 20px;
  line-height: 1.4em;
}
.post-item-content h2 a {
  color: inherit;
}
/************************************/
/*** 	 	16. Footer css  	  ***/
/************************************/
.main-footer {
  padding: 100px 0 0;
  margin-bottom: 40px;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
    width: 100%;
    max-width: 250px;
}
.about-footer-content {
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
}
.about-footer-content p {
    color: var(--white-color);
    margin: 0;
    font-family: "Niconne", cursive;
    font-size: 32px;
}
.footer-contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
}
.footer-contact-item {
  display: flex;
}
.footer-contact-item .icon-box {
  position: relative;
  border: 1px solid var(--dark-divider-color);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.footer-contact-item:hover .icon-box {
  border-color: transparent;
}
.footer-contact-item .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.footer-contact-item:hover .icon-box::before {
  transform: scale(1);
}
.footer-contact-item .icon-box img {
  position: relative;
  max-width: 20px;
  z-index: 1;
}
.footer-contact-item-content h3 {
  font-size: 20px;
  color: var(--white-color);
      margin-bottom: 0px;
}
.footer-contact-item-content p {
  color: var(--white-color);
  margin: 0;
}
.footer-contact-item-content p a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.footer-contact-item-content p a:hover {
  color: var(--accent-color);
}
.footer-newsletter-box {
  margin-left: 3.125vw;
}
.footer-newsletter-form .form-group {
  display: flex;
  border: 1px solid var(--dark-divider-color);
  border-radius: 100px;
  padding: 6px;
}
.footer-newsletter-form .form-group .form-control {
  width: calc(100% - 40px);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  color: var(--white-color);
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 11px 20px;
}
.footer-newsletter-form .form-group .form-control::placeholder {
  font-size: 14px;
  color: var(--white-color);
  opacity: 50%;
}
.footer-newsletter-form .form-group .newsletter-btn {
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.footer-newsletter-form .form-group .newsletter-btn:hover {
  background-color: var(--white-color);
}
.footer-newsletter-form .form-group .newsletter-btn i {
  font-size: 18px;
  color: var(--white-color);
  padding-right: 3px;
  transition: all 0.3s ease-in-out;
}
.footer-newsletter-form .form-group .newsletter-btn:hover i {
  color: var(--primary-color);
}
.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 60px;
  padding: 40px 0;
}
.footer-copyright-text p {
    color: var(--white-color);
    text-align: right;
    margin: 0;
    font-size: 14px;
}
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links ul li {
    display: inline-block;
    line-height: 1.5em;
    color: var(--white-color);
    text-transform: capitalize;
    margin-right: 30px;
    font-size: 14px;
}
.footer-links ul li:last-child {
  margin-right: 0;
}
.footer-links ul li a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.footer-links ul li a:hover {
  color: var(--accent-color);
}
/************************************/
/*** 	 17. About Us Page css	  ***/
/************************************/
.page-header {
  position: relative;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  padding: 170px 0;
  overflow: hidden;
}

.page-header-new-1 {
    position: relative;
    background: url(../images/inner-banner-1.jpg) no-repeat !important;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 120px 0;
    overflow: hidden;
    background-position: center !important;
    background-size: cover !important;
}

.page-header-new-2 {
    position: relative;
    background: url(../images/inner-banner-2.jpg) no-repeat !important;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 120px 0;
    overflow: hidden;
    background-position: center !important;
    background-size: cover !important;
}

.page-header-new-3 {
    position: relative;
    background: url(../images/inner-banner-3.jpg) no-repeat !important;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 120px 0;
    overflow: hidden;
    background-position: center !important;
    background-size: cover !important;
}

.page-header-new-4 {
    position: relative;
    background: url(../images/inner-banner-4.jpg) no-repeat !important;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 120px 0;
    overflow: hidden;
    background-position: center !important;
    background-size: cover !important;
}

.page-header-new-5 {
    position: relative;
    background: url(../images/inner-banner-5.jpg) no-repeat !important;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 120px 0;
    overflow: hidden;
    background-position: center !important;
    background-size: cover !important;
}

.page-header-new-6 {
    position: relative;
    background: url(../images/inner-banner-6.jpg) no-repeat !important;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 120px 0;
    overflow: hidden;
    background-position: center !important;
    background-size: cover !important;
}

.page-header-new-7 {
    position: relative;
    background: url(../images/inner-banner-7.jpg) no-repeat !important;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 120px 0;
    overflow: hidden;
    background-position: center !important;
    background-size: cover !important;
}

.page-header-new-8 {
    position: relative;
    background: url(../images/inner-banner-8.jpg) no-repeat !important;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 120px 0;
    overflow: hidden;
    background-position: center !important;
    background-size: cover !important;
}


.page-header-new-9 {
    position: relative;
    background: url(../images/inner-banner-8.jpg) no-repeat !important;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 120px 0;
    overflow: hidden;
    background-position: center !important;
    background-size: cover !important;
}


.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(38, 80, 94, 0) -24.69%, rgba(38, 80, 94, 0.9) 67.71%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.page-header-box {
  position: relative;
  text-align: center;
  z-index: 1;
}
.page-header-box h1 {
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1em;
  color: var(--white-color);
  margin-bottom: 10px;
  cursor: none;
}
.page-header-box ol {
  margin: 0;
  padding: 0;
  justify-content: center;
}
.page-header-box ol li.breadcrumb-item {
  font-size: 16px;
  text-transform: capitalize;
  line-height: normal;
  color: var(--white-color);
}
.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white-color);
}
.page-header-box ol li.breadcrumb-item a {
    color: #60b395;
}

.page-header-box ol li.breadcrumb-item i{color: #60b395;}

.our-approach {
  padding: 100px 0;
}
.approach-item-list {
  margin-right: 15px;
}
.approach-item {
  background: var(--accent-color);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 40px;
}
.approach-item:last-child {
  margin-bottom: 0;
}
.approach-item:nth-child(even) {
  background-color: var(--primary-color);
}
.approach-item .icon-box {
  position: relative;
  display: inline-block;
  padding: 0 10px 10px 0;
  margin-bottom: 30px;
}
.approach-item .icon-box::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--dark-divider-color);
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
.approach-item .icon-box img {
  width: 100%;
  max-width: 50px;
}
.approach-item-content h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 10px;
}
.approach-item-content p {
  color: var(--white-color);
  margin-bottom: 0;
}
.approach-image-box {
  position: relative;
  height: 100%;
}
.approach-image-box figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}
.approach-image-box img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  border-radius: 20px;
}
.approach-image-content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  background: var(--primary-color);
  border-radius: 20px;
  padding: 30px;
  z-index: 1;
}
.approach-image-content h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 10px;
}
.approach-image-content p {
  color: var(--white-color);
  margin-bottom: 0;
}
.our-care {
  padding: 100px 0;
}
.our-care-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-items: start;
}
.care-image-1 {
  position: relative;
  width: calc(100% - 240px);
}
.care-image-1 figure, .care-image-2 figure {
  display: block;
  border-radius: 20px;
}
.care-image-1 figure img, .care-image-2 figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.care-image-1 figure img {
  aspect-ratio: 1 / 1.178;
}
.care-image-2 figure img {
  aspect-ratio: 1 / 1.294;
}
.care-image-1 .recovery-circle {
  position: absolute;
  bottom: -30px;
  transform: translateY(50%);
  left: 60px;
}
.care-image-1 .recovery-circle a img {
  max-width: 170px;
}
.our-care-images .trusted-profession-box {
  width: 200px;
  margin: 20px;
}
.care-image-2 {
  position: relative;
  width: 100%;
  max-width: 305px;
  margin-top: -245px;
  z-index: 1;
}
.our-care-content {
  margin-left: 20px;
}
.care-counter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}
.care-counter-item {
  width: calc(33.33% - 20px);
}
.care-counter-item .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  overflow: hidden;
}
.care-counter-item .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.care-counter-item:hover .icon-box::before {
  transform: scale(1);
}
.care-counter-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  z-index: 1;
}
.care-counter-item-content h2 {
  font-size: 46px;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.care-counter-item-content p {
  margin-bottom: 0;
}
.our-results {
  padding: 100px 0;
}
.result-item {
  position: relative;
  display: flex;
  margin-bottom: 40px;
  z-index: 1;
}
.result-item:after {
  content: "";
  display: block;
  position: absolute;
  left: 30px;
  top: 60px;
  border-left: 1px solid var(--divider-color);
  width: 1px;
  height: 100%;
  z-index: 0;
}
.result-item:last-child:after {
  display: none;
}
.result-item:last-child {
  margin-bottom: 0;
}
.result-item .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  z-index: 1;
}
.result-item .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.result-item:hover .icon-box::before {
  transform: scale(1);
}
.result-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  z-index: 1;
}
.result-item-content {
  position: relative;
  width: calc(100% - 80px);
  z-index: 1;
}
.result-item-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.result-item-content p {
  margin-bottom: 0;
}
.result-image-box {
  position: relative;
  margin-left: 15px;
  padding-left: 80px;
  overflow: hidden;
}
.result-image figure, .result-list-image figure {
  display: block;
  border-radius: 20px;
}
.result-image-box img, .result-list-image img {
  width: 100%;
  aspect-ratio: 1 / 1.135;
  object-fit: cover;
  border-radius: 20px;
}
.result-image-list-box {
  position: absolute;
  bottom: 50px;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.result-list-image {
  width: calc(50% - 10px);
}
.our-team {
  padding: 100px 0 70px;
}
.team-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.team-image {
  position: relative;
  margin-bottom: 20px;
}
.team-image a, .team-image figure {
  display: block;
  cursor: none;
  border-radius: 20px;
  overflow: hidden;
}
.team-image img {
  width: 100%;
  aspect-ratio: 1 / 1.32;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.team-item:hover .team-image img {
  transform: scale(1.07);
}
.team-social-icon {
  position: absolute;
  right: 30px;
  bottom: 0;
  left: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.team-item:hover .team-social-icon {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}
.team-social-icon ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.team-social-icon ul li a {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.team-social-icon ul li a:hover {
  background: var(--primary-color);
}
.team-social-icon ul li a i {
  font-size: 18px;
  color: inherit;
}
.team-content {
  text-align: center;
}
.team-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.team-content h3 a {
  color: inherit;
}
.team-content p {
  text-transform: capitalize;
  margin: 0;
}
/************************************/
/*** 	 18. Services Page css	  ***/
/************************************/
.page-services {
  padding: 100px 0 70px;
}
.page-services .service-item {
  background: var(--secondary-color);
}
/************************************/
/*** 	 19. Service Single css	  ***/
/************************************/
.page-service-single {
  padding: 100px 0;
}
.page-single-sidebar {
  position: sticky;
  top: 20px;
  margin-right: 20px;
}
.page-category-list {
  background-color: var(--secondary-color);
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 30px;
  overflow: hidden;
}
.page-category-list h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.page-category-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-category-list ul li {
  margin-bottom: 20px;
}
.page-category-list ul li:last-child {
  margin: 0;
}
.page-category-list ul li a {
  position: relative;
  display: block;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--text-color);
  background: var(--white-color);
  border-radius: 10px;
  padding: 18px 45px 18px 20px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.page-category-list ul li:hover a {
  color: var(--white-color);
}
.page-category-list ul li a::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0px, -50%);
  background: url('../images/arrow-text.svg') no-repeat;
  background-position: center center;
  background-size: cover;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}
.page-category-list ul li a:hover::before {
  filter: brightness(0) invert(1);
}
.page-category-list ul li a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.page-category-list ul li:hover a::after {
  top: 0;
  height: 100%;
}
.sidebar-cta-box {
        background: #062138;
  border-radius: 20px;
  padding: 40px;
}
.sidebar-cta-content {
  margin-bottom: 15px;
}
.sidebar-cta-content h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 10px;
}
.sidebar-cta-content p {
    color: var(--white-color);
    margin-bottom: 0;
    line-height: 25px;
}
.sidebar-contact-box {
  align-items: center;
  background: var(--dark-divider-color);
  border-radius: 10px;
  padding: 12px 20px;
  margin-bottom: 30px;
}
.sidebar-contact-box .icon-box {
  width: 60px;
  height: 60px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
        margin: 0 auto;
}
.sidebar-cta-box:hover .sidebar-contact-box .icon-box {
  background: var(--accent-color);
}
.sidebar-contact-box .icon-box img {
  width: 100%;
  max-width: 35px;
}
.sidebar-contact-content p {
    color: var(--white-color);
    margin-bottom: 5px;
    text-align: center;
    margin-top: 10px;
}
.sidebar-contact-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white-color);
}
.sidebar-contact-content h3 a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.sidebar-contact-content h3 a:hover {
  color: var(--accent-color);
}
.sidebar-cta-image figure {
  display: block;
  border-radius: 10px;
}
.sidebar-cta-image img {
  width: 100%;
  aspect-ratio: 1 / 0.48;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
.sidebar-cta-box:hover .sidebar-cta-image img {
  transform: scale(1.1);
}
.page-single-image {
  margin-bottom: 40px;
}
.page-single-image figure {
  display: block;
  border-radius: 20px;
}
.page-single-image img {
  width: 100%;
  aspect-ratio: 1 / 0.581;
  object-fit: cover;
  border-radius: 20px;
}
.service-entry {
  margin-bottom: 60px;
}
.service-entry h2 {
  font-size: 46px;
  margin-bottom: 20px;
}
.service-entry p {
  margin-bottom: 20px;
}
.service-entry p:last-child {
  margin-bottom: 0;
}
.service-entry ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.service-entry ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 30px;
  margin-bottom: 20px;
}
.service-entry ul li:last-child {
  margin-bottom: 0;
}
.service-entry ul li::before {
  content: '\f058';
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}
.service-support-step, .service-priority-box, .service-empower-box {
  margin-top: 60px;
}
.support-step-box {
  background: var(--secondary-color);
  border-radius: 20px;
  margin-top: 40px;
  padding: 40px;
}
.support-step-image-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.support-step-image, .support-step-content {
  width: calc(50% - 15px);
}
.support-step-image figure {
  display: block;
  border-radius: 20px;
}
.support-step-image img {
  width: 100%;
  aspect-ratio: 1 / 0.58;
  object-fit: cover;
  border-radius: 20px;
}
.support-step-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}
.support-step-item-list .care-counter-item {
  width: calc(25% - 22.5px);
}
.support-step-item-list .care-counter-item .care-counter-item-content h2 {
  margin-bottom: 10px;
}
.service-priority-item-list {
  margin-top: 40px;
}
.service-priority-item-list .what-we-item .icon-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: var(--white-color);
  z-index: 1;
}
.service-empower-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.service-empower-content, .service-empower-image {
  width: calc(50% - 15px);
}
.service-empower-item-list {
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}
.service-empower-image figure {
  display: block;
  border-radius: 20px;
  height: 100%;
}
.service-empower-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
  border-radius: 20px;
}
/************************************/
/*** 	 20. Blog Archive css	  ***/
/************************************/
.page-blog {
  padding: 100px 0;
}
.page-blog .post-item {
  height: calc(100% - 40px);
  margin-bottom: 40px;
}
.page-pagination {
  margin-top: 20px;
  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(--divider-color);
  color: var(--accent-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 600;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}
.page-pagination ul li.active a, .page-pagination ul li a:hover {
  background: var(--accent-color);
  color: var(--white-color);
}
/************************************/
/*** 	 21. Blog Single css	  ***/
/************************************/
.page-single-post {
  padding: 100px 0;
}
.post-single-meta {
  margin-top: 5px;
}
.post-single-meta ol li {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 15px;
}
.post-single-meta ol li:last-child {
  margin-right: 0;
}
.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;
  border-radius: 20px;
  overflow: hidden;
}
.post-image img {
  width: 100%;
  aspect-ratio: 1 / 0.50;
  object-fit: cover;
  border-radius: 20px;
}
.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.post-entry {
  border-bottom: 0px solid var(--divider-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 {
  font-weight: 600;
  line-height: 1.1em;
  margin: 0 0 0.435em;
}
.post-entry h1 {
  font-size: 70px;
}
.post-entry h2 {
    font-size: 22px;
}
.post-entry h3 {
  font-size: 40px;
}
.post-entry h4 {
  font-size: 30px;
}
.post-entry h5 {
  font-size: 24px;
}
.post-entry h6 {
  font-size: 20px;
}
.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 ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}
.post-entry ol li, .post-entry ul li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--text-color);
  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: url('../images/icon-blockquote.svg'), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: 30px 30px;
  background-size: 45px;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 30px 30px 30px 90px;
  margin-bottom: 30px;
}
.post-entry blockquote p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--primary-color);
}
.post-entry blockquote p:last-child {
  margin-bottom: 0;
}
.tag-links {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.post-tags .tag-links a {
  display: inline-block;
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1em;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 100px;
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
}
.post-tags .tag-links a:hover {
  background: var(--primary-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: var(--accent-color);
  color: var(--white-color);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}
.post-social-sharing ul li:hover a {
  background: var(--primary-color);
}
.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}
/************************************/
/*** 	22. Case Study Page css	  ***/
/************************************/
.page-case-study {
  padding: 100px 0 60px;
}
.case-study-item {
  height: calc(100% - 40px);
  margin-bottom: 40px;
}
.case-study-image {
  position: relative;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
.case-study-image::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scale(0);
  background: var(--primary-color);
  border-radius: 20px;
  opacity: 60%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.case-study-item:hover .case-study-image::before {
  transform: scale(1);
}
.case-study-image figure {
  display: block;
}
.case-study-image figure img {
  width: 100%;
  aspect-ratio: 1 / 0.87;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}
.case-study-item:hover .case-study-image figure img {
  transform: scale(1.1);
}
.case-study-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.case-study-item:hover .case-study-btn {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.case-study-btn a {
  background: var(--accent-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-study-btn a img {
  width: 100%;
  max-width: 40px;
  transform: rotate(-45deg);
  transition: 0.4s ease-in-out;
}
.case-study-btn a:hover img {
  transform: rotate(0deg);
}
.case-study-content h2 {
  font-size: 20px;
}
.case-study-content h2 a {
  color: inherit;
}
/************************************/
/***  23. Case Study Single css	  ***/
/************************************/
.page-case-study-single {
  padding: 100px 0;
}
.case-study-category-list {
  background-color: var(--secondary-color);
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 30px;
}
.case-study-category-list h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.case-study-category-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.case-study-category-list ul li {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  gap: 20px;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--text-color);
  background: var(--white-color);
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 20px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 1;
}
.case-study-category-list ul li:last-child {
  margin: 0;
}
.case-study-category-list ul li::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.case-study-category-list ul li:hover::after {
  top: 0;
  height: 100%;
}
.case-study-category-list ul li b {
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}
.case-study-category-list ul li:hover, .case-study-category-list ul li:hover b {
  color: var(--white-color);
}
.case-study-category-list ul li span {
  display: inline-flex;
  gap: 10px;
}
.case-study-category-list ul li span a {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.case-study-category-list ul li span a:hover {
  background: var(--white-color);
}
.case-study-category-list ul li span a i {
  font-size: 18px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.case-study-category-list ul li span a:hover i {
  color: var(--primary-color);
}
.case-study-entry {
  margin-bottom: 60px;
}
.case-study-entry h2 {
  font-size: 46px;
  margin-bottom: 20px;
}
.case-study-entry p {
  margin-bottom: 20px;
}
.case-study-entry p:last-child {
  margin-bottom: 0;
}
.case-study-entry ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.case-study-entry ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 10px;
}
.case-study-entry ul li:last-child {
  margin-bottom: 0;
}
.case-study-entry ul li::before {
  content: '\f058';
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}
.whole-person-care-box, .long-term-care-box, .commitment-box {
  margin-top: 60px;
}
.our-solution-box {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  margin-top: 40px;
  overflow: hidden;
}
.our-solution-nav .nav-tabs {
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  border: none;
  border-bottom: 1px solid var(--divider-color);
  overflow: hidden;
}
.our-solution-nav ul li {
  width: 33.33%;
  border-right: 1px solid var(--divider-color);
  margin: 0;
  padding: 0;
}
.our-solution-nav ul li:last-child, .our-solution-nav ul li:nth-child(3n + 3) {
  border-right: none;
}
.our-solution-nav ul li::before {
  display: none;
}
.our-solution-nav ul li .nav-link {
  width: 100%;
  border: none;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: capitalize;
  padding: 18px;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
}
.our-solution-nav ul li .nav-link.active, .our-solution-nav ul li .nav-link:hover {
  background: var(--white-color);
  color: var(--accent-color);
}
.solution-box-item {
  padding: 40px;
}
.solution-item-content {
  margin-bottom: 40px;
}
.long-term-care-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.long-term-care-content, .long-term-care-info {
  width: calc(50% - 15px);
}
.long-term-care-content ul {
  margin-top: 40px;
}
.long-term-care-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 40px;
}
.long-term-care-info h3 {
  font-size: 20px;
}
.long-term-care-info p span {
  font-weight: 600;
  color: var(--primary-color);
  margin-right: 10px;
}
.commitment-content-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}
.commitment-item {
  width: calc(50% - 15px);
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 30px;
}
.commitment-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.commitment-item-header .icon-box {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}
.commitment-item-header .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.commitment-item:hover .commitment-item-header .icon-box::before {
  transform: scale(1);
}
.commitment-item-header .icon-box img {
  position: relative;
  width: 100%;
  max-width: 40px;
  z-index: 1;
}
.commitment-item-title {
  width: calc(100% - 95px);
}
.commitment-item-title h3 {
  font-size: 20px;
}
/************************************/
/***  	 24. Team Page css	   	  ***/
/************************************/
.page-team {
  padding: 100px 0 70px;
}
/************************************/
/*** 	 25. Team Single css	  ***/
/************************************/
.page-team-single {
  padding: 100px 0;
}
.team-member-about-box, .team-member-info {
  margin-bottom: 100px;
}
.team-member-about-box {
  background: var(--secondary-color);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 60px;
  padding: 50px;
}
.team-member-image, .team-member-content {
  width: calc(50% - 30px);
}
.team-member-image figure {
  display: block;
  border-radius: 20px;
}
.team-member-image img {
  width: 100%;
  aspect-ratio: 1 / 0.99;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}
.member-info-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.member-info-list ul li {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.member-info-list ul li:last-child {
  margin-bottom: 0;
}
.member-info-list ul li span {
  width: 65%;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}
.member-social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}
.member-social-list h3 {
  font-size: 20px;
}
.member-social-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.member-social-list ul li {
  display: inline-block;
  margin-right: 10px;
}
.member-social-list ul li:last-child {
  margin-right: 0;
}
.member-social-list ul li a {
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.member-social-list ul li a:hover {
  background: var(--primary-color);
}
.member-social-list ul li a i {
  font-size: 20px;
  color: inherit;
}
.team-member-info .section-title {
  margin-bottom: 0;
}
.team-member-experience-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}
.team-member-experience-box, .team-contact-form {
  width: calc(50% - 30px);
}
.team-member-experience-box {
  background: var(--bg-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 40px;
}
.skills-progress-bar {
  margin-bottom: 40px;
}
.skills-progress-bar:last-child {
  margin-bottom: 0px;
}
.skills-progress-bar .skill-data {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.skills-progress-bar .skill-data .skill-title, .skills-progress-bar .skill-data .skill-no {
  text-transform: capitalize;
}
.skills-progress-bar .skillbar .skill-progress {
  position: relative;
  width: 100%;
  height: 16px;
  background: var(--secondary-color);
  border-radius: 100px;
  overflow: hidden;
}
.skills-progress-bar .skillbar .skill-progress .count-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--accent-color);
  border-radius: 100px;
}
/************************************/
/***  26. Testimonials Page css   ***/
/************************************/
.page-testimonials {
  padding: 100px 0 70px;
}
.page-testimonials .testimonial-item {
  background: var(--accent-secondary-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px 35px;
}
.page-testimonials .testimonial-item .author-image {
  margin-bottom: 40px;
}
.page-testimonials .testimonial-item .author-image figure {
  display: inline-block;
  border-radius: 50%;
}
.page-testimonials .testimonial-item .author-image figure img {
  width: 100%;
  max-width: 60px;
  border-radius: 50%;
}
.page-testimonials .testimonial-item .testimonial-content p, .page-testimonials .testimonial-item .author-content p {
  color: var(--text-color);
}
.page-testimonials .testimonial-item .author-content h3 {
  color: var(--primary-color);
}
/************************************/
/*** 	 27. Image Gallery css	  ***/
/************************************/
.page-gallery {
  padding: 100px 0 70px;
}
.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.page-gallery-box .photo-gallery a {
  cursor: none;
}
.page-gallery-box .photo-gallery figure {
  display: block;
  border-radius: 20px;
}
.page-gallery-box .photo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.829;
  object-fit: cover;
  border-radius: 20px;
}
/************************************/
/*** 	28. Video Gallery css	  ***/
/************************************/
.page-video-gallery {
  padding: 100px 0 70px;
}
.video-gallery-image {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}
.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}
.video-gallery-image a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 20px;
  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: 'FontAwesome';
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}
.video-gallery-image img {
  width: 100%;
  aspect-ratio: 1 / 0.829;
  object-fit: cover;
  border-radius: 20px;
}
/************************************/
/*** 	  29. FAQs Page css	 	  ***/
/************************************/
.page-faqs {
  padding: 100px 0;
}
.page-faqs .page-faq-accordion {
  margin-bottom: 60px;
}
.page-faqs .page-faq-accordion:last-child {
  margin-bottom: 0px;
}
/************************************/
/***   30. Contact Us Page css    ***/
/************************************/
.page-contact-us {
  padding: 100px 0;
}
.contact-us-content {
  margin-right: 15px;
}
.contact-info-box {
  border-radius: 20px;
  overflow: hidden;
}
.contact-info-list {
  flex-wrap: wrap;
  gap: 40px 30px;
}
.contact-info-item {
    width: calc(100% - 15px);
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.contact-info-item .icon-box {
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.4s ease-in-out;
}
.contact-info-item:hover .icon-box {
  background-color: var(--primary-color);
}
.contact-info-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  z-index: 1;
}
.contact-item-content {
  width: calc(100% - 80px);
}
.contact-item-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}
.contact-item-content p {
  margin-bottom: 0;
}
.contact-item-content p a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.contact-item-content p a:hover {
  color: var(--primary-color);
}
.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}
.contact-social-links h3 {
  font-size: 20px;
  margin: 0;
}
.contact-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-social-links ul li {
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}
.contact-social-links ul li:last-child {
  margin-right: 0;
}
.contact-social-links ul li a {
  background: var(--accent-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.contact-social-links ul li:hover a {
  background: var(--primary-color);
}
.contact-social-links ul li a i {
  font-size: 18px;
  color: var(--white-color);
}
.contact-us-form {
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 40px;
}
.contact-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  background-color: var(--white-color);
  border-radius: 12px;
  padding: 18px 20px;
  border: none;
  box-shadow: none;
  outline: none;
}
.contact-form .form-control::placeholder {
  color: var(--text-color);
}
.contact-form .btn-default {
  width: 100%;
  padding: 16px 20px;
}
.contact-form .btn-default::before {
  display: none;
}
.google-map {
  margin-top: 100px;
}
.google-map iframe {
  width: 100%;
  height: 550px;
  border-radius: 20px;
  filter: grayscale(1);
  transition: all 0.4s ease-in-out;
}
.google-map iframe:hover {
  filter: grayscale(0);
}
/************************************/
/***   31. Book Appointment css	  ***/
/************************************/
.page-book-appointment {
  padding: 100px 0;
}
.appointment-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  background-color: var(--accent-secondary-color);
  border-radius: 10px;
  padding: 18px 20px;
  border: none;
  box-shadow: none;
  outline: none;
}
.appointment-form .form-control::placeholder {
  color: var(--text-color);
}
.appointment-form form .form-group select {
  padding: 18px 30px 18px 20px;
}
.appointment-form form .form-group select option {
  color: var(--primary-color);
  font-weight: 500;
}
.appointment-image-info {
  position: relative;
  margin-left: 15px;
}
.appointment-image {
  border-radius: 20px;
  overflow: hidden;
}
.appointment-image figure {
  display: block;
}
.appointment-image figure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(38, 80, 94, 0) 0%, rgba(38, 80, 94, 0.8) 100%);
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.appointment-image img {
  width: 100%;
  aspect-ratio: 1 / 1.012;
  object-fit: cover;
}
.appointment-image-info .working-hours-box {
  right: auto;
}
/************************************/
/*** 	32. 404 Error Page css	  ***/
/************************************/
.error-page {
  padding: 100px 0;
}
.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}
.error-page-image img {
  width: 100%;
  max-width: 50%;
}
.error-page-content {
  text-align: center;
}
.error-page-content .section-title {
  margin-bottom: 15px;
}
/************************************/
/***      33. Responsive css      ***/
/************************************/
@media only screen and (max-width: 1300px) {
  header.main-header .header-sticky.active {
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    margin: 0;
  }
}
@media only screen and (max-width: 1800px) {
  .bg-section {
    max-width: calc(100% - 40px);
    margin: 0 20px;
  }
  .main-footer {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1600px) {
  .hero-section {
    max-width: 100%;
  }
  .hero .container-fluid {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 1024px) {
  header.main-header {
    max-width: 100%;
    margin: 0;
  }
  .main-menu ul li a {
    padding: 15px 10px !important;
  }
}
@media only screen and (max-width: 991px) {
  .btn-default {
    padding: 14px 44px 14px 15px;
  }
  .btn-default::before {
    width: 30px;
    height: 30px;
    background-size: 16px auto;
  }
  .navbar {
    padding: 20px 0;
  }
  .slicknav_nav li, .slicknav_nav ul {
    display: block;
  }
  .responsive-menu, .navbar-toggle {
    display: block;
  }
  .header-btn {
    display: none;
  }
  .bg-section {
    max-width: 100%;
    border-radius: 0;
    margin: 0;
  }
  .section-row {
    margin-bottom: 40px;
  }
  .section-title.section-title-center {
    max-width: 100%;
  }
  .section-content-btn .section-btn {
    margin-top: 20px;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .section-title h3 {
    margin-bottom: 10px;
  }
  .section-title h1 {
    font-size: 50px;
  }
  .section-title h2 {
    font-size: 36px;
  }
  .section-title p {
    margin-top: 10px;
  }
  .section-title-content {
    margin-top: 10px;
  }
  .section-btn {
    text-align: left;
    margin-top: 15px;
  }
  .hero {
    min-height: auto;
    padding: 160px 0 60px;
  }
  .hero.hero-slider-layout .hero-slide::before, .hero::before {
    background: linear-gradient(180deg, rgba(38, 80, 94, 0) 8.1%, rgba(38, 80, 94, 0.9) 40.8%);
    border-radius: 0;
  }
  .hero.hero-slider-layout .hero-slide {
    min-height: auto;
    padding: 160px 0 60px;
  }
  .satisfy-client-box {
    width: 53%;
  }
  .hero-section .recovery-circle {
    display: none;
  }
  .about-us {
    padding: 50px 0;
  }
  .about-us-images {
    width: 100%;
    max-width: 70%;
    margin: 0 auto 30px;
  }
  .about-img-2 {
    margin-top: -230px;
  }
  .about-img-2 figure img {
    aspect-ratio: 1 / 1.01;
  }
  .working-hours-header {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .working-hours-body ul li {
    margin-bottom: 5px;
  }
  .about-experience-item {
    margin-bottom: 30px;
  }
  .trusted-profession-box .icon-box {
    margin-bottom: 30px;
  }
  .about-us-btn {
    margin-top: 30px;
  }
  .our-services {
    padding: 50px 0;
  }
  .service-item {
    padding: 30px 20px;
  }
  .service-title, .service-item .icon-box, .service-content {
    margin-bottom: 30px;
  }
  .section-footer-text {
    margin-top: 10px;
  }
  .section-footer-text p span {
    font-size: 14px;
    margin-right: 5px;
  }
  .why-choose-us {
    padding: 50px 0;
  }
  .why-choose-us-content {
    margin-bottom: 30px;
  }
  .why-choose-item-box {
    margin-top: 30px;
  }
  .why-choose-item h3 {
    margin-bottom: 10px;
  }
  .why-choose-image-box {
    margin: 0 80px;
  }
  .why-choose-image img {
    margin-bottom: -50px;
  }
  .why-choose-image-box .satisfy-client-box {
    padding: 15px;
    gap: 15px;
  }
  .our-feature {
    padding: 50px 0 20px;
  }
  .feature-item {
    padding: 30px 25px;
  }
  .feature-item .icon-box img {
    max-width: 80px;
  }
  .feature-item-header {
    padding: 0 50px 40px 0;
    margin-bottom: 20px;
  }
  .feature-item-content {
    margin-bottom: 20px;
  }
  .feature-counter-content h2 {
    font-size: 32px;
  }
  .what-we-do {
    padding: 50px 0;
  }
  .what-we-image-box {
    margin: 0 0 30px;
  }
  .what-we-image img {
    aspect-ratio: 1 / 0.6;
  }
  .what-we-contact-box {
        margin-top: 20px;
        margin-bottom: 20px;
    }
  .what-we-item {
    margin-bottom: 30px;
  }
  .what-we-item-content h3 {
    margin-bottom: 5px;
  }
  .how-it-work {
    padding: 50px 0;
  }
  .work-item {
    width: calc(50% - 15px);
  }
  .work-item:nth-child(2n + 2):before {
    display: none;
  }
  .work-item-image {
    margin-bottom: 20px;
  }
  .work-item-content h3 {
    margin-bottom: 10px;
  }
  .our-programs {
    padding: 50px 0;
  }
  .programs-image-box {
    padding: 30px;
    height: auto;
    margin-bottom: 30px;
  }
  .programs-item {
    padding: 20px;
  }
  .programs-body-content {
    width: calc(100% - 140px);
  }
  .programs-body-image img {
    max-width: 180px;
  }
  .programs-item-header {
    margin-bottom: 50px;
  }
  .programs-item-title h3 {
    font-size: 22px;
  }
  .cta-box {
    padding: 50px 0;
  }
  .cta-box-content {
    margin-bottom: 30px;
  }
  .cta-box-list ul {
    gap: 10px 30px;
  }
  .cta-box-list ul li {
    padding-left: 25px;
  }
  .cta-box-list ul li::before {
    font-size: 16px;
  }
  .cta-box-btn {
    margin-top: 30px;
  }
  .cta-box-image {
    margin: 0 90px;
  }
  .cta-box-image img {
    margin-bottom: -50px;
  }
  .our-faqs {
    padding: 50px 0;
  }
  .faqs-content {
    margin-bottom: 30px;
  }
  .faq-accordion .accordion-item {
    margin-bottom: 20px;
  }
  .faq-accordion .accordion-header .accordion-button {
    padding: 14px 40px 14px 15px;
  }
  .faq-accordion .accordion-item .accordion-button::after, .faq-accordion .accordion-item .accordion-button.collapsed::after {
    right: 15px;
  }
  .faq-accordion .accordion-item .accordion-body {
    padding: 14px 15px;
  }
  .faqs-image-box {
    margin: 0;
  }
  .faq-image img {
    aspect-ratio: 1 / 0.6;
  }
  .faqs-contact-box {
    padding: 20px 0 20px 20px;
  }
  .faqs-cta-box-content {
    width: calc(100% - 100px);
  }
  .faqs-contact-box .icon-box {
    margin-bottom: -30px;
  }
  .faqs-contact-box .icon-box img {
    max-width: 80px;
  }
  .our-testimonials {
    padding: 50px 0;
  }
  .testimonials-content {
    margin-bottom: 30px;
  }
  .testimonial-slider-box {
    border-left: none;
    border-top: 1px solid var(--dark-divider-color);
    padding: 30px 0 0;
  }
  .testimonial-author-images {
    margin-bottom: 30px;
  }
  .testimonials-rating {
    margin-bottom: 15px;
  }
  .testimonial-content {
    margin-bottom: 30px;
  }
  .company-supports-slider {
    padding: 30px 0 0;
    margin-top: 30px;
  }
  .our-blog {
    padding: 50px 0 20px;
  }
  .post-featured-image {
    margin-bottom: 15px;
  }
  .post-item-content {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .main-footer {
    padding: 50px 0 0;
  }
  .about-footer {
    margin-bottom: 40px;
  }
  .footer-logo {
    margin-bottom: 15px;
  }
  .about-footer-content {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .footer-contact-item-content h3 {
    margin-bottom: 5px;
  }
  .footer-newsletter-box {
    margin: 0;
  }
  .footer-copyright {
    padding: 20px 0;
    margin-top: 30px;
  }
  .footer-links ul li {
    margin-right: 15px;
  }
  .page-header {
    border-radius: 0;
    padding: 85px 0;
  }
  .page-header-box h1 {
    font-size: 50px;
  }
  .our-approach {
    padding: 50px 0;
  }
  .approach-item-list {
    margin: 0 0 30px;
  }
  .approach-item {
    padding: 30px;
    margin-bottom: 20px;
  }
  .approach-item .icon-box {
    margin-bottom: 20px;
  }
  .approach-image-box, .approach-image-box figure, .approach-image-box img {
    height: auto;
  }
  .approach-image-box img {
    aspect-ratio: 1 / 0.55;
  }
  .approach-image-content {
    padding: 20px;
  }
  .our-care {
    padding: 50px 0;
  }
  .our-care-images {
    margin: 0 65px 30px;
  }
  .our-care-content, .care-counter-list {
    margin: 0;
  }
  .care-counter-item .icon-box {
    margin-bottom: 30px;
  }
  .care-counter-item-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .our-results {
    padding: 50px 0;
  }
  .our-result-content {
    margin-bottom: 30px;
  }
  .result-item {
    margin-bottom: 30px;
  }
  .result-image-box {
    padding-left: 180px;
    margin: 0;
  }
  .result-image-list-box {
    right: 200px;
  }
  .result-list-image img {
    aspect-ratio: 1 / 1.01;
  }
  .our-team {
    padding: 50px 0 20px;
  }
  .team-image {
    margin-bottom: 15px;
  }
  .team-image img {
    aspect-ratio: 1 / 1.25;
  }
  .page-services {
    padding: 50px 0 20px;
  }
  .page-service-single {
    padding: 50px 0;
  }
  .page-single-sidebar {
    position: initial;
    margin: 0 0 30px;
  }
  .page-category-list {
    padding: 20px;
    margin-bottom: 30px;
  }
  .page-category-list h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .page-category-list ul li a {
    padding: 12px 40px 12px 15px;
  }
  .page-category-list ul li a::before {
    right: 15px;
  }
  .sidebar-cta-box {
    padding: 20px;
  }
  .sidebar-contact-box {
    margin-bottom: 20px;
  }
  .sidebar-contact-box .icon-box {
    width: 50px;
    height: 50px;
  }
  .sidebar-contact-box .icon-box img {
    max-width: 28px;
  }
  .sidebar-cta-image img {
    aspect-ratio: 1 / 0.4;
  }
  .page-single-image {
    margin-bottom: 30px;
  }
  .service-entry {
    margin-bottom: 40px;
  }
  .service-entry p {
    margin-bottom: 15px;
  }
  .service-entry h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .service-entry ul li {
    padding-left: 25px;
    margin-bottom: 15px;
  }
  .service-entry ul li::before {
    font-size: 16px;
  }
  .service-support-step, .service-priority-box, .service-empower-box {
    margin-top: 40px;
  }
  .support-step-box {
    padding: 30px;
    margin-top: 30px;
  }
  .support-step-item-list {
    margin-top: 30px;
    padding-top: 30px;
  }
  .service-priority-item-list {
    margin-top: 30px;
  }
  .service-empower-item-list {
    margin-top: 30px;
    padding-top: 30px;
  }
  .page-blog {
    padding: 50px 0;
  }
  .page-blog .post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
  }
  .page-pagination {
    margin-top: 10px;
  }
  .page-single-post {
    padding: 50px 0;
  }
  .post-image {
    margin-bottom: 20px;
  }
  .post-entry h1, .post-entry h2, .post-entry h3, .post-entry h4, .post-entry h5, .post-entry h6 {
    margin: 0 0 0.442em;
  }
  .post-entry h2 {
    font-size: 36px;
  }
  .post-entry p {
    margin-bottom: 15px;
  }
  .post-entry ol li, .post-entry ul li {
    margin-bottom: 10px;
  }
  .post-entry blockquote {
    background-position: 20px 20px;
    background-size: 40px;
    padding: 20px 20px 20px 70px;
    margin-bottom: 20px;
  }
  .post-entry blockquote p {
    font-size: 18px;
  }
  .post-tags {
    margin-bottom: 20px;
  }
  .tag-links {
    font-size: 18px;
    gap: 10px;
  }
  .post-tags .tag-links a {
    padding: 10px 15px;
  }
  .post-social-sharing ul {
    text-align: left;
  }
  .page-case-study {
    padding: 50px 0 20px;
  }
  .case-study-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
  }
  .case-study-image {
    margin-bottom: 15px;
  }
  .case-study-btn a {
    width: 60px;
    height: 60px;
  }
  .case-study-btn a img {
    max-width: 30px;
  }
  .page-case-study-single {
    padding: 50px 0;
  }
  .case-study-category-list {
    padding: 20px;
    margin-bottom: 30px;
  }
  .case-study-category-list h3 {
    margin-bottom: 20px;
  }
  .case-study-category-list ul li {
    padding: 13px 15px;
  }
  .case-study-entry {
    margin-bottom: 40px;
  }
  .case-study-entry p {
    margin-bottom: 15px;
  }
  .case-study-entry h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .case-study-entry ul li {
    padding-left: 25px;
    margin-bottom: 10px;
  }
  .case-study-entry ul li::before {
    font-size: 16px;
  }
  .whole-person-care-box, .long-term-care-box, .commitment-box {
    margin-top: 40px;
  }
  .our-solution-box {
    margin-top: 30px;
  }
  .our-solution-nav ul li {
    padding: 0;
    margin: 0;
  }
  .our-solution-nav ul li .nav-link {
    padding: 13px;
  }
  .solution-box-item {
    padding: 30px;
  }
  .solution-item-content {
    margin-bottom: 30px;
  }
  .long-term-care-content ul {
    margin-top: 30px;
  }
  .long-term-care-content ul li {
    font-size: 14px;
  }
  .long-term-care-info {
    padding: 30px;
  }
  .long-term-care-info h3 {
    font-size: 18px;
  }
  .commitment-content-list {
    gap: 20px;
    margin: 30px 0;
  }
  .commitment-item {
    width: calc(50% - 10px);
    padding: 20px;
  }
  .commitment-item-header {
    margin-bottom: 20px;
  }
  .commitment-item-header .icon-box {
    width: 60px;
    height: 60px;
  }
  .commitment-item-header .icon-box img {
    max-width: 30px;
  }
  .commitment-item-title {
    width: calc(100% - 75px);
  }
  .page-team {
    padding: 50px 0 20px;
  }
  .page-team-single {
    padding: 50px 0;
  }
  .team-member-about-box, .team-member-info {
    margin-bottom: 50px;
  }
  .team-member-about-box {
    padding: 30px;
  }
  .team-member-image, .team-member-content {
    width: 100%;
  }
  .team-member-image img {
    aspect-ratio: 1 / 0.8;
  }
  .member-info-list ul li {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .member-social-list {
    margin-top: 30px;
    padding-top: 30px;
  }
  .member-social-list h3 {
    font-size: 18px;
  }
  .team-member-experience-box, .team-contact-form {
    width: 100%;
  }
  .team-member-experience-box {
    padding: 30px;
  }
  .skills-progress-bar {
    margin-bottom: 20px;
  }
  .skills-progress-bar .skill-data {
    margin-bottom: 15px;
  }
  .page-testimonials {
    padding: 50px 0 20px;
  }
  .page-testimonials .testimonial-item {
    padding: 20px;
  }
  .page-testimonials .testimonial-item .author-image {
    margin-bottom: 20px;
  }
  .page-testimonials .testimonial-item .author-image figure img {
    max-width: 50px;
  }
  .page-gallery {
    padding: 50px 0 20px;
  }
  .page-video-gallery {
    padding: 50px 0 20px;
  }
  .page-faqs {
    padding: 50px 0;
  }
  .page-faqs .page-faq-accordion {
    margin-bottom: 40px;
  }
  .page-contact-us {
    padding: 50px 0;
  }
  .contact-us-content {
    margin: 0 0 30px 0;
  }
  .contact-social-links {
    margin-top: 30px;
    padding-top: 30px;
  }
  .contact-us-form {
    padding: 30px;
  }
  .contact-form .form-control {
    padding: 15px;
  }
  .google-map {
    margin-top: 50px;
  }
  .google-map iframe {
    height: 450px;
  }
  .page-book-appointment {
    padding: 50px 0;
  }
  .book-appointment-content {
    margin-bottom: 30px;
  }
  .appointment-form .form-control {
    padding: 15px;
  }
  .appointment-form form .form-group select {
    padding: 15px 30px 15px 15px;
  }
  .appointment-image-info {
    margin-left: 0;
  }
  .appointment-image img {
    aspect-ratio: 1 / 0.8;
  }
  .error-page {
    padding: 50px 0;
  }
  .error-page-image {
    margin-bottom: 20px;
  }
  .error-page-image img {
    max-width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .section-row {
    margin-bottom: 30px;
  }
  .section-title h1 {
    font-size: 30px;
  }
  .section-title h2 {
    font-size: 26px;
  }
  .hero-body {
    gap: 15px;
  }
  .satisfy-client-box {
    width: 100%;
  }
  .about-us-images {
    max-width: 100%;
  }
      .about-img-1 {
        margin-left: 00px;
    }
  .about-img-2 {
    max-width: 240px;
    margin-top: -170px;
  }
  .working-hours-box {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .working-hours-body ul li {
    font-size: 14px;
  }
  .about-experience-box, .trusted-profession-box {
    width: 100%;
  }
  .about-experience-item {
    margin-bottom: 20px;
  }
  .about-experience-item .icon-box {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  .about-experience-item .icon-box img {
    max-width: 26px;
  }
  .about-experience-content {
    width: calc(100% - 65px);
  }
  .about-experience-content h3 {
    font-size: 18px;
  }
  .trusted-profession-box .icon-box {
    margin-bottom: 20px;
  }
  .service-item {
    padding: 20px;
  }
  .service-title, .service-item .icon-box, .service-content {
    margin-bottom: 20px;
  }
  .service-title h3 {
    font-size: 18px;
  }
  .service-item .icon-box {
    padding: 0 8px 8px 0;
  }
  .service-item .icon-box img {
    max-width: 40px;
  }
  .service-item .icon-box::before {
    width: 35px;
    height: 35px;
  }
  .section-footer-text p {
    font-size: 14px;
  }
  .why-choose-item-box {
    gap: 20px;
  }
  .why-choose-item {
    width: 100%;
  }
  .why-choose-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .why-choose-image-box {
    margin: 0;
  }
  .why-choose-image {
    padding: 0 0 0 20px;
  }
  .why-choose-image-box .satisfy-client-box {
    max-width: 215px;
    bottom: 10px;
    padding: 10px;
  }
  .why-choose-image-box .satisfy-client-box .satisfy-client-content p {
    font-size: 14px;
  }
  .feature-item {
    padding: 20px;
  }
  .feature-item .icon-box img {
    max-width: 60px;
  }
  .feature-item-header {
    padding-bottom: 20px;
  }
  .feature-item-header h3 {
    font-size: 18px;
  }
  .feature-counter-content h2 {
    font-size: 26px;
  }
  .feature-counter-icon {
    width: 50px;
    height: 50px;
  }
  .feature-counter-icon img {
    max-width: 26px;
  }
  .what-we-contact-item-content h3 {
    font-size: 18px;
  }
  .what-we-item {
    margin-bottom: 20px;
  }
  .what-we-item .icon-box {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  .what-we-item .icon-box img {
    max-width: 26px;
  }
  .what-we-item-content {
    width: calc(100% - 65px);
  }
  .what-we-item-content h3 {
    font-size: 18px;
  }
  .what-we-item-content p {
    font-size: 14px;
  }
  .work-item {
    width: 100%;
  }
  .work-item::before {
    display: none;
  }
  .work-item-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .programs-image-box {
    padding: 20px;
  }
  .programs-item-body {
    margin-right: -20px;
  }
  .programs-body-content {
    width: calc(100% - 120px);
  }
  .programs-body-content p {
    font-size: 14px;
  }
  .programs-body-image {
    margin-right: -20px;
  }
  .programs-body-image img {
    max-width: 120px;
  }
  .programs-item {
    width: 100%;
  }
  .programs-item-header {
    margin-bottom: 30px;
  }
  .programs-item-title h3 {
    font-size: 18px;
  }
  .cta-box-image {
    margin: 0;
  }
  .faq-accordion .accordion-header .accordion-button {
    font-size: 16px;
  }
  .faq-accordion .accordion-item .accordion-button::after, .faq-accordion .accordion-item .accordion-button.collapsed::after {
    font-size: 16px;
  }
  .faq-accordion .accordion-item .accordion-body p {
    font-size: 14px;
  }
  .faqs-cta-box-content h3 {
    font-size: 18px;
  }
  .faqs-contact-box {
    right: 15px;
    bottom: 15px;
    left: 15px;
  }
  .faq-image img {
    aspect-ratio: 1 / 0.9;
  }
  .faqs-cta-box-content {
    width: calc(100% - 80px);
  }
  .faqs-contact-box .icon-box {
    margin-bottom: -20px;
  }
  .faqs-contact-box .icon-box img {
    max-width: 60px;
  }
  .author-content h3 {
    font-size: 18px;
  }
  .testimonial-slider-btn {
    position: initial;
    justify-content: center;
    margin-top: 20px;
  }
  .post-item-content h2 {
    font-size: 18px;
  }
  .about-footer {
    margin-bottom: 30px;
  }
  .footer-contact-details {
    gap: 20px;
  }
  .footer-contact-item {
    width: 100%;
  }
  .footer-contact-item-content h3 {
    font-size: 18px;
  }
  .footer-newsletter-box .section-title {
    margin-bottom: 20px;
  }
  .footer-copyright {
    justify-content: center;
    padding: 15px 0;
  }
  .footer-links ul li {
    font-size: 14px;
    margin-right: 10px;
  }
  .page-header-box h1 {
    font-size: 30px;
  }
  .approach-item {
    padding: 20px;
  }
  .approach-item .icon-box {
    padding: 0 8px 8px 0;
  }
  .approach-item .icon-box::before {
    width: 35px;
    height: 35px;
  }
  .approach-item .icon-box img {
    max-width: 40px;
  }
  .approach-item-content h3, .approach-image-content h3 {
    font-size: 18px;
  }
  .approach-image-box img {
    aspect-ratio: 1 / 0.88;
  }
  .approach-image-content {
    padding: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
  }
  .approach-image-content p {
    font-size: 14px;
  }
  .our-care-images {
    gap: 20px;
    margin: 0 0 30px;
  }
  .care-image-1 {
    width: 100%;
  }
  .care-image-1 figure img, .care-image-2 figure img {
    aspect-ratio: 1 / 0.7;
  }
  .care-image-1 .recovery-circle {
    left: 0;
    bottom: -40px;
    transform: translateY(100%);
  }
  .care-image-1 .recovery-circle a img {
    max-width: 110px;
  }
  .our-care-images .trusted-profession-box {
    margin: 0;
  }
  .care-image-2 {
    margin: 0;
    max-width: 100%;
  }
  .care-counter-list {
    gap: 30px 20px;
  }
  .care-counter-item {
    width: calc(50% - 10px);
  }
  .care-counter-item .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  .care-counter-item .icon-box img {
    max-width: 26px;
  }
  .care-counter-item-content h2 {
    font-size: 26px;
    margin-bottom: 5px;
  }
  .result-item {
    margin-bottom: 20px;
  }
  .result-item:after {
    left: 25px;
    top: 45px;
  }
  .result-item .icon-box {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  .result-item .icon-box img {
    max-width: 26px;
  }
  .result-item-content {
    width: calc(100% - 65px);
  }
  .result-item-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .result-item-content p {
    font-size: 14px;
  }
  .result-image-box {
    padding-left: 0;
  }
  .result-image-list-box {
    position: initial;
    margin-top: 20px;
  }
  .team-content h3 {
    font-size: 18px;
  }
  .page-category-list h3 {
    font-size: 18px;
  }
  .page-category-list ul li {
    margin-bottom: 15px;
  }
  .sidebar-cta-content h3 {
    font-size: 18px;
  }
  .sidebar-contact-content p {
    margin-bottom: 5px;
  }
  .sidebar-cta-image img {
    aspect-ratio: 1 / 0.6;
  }
  .page-single-image {
    margin-bottom: 20px;
  }
  .page-single-image img {
    aspect-ratio: 1 / 0.7;
  }
  .service-entry h2 {
    font-size: 26px;
  }
  .service-entry ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .support-step-box {
    padding: 20px;
  }
  .support-step-image-content {
    gap: 20px;
  }
  .support-step-image, .support-step-content {
    width: 100%;
  }
  .support-step-item-list {
    margin-top: 20px;
    padding-top: 20px;
  }
  .support-step-item-list .care-counter-item {
    width: calc(50% - 15px);
  }
  .support-step-item-list .care-counter-item .care-counter-item-content h2 {
    margin-bottom: 5px;
  }
  .service-priority-item-list .what-we-item .icon-box h3 {
    font-size: 18px;
  }
  .service-empower-box {
    gap: 20px;
  }
  .service-empower-content, .service-empower-image {
    width: 100%;
  }
  .service-empower-item-list {
    margin-top: 20px;
    padding-top: 20px;
  }
  .service-empower-image figure, .service-empower-image img {
    height: auto;
  }
  .post-single-meta ol li {
    font-size: 16px;
  }
  .post-single-meta ol li i {
    font-size: 16px;
  }
  .post-image img {
    aspect-ratio: 1 / 0.7;
  }
  .post-entry blockquote {
    background-position: 15px 15px;
    padding: 60px 15px 15px 15px;
  }
  .post-entry blockquote p {
    font-size: 16px;
  }
  .post-entry h2 {
    font-size: 26px;
  }
  .case-study-content h2 {
    font-size: 18px;
  }
  .case-study-category-list h3 {
    font-size: 18px;
  }
  .case-study-category-list ul li {
    margin-bottom: 15px;
  }
  .case-study-entry h2 {
    font-size: 26px;
  }
  .our-solution-nav ul li .nav-link {
    font-size: 14px;
  }
  .solution-box-item {
    padding: 20px 15px;
  }
  .solution-item-content {
    margin-bottom: 20px;
  }
  .long-term-care-content, .long-term-care-info {
    width: 100%;
  }
  .long-term-care-content ul {
    margin-top: 20px;
  }
  .long-term-care-info {
    padding: 20px;
    gap: 20px;
  }
  .commitment-item {
    width: 100%;
    padding: 20px 15px;
  }
  .commitment-item-title h3 {
    font-size: 18px;
  }
  .team-member-about-box {
    padding: 20px;
  }
  .team-member-image img {
    aspect-ratio: 1 / 1.1;
  }
  .member-info-list ul li {
    font-size: 16px;
  }
  .member-info-list ul li span {
    width: 55%;
    font-size: 14px;
  }
  .member-social-list {
    margin-top: 20px;
    padding-top: 20px;
  }
  .member-social-list {
    gap: 10px;
  }
  .member-social-list h3 {
    font-size: 16px;
  }
  .member-social-list ul li {
    margin-right: 4px;
  }
  .team-member-experience-box {
    padding: 20px;
  }
  .skills-progress-bar .skill-data {
    margin-bottom: 10px;
  }
  .skills-progress-bar .skillbar .skill-progress {
    height: 12px;
  }
  .contact-info-list {
    gap: 20px;
  }
  .contact-info-item {
    width: 100%;
  }
  .contact-info-item .icon-box {
    height: 50px;
    width: 50px;
    margin-right: 15px;
  }
  .contact-info-item .icon-box img {
    max-width: 24px;
  }
  .contact-item-content {
    width: calc(100% - 65px);
  }
  .contact-item-content h3 {
    font-size: 18px;
  }
  .contact-social-links {
    margin-top: 20px;
    padding-top: 20px;
  }
  .contact-us-form {
    padding: 30px 20px;
  }
  .google-map iframe {
    height: 350px;
  }
  .appointment-image img {
    aspect-ratio: 1 / 1.012;
  }
}

.fancy-font {
    font-family: "Niconne", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 27px !important;
    line-height: 30px;
    color: #6a9384;
}

.why-choose-item-content {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 20px;
    height: 315px;
}

.services-left {
    padding-left: 10%;
}

.faq-accordion{ margin-bottom: 20px;}

.whattsapp_icon {
    width: 45px;
    height: 45px;
    position: fixed;
    right: 45px;
    bottom: 80px;
    z-index: 10;
    z-index: 10000;
}


.hero-content{ padding-left:50px !important;}



.image-box img {
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.image-box:hover img {
    filter: grayscale(0%);
    transform: scale(1.05); /* Optional zoom effect */
}

.promise-title{ margin-bottom: 20px;}

.faq-page-outer{background-color: var(--secondary-color); padding: 25px; border-radius: 20px;}

.post-entry h4 {
    font-size: 18px;
    color: #60b395;
    border-bottom: #d5d5d5 dashed 1px;
    padding-bottom: 10px;
}

.post-entry h4 img {
    border-radius: 8px;
    margin-right: 10px;
    margin-bottom: 5px;
}

.box-1{background: #8f918f !important;}
.box-2{background: #6e716d !important;}
.box-3{background: #555854 !important;}
.box-4{background: #578f7b !important;}
.box-5{background: #537d6e !important;}
.box-6{background: #376353 !important;}
.box-7{background: #2a626a !important;}
.box-8{background: #254f55  !important;}




@media only screen and (max-width: 767px) {
  .footer-copyright-text p {
    text-align: left;
}  
    
.hero-content {
    padding-left: 0px !important;
}
    
.why-choose-item-content {
    height:auto !important;
}
    
}



