
:root {
  --primary-color: #162d68;
  --secondary-color: #4bd06f;
  --bg-color: #f5f5f5;
  --text-color: #706e6d;
  --accent-color: #4bd06f;
  --white-color: #ffffff;
  --divider-color: #162d681a;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "Manrope", sans-serif;
  --accent-font: "Sora", sans-serif;
}

:root {
  --primary-color: #162d68;
  --secondary-color: #2a7ff5;
  --bg-color: #f9fafb;
  --text-color: #3b3b3b;
  /* --accent-color: #5eb5ff; */
  --accent-color: #488fee;
  --white-color: #ffffff;
  --divider-color: #e1e5ee;
  --dark-divider-color: #ffffff1a;
  --error-color: #e65757;
  --default-font: "Manrope", sans-serif;
  --accent-font: "Sora", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  position: relative;
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 500;
  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(--primary-color);
}

::selection {
  color: var(--primary-color);
  background-color: var(--accent-color);
  filter: invert(1);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--accent-font);
  font-weight: 600;
  line-height: 1.2em;
  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, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  display: inline-block;
  background: var(--accent-color);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--white-color);
  border: none;
  padding: 17px 50px 17px 20px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.btn-default:hover::before {
  transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0%;
  width: 102%;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 0.5s ease-in-out;
  z-index: -1;
  transform: skewY(9.3deg) scaleY(0);
}

.btn-default:hover::after {
  transform: skewY(0deg) scaleY(2);
}

.btn-default.btn-highlighted:hover {
  color: var(--primary-color);
}

.btn-default.btn-highlighted:hover::before {
  filter: brightness(0) invert(0);
}

.btn-default.btn-highlighted::after {
  background-color: var(--white-color);
}

.btn-default.btn-dark {
  background: var(--primary-color);
}

.btn-default.btn-dark:hover {
  color: var(--primary-color);
}

.btn-default.btn-dark:hover::before {
  filter: brightness(0) invert(0);
}

.btn-default.btn-dark::after {
  background: var(--white-color);
}

.readmore-btn {
  position: relative;
  font-family: var(--accent-font);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-right: 26px;
}

.readmore-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../images/arrow-accent.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::before {
  transform: rotate(45deg);
}

.cb-cursor:before {
  background: var(--accent-color);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--accent-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(--primary-color) transparent
    var(--primary-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 {
  width: 100%;
  max-width: 1820px;
  background-color: var(--secondary-color);
  border-radius: 20px;
  margin: 0 auto;
}

.dark-section {
  background-color: var(--primary-color);
}

.section-row {
  margin-bottom: 80px;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-row .section-title.section-title-center {
  width: 100%;
  max-width: 640px;
  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;
  border: 1px solid var(--divider-color);
  border-radius: 100px;
  font-family: var(--default-font);
  /*font-size: 17px !important;*/
  font-weight: 500;
  text-transform: capitalize;
  color: var(--primary-color);
  padding: 8px 16px 8px 32px;
  margin-bottom: 10px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.section-title h1 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: none;
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}

.bg-section .section-title h3,
.bg-section .section-title h1,
.bg-section .section-title h2,
.bg-section .section-title p,
.bg-section .section-title-content p {
  color: var(--white-color);
}

.bg-section .section-title h3 {
  border-color: var(--dark-divider-color);
}

.bg-section .section-title h3::before {
  background: 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		 ****/
/************************************/

.topbar {
  background-color: var(--accent-color);
  padding: 12px 0;
}

.topbar-contact-info {
  text-align: left;
}

.topbar-contact-info ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  line-height: 1em;
  padding: 0;
  margin: 0;
  gap: 30px;
}

.topbar-contact-info ul li {
  font-weight: 500;
  color: var(--white-color);
  display: flex;
  align-items: center;
}

.topbar-contact-info ul li a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li a:hover {
  color: var(--primary-color);
}

.topbar-contact-info ul li img {
  max-width: 20px;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li a:hover img {
  filter: brightness(0) invert(0);
}

.topbar-social-links {
  text-align: right;
}

.topbar-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topbar-social-links ul li {
  display: inline-block;
  line-height: normal;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li:last-child {
  margin-right: 0;
}

.topbar-social-links ul li a {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
  color: var(--primary-color);
}

.topbar-social-links ul li a i {
  font-size: 20px;
  color: inherit;
}

header.main-header {
  position: relative;
  width: 100%;
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  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-bottom: 1px solid var(--divider-color);
  padding: 0 15px;
}

.navbar {
  padding: 30px 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 5px;
  position: relative;
}

.main-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  padding: 14px 10px !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);
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--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: 500;
  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 {
  background: var(--white-color);
  padding: 50px 0;
}

.hero-content-body {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.hero-content-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-content-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-counter-box {
  width: calc(33.33% - 20px);
}

.hero-counter-box h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 5px;
}

.hero-counter-box p {
  text-transform: capitalize;
  margin: 0;
}

.hero-image {
  position: relative;
  padding-left: 50px;
}

.hero-img figure {
  display: block;
}

.hero-img figure img {
  width: 100%;
  aspect-ratio: 1 / 1.26;
  object-fit: cover;
  margin-bottom: -50px;
}

.export-doctor-box {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(-90px);
  background-color: var(--white-color);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 20px;
  animation: exportmoveobject 3s infinite linear alternate;
}

@keyframes exportmoveobject {
  50% {
    left: 50px;
  }
}

.export-doctor-box .icon-box {
  margin-right: 10px;
}

.export-doctor-box .icon-box img {
  max-width: 48px;
  border-radius: 50%;
}

.export-doctor-content {
  width: calc(100% - 58px);
}

.export-doctor-content h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.export-doctor-content p {
  color: var(--text-color);
  text-transform: capitalize;
  margin: 0;
}

/*************************************/
/***      05. CTA Info Box css     ***/
/*************************************/

.cta-info-box {
  background: var(--primary-color);
  padding: 50px 0;
}

.cta-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}

.cta-info-item {
  position: relative;
  width: calc(33.33% - 40px);
  display: flex;
}

.cta-info-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  background: var(--dark-divider-color);
  width: 1px;
  height: 100%;
}

.cta-info-item:nth-child(3n + 3)::before,
.cta-info-item:last-child::before {
  display: none;
}

.cta-info-item .icon-box {
  position: relative;
  width: 64px;
  height: 64px;
  background: var(--dark-divider-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 20px;
  overflow: hidden;
}

.cta-info-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: var(--accent-color);
  border-radius: 10px;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.cta-info-item:hover .icon-box::before {
  transform: scale(1) rotate(180deg);
}

.cta-info-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 34px;
  z-index: 1;
}

.cta-info-content {
  width: calc(100% - 84px);
}

.cta-info-content h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 5px;
}

.cta-info-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

/************************************/
/*** 	   06. About Us css 	  ***/
/************************************/

.about-us {
  padding: 100px 0;
}

.about-image {
  position: relative;
  margin-right: 15px;
}

.about-img figure {
  display: block;
  border-radius: 20px;
}

.about-img img {
  aspect-ratio: 1 / 1.11;
  object-fit: cover;
  border-radius: 20px;
}

.happy-patients-counter {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--divider-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 20px;
  width: 175px;
  padding: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
}

.happy-patients-counter .icon-box {
  position: relative;
  background-color: transparent;
  border: 1px solid var(--dark-divider-color);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  overflow: hidden;
}

.happy-patients-counter .icon-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 10px;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.happy-patients-counter:hover .icon-box::before {
  transform: scale(1) rotate(180deg);
}

.happy-patients-counter .icon-box img {
  position: relative;
  max-width: 24px;
  z-index: 1;
}

.happy-patients-counter-content h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 5px;
}

.happy-patients-counter-content p {
  color: var(--white-color);
  font-weight: 500;
  margin: 0;
}

.about-content-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.about-content-list {
  width: calc(100% - 245px);
}

.about-content-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-content-list ul li {
  position: relative;
  font-family: var(--accent-font);
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3em;
  padding-left: 30px;
  margin-bottom: 20px;
}

.about-content-list ul li:last-child {
  margin-bottom: 0;
}

.about-content-list ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "FontAwesome";
  font-weight: 900;
  left: 0;
  top: 0;
  font-size: 18px;
  color: var(--accent-color);
}

.experience-counter {
  background: var(--primary-color);
  padding: 30px 25px;
  border-radius: 20px;
  width: 215px;
  float: right;
}

.experience-counter .icon-box {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.experience-counter:hover .icon-box {
  background-color: var(--accent-color);
}

.experience-counter .icon-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  border-radius: 12px;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.experience-counter:hover .icon-box::before {
  transform: scale(1) rotate(180deg);
}

.experience-counter .icon-box img {
  position: relative;
  max-width: 30px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.experience-counter:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.experience-counter-content h2 {
  font-size: 40px;
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 5px;
}

.experience-counter-content p {
  font-family: var(--accent-font);
  color: var(--white-color);
  text-transform: capitalize;
  margin: 0;
}

.about-content-btn {
  margin-top: 40px;
}

/************************************/
/*** 	 07. Our Services css 	  ***/
/************************************/

.our-service {
  padding: 100px 0 70px;
  background: var(--secondary-color);
}

.service-item {
  position: relative;
  background-color: var(--white-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px 35px;
  overflow: hidden;
}

.service-item:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: var(--primary-color);
  border-radius: 500px 500px 0 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.service-item.active:before,
.service-item:hover:before {
  top: 0;
  border-radius: 0;
  opacity: 1;
}

.service-item .icon-box {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 14px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  z-index: 1;
}

.service-item .icon-box img {
  max-width: 24px;
}

.service-content {
  position: relative;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.service-item.active .service-content,
.service-item:hover .service-content {
  border-color: var(--dark-divider-color);
}

.service-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.service-content h3 a {
  color: inherit;
}

.service-content p {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.service-item.active .service-content h3,
.service-item:hover .service-content h3,
.service-item.active .service-content p,
.service-item:hover .service-content p {
  color: var(--white-color);
}

.service-btn {
  position: relative;
  z-index: 1;
}

/************************************/
/*** 	 08. Our Research css 	  ***/
/************************************/

.our-research {
  padding: 100px 0;
}

.research-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.research-image {
  width: calc(50% - 20px);
}

.research-image figure {
  display: block;
  border-radius: 20px;
}

.research-image img {
  width: 100%;
  aspect-ratio: 1 / 0.5512;
  object-fit: cover;
  border-radius: 20px;
}

.research-item {
  position: relative;
  width: calc(25% - 20px);
  background: var(--accent-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 30px 25px;
  overflow: hidden;
}

.research-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  border-radius: 500px 500px 0 0;
  width: 100%;
  height: 0;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.research-item.active:before,
.research-item:hover:before {
  border-radius: 0;
  height: 100%;
}

.research-item .icon-box {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.research-item.active .icon-box,
.research-item:hover .icon-box {
  background: var(--accent-color);
}

.research-item .icon-box img {
  width: 100%;
  max-width: 40px;
  transition: all 0.4s ease-in-out;
}

.research-item-content {
  position: relative;
  z-index: 1;
}

.research-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 10px;
}

.research-item-content p {
  color: var(--white-color);
  margin: 0;
}

.research-counter-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 80px;
  border-top: 1px solid var(--divider-color);
  margin-top: 60px;
  padding-top: 60px;
}

.research-counter-item {
  position: relative;
  width: calc(25% - 60px);
  display: flex;
}

.research-counter-item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -40px;
  background: var(--divider-color);
  width: 1px;
  height: 80%;
}

.research-counter-item:nth-child(4n + 4):before,
.research-counter-item:last-child:before {
  display: none;
}

.research-counter-item .icon-box {
  margin-right: 30px;
}

.research-counter-item .icon-box img {
  max-width: 50px;
}

.research-counter-content h3 {
  font-size: 30px;
  margin-bottom: 5px;
}

.research-counter-content p {
  text-transform: capitalize;
  margin: 0;
}

/************************************/
/*** 	 09. Why Choose Us css 	  ***/
/************************************/

.why-choose-us {
  padding: 100px 0;
}

.why-choose-content .section-title p,
.why-choose-content .section-title h2,
.why-choose-content .section-title h3 {
  color: var(--white-color);
}

.why-choose-content .section-title h3::before {
  filter: brightness(0) invert(1);
}

.why-choose-image img {
  width: 100%;
  aspect-ratio: 1 / 1.35;
  object-fit: cover;
  margin-bottom: -100px;
}

.why-choose-list {
  margin-left: 20px;
}

.why-choose-item {
  border-bottom: 1px solid var(--dark-divider-color);
  display: flex;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.why-choose-item:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.why-choose-item .icon-box {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 20px;
  transition: all 0.5s ease-in-out;
}

.why-choose-item .icon-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white-color);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box::before {
  transform: scale(1) rotate(180deg);
}

.why-choose-item .icon-box img {
  position: relative;
  max-width: 35px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box img {
  filter: brightness(1) invert(1);
}

.why-choose-item-content {
  width: calc(100% - 80px);
}

.why-choose-item-content h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.why-choose-item-content p {
  color: var(--white-color);
  margin: 0;
}

/************************************/
/*** 	   10. Case Study css 	  ***/
/************************************/

.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: 40%;
  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.77;
  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: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease-in-out;
}

.case-study-btn a:hover {
  background: var(--white-color);
}

.case-study-btn a img {
  width: 100%;
  max-width: 24px;
  transition: 0.3s ease-in-out;
}

.case-study-btn a:hover img {
  transform: rotate(45deg);
  filter: brightness(0) invert(0);
}

.case-study-content h2 {
  font-size: 20px;
  line-height: 1.4em;
}

.case-study-content h2 a {
  color: inherit;
}

/************************************/
/*** 	11. Therapy Process css	  ***/
/************************************/

.therapy-process {
  background: var(--secondary-color);
  padding: 100px 0 70px;
}

.therapy-process-item {
  position: relative;
  text-align: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.therapy-process-image {
  position: relative;
}

.therapy-process
  .col-lg-3:nth-child(even)
  .therapy-process-item
  .therapy-process-image:before,
.therapy-process
  .col-lg-3:nth-child(odd)
  .therapy-process-item
  .therapy-process-image::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 0;
  width: 135px;
  height: 23px;
  background-size: 100% auto;
  background-position: right center;
  background-repeat: no-repeat;
  transform: translate(175px, -50%);
  z-index: 1;
}

.therapy-process
  .col-lg-3:nth-child(even)
  .therapy-process-item
  .therapy-process-image:before {
  background-image: url("../images/icon-right-down-arrow.svg");
}

.therapy-process
  .col-lg-3:nth-child(odd)
  .therapy-process-item
  .therapy-process-image::before {
  background-image: url("../images/icon-right-up-arrow.svg");
}

.therapy-process
  .col-lg-3:nth-child(4n + 4)
  .therapy-process-item
  .therapy-process-image:before,
.therapy-process
  .col-lg-3:last-child
  .therapy-process-item
  .therapy-process-image:before {
  display: none;
}

.therapy-process-image {
  max-width: 100px;
  width: 100%;
  margin: 0 auto 30px;
}

.therapy-process-image figure,
.therapy-process-image img {
  display: block;
  border-radius: 50%;
}

.therapy-process-content {
  margin: 0 1.563vw;
}

.therapy-process-item .therapy-process-content h3 {
  font-size: 20px;
  line-height: 1.4em;
  color: var(--white-color);
  margin-bottom: 15px;
}

.therapy-process-item .therapy-process-content p {
  color: var(--white-color);
  margin: 0;
}

/************************************/
/*** 	  12. Intro Video css 	  ***/
/************************************/

.intro-video {
  padding: 100px 0;
}

.intro-video .section-row .section-title {
  text-align: left;
  margin: 0;
}

.work-list {
  margin-left: 4.167vw;
}

.work-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work-list ul li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  margin-bottom: 15px;
}

.work-list ul li:last-child {
  margin-bottom: 0;
}

.work-list ul li::before {
  content: "\f058";
  font-family: "FontAwesome";
  position: absolute;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  top: 0;
  left: 0;
}

.intro-video-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 190px 50px 60px;
}

.intro-video-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.intro-video-image::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.intro-video-image figure,
.intro-video-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-border-button {
  position: relative;
  text-align: center;
  z-index: 1;
}

.video-play-border-button a {
  position: relative;
  background: transparent;
  border: 1px solid var(--white-color);
  border-radius: 100%;
  width: 100px;
  height: 100px;
  color: var(--white-color);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.4s ease-in-out;
}

.video-play-border-button a:hover {
  font-size: 20px;
  letter-spacing: 0.05em;
}

.work-item-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 160px;
  padding-top: 40px;
  z-index: 1;
}

.work-item {
  width: calc(33.33% - 20px);
  display: flex;
}

.work-item .icon-box {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 20px;
  transition: all 0.5s ease-in-out;
}

.work-item .icon-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white-color);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.work-item:hover .icon-box::before {
  transform: scale(1) rotate(180deg);
}

.work-item .icon-box img {
  position: relative;
  max-width: 35px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.work-item:hover .icon-box img {
  filter: brightness(1) invert(1);
}

.work-item-content {
  width: calc(100% - 80px);
}

.work-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 10px;
}

.work-item-content p {
  color: var(--white-color);
  margin: 0;
}

/************************************/
/*** 	   13. Our Facts css 	  ***/
/************************************/

.our-facts {
  padding: 100px 0;
}

.facts-details-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  background: var(--dark-divider-color);
  border-radius: 20px;
  padding: 30px;
  margin-right: 30px;
}

.fact-image,
.fact-details-content {
  width: calc(50% - 15px);
}

.fact-image figure {
  display: block;
  border-radius: 30px;
  overflow: hidden;
}

.fact-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1.54;
  border-radius: 30px;
}

.fact-circle-image {
  text-align: center;
  margin-bottom: 50px;
}

.fact-circle-image a {
  display: inline-block;
  border-radius: 50%;
}

.fact-circle-image a img {
  width: 100%;
  max-width: 160px;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.fact-details-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.our-fact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.fact-counter-item {
  position: relative;
  width: calc(50% - 15px);
  background: var(--dark-divider-color);
  border: 1px solid var(--divider-color);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  border-radius: 30px;
  padding: 30px;
  overflow: hidden;
}

.fact-counter-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--secondary-color);
  border-radius: 20px;
  height: 0;
  width: 100%;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.fact-counter-item:hover::before {
  height: 100%;
}

.fact-counter-item .icon-box,
.fact-counter-content {
  position: relative;
  z-index: 1;
}

.fact-counter-item .icon-box {
  margin-bottom: 30px;
}

.fact-counter-item .icon-box img {
  width: 100%;
  max-width: 60px;
  transition: all 0.4s ease-in-out;
}

.fact-counter-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.fact-counter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fact-counter-content h2 {
  width: calc(35% - 10px);
  font-size: 30px;
  color: var(--white-color);
  margin-right: 10px;
}

.fact-counter-content p {
  width: 65%;
  color: var(--white-color);
  margin: 0;
}

/************************************/
/***   14. Our Testimonials css   ***/
/************************************/

.our-testimonials {
  padding: 100px 0;
}

.testimonials-image-box {
  position: relative;
  margin-right: 15px;
}

.testimonials-image-box figure {
  display: block;
  border-radius: 20px;
}

.testimonials-image-box figure img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 20px;
}

.testimonials-rating-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: var(--accent-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  padding: 20px;
  z-index: 1;
}

.testimonials-rating {
  margin-right: 8px;
}

.testimonials-rating-box i {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 3px;
}

.testimonials-rating-box i:last-child {
  margin-right: 0;
}

.testimonials-rating-content p {
  color: var(--white-color);
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.testimonials-rating-content p span {
  font-family: var(--accent-font);
  font-size: 18px;
  font-weight: 600;
}

.testimonial-slider .swiper-wrapper {
  cursor: none;
}

.testimonial-content {
  margin-bottom: 60px;
}

.testimonial-content p {
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author .author-image {
  margin-right: 15px;
}

.testimonial-author .author-image figure {
  border-radius: 12px;
}

.testimonial-author .author-image img {
  max-width: 60px;
  width: 100%;
  border-radius: 12px;
}

.testimonial-author .author-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.testimonial-author .author-content p {
  margin: 0;
}

.testimonial-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: right;
  margin-top: 30px;
  z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 12px;
  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(--primary-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-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 22px auto;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before {
  transform: rotate(-135deg);
}

/************************************/
/*** 	    15. Our FAQs css 	  ***/
/************************************/

.our-faqs {
  padding: 100px 0;
}

.faq-accordion .accordion-item {
  background: transparent;
  border-radius: 20px;
  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: 600;
  line-height: 1.4444em;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 17px 45px 17px 20px;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
  color: var(--white-color);
  background: var(--dark-divider-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  font-family: "FontAwesome";
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: var(--white-color);
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-accordion .accordion-item .accordion-body {
  background-color: var(--primary-color);
  padding: 20px;
  border-top: 1px solid var(--dark-divider-color);
}

.faq-accordion .accordion-item .accordion-body p {
  color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-body p:last-child {
  margin: 0;
}

.faq-image {
  position: relative;
  margin-left: 20px;
}

.faq-image figure {
  display: block;
  border-radius: 20px;
}

.faq-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 45, 104, 0) 5.9%,
    rgba(22, 45, 104, 0.9) 77.07%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.faq-image figure img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  border-radius: 20px;
}

.appointment-info-list {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 1;
}

.appointment-info-list .appointment-info-item {
  position: relative;
}

.appointment-info-list .appointment-info-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  bottom: 0;
  background: var(--dark-divider-color);
  width: 1px;
  height: 100%;
  z-index: 1;
}

.appointment-info-list .appointment-info-item:nth-child(2n + 2)::before,
.appointment-info-list .appointment-info-item:last-child::before {
  display: none;
}

.appointment-info-list {
  display: flex;
  gap: 40px 80px;
  flex-wrap: wrap;
}

.appointment-info-item {
  width: calc(50% - 40px);
}

.appointment-info-item.location-info-item {
  width: 100%;
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 40px;
}

.appointment-info-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.appointment-info-title i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px;
}

.appointment-info-title h3 {
  font-size: 20px;
  color: var(--white-color);
}

.appointment-info-content p {
  color: var(--white-color);
  margin-bottom: 2px;
}

.appointment-info-content p:last-child {
  margin-bottom: 0;
}

.appointment-info-content p a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.appointment-info-content p a:hover {
  color: var(--accent-color);
}

/************************************/
/*** 	 	16. Our Blog css	  ***/
/************************************/

.our-blog {
  position: relative;
  padding: 100px 0 70px;
  z-index: 1;
}

.post-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.post-featured-image {
  margin-bottom: 20px;
}

.post-featured-image a {
  cursor: none;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.post-featured-image figure {
  display: block;
}

.post-featured-image img {
  width: 100%;
  aspect-ratio: 1 / 0.71;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
  transform: scale(1.1);
}

.post-item-content {
  margin-bottom: 20px;
}

.post-item-content h2 {
  font-size: 18px;
  line-height: 1.4em;
}

.post-item-content h2 a {
  display: inline-block;
  color: inherit;
}

/************************************/
/***        17. Footer css	      ***/
/************************************/

.main-footer {
  padding: 80px 0 0 0;
  margin-bottom: 50px;
}

.main-footer-box {
  display: flex;
  gap: 50px 150px;
  flex-wrap: wrap;
}

.footer-about {
  position: relative;
  width: calc(48% - 75px);
}

.footer-about::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -75px;
  background-color: var(--dark-divider-color);
  height: 100%;
  width: 1px;
}

.footer-logo,
.about-footer-content {
  margin-bottom: 30px;
}

.footer-logo img {
  width: 100%;
  max-width: 130px;
}

.about-footer-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.footer-contact-list {
  margin-bottom: 40px;
}

.footer-contact-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
}

.footer-contact-list ul li {
  font-family: var(--accent-font);
  font-size: 18px;
  color: var(--white-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 100px;
  padding: 10px 15px;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.footer-contact-list ul li:hover {
  border-color: var(--accent-color);
}

.footer-contact-list a {
  display: block;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.footer-contact-list ul li:hover a {
  color: var(--accent-color);
}

.footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.footer-menu ul li {
  font-family: var(--accent-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  color: var(--white-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.footer-menu ul li:hover {
  color: var(--accent-color);
}

.footer-menu ul li a {
  color: inherit;
}

.footer-links-box {
  width: calc(52% - 75px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
}

.footer-links h3 {
  font-size: 20px;
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 25px;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links ul li {
  color: var(--white-color);
  text-transform: capitalize;
  line-height: 1.5em;
  margin-bottom: 15px;
}

.footer-links ul li:last-child {
  margin-bottom: 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);
}

.footer-social-links {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social-links span {
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
}

.footer-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social-links ul li {
  display: inline-block;
  margin-right: 15px;
}

.footer-social-links ul li:last-child {
  margin: 0;
}

.footer-social-links ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--dark-divider-color);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
  border-color: var(--accent-color);
}

.footer-social-links ul li i {
  font-size: 18px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
  color: var(--accent-color);
}

.footer-copyright {
  position: relative;
  border-top: 1px solid var(--dark-divider-color);
  padding: 50px 0;
  margin-top: 50px;
  z-index: 1;
}

.footer-copyright-text p {
  color: var(--white-color);
  margin: 0;
}

.footer-privacy-policy {
  text-align: end;
}

.footer-privacy-policy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-privacy-policy ul li {
  position: relative;
  color: var(--white-color);
  text-transform: capitalize;
  display: inline-block;
  margin-right: 10px;
  padding-right: 22px;
  transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover {
  color: var(--accent-color);
}

.footer-privacy-policy ul li a {
  color: inherit;
}

.footer-privacy-policy ul li::before {
  content: "-";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 18px;
  color: var(--white-color);
}

.footer-privacy-policy ul li:last-child {
  padding: 0;
  margin: 0;
}

.footer-privacy-policy ul li:last-child:before {
  display: none;
}

/*************************************/
/***     18. About Us Page css     ***/
/*************************************/

.page-header {
  position: relative;
  background-color: var(--primary-color);
  padding: 150px 0;
}

.page-header-box {
  position: relative;
  text-align: center;
  z-index: 1;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  color: var(--white-color);
  text-align: center;
  margin-bottom: 15px;
  cursor: none;
}

.page-header-box ol {
  justify-content: center;
  margin: 0;
  padding: 0;
}

.page-header-box ol li.breadcrumb-item {
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item.active {
  color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white-color);
}

.our-approach {
  padding: 100px 0;
}

.mission-vision-box {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.mission-vision-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 50px;
}

.mission-vision-item:nth-child(even) {
  flex-direction: row-reverse;
}

.mission-vision-item .mission-vision-content,
.mission-vision-item .mission-vision-image {
  width: calc(50% - 25px);
}

.mission-vision-title h3 {
  position: relative;
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.mission-vision-title p {
  color: var(--white-color);
}

.mission-vision-title p:last-child {
  margin: 0;
}

.mission-vision-list {
  margin-top: 40px;
}

.mission-vision-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mission-vision-list ul li {
  position: relative;
  line-height: 1.5em;
  color: var(--white-color);
  padding-left: 25px;
  margin-bottom: 20px;
}

.mission-vision-list ul li:last-child {
  margin-bottom: 0;
}

.mission-vision-list ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 16px;
  font-weight: 900;
  color: var(--primary-color);
  top: 0;
  left: 0;
}

.mission-vision-image figure {
  display: block;
  border-radius: 20px;
}

.mission-vision-image img {
  width: 100%;
  aspect-ratio: 1/0.656;
  object-fit: cover;
  border-radius: 20px;
}

.our-excellence {
  padding: 100px 0;
}

.excellence-item {
  position: relative;
  display: flex;
  margin-bottom: 60px;
}

.excellence-item:last-child {
  margin-bottom: 0;
}

.excellence-item:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(30px, 60px);
  border-left: 1px dashed var(--divider-color);
  width: 1px;
  height: 100%;
  z-index: -1;
}

.excellence-item:last-child:after {
  display: none;
}

.excellence-item-no {
  position: relative;
  background-color: var(--secondary-color);
  border-radius: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  overflow: hidden;
}

.excellence-item-no:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  transform: scale(0) rotate(180deg);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.excellence-item:hover .excellence-item-no:before {
  transform: scale(1) rotate(0deg);
}

.excellence-item-no h3 {
  position: relative;
  font-size: 20px;
  color: var(--white-color);
  z-index: 1;
}

.excellence-item-content {
  width: calc(100% - 75px);
}

.excellence-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.excellence-item-content p {
  margin: 0;
}

.our-excellence-image {
  position: relative;
  margin-left: 15px;
  padding-left: 80px;
}

.our-excellence-img figure {
  display: block;
  border-radius: 20px;
}

.our-excellence-img img {
  width: 100%;
  aspect-ratio: 1 / 1.391;
  object-fit: cover;
  border-radius: 20px;
}

.excellence-lab-list {
  position: absolute;
  background: var(--secondary-color);
  width: 220px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.excellence-lab-item {
  position: relative;
  padding: 20px;
  text-align: center;
}

.excellence-lab-item:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary-color);
  z-index: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.excellence-lab-item.active:before,
.excellence-lab-item:hover:before {
  top: auto;
  height: 100%;
}

.excellence-lab-item .icon-box {
  position: relative;
  background: var(--white-color);
  border-radius: 10px;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.excellence-lab-item .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--secondary-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.excellence-lab-item.active .icon-box:before,
.excellence-lab-item:hover .icon-box:before {
  top: auto;
  height: 100%;
}

.excellence-lab-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  z-index: 1;
}

.excellence-lab-item-content h3 {
  position: relative;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 10px;
  z-index: 1;
}

.excellence-lab-item-content p {
  position: relative;
  color: var(--white-color);
  margin: 0;
  z-index: 1;
}

.expert-coaching {
  padding: 100px 0;
}

.expert-coaching-image {
  position: relative;
  padding: 110px 250px 280px 25px;
  margin-right: 20px;
}

.expert-coaching-image:before {
  content: "";
  position: absolute;
  border: 20px solid var(--accent-color);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  top: 50%;
  transform: translateY(-20%);
  right: 60px;
}

.expert-coaching-img-1,
.expert-coaching-img-2,
.expert-coaching-img-3 {
  border: 9px solid var(--white-color);
  border-radius: 20px;
  box-shadow: 0px 13px 50px 0px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.expert-coaching-img-1 figure,
.expert-coaching-img-2 figure,
.expert-coaching-img-3 figure {
  display: block;
}

.expert-coaching-img-1 img,
.expert-coaching-img-2 img,
.expert-coaching-img-3 img {
  width: 100%;
  object-fit: cover;
}

.expert-coaching-img-1 {
  position: relative;
  transform: rotate(-11.61deg);
  z-index: 1;
}

.expert-coaching-img-1 img {
  aspect-ratio: 1 / 1.03;
}

.expert-coaching-img-2 {
  position: absolute;
  top: 25px;
  right: 25px;
  max-width: 295px;
  transform: rotate(12.91deg);
  z-index: 2;
}

.expert-coaching-img-2 img {
  aspect-ratio: 1 / 1.17;
}

.expert-coaching-img-3 {
  position: absolute;
  left: 170px;
  bottom: 10px;
  max-width: 290px;
  transform: rotate(3.68deg);
}

.expert-coaching-img-3 img {
  aspect-ratio: 1 / 0.99;
}

.expert-coaching-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.expert-coaching-body-item {
  width: calc(50% - 15px);
}

.expert-coaching-body-item h3 {
  position: relative;
  font-size: 20px;
  text-transform: capitalize;
  padding-left: 30px;
  margin-bottom: 10px;
}

.expert-coaching-body-item h3:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  color: var(--accent-color);
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 0;
}

.expert-coaching-body-item p {
  margin: 0;
}

.expert-coaching-list {
  margin-bottom: 40px;
}

.expert-coaching-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.expert-coaching-list ul li {
  position: relative;
  width: calc(50% - 15px);
  line-height: 1.5em;
  padding-left: 30px;
}

.expert-coaching-list ul li::before {
  position: absolute;
  content: "\f058";
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.our-team {
  padding: 100px 0 70px;
}

.team-member-item {
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.team-image {
  overflow: hidden;
}

.team-image figure,
.team-image a {
  cursor: none;
  display: block;
  border-radius: 20px;
}

.team-image img {
  width: 100%;
  aspect-ratio: 1 / 1.27;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image img {
  transform: scale(1.1);
}

.team-body {
  position: relative;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 15px;
  margin: 0 30px;
  margin-top: -60px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.team-member-item:hover .team-body {
  border-color: var(--accent-color);
}

.team-body:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.team-member-item:hover .team-body:after {
  top: 0;
}

.team-social-icon ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  margin-bottom: 15px;
  z-index: 1;
}

.team-social-icon ul li {
  display: inline-block;
  margin-right: 15px;
}

.team-social-icon ul li:last-child {
  margin: 0;
}

.team-social-icon ul li a {
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a i {
  font-size: 18px;
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.team-social-icon ul li:hover a i {
  color: var(--primary-color);
}

.team-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.team-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.team-content h3 a {
  color: inherit;
}

.team-content p {
  text-transform: capitalize;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.team-member-item:hover .team-social-icon ul li a,
.team-member-item:hover .team-content h3,
.team-member-item:hover .team-content p {
  color: var(--white-color);
}

/************************************/
/*** 	 19. Services Page css	  ***/
/************************************/

.page-services {
  padding: 100px 0 70px;
}

.page-services .service-item {
  border: 1px solid var(--divider-color);
}

/************************************/
/*** 	 20. Service Single css	  ***/
/************************************/

.page-service-single {
  padding: 100px 0;
}

.page-single-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 15px;
}

.page-category-list {
  background: var(--white-color);
  border-radius: 20px;
  margin-bottom: 60px;
  overflow: hidden;
}

.page-category-list h3 {
  font-size: 20px;
  color: var(--white-color);
  text-transform: capitalize;
  background: var(--primary-color);
  padding: 25px 40px;
}

.page-category-list ul {
  list-style: none;
  margin: 0;
  padding: 30px 40px;
}

.page-category-list ul li {
  line-height: 1.5em;
  font-weight: 500;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.page-category-list ul li:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.page-category-list ul li a {
  position: relative;
  display: block;
  text-transform: capitalize;
  color: var(--primary-color);
  padding-right: 25px;
  transition: all 0.4s ease-in-out;
}

.page-category-list ul li:hover a {
  color: var(--accent-color);
}

.page-category-list ul li a::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  background: url("../images/arrow-accent.svg") no-repeat;
  background-size: cover;
  background-position: right center;
  width: 20px;
  height: 20px;
  transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover:before {
  transform: rotate(45deg);
}

.sidebar-cta-box {
  position: relative;
  background: url("../images/sidebar-cta-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}

.sidebar-cta-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sidebar-cta-logo,
.sidebar-cta-content {
  position: relative;
  z-index: 1;
}

.sidebar-cta-logo {
  margin-bottom: 70px;
}

.sidebar-cta-logo img {
  width: 100%;
  max-width: 130px;
}

.sidebar-cta-content P {
  color: var(--white-color);
  margin-bottom: 20px;
}

.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 p {
  margin-bottom: 20px;
}

.service-entry p:last-child {
  margin-bottom: 0;
}

.service-entry h2 {
  font-size: 46px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.service-entry ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-entry ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 30px;
  margin-bottom: 15px;
}

.service-entry ul li:last-child {
  margin-bottom: 0;
}

.service-entry 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);
}

.service-discover-box,
.service-result-box,
.service-partnership-box {
  margin-top: 60px;
}

.service-discover-list {
  margin-top: 40px;
}

.service-discover-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service-discover-list ul li {
  width: calc(50% - 15px);
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 20px 15px 20px 45px;
  margin: 0;
}

.service-discover-list ul li::before {
  top: 20px;
  left: 20px;
}

.service-discover-image-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.service-discover-image,
.service-discover-content {
  width: calc(50% - 15px);
}

.service-discover-image figure {
  display: block;
  border-radius: 20px;
}

.service-discover-image img {
  width: 100%;
  aspect-ratio: 1 / 0.84;
  object-fit: cover;
  border-radius: 20px;
}

.service-discover-content .why-choose-item {
  border-color: var(--divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.service-discover-content .why-choose-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-discover-content .why-choose-item .icon-box::before {
  background: var(--primary-color);
}

.service-discover-content .why-choose-item:hover .icon-box img {
  filter: none;
}

.service-discover-content .why-choose-item .why-choose-item-content h3 {
  color: var(--primary-color);
}

.service-discover-content .why-choose-item .why-choose-item-content p {
  color: var(--text-color);
}

.service-result-box ul {
  margin-top: 40px;
}

.service-result-list {
  background: var(--white-color);
  border-radius: 20px;
  margin-top: 40px;
  padding: 40px;
}

.service-result-item {
  display: flex;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.service-result-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-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;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.service-result-item:hover .icon-box {
  background: var(--primary-color);
}

.service-result-item .icon-box img {
  width: 100%;
  max-width: 30px;
}

.service-result-content {
  width: calc(100% - 80px);
}

.service-result-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-result-content p {
  margin-bottom: 0;
}

.service-partnership-box {
  margin-top: 40px;
}

.service-partnership-item {
  margin-bottom: 30px;
}

.service-partnership-item:last-child {
  margin-bottom: 0;
}

.service-partnership-title {
  margin-bottom: 15px;
}

.service-partnership-title h3 {
  position: relative;
  font-size: 20px;
  padding-left: 30px;
}

.service-partnership-title h3::before {
  content: "\f058";
  position: absolute;
  font-family: "FontAwesome";
  left: 0;
  top: 0;
  font-size: 18px;
  color: var(--accent-color);
}

.service-partnership-content p {
  margin: 0;
}

.service-partnership-image {
  margin-top: 40px;
}

.service-partnership-image figure {
  display: block;
  border-radius: 20px;
}

.service-partnership-image img {
  width: 100%;
  aspect-ratio: 1 / 0.395;
  object-fit: cover;
  border-radius: 20px;
}

.page-single-faqs .faq-accordion {
  margin: 0;
}

.page-single-faqs .faq-accordion .accordion-header .accordion-button {
  background: var(--primary-color);
}

.page-single-faqs .faq-accordion .accordion-header .accordion-button.collapsed {
  background: var(--secondary-color);
}

/************************************/
/*** 	 21. Blog Archive css	  ***/
/************************************/

.page-blog {
  padding: 100px 0;
}

.page-blog .post-item {
  height: calc(100% - 40px);
  margin-bottom: 40px;
}

.page-pagination {
  margin-top: 30px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--white-color);
  color: var(--primary-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(--primary-color);
  color: var(--white-color);
}

/************************************/
/*** 	  22. 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.5;
  object-fit: cover;
  border-radius: 20px;
}

.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px 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.2em;
  margin: 0 0 0.435em;
}

.post-entry h1 {
  font-size: 60px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.post-entry h2 {
  font-size: 46px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.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.6em;
  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(--white-color);
  background-repeat: no-repeat;
  background-position: 30px 30px;
  background-size: 45px;
  border-radius: 20px;
  padding: 30px 30px 30px 90px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4em;
  color: var(--primary-color);
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 500;
  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: 700;
  text-transform: capitalize;
  line-height: 1em;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 10px;
  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: 10px;
  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;
}

/************************************/
/*** 	23. Case Study Page css	  ***/
/************************************/

.page-case-study {
  padding: 100px 0 60px;
}

/************************************/
/***   24. Case Study Single css  ***/
/************************************/

.page-case-study-single {
  padding: 100px 0;
}

.case-study-category-list ul li {
  display: flex;
  width: 100%;
  justify-content: space-between;
  color: var(--primary-color);
  font-weight: 500;
}

.case-study-category-list ul li span {
  width: 68%;
  color: var(--text-color);
  font-weight: 400;
}

.case-study-entry {
  margin-bottom: 60px;
}

.case-study-entry p {
  margin-bottom: 20px;
}

.case-study-entry p:last-child {
  margin-bottom: 0;
}

.case-study-entry h2 {
  font-size: 46px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.case-study-entry ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.case-study-entry ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 30px;
  margin-bottom: 15px;
}

.case-study-entry ul li:last-child {
  margin-bottom: 0;
}

.case-study-entry 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(--primary-color);
}

.empowering-agriculture-box,
.field-trials-box,
.shaping-future-box {
  margin-top: 60px;
}

.empowering-box-list {
  margin-top: 40px;
}

.empowering-box {
  background: var(--white-color);
  border-radius: 20px;
  margin-bottom: 40px;
  padding: 40px;
}

.empowering-box:last-child {
  margin-bottom: 0;
}

.empowering-item {
  display: flex;
  margin-bottom: 40px;
}

.empowering-item .icon-box {
  margin-right: 20px;
}

.empowering-item .icon-box img {
  width: 100%;
  max-width: 60px;
}

.empowering-item-content {
  width: calc(100% - 80px);
}

.empowering-item-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.field-trials-step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  margin-top: 40px;
}

.field-trials-step-item {
  width: calc(50% - 15px);
  display: flex;
}

.field-trials-step-no {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  border-radius: 50%;
  margin-right: 20px;
}

.field-trials-step-no::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;
  z-index: 0;
}

.field-trials-step-item:hover .field-trials-step-no::before {
  transform: scale(1);
}

.field-trials-step-no h3 {
  position: relative;
  font-size: 24px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.field-trials-content {
  width: calc(100% - 80px);
}

.field-trials-content h3 {
  font-size: 20px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.shaping-future-image-content {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px;
  margin-top: 40px;
}

.shaping-future-content,
.shaping-future-image {
  width: calc(50% - 15px);
}

.shaping-future-item {
  display: flex;
  margin-top: 30px;
}

.shaping-future-item h3 {
  width: calc(48% - 15px);
  font-size: 20px;
  border-right: 1px solid var(--divider-color);
  margin-right: 15px;
  padding-right: 15px;
}

.shaping-future-item p {
  width: 52%;
}

.shaping-future-image figure {
  display: block;
  border-radius: 20px;
}

.shaping-future-image img {
  width: 100%;
  aspect-ratio: 1 / 0.795;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/*** 	   25. Team Page css	  ***/
/************************************/

.page-team {
  padding: 100px 0 70px;
}

/************************************/
/*** 	 26. Team Single css	  ***/
/************************************/

.page-team-single {
  padding: 100px 0;
}

.team-about-box,
.team-member-skill-box {
  margin-bottom: 60px;
}

.team-about-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}

.team-single-image,
.team-about-content {
  width: calc(50% - 30px);
}

.team-single-image figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.team-single-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.98;
  object-fit: cover;
  border-radius: 20px;
}

.team-about-content {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 40px;
}

.member-social-list {
  margin-bottom: 40px;
}

.member-social-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}

.member-social-list ul li a {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.member-social-list ul li a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.member-social-list ul li a i {
  color: inherit;
  font-size: 20px;
}

.team-contact-item {
  display: flex;
  margin-bottom: 30px;
}

.team-contact-item:last-child {
  margin-bottom: 0;
}

.team-contact-item .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}

.team-contact-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.team-contact-item:hover .icon-box::before {
  transform: scale(1);
}

.team-contact-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  z-index: 1;
}

.team-contact-content {
  width: calc(100% - 85px);
}

.team-contact-content p {
  text-transform: capitalize;
  margin-bottom: 5px;
}

.team-contact-content h3 {
  font-size: 20px;
}

.team-member-skill-box,
.team-member-contact-box {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  display: flex;
  flex-wrap: wrap;
  gap: 30px 140px;
  border-radius: 20px;
  padding: 40px;
}

.team-skill-content {
  width: calc(45% - 70px);
}

.team-skill-content .section-title {
  margin-bottom: 0;
}

.team-skill-list {
  width: calc(55% - 70px);
}

.skills-progress-bar {
  margin-bottom: 30px;
}

.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 {
  line-height: normal;
  font-weight: 500;
  text-transform: capitalize;
}

.skills-progress-bar .skillbar .skill-progress {
  position: relative;
  width: 100%;
  height: 16px;
  background: var(--bg-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;
}

.team-member-contact-box {
  gap: 30px;
}

.team-member-contact-info {
  width: calc(42% - 15px);
}

.team-member-contact-info .section-title {
  position: sticky;
  margin-bottom: 0;
  top: 50px;
}

.team-member-contact-box .contact-us-form {
  width: calc(58% - 15px);
  border-radius: 20px;
}

/************************************/
/***   28. Testimonials Page css  ***/
/************************************/

.page-testimonials {
  padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
  background: var(--white-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 30px;
}

/************************************/
/*** 	 27. Pricing Page css	  ***/
/************************************/

.page-pricing {
  padding: 100px 0 70px;
}

.page-pricing .pricing-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.pricing-item {
  background: var(--white-color);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 40px;
}

.pricing-header {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.pricing-header h3 {
  font-size: 20px;
}

.pricing-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.pricing-content {
  width: 100%;
}

.pricing-list {
  width: 100%;
}

.pricing-price {
  margin-bottom: 40px;
}

.pricing-price h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.pricing-price h2 sub {
  font-size: 20px;
  text-transform: capitalize;
  bottom: 0;
}

.pricing-price p {
  margin-bottom: 0;
}

.pricing-list ul {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 20px;
}

.pricing-list ul li {
  margin-bottom: 15px;
  line-height: 1.5em;
}

.pricing-list ul li:last-child {
  margin-bottom: 0;
}

.pricing-list ul li::marker {
  color: var(--primary-color);
}

/************************************/
/*** 	 29. 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;
}

/************************************/
/*** 	 30. 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: 40%;
  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;
  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;
}

/************************************/
/*** 	  31. 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;
}

/************************************/
/***    32. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
  padding: 100px 0 50px;
}

.contact-us-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 40px;
}

.contact-us-content {
  width: calc(50% - 15px);
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 40px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.contact-info-item:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: none;
}

.contact-info-item .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}

.contact-info-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box::before {
  transform: scale(1);
}

.contact-info-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  z-index: 1;
}

.contact-item-content {
  width: calc(100% - 85px);
}

.contact-item-content p {
  text-transform: capitalize;
  margin-bottom: 5px;
}

.contact-item-content h3 {
  font-size: 20px;
}

.contact-item-content h3 a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.contact-item-content h3 a:hover {
  color: var(--accent-color);
}

.contact-us-image {
  position: relative;
  width: calc(50% - 15px);
}

.contact-us-img {
  height: 100%;
}

.contact-us-img figure {
  height: 100%;
  display: block;
  border-radius: 20px;
}

.contact-us-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.24;
  object-fit: cover;
  border-radius: 20px;
}

.working-hours-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--dark-divider-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  z-index: 1;
}

.working-hours-header {
  margin-bottom: 30px;
}

.working-hours-header h3 {
  color: var(--white-color);
  font-size: 20px;
  text-transform: capitalize;
}

.working-hours-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.working-hours-body ul li {
  font-size: 16px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 70px;
  margin-bottom: 20px;
}

.working-hours-body ul li:last-child {
  margin-bottom: 0;
}

.contact-form-map {
  padding: 50px 0 100px;
}

.contact-form-box {
  display: flex;
  flex-wrap: wrap;
  border-radius: 20px;
  overflow: hidden;
}

.contact-form-box .contact-us-form,
.google-map {
  width: 50%;
}

.contact-us-form {
  background-color: var(--primary-color);
  padding: 40px;
}

.contact-us-form .section-title h2,
.contact-us-form .section-title p {
  color: var(--white-color);
}

.contact-form form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  background-color: var(--white-color);
  border: none;
  border-radius: 20px;
  padding: 18px 20px;
  outline: none;
  box-shadow: none;
}

.contact-form form .form-control::placeholder {
  color: var(--text-color);
}

.contact-form form .btn-default {
  width: 100%;
  padding: 17px;
}

.contact-form form .btn-default::before {
  display: none;
}

.google-map iframe {
  width: 100%;
  height: 100%;
}

/************************************/
/*** 	 33. 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;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1820px) {
  .bg-section {
    max-width: calc(100% - 40px);
    margin: 0 20px;
  }

  .hero-content-box .section-title {
    margin-right: 0;
  }

  .main-footer {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .main-menu ul li {
    margin: 0;
  }
}

@media only screen and (max-width: 991px) {
  .btn-default {
    padding: 15px 40px 15px 15px;
  }

  .btn-default::before {
    right: 15px;
    width: 18px;
    height: 18px;
  }

  .btn-default.btn-border {
    padding: 14px 40px 14px 15px;
  }

  .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-row .section-title.section-title-center {
    max-width: 100%;
  }

  .section-content-btn .section-btn {
    margin-top: 20px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h3 {
    padding: 6px 14px 6px 26px;
  }

  .section-title h3::before {
    left: 14px;
  }

  .section-title h1 {
    font-size: 45px;
  }

  .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;
  }

  .topbar-contact-info ul {
    justify-content: center;
    gap: 20px;
  }

  .topbar-contact-info ul li a img {
    max-width: 18px;
    margin-right: 5px;
  }

  .topbar-social-links {
    display: none;
  }

  .hero-content {
    margin: 0 0 30px;
  }

  .hero-content-body {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .hero-counter-box h2 {
    font-size: 32px;
  }

  .hero-image {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding: 0 50px;
  }

  .export-doctor-box {
    padding: 15px;
  }

  .cta-info-box {
    padding: 30px 0;
  }

  .cta-info-item {
    width: calc(50% - 30px);
  }

  .cta-info-item:nth-child(3n + 3)::before {
    display: block;
  }

  .cta-info-item:nth-child(2n + 2)::before,
  .cta-info-item:last-child::before {
    display: none;
  }

  .cta-info-item .icon-box {
    width: 55px;
    height: 55px;
  }

  .cta-info-item .icon-box img {
    max-width: 30px;
  }

  .cta-info-content {
    width: calc(100% - 75px);
  }

  .about-us {
    padding: 50px 0;
  }

  .about-image {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .about-img img {
    aspect-ratio: 1 / 0.6;
  }

  .happy-patients-counter {
    padding: 20px;
  }

  .about-content-list ul li {
    font-size: 18px;
    padding-left: 25px;
    margin-bottom: 15px;
  }

  .about-content-list ul li::before {
    font-size: 16px;
  }

  .experience-counter {
    padding: 20px;
  }

  .experience-counter-content h2 {
    font-size: 32px;
  }

  .about-content-btn {
    margin-top: 30px;
  }

  .our-service {
    padding: 50px 0 20px;
  }

  .service-item {
    padding: 30px;
  }

  .service-item .icon-box {
    margin-bottom: 20px;
  }

  .service-content {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .our-research {
    padding: 50px 0;
  }

  .research-image {
    width: 100%;
  }

  .research-item {
    width: calc(50% - 15px);
    padding: 20px;
  }

  .research-item .icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
  }

  .research-item .icon-box img {
    max-width: 30px;
  }

  .research-counter-box {
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
  }

  .research-counter-item {
    display: block;
    width: calc(25% - 22.5px);
  }

  .research-counter-item::before {
    right: -15px;
  }

  .research-counter-item .icon-box {
    margin: 0 0 10px 0;
  }

  .research-counter-item .icon-box img {
    max-width: 40px;
  }

  .research-counter-content h3 {
    font-size: 26px;
  }

  .research-counter-content p {
    font-size: 14px;
  }

  .research-counter-item .icon-box {
    margin-right: 10px;
  }

  .why-choose-us {
    padding: 50px 0;
  }

  .why-choose-content {
    margin-bottom: 30px;
  }

  .why-choose-list {
    margin: 0 0 30px;
  }

  .why-choose-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .why-choose-item .icon-box {
    width: 50px;
    height: 50px;
  }

  .why-choose-item .icon-box img {
    max-width: 24px;
  }

  .why-choose-item-content {
    width: calc(100% - 70px);
  }

  .why-choose-item-content h3 {
    margin-bottom: 5px;
  }

  .why-choose-image {
    width: 100%;
    max-width: 60%;
    margin: 0 auto;
  }

  .why-choose-image img {
    margin-bottom: -50px;
  }

  .case-study {
    background-size: 140px auto;
    background-position: right -20px bottom 50px;
    padding: 50px 0 20px;
  }

  .case-study-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
  }

  .case-study-image {
    margin-bottom: 15px;
  }

  .case-study-content h2 {
    font-size: 18px;
  }

  .therapy-process {
    padding: 50px 0 20px;
  }

  .therapy-process-item .therapy-process-image {
    margin-bottom: 20px;
  }

  .therapy-process
    .col-lg-3:nth-child(odd)
    .therapy-process-item
    .therapy-process-image:before {
    transform: translate(210px, -50%);
  }

  .therapy-process
    .col-lg-3:nth-child(2n + 2)
    .therapy-process-item
    .therapy-process-image:before {
    display: none;
  }

  .therapy-process-content {
    margin: 0;
  }

  .intro-video {
    padding: 50px 0;
  }

  .work-list {
    margin: 15px 0 0;
  }

  .work-list ul li {
    margin-bottom: 10px;
    padding-left: 25px;
  }

  .work-list ul li::before {
    font-size: 16px;
  }

  .intro-video-box {
    padding: 100px 15px 50px;
  }

  .work-item-box {
    gap: 15px;
    margin-top: 100px;
    padding-top: 30px;
  }

  .work-item {
    width: calc(33.33% - 10px);
    display: block;
  }

  .work-item .icon-box {
    width: 50px;
    height: 50px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .work-item .icon-box img {
    max-width: 28px;
  }

  .work-item-content {
    width: 100%;
  }

  .work-item-content h3 {
    margin-bottom: 5px;
  }

  .our-facts {
    padding: 50px 0;
  }

  .facts-details-box {
    margin: 0 0 30px 0;
    padding: 20px;
  }

  .fact-image figure {
    border-radius: 20px;
  }

  .fact-image img {
    aspect-ratio: 1 / 1.04;
    border-radius: 20px;
  }

  .fact-circle-image {
    margin-bottom: 30px;
  }

  .fact-circle-image a img {
    max-width: 140px;
  }

  .fact-counter-item {
    border-radius: 20px;
    padding: 20px;
  }

  .fact-counter-item .icon-box {
    margin-bottom: 20px;
  }

  .fact-counter-item .icon-box img {
    max-width: 50px;
  }

  .fact-counter-content h2 {
    width: calc(24% - 10px);
    font-size: 26px;
  }

  .fact-counter-content p {
    width: 76%;
  }

  .our-testimonials {
    padding: 50px 0;
  }

  .testimonials-image-box {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .testimonials-image-box figure img {
    aspect-ratio: 1 / 0.7;
  }

  .testimonials-rating-box {
    padding: 15px;
  }

  .testimonial-content {
    margin-bottom: 30px;
  }

  .our-faqs {
    padding: 50px 0;
  }

  .faq-accordion .accordion-item {
    border-radius: 14px;
    margin-bottom: 20px;
  }

  .faq-accordion .accordion-header .accordion-button {
    padding: 13px 40px 13px 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: 15px;
  }

  .faq-image {
    margin: 30px 0 0;
  }

  .faq-image figure img {
    aspect-ratio: 1 / 0.66;
  }

  .faq-image .appointment-info-list {
    bottom: 30px;
    left: 30px;
    right: 30px;
  }

  .our-blog {
    padding: 50px 0 20px;
  }

  .post-featured-image {
    margin-bottom: 15px;
  }

  .main-footer {
    padding: 40px 0 0 0;
    margin-bottom: 0;
  }

  .footer-about,
  .footer-links-box {
    width: 100%;
  }

  .footer-about::before {
    display: none;
  }

  .footer-logo,
  .about-footer-content {
    margin-bottom: 20px;
  }

  .footer-contact-list {
    margin-bottom: 30px;
  }

  .footer-contact-list ul {
    gap: 20px;
  }

  .footer-contact-list ul li {
    font-size: 16px;
    padding: 8px 15px;
  }

  .footer-menu ul {
    gap: 20px;
  }

  .footer-menu ul li {
    font-size: 16px;
  }

  .footer-links-box {
    gap: 30px;
  }

  .footer-links h3 {
    margin-bottom: 20px;
  }

  .footer-links ul li {
    margin-bottom: 10px;
  }

  .footer-copyright {
    padding: 30px 0;
    margin-top: 30px;
  }

  .page-header {
    padding: 80px 0;
  }

  .page-header-box h1 {
    font-size: 45px;
  }

  .our-approach {
    padding: 50px 0;
  }

  .mission-vision-item .mission-vision-content,
  .mission-vision-item .mission-vision-image {
    width: 100%;
  }

  .mission-vision-list {
    margin-top: 30px;
  }

  .mission-vision-list ul li {
    margin-bottom: 15px;
  }

  .mission-vision-image img {
    aspect-ratio: 1 / 0.5;
  }

  .our-excellence {
    padding: 50px 0;
  }

  .our-excellence-content {
    margin-bottom: 30px;
  }

  .excellence-item {
    margin-bottom: 30px;
  }

  .excellence-item:after {
    transform: translate(25px, 50px);
  }

  .excellence-item-no {
    width: 50px;
    height: 50px;
  }

  .excellence-item-content {
    width: calc(100% - 65px);
  }

  .our-excellence-image {
    margin-left: 0;
  }

  .our-excellence-img img {
    aspect-ratio: 1 / 1.01;
  }

  .excellence-lab-item .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .excellence-lab-item .icon-box img {
    max-width: 26px;
  }

  .expert-coaching {
    padding: 50px 0;
  }

  .expert-coaching-image {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .expert-coaching-body {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .expert-coaching-body-item h3 {
    padding-left: 25px;
  }

  .expert-coaching-body-item h3:before {
    font-size: 16px;
  }

  .expert-coaching-list {
    margin-bottom: 30px;
  }

  .expert-coaching-list ul li {
    padding-left: 25px;
  }

  .expert-coaching-list ul li::before {
    font-size: 16px;
  }

  .our-team {
    padding: 50px 0 20px;
  }

  .team-image img {
    aspect-ratio: 1 / 1.1;
  }

  .page-services {
    padding: 50px 0 20px;
  }

  .page-service-single {
    padding: 50px 0;
  }

  .page-single-sidebar {
    position: initial;
    margin: 0 0 30px;
  }

  .page-category-list {
    margin-bottom: 30px;
  }

  .page-category-list h3,
  .page-category-list ul {
    padding: 15px 30px;
  }

  .page-category-list ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .sidebar-cta-box {
    padding: 30px;
  }

  .sidebar-cta-logo {
    margin-bottom: 40px;
  }

  .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: 10px;
  }

  .service-entry ul li::before {
    font-size: 16px;
  }

  .service-discover-box,
  .service-result-box,
  .service-partnership-box {
    margin-top: 40px;
  }

  .service-discover-list {
    margin-top: 30px;
  }

  .service-discover-list ul {
    gap: 20px;
  }

  .service-discover-list ul li {
    width: calc(50% - 10px);
    font-size: 14px;
    border-radius: 12px;
    padding: 12px 12px 12px 35px;
    margin-bottom: 0;
  }

  .service-discover-list ul li::before {
    top: 14px;
    left: 12px;
  }

  .service-discover-image-content {
    gap: 20px;
    margin-top: 30px;
  }

  .service-discover-image,
  .service-discover-content {
    width: calc(50% - 10px);
  }

  .service-result-box ul {
    margin-top: 30px;
  }

  .service-result-list {
    margin-top: 30px;
    padding: 30px;
  }

  .service-result-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .service-partnership-item {
    margin-bottom: 20px;
  }

  .service-partnership-title {
    margin-bottom: 10px;
  }

  .service-partnership-title h3 {
    padding-left: 25px;
  }

  .service-partnership-title h3::before {
    font-size: 16px;
  }

  .service-partnership-image {
    margin-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.42em;
  }

  .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 {
    gap: 10px;
  }

  .post-tags .tag-links a {
    padding: 10px 15px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .page-case-study {
    padding: 50px 0 20px;
  }

  .page-case-study-single {
    padding: 50px 0;
  }

  .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;
  }

  .empowering-agriculture-box,
  .field-trials-box,
  .shaping-future-box {
    margin-top: 40px;
  }

  .empowering-box-list {
    margin-top: 30px;
  }

  .empowering-box {
    padding: 30px;
    margin-bottom: 30px;
  }

  .empowering-item {
    margin-bottom: 30px;
  }

  .empowering-item .icon-box {
    margin-right: 15px;
  }

  .empowering-item .icon-box img {
    max-width: 50px;
  }

  .empowering-item-content {
    width: calc(100% - 65px);
  }

  .field-trials-step-list {
    gap: 30px;
    margin-top: 30px;
  }

  .field-trials-step-no {
    height: 50px;
    width: 50px;
    margin-right: 15px;
  }

  .field-trials-step-no h3 {
    font-size: 20px;
  }

  .field-trials-content {
    width: calc(100% - 65px);
  }

  .field-trials-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .shaping-future-image-content {
    margin-top: 30px;
    padding: 30px;
  }

  .shaping-future-item {
    margin-top: 20px;
  }

  .page-team {
    padding: 50px 0 20px;
  }

  .page-team-single {
    padding: 50px 0;
  }

  .team-about-box,
  .team-member-skill-box {
    margin-bottom: 40px;
  }

  .team-single-image,
  .team-about-content {
    width: 100%;
  }

  .team-single-image img {
    height: auto;
    aspect-ratio: 1 / 0.85;
  }

  .team-about-content {
    padding: 30px;
  }

  .member-social-list {
    margin-bottom: 30px;
  }

  .team-contact-item .icon-box {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .team-contact-item .icon-box img {
    max-width: 24px;
  }

  .team-contact-content {
    width: calc(100% - 65px);
  }

  .team-member-skill-box,
  .team-member-contact-box {
    gap: 30px;
    padding: 30px;
  }

  .team-skill-content,
  .team-skill-list {
    width: 100%;
  }

  .skills-progress-bar .skill-data {
    margin-bottom: 15px;
  }

  .team-member-contact-info,
  .team-member-contact-box .contact-us-form {
    width: 100%;
  }

  .team-member-contact-info,
  .team-member-contact-box .contact-us-form {
    width: 100%;
  }

  .team-member-contact-info .section-title {
    position: initial;
  }

  .page-pricing {
    padding: 50px 0 20px;
  }

  .pricing-item {
    padding: 30px;
  }

  .pricing-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .pricing-price {
    margin-bottom: 30px;
  }

  .pricing-price h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .pricing-price h2 sub {
    font-size: 18px;
  }

  .page-testimonials {
    padding: 50px 0 20px;
  }

  .page-testimonials .testimonial-item {
    padding: 20px;
  }

  .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 25px;
  }

  .contact-us-box {
    padding: 30px;
  }

  .contact-us-content,
  .contact-us-image {
    width: 100%;
  }

  .contact-us-content {
    padding: 30px;
  }

  .contact-info-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .contact-info-item .icon-box {
    margin-right: 15px;
  }

  .contact-item-content {
    width: calc(100% - 75px);
  }

  .contact-us-img img {
    aspect-ratio: 1 / 0.9;
  }

  .working-hours-box {
    bottom: 20px;
    left: 20px;
    padding: 20px;
  }

  .working-hours-header {
    margin-bottom: 20px;
  }

  .contact-form-map {
    padding: 25px 0 50px;
  }

  .contact-form-box .contact-us-form,
  .google-map {
    width: 100%;
  }

  .contact-us-form {
    padding: 30px;
  }

  .contact-form form .form-control {
    padding: 12px 15px;
    border-radius: 12px;
  }

  .contact-form form .btn-default {
    padding: 15px;
  }

  .google-map iframe {
    height: 450px;
  }

  .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: 28px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .topbar-contact-info ul {
    gap: 15px;
  }

  .topbar-contact-info ul li {
    font-size: 14px;
  }

  .topbar-contact-info ul li.hide-mobile {
    display: none;
  }

  .topbar-contact-info ul li img {
    max-width: 16px;
  }

  .topbar-contact-info ul li:last-child {
    margin-bottom: 0;
  }

  .hero-content {
    margin: 0 0 15px;
  }

  .hero-content-body {
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .hero-counter-box {
    margin-bottom: 15px;
  }

  .hero-counter-box h2 {
    font-size: 24px;
  }

  .hero-counter-box p {
    font-size: 14px;
  }

  .hero-image {
    max-width: 100%;
    padding: 0 20px;
  }

  .export-doctor-box {
    transform: translateY(0);
    padding: 12px;
    border-radius: 12px;
  }

  .export-doctor-content h3 {
    font-size: 18px;
  }

  .cta-info-item {
    width: 100%;
  }

  .cta-info-item::before {
    top: auto;
    right: 0;
    bottom: -15px;
    width: 100%;
    height: 1px;
  }

  .cta-info-item:nth-child(2n + 2)::before {
    display: block;
  }

  .cta-info-item:last-child::before {
    display: none;
  }

  .cta-info-content h3 {
    font-size: 18px;
  }

  .about-img img {
    aspect-ratio: 1 / 1.11;
  }

  .happy-patients-counter {
    bottom: 20px;
    left: 20px;
    padding: 15px;
  }

  .happy-patients-counter-content h3 {
    font-size: 18px;
  }

  .about-content-list,
  .experience-counter {
    width: 100%;
  }

  .about-content-list ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .experience-counter-content h2 {
    font-size: 24px;
  }

  .service-item {
    padding: 20px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .research-item-list {
    gap: 20px;
  }

  .research-item {
    width: 100%;
  }

  .research-item .icon-box {
    margin-bottom: 20px;
  }

  .research-item-content h3 {
    font-size: 18px;
  }

  .research-counter-box {
    margin-top: 30px;
    padding-top: 30px;
  }

  .research-counter-item {
    width: calc(50% - 15px);
  }

  .research-counter-item .icon-box img {
    max-width: 30px;
  }

  .research-counter-content h3 {
    font-size: 22px;
  }

  .why-choose-item-content h3 {
    font-size: 18px;
  }

  .why-choose-image {
    max-width: 90%;
  }

  .therapy-process-item .therapy-process-image {
    width: 80px;
  }

  .therapy-process
    .col-lg-3:nth-child(odd)
    .therapy-process-item
    .therapy-process-image::before {
    display: none;
  }

  .therapy-process-item .therapy-process-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .intro-video-box {
    padding: 50px 15px;
  }

  .video-play-border-button a {
    width: 80px;
    height: 80px;
  }

  .work-item-box {
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
  }

  .work-item {
    width: 100%;
    text-align: center;
  }

  .work-item .icon-box {
    margin: 0 auto 15px;
  }

  .work-item-content h3 {
    font-size: 18px;
  }

  .fact-image {
    width: 100%;
  }

  .fact-details-content {
    width: 100%;
    margin-top: 50px;
  }

  .fact-circle-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -10%);
    margin: 0;
  }

  .fact-circle-image a img {
    max-width: 120px;
  }

  .fact-counter-item {
    width: 100%;
  }

  .fact-counter-item .icon-box img {
    max-width: 40px;
  }

  .fact-counter-content h2 {
    font-size: 22px;
    width: calc(20% - 5px);
    margin-right: 5px;
  }

  .fact-counter-content p {
    width: 80%;
  }

  .testimonials-image-box figure img {
    aspect-ratio: 1 / 0.9;
  }

  .testimonials-rating-box {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 10px;
  }

  .testimonials-rating {
    margin-right: 5px;
  }

  .testimonials-rating-box i {
    font-size: 12px;
    margin-right: 0px;
  }

  .testimonials-rating-content p {
    font-size: 14px;
  }

  .testimonials-rating-content p span,
  .testimonial-content p {
    font-size: 14px;
  }

  .testimonial-author .author-image {
    margin-right: 10px;
  }

  .testimonial-author .author-image img {
    max-width: 50px;
  }

  .testimonial-author .author-content h3 {
    font-size: 18px;
  }

  .testimonial-btn {
    position: initial;
    justify-content: center;
    margin-right: 20px;
  }

  .faq-accordion .accordion-header .accordion-button {
    font-size: 16px;
  }

  .faq-image figure img {
    aspect-ratio: 1 / 1.05;
  }

  .faq-image .appointment-info-list {
    bottom: 20px;
    left: 20px;
    right: 20px;
    gap: 25px;
  }

  .appointment-info-item {
    width: 100%;
  }

  .appointment-info-title {
    margin-bottom: 10px;
  }

  .appointment-info-title i {
    font-size: 22px;
  }

  .appointment-info-title h3 {
    font-size: 18px;
  }

  .main-footer-box {
    gap: 40px;
  }

  .footer-contact-list {
    margin-bottom: 20px;
  }

  .footer-contact-list ul {
    gap: 15px;
  }

  .footer-links {
    width: 100%;
  }

  .footer-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-social-links {
    gap: 10px;
  }

  .footer-social-links span {
    font-size: 18px;
  }

  .footer-social-links ul li {
    margin-right: 10px;
  }

  .footer-copyright {
    text-align: center;
    padding: 15px 0;
  }

  .footer-privacy-policy {
    text-align: center;
    margin-top: 10px;
  }

  .footer-privacy-policy ul li {
    margin-right: 3px;
    padding-right: 15px;
  }

  .footer-privacy-policy ul li::before {
    font-size: 16px;
  }

  .page-header-box h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .mission-vision-title h3 {
    font-size: 18px;
  }

  .excellence-item:after {
    transform: translate(20px, 40px);
  }

  .excellence-item-no {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .excellence-item-no h3 {
    font-size: 18px;
  }

  .excellence-item-content {
    width: calc(100% - 50px);
  }

  .excellence-item-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .our-excellence-image {
    padding-left: 0;
  }

  .our-excellence-img img {
    aspect-ratio: 1 / 0.99;
  }

  .excellence-lab-list {
    position: initial;
    width: 100%;
    transform: translateY(0%);
    margin-top: 30px;
  }

  .excellence-lab-item {
    padding: 15px;
  }

  .excellence-lab-item .icon-box {
    width: 40px;
    height: 40px;
  }

  .excellence-lab-item .icon-box img {
    max-width: 22px;
  }

  .excellence-lab-item-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .expert-coaching-image {
    max-width: 100%;
    padding: 25px 140px 175px 18px;
  }

  .expert-coaching-image:before {
    border-width: 10px;
    width: 120px;
    height: 120px;
    right: 30px;
    transform: translateY(-50%);
  }

  .expert-coaching-img-1,
  .expert-coaching-img-2,
  .expert-coaching-img-3 {
    border-width: 5px;
  }

  .expert-coaching-img-2 {
    max-width: 140px;
    top: 10px;
    right: 10px;
  }

  .expert-coaching-img-3 {
    left: 100px;
    max-width: 180px;
  }

  .expert-coaching-body {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .expert-coaching-body-item {
    width: 100%;
  }

  .expert-coaching-body-item h3 {
    font-size: 18px;
  }

  .expert-coaching-list ul {
    gap: 10px;
  }

  .expert-coaching-list ul li {
    width: 100%;
  }

  .team-content h3 {
    font-size: 18px;
  }

  .page-category-list h3,
  .page-category-list ul,
  .sidebar-cta-box {
    padding: 20px;
  }

  .page-category-list h3 {
    font-size: 18px;
  }

  .page-single-image {
    margin-bottom: 20px;
  }

  .service-entry h2 {
    font-size: 26px;
  }

  .service-discover-list ul {
    gap: 10px;
  }

  .service-discover-list ul li {
    width: 100%;
    padding: 8px 12px 8px 35px;
  }

  .service-discover-list ul li::before {
    top: 10px;
  }

  .service-discover-image,
  .service-discover-content {
    width: 100%;
  }

  .service-discover-content .why-choose-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .service-result-list {
    padding: 20px;
  }

  .service-result-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .service-result-item .icon-box {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .service-result-item .icon-box img {
    max-width: 24px;
  }

  .service-result-content {
    width: calc(100% - 65px);
  }

  .service-result-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .service-result-content p {
    font-size: 14px;
  }

  .service-partnership-title h3 {
    font-size: 18px;
  }

  .service-partnership-image {
    margin-top: 20px;
  }

  .service-partnership-image img {
    aspect-ratio: 1 / 0.54;
  }

  .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;
  }

  .tag-links {
    font-size: 18px;
  }

  .case-study-entry h2 {
    font-size: 26px;
  }

  .empowering-box {
    padding: 20px;
  }

  .empowering-item {
    margin-bottom: 20px;
  }

  .empowering-item-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .field-trials-step-item {
    width: 100%;
  }

  .shaping-future-image-content {
    padding: 20px;
  }

  .shaping-future-content,
  .shaping-future-image {
    width: 100%;
  }

  .shaping-future-item h3 {
    width: calc(45% - 5px);
    font-size: 18px;
    margin-right: 5px;
    padding-right: 5px;
  }

  .shaping-future-item p {
    width: 56%;
  }

  .team-single-image img {
    aspect-ratio: 1 / 1.2;
  }

  .team-about-content {
    padding: 20px;
  }

  .member-social-list {
    margin-bottom: 20px;
  }

  .team-contact-content h3 {
    font-size: 18px;
  }

  .team-member-skill-box,
  .team-member-contact-box {
    padding: 20px;
  }

  .skills-progress-bar {
    margin-bottom: 20px;
  }

  .skills-progress-bar .skillbar .skill-progress {
    height: 14px;
  }

  .pricing-item {
    padding: 20px;
  }

  .pricing-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .pricing-header h3 {
    font-size: 18px;
  }

  .pricing-body {
    gap: 20px;
  }

  .pricing-price {
    margin-bottom: 20px;
  }

  .pricing-price h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .pricing-price h2 sub {
    font-size: 14px;
  }

  .pricing-list ul li {
    margin-bottom: 10px;
  }

  .contact-us-box {
    padding: 20px;
  }

  .contact-us-content {
    padding: 20px;
  }

  .contact-info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .contact-info-item .icon-box {
    height: 50px;
    width: 50px;
  }

  .contact-info-item .icon-box img {
    max-width: 26px;
  }

  .contact-item-content {
    width: calc(100% - 65px);
  }

  .contact-item-content h3 {
    font-size: 18px;
  }

  .contact-us-img img {
    aspect-ratio: 1 / 1.1;
  }

  .working-hours-header h3 {
    font-size: 18px;
  }

  .working-hours-box {
    bottom: 15px;
    left: 15px;
    padding: 15px;
  }

  .working-hours-body ul li {
    font-size: 14px;
    gap: 10px 20px;
    margin-bottom: 10px;
  }

  .contact-us-form {
    padding: 20px;
  }

  .google-map iframe {
    height: 350px;
  }
}
.main-footer {
  margin-bottom: 0px;
  max-width: 100%;
  margin: 0px;
  border-radius: 0px;
}
.cta-info-box {
  margin-bottom: 30px;
}
.section-row {
  margin-bottom: 50px;
}

body {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif !important;
}
p {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif !important;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif !important;
}
.footer-logo img {
    width: 200px !important;
}
