/* 
Template Name: DONORDOC-B01 
Author: FRONTLENS LLC 
License: For personal/business use only. Redistribution, resale, or sublicensing is strictly prohibited without written consent. 
Copyright (c) 2025 FRONTLENS LLC. All rights reserved. 
*/
@import url("./utils/bootstrap.css");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  position: relative;
  -webkit-overflow-scrolling: touch;
  background-color: #faf9f7;
}

body.loading {
  overflow: hidden;
}

/* Preloader overlay */
#preloader {
  position: fixed;
  inset: 0;
  background: #d7f0db; /* secondary color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11000; /* above header */
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-img-container {
  margin-top: 50px;
}

.preloader-spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(55, 178, 77, 0.2); /* faint ring using primary */
  border-top-color: #37b24d; /* primary color */
  border-radius: 50%;
  animation: preloader-spin 1s linear infinite;
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}
section,
header,
footer {
  scroll-margin-top: 50px;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bullet-point {
  margin-top: 2px;
  min-height: 1.2rem;
  min-width: 1.2rem;
  border-radius: 100%;
  background-color: green;
}

.no-scroll {
  overflow: hidden;
}

.stroke-primary {
  stroke: #37b24d;
}

.check-text {
  margin-top: 20px;
  font-size: 14px;
}

.overline-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.overline-container .overline-icon {
  width: 20px;
  height: 20px;
  color: #37b24d;
}
.overline-container .overline-text {
  font-size: 16px;
  font-weight: 450;
  color: black;
  white-space: nowrap;
}

.logo-img {
  width: 250px;
  height: auto;
}

.flex-center {
  display: flex;
  align-items: center;
}

.gap-2 {
  gap: 8px;
}

.gap-4 {
  gap: 16px;
}

.arrow-btn {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.arrow-btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.arrow-btn button svg {
  color: #37b24d;
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
  transition: color 0.2s ease;
}
.arrow-btn button:hover {
  background-color: #37b24d;
  border-color: #37b24d;
}
.arrow-btn button:hover svg {
  color: #fff;
}

.btn {
  display: inline-flex;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 9px;
  transition: all 1s;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.btn.btn-default {
  background: linear-gradient(to right, #37b24d, #1ea99d);
  border: none;
  color: #fff;
}
.btn.btn-default:hover, .btn.btn-default:active {
  background: linear-gradient(to right, #2e9a43, #178f86);
  color: #fff;
}
.btn.btn-default::before, .btn.btn-default::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  transition: all 0.5s;
}
.btn.btn-outline {
  background-color: #fff;
  color: #555;
  border: 3px solid transparent;
}
.btn.btn-outline:hover, .btn.btn-outline:active {
  background-color: #ebf7ed;
  border-color: #b3b3b3;
  color: #b3b3b3;
}
.btn.colored-border {
  border-color: #b3b3b3 !important;
}
.btn.no-effect:hover svg, .btn.no-effect:active svg {
  transform: none !important;
  color: #b3b3b3;
}
.btn svg {
  height: 20px;
  width: 20px;
  color: inherit;
  transform: rotate(0);
  transition: color 0.3s ease, transform 0.3s ease;
}
.btn:hover svg, .btn:active svg {
  transform: rotate(90deg);
  color: #b3b3b3;
}
.btn:active, .btn:focus, .btn:focus-visible, .btn:active {
  outline: 0;
  box-shadow: none;
}

* {
  transition: all 0.5s;
}

/* Blur-up images: start blurred with subtle skeleton, then fade-sharpen when loaded */
/* When image is loaded, remove blur + shimmer smoothly */
/* Keep transitions performant */
.heading-primary,
.heading-secondary {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 55px;
  line-height: 1.05;
  margin-bottom: 30px;
  color: #333;
}

.heading-four {
  font-size: 22px;
  color: #37b24d;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: #ced4da;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.custom-popup {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: block;
  width: 100%;
  border: 2px solid #fff;
  font-size: 16px;
  line-height: normal;
}
.custom-popup:hover, .custom-popup:focus, .custom-popup:active, .custom-popup:focus-visible {
  box-shadow: 0 0 6px #37b24d;
  outline: none;
  transition: 0.5s all;
}
.custom-popup {
  border-radius: 9px;
}

.bg-gradient-green-soft {
  background: linear-gradient(to bottom, rgba(215, 240, 219, 0), #d7f0db 80%);
}

.popup {
  padding: 20px;
  border-radius: 9px;
  cursor: pointer;
  background: #fff;
  font-size: 16px;
}

.options-popup {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  background: rgba(55, 178, 77, 0);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.options-container {
  background-color: #37b24d;
  width: 300px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 4px;
  transform: scale(0.9);
  transition: transform 0.5s ease;
}

.option-popup {
  padding: 10px;
  cursor: pointer;
  color: white;
  font-size: 16px;
  transition: all 0.4s ease;
}

.option-popup:hover {
  background-color: #d7f0db;
  color: #37b24d;
}

.custom-popup.active .options-popup {
  opacity: 1;
  visibility: visible;
  background: rgba(55, 178, 77, 0.4);
}

.custom-popup.active .options-container {
  transform: scale(1);
}

.custom-select {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: block;
  width: 100%;
  border: 2px solid #fff;
  font-size: 16px;
  line-height: normal;
}
.custom-select:hover, .custom-select:focus, .custom-select:active, .custom-select:focus-visible {
  box-shadow: 0 0 6px #37b24d;
  outline: none;
  transition: 0.5s all;
}
.custom-select {
  border-radius: 9px;
}

.selected {
  padding: 20px;
  border-radius: 9px;
  cursor: pointer;
  background: #fff;
  font-size: 16px;
}

.options {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  right: 0;
  background-color: #37b24d;
  border-radius: 4px;
  display: none;
  font-size: 16px;
  z-index: 5;
  padding: 5px 0;
  border-radius: 4px;
}

.option {
  padding: 10px;
  cursor: pointer;
  color: white;
  font-size: 16px;
}

.option:hover {
  background-color: #d7f0db;
  color: #37b24d;
}

.svc-grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 22.5px;
  justify-content: space-between;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.svc-card {
  position: relative;
  width: calc(33.3333333333% - 15.75px);
  height: 320px;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
}

.svc-icon {
  width: 35px;
  height: 35px;
  color: #1a8d53 !important;
}

.svc-card * {
  box-sizing: border-box;
}

.svc-front {
  padding: 24px;
  padding-bottom: 30px;
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.svc-badge {
  position: absolute;
  top: 24px;
  right: 0;
  background-color: #1a8d53;
  color: white;
  padding: 8px 16px 8px 24px;
  font-weight: 500;
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 12px 50%);
}

.svc-badge .svc-star {
  font-size: 14px;
  margin-bottom: 2px;
}

.svc-icon-box {
  width: 56px;
  height: 56px;
  background-color: #eeeeee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.svc-title {
  font-size: 26px;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 16px;
  margin-top: 30px;
  letter-spacing: -0.5px;
}

.svc-action-btn {
  color: #1a8d53;
  font-weight: 500;
  font-size: 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.svc-action-btn:hover {
  opacity: 0.8;
}

.svc-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 10;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateY(-120%);
  transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.svc-card.is-open .svc-back {
  transform: translateY(0%);
}

.svc-title-sm {
  font-size: 22px;
  margin-bottom: 20px;
  margin-top: 0px;
  line-height: 1.1;
}

.svc-short-description {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
  line-height: 1.7;
}

.svc-stats-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px 10px;
}

.svc-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.svc-stat-val {
  color: #1a8d53;
  font-weight: 500;
  font-size: 18px;
  min-width: 40px;
  padding-top: 2px;
}

.svc-stat-info {
  display: flex;
  flex-direction: column;
}

.svc-stat-label {
  font-size: 16px;
  color: #2d3436;
  font-weight: 500;
  line-height: 1.3;
}

.svc-stat-year {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

.svc-close-hint {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 14px;
  color: #999;
  cursor: pointer;
  font-weight: 500;
}

.svc-close-hint:hover {
  color: #2d3436;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checklist-item-text {
  margin-top: 6px;
}

/* Responsive layout for new Services cards */
@media (max-width: 1199.98px) {
  .svc-grid-container {
    gap: 20px;
  }
  .svc-card {
    width: calc(50% - 10px);
    height: 340px;
  }
  .svc-badge {
    font-size: 22px;
    padding: 6px 14px 6px 24px;
  }
  .svc-title {
    font-size: 22px;
    margin-top: 14px;
    margin-bottom: 12px;
  }
  .svc-action-btn {
    font-size: 18px;
  }
  .svc-title-sm {
    /* font-size: 20px; */
  }
  .svc-short-description {
    font-size: 16px;
  }
  main .section-pricing .price-icon {
    scale: 0.8;
  }
}
@media (max-width: 767.98px) {
  .svc-grid-container {
    flex-direction: column;
    align-items: center;
  }
  .svc-card {
    width: 100%;
    height: 310px;
  }
  .svc-badge {
    font-size: 20px;
    padding: 6px 12px 6px 20px;
  }
  .svc-title {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .svc-title-sm {
    /* font-size: 18px; */
  }
  .svc-action-btn {
    font-size: 16px;
  }
  .svc-short-description {
    font-size: 15px;
    line-height: 1.6;
  }
  .svc-stat-label {
    /* font-size: 13px; */
  }
  .svc-stat-list {
    padding-bottom: 45px;
  }
}
@media (max-width: 1400px) {
  main .section-pricing .price-card {
    max-width: 273px !important;
  }
  main .section-pricing .price-card .price-title {
    font-size: 1.5rem;
  }
  main .section-pricing .price-card .price {
    font-size: 48px;
  }
  main .section-pricing .price-card .checklist li {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  main .section-pricing .price-card {
    max-width: 253px !important;
    padding: 24px 16px 20px !important;
  }
}
@media (max-width: 992px) {
  main .section-pricing .price-card {
    max-width: 245px !important;
  }
  main .section-pricing .price-card .price-title {
    font-size: 1.1rem !important;
  }
  main .section-pricing .price-card .price {
    font-size: 38px !important;
  }
  main .section-pricing .price-card .checklist li {
    font-size: 12px !important;
  }
  main .section-pricing .price-card .checklist {
    margin-top: 0px !important;
  }
}
@media (max-width: 776px) {
  main .section-pricing .price-card {
    max-width: 245px !important;
  }
}
@media (max-width: 575.98px) {
  main .section-pricing .price-card {
    max-width: 265px !important;
  }
  .svc-card {
    max-width: 100%;
    height: 300px;
  }
}
#header-wrapper {
  transition: transform 0.5s ease, top 0.5s ease;
}
#header-wrapper.slide-in {
  transform: translateY(0);
}
#header-wrapper.sticky-top-custom {
  position: sticky;
  top: 0;
  z-index: 1000;
  transform: translateY(-100%);
}
#header-wrapper.sticky-top-custom.slide-in {
  transform: translateY(0);
}

#header {
  transition: all 0.3s ease;
  z-index: 9999;
  background-color: #d7f0db;
  position: absolute;
  width: 100%;
}
#header.sticky {
  position: fixed;
  top: 0;
  z-index: 1020;
  width: 100%;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}
#header nav.navbar-light .navbar-toggler {
  color: #d7f0db;
  z-index: 2000;
  background: linear-gradient(to right, #37b24d, #1ea99d);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 5px;
}
#header nav.navbar-light .navbar-toggler span {
  height: 2px;
  width: 22px;
  border-radius: 3px;
  background-color: #d7f0db;
  display: block;
  transition: all 0.3s ease-in-out;
}
#header nav.navbar-light .navbar-toggler.opened span {
  position: absolute;
}
#header nav.navbar-light .navbar-toggler.opened span:first-child {
  transform: rotate(45deg);
}
#header nav.navbar-light .navbar-toggler.opened span:nth-child(2) {
  opacity: 0;
}
#header nav.navbar-light .navbar-toggler.opened span:last-child {
  transform: rotate(-45deg);
}
#header nav ul:not(.dropdown-menu) {
  gap: 30px;
  align-items: center;
}
#header nav ul:not(.dropdown-menu) > li > a {
  padding: 0;
  position: relative;
  color: #333;
  font-weight: 500;
  font-size: 18px;
  color: #333;
  transition: all 0.5s ease-in;
}
#header nav ul:not(.dropdown-menu) > li > a::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  height: 5px;
  width: 0;
  background-color: #37b24d;
  transition: all 0.5s ease-in-out;
}
#header nav ul:not(.dropdown-menu) > li > a.active, #header nav ul:not(.dropdown-menu) > li > a:hover {
  color: #37b24d;
}
#header nav ul:not(.dropdown-menu) > li > a.active::before, #header nav ul:not(.dropdown-menu) > li > a:hover::before {
  width: 100%;
}
#header nav ul:not(.dropdown-menu) > li > a.btn {
  padding: 8px 20px;
  border-radius: 9px;
  color: #fff;
  transition: all 0.2s ease;
}
#header nav ul:not(.dropdown-menu) > li > a.btn::before {
  display: none;
}
#header nav .offcanvas {
  backdrop-filter: blur(5px);
  background-color: rgba(215, 240, 219, 0.8196078431);
  transition: transform 1s ease-in-out;
}
#header nav .offcanvas.offcanvas-end {
  width: 100%;
}
#header nav .offcanvas .offcanvas-header {
  position: relative;
  padding: 2rem 1rem 1rem;
}
#header nav .offcanvas .offcanvas-header .logo-link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header nav .offcanvas .offcanvas-header .logo-link img {
  width: 30%;
}
#header nav .offcanvas .offcanvas-header .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #32a045;
}
#header nav .offcanvas .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}
#header nav .offcanvas .offcanvas-body ul {
  gap: 0px;
}
#header nav .offcanvas .offcanvas-body ul li a svg {
  stroke: #37b24d;
  width: 30px;
  height: 30px;
  stroke-width: 1.2;
}
#header nav .offcanvas .offcanvas-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 2rem;
}
#header nav .offcanvas .offcanvas-footer p {
  font-size: 14px;
  color: #333;
  margin: 0;
}
#header nav .offcanvas .offcanvas-footer p a {
  color: #32a045;
  text-decoration: none;
}
#header nav .offcanvas .offcanvas-footer p a:hover {
  text-decoration: underline;
}

.offcanvas.show {
  visibility: visible !important;
}

main .section-health {
  padding: 50px 0 100px 0;
}
main .section-health p {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 40px;
}
main .section-health .health-img-box {
  position: relative;
  max-height: 385px;
}
main .section-health .health-img-box .health-img {
  position: absolute;
  border-radius: 9px;
  transition: transform 0.8s ease, z-index 0.5s ease-in-out;
  width: 380px;
}
main .section-health .health-img-box .health-img.health-img--1 {
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
main .section-health .health-img-box .health-img.health-img--1:hover {
  transform: translateX(-50%) scale(1.1);
  z-index: 4;
}
main .section-health .health-img-box .health-img.health-img--2 {
  z-index: 3;
  bottom: 0;
  left: 0;
  height: 216.13px;
  width: auto;
}
main .section-health .health-img-box .health-img.health-img--2:hover {
  transform: scale(1.1);
  z-index: 4;
}
main .section-health .health-img-box .health-img.health-img--3 {
  z-index: 2;
  bottom: 30px;
  right: 0;
}
main .section-health .health-img-box .health-img.health-img--3:hover {
  transform: scale(1.1);
  z-index: 4;
}
main .section-health .header-swiper .swiper-slide {
  height: auto;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
main .section-health .header-swiper .swiper-slide-next {
  transform: scale(1.1);
  z-index: 2;
}
main .section-health .header-swiper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .section-featured {
  padding: 50px 0 30px 0;
}
main .section-featured h1 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  color: #999;
}
main .section-featured .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
@media (max-width: 991.98px) {
  main .section-featured .swiper-slide {
    height: 30px;
  }
}
main .section-featured .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
main .section-featured .swiper-slide a img {
  max-height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0);
  opacity: 50%;
  transition: all 0.3s ease-in-out;
}
main .section-featured .swiper-slide a img:hover {
  filter: brightness(1);
  opacity: 100%;
}
main .section-about {
  padding: 50px 0;
}
main .section-about h1 {
  font-size: 35px;
  line-height: 1.05;
  margin-bottom: 32px;
  color: #333;
  font-weight: bold;
}
main .section-about p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 14px;
}
main .section-about p.heading-four {
  font-size: 24px;
}
main .section-about img {
  width: 100%;
  border-radius: 9px;
  transition: transform 0.5s ease;
}
main .section-about img:hover {
  transform: scale(1.06);
}
main .section-about .icon-wrapping {
  background-color: #d7f0db;
  padding: 60px 15px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 40% 15%;
  transform: rotate(-15deg);
  margin-top: 10px;
}
main .section-about .icon-wrapping .icons-about {
  transform: rotate(15deg);
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
main .section-about .icon-wrapping .icons-about svg {
  color: #37b24d;
  font-size: 30px;
  height: 30px;
  width: 30px;
}
main .section-about .icon-wrapping .icons-about figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.3px;
}
main .section-about .icon-wrapping .icons-about figcaption .phase--1 {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
}
main .section-about .icon-wrapping .icons-about figcaption .phase--2 {
  font-size: 13px;
  color: #37b24d;
  font-weight: bold;
  display: inline-block;
}
main .services-section {
  padding-top: 50px;
}
main .services-section p,
main .services-section h1 {
  text-align: center;
}
main .services-section h1 {
  font-size: 35px;
  line-height: 1.05;
  margin-bottom: 32px;
  color: #333;
  font-weight: bold;
}
main .services-section .flip {
  perspective: 800px;
  position: relative;
  text-align: center;
  border-radius: 9px;
  margin-bottom: 30px;
  transform-style: preserve-3d;
}
@-moz-document url-prefix() {
  main .services-section .flip {
    overflow: visible;
    backface-visibility: hidden;
  }
}
@media (min-width: 1024px) {
  main .services-section .flip:hover .card:not(.flipped) {
    transform: rotatey(-180deg);
  }
}
main .services-section .flip .card {
  min-height: 310px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  background-color: transparent;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  position: relative;
}
@-moz-document url-prefix() {
  main .services-section .flip .card {
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
  }
}
main .services-section .flip .card.flipped {
  transform: rotatey(-180deg);
}
main .services-section .flip .card .card-body {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 9px;
  border: 1px solid #37b24d;
  transform-style: preserve-3d;
  background-color: white;
}
@-moz-document url-prefix() {
  main .services-section .flip .card .card-body {
    will-change: transform;
  }
}
@media (min-width: 1024px) {
  main .services-section .flip .card .card-body .learn-more-btn {
    display: none;
  }
}
main .services-section .flip .card .card-body.front {
  z-index: 2;
  transform: rotateY(0deg);
}
@-moz-document url-prefix() {
  main .services-section .flip .card .card-body.front {
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
main .services-section .flip .card .card-body.front .learn-more-btn {
  bottom: -25px;
  position: absolute;
  padding: 6.5px 20px;
  left: 0;
  right: 0;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  background-color: #37b24d;
  color: #fff;
  transition: 0.5s all;
}
main .services-section .flip .card .card-body.front .service-box-info {
  padding-bottom: 0;
}
main .services-section .flip .card .card-body.back {
  transform: rotatey(180deg);
  z-index: 1;
}
@-moz-document url-prefix() {
  main .services-section .flip .card .card-body.back {
    opacity: 1;
    visibility: visible;
  }
}
main .services-section .flip .card .card-body.back .learn-more-btn {
  display: none;
}
main .services-section .flip .card .card-body.back .btn-arrow {
  opacity: 0;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #37b24d;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin: 10px auto 0;
  padding: 0;
  transition: all 0.6s ease;
}
main .services-section .flip .card .card-body.back .service-box-info {
  height: auto;
  background-color: #d3f9d8;
  border-bottom: 0;
  margin-bottom: 10px;
  border-radius: 0;
  flex-direction: row;
  gap: 4px;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  border-radius: 9px 9px 50px 50px;
}
main .services-section .flip .card .card-body.back .service-box-info h4 {
  font-size: 18px;
  margin: 0;
  color: #333;
}
main .services-section .flip .card .card-body.back .service-box-info svg {
  color: #37b24d;
  padding: 0;
  border-radius: 0%;
  width: 36px;
  height: 36px;
  margin: 0;
  border: 0;
  background-color: #d3f9d8;
}
main .services-section .flip .card .card-body.back .service-box-info .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 16px;
  text-transform: uppercase;
  border-top: 0;
  background-color: #d3f9d8;
}
main .services-section .flip .card .card-body.back .service-box-info .rating svg {
  padding: 0;
  height: 20px;
  width: 20px;
  color: #ffd43b;
  border: none;
  background-color: transparent;
  margin: 0;
}
main .services-section .flip .card .card-body .service-box-info {
  height: 100%;
  border-radius: 9px;
  background-color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 20px 0;
}
main .services-section .flip .card .card-body .service-box-info h4 {
  font-weight: bold;
  margin: 0;
  color: #37b24d;
  font-size: 20px;
  text-transform: uppercase;
}
main .services-section .flip .card .card-body .service-box-info svg {
  color: #37b24d;
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border: 2px solid #37b24d;
  background-color: #d3f9d8;
}
main .services-section .flip .card .card-body .service-box-info .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  font-size: 20px;
  text-transform: uppercase;
  border-top: 1px solid #37b24d;
  background-color: #d3f9d8;
}
main .services-section .flip .card .card-body .service-box-info .rating svg {
  padding: 0;
  height: 24px;
  width: 24px;
  color: #ffd43b;
  border: none;
  background-color: transparent;
  margin: 0;
}
main .services-section .flip .card .card-body .service-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
main .services-section .flip .card .card-body .service-list div {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #ccc;
  transition: all 0.3s ease;
}
main .services-section .flip .card .card-body .service-list div:last-child {
  border-bottom: none;
}
main .services-section .flip .card .card-body .service-list div:hover, main .services-section .flip .card .card-body .service-list div:active, main .services-section .flip .card .card-body .service-list div:focus, main .services-section .flip .card .card-body .service-list div:focus-visible {
  background-color: #37b24d;
  color: #fff;
}
main .services-section .flip .card .card-body .service-list div span {
  font-size: 16px;
}
main .services-section .flip .card:hover .card-body.back .btn-arrow {
  bottom: 10px;
  opacity: 1;
}
main .appointment-form-section {
  padding: 90px 0;
}
main .appointment-form-section .options {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  right: 0;
  background-color: #37b24d;
  border-radius: 4px;
  display: none;
  font-size: 16px;
  z-index: 5;
  padding: 5px 0;
  border-radius: 4px;
  display: block;
  opacity: 0;
  max-height: 0px;
  visibility: hidden;
  transition: all 1s ease-in-out;
}
main .appointment-form-section .options.show-drop {
  opacity: 1;
  visibility: visible;
  max-height: 140px;
}
main .appointment-form-section .options.hide-drop {
  opacity: 0;
  visibility: hidden;
}
main .appointment-form-section .option {
  padding: 10px;
  cursor: pointer;
  color: white;
  font-size: 16px;
}
main .appointment-form-section .btn-outline {
  width: 215px;
  justify-content: flex-start;
}
main .appointment-form-section .btn-outline svg {
  transition: 0.5s all;
}
main .appointment-form-section .btn-outline:hover {
  transition: 0.5s all;
}
main .appointment-form-section .btn-outline:hover svg {
  margin-left: 10px;
  transition: 0.5s all;
}
main .appointment-form-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}
main .appointment-form-section .custom-form {
  background-color: #f1f3f5;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: solid 1px rgb(224, 224, 224);
}
main .appointment-form-section .custom-form .form-title {
  text-align: center;
  font-size: 30px;
  color: #333;
  margin-bottom: 20px;
}
main .appointment-form-section .custom-form .form-control,
main .appointment-form-section .custom-form .form-select {
  padding: 20px;
  margin: 0 auto;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  color: #37b24d;
  transition: 0.5s all;
}
main .appointment-form-section .custom-form .form-control:hover, main .appointment-form-section .custom-form .form-control:focus, main .appointment-form-section .custom-form .form-control:active, main .appointment-form-section .custom-form .form-control:focus-visible,
main .appointment-form-section .custom-form .form-select:hover,
main .appointment-form-section .custom-form .form-select:focus,
main .appointment-form-section .custom-form .form-select:active,
main .appointment-form-section .custom-form .form-select:focus-visible {
  box-shadow: 0 0 6px #37b24d;
  outline: none;
  transition: 0.5s all;
}
main .appointment-form-section .custom-form .btn-submit,
main .appointment-form-section .custom-form input[type=submit] {
  margin-top: 20px;
  background-color: #37b24d;
  color: #fff;
  border: none;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
main .appointment-form-section .custom-form .btn-submit:hover,
main .appointment-form-section .custom-form input[type=submit]:hover {
  background-color: #32a045;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 6px #37b24d;
}
main .section-pricing {
  padding: 50px 0;
  position: relative;
}
main .section-pricing .checklist {
  text-align: start;
}
main .section-pricing .container {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
main .section-pricing .container:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(14%);
  width: calc(100% - var(--bs-gutter-x, 0.75rem) * 2);
  background-color: #d7f0db;
  height: 25%;
  border-radius: 0 0 100% 100%;
}
main .section-pricing .container .swiper-slide {
  height: auto;
}
main .section-pricing p,
main .section-pricing h1 {
  text-align: center;
}
main .section-pricing h1 {
  font-size: 35px;
  line-height: 1.05;
  margin-bottom: 32px;
  color: #333;
  font-weight: bold;
}
main .section-pricing .checklist {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
main .section-pricing .checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #10251a;
  font-size: 16px;
}
main .section-pricing .checklist svg {
  flex: 0 0 22px;
}
main .section-pricing .price-card {
  background: #ffffff;
  border-radius: 24px;
  margin: 0px 50px;
  padding: 34px 26px 30px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 360px;
  margin: auto;
  height: auto;
}
main .section-pricing .swiper-container {
  padding: 0px 36px;
}
main .section-pricing .price-icon {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: #e8f7ee;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
main .section-pricing .price-title {
  font-size: 2rem;
  line-height: 1.1;
  margin: 2px 0 8px;
  font-weight: 600;
  color: #0b1b13;
}
main .section-pricing .price {
  font-size: 64px;
  line-height: 1;
  font-weight: 600;
  color: #0b3d23;
  margin: 6px 0 8px;
}
main .section-pricing .per {
  color: #274b38;
  font-weight: 700;
  margin-bottom: 18px;
}
main .section-pricing .cta {
  margin-top: 22px;
}
main .section-pricing .price-card .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 15px 26px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  background: #37b24d;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: min(260px, 100%);
}
main .section-pricing .price-card .button:hover {
  transform: translateY(-1px);
  background: #2f9e44;
}
main .section-pricing .icon-lg {
  width: 56px;
  height: 56px;
  color: #37b24d;
}
main .section-pricing .icon-normal {
  width: 40px;
  height: 40px;
  color: #37b24d;
}
main .section-pricing .doctor__contact a {
  text-decoration: none;
}
main .doctor-section {
  padding: 50px 0;
}
main .doctor-section p,
main .doctor-section h1 {
  text-align: center;
}
main .doctor-section h1 {
  font-size: 35px;
  line-height: 1.05;
  margin-bottom: 32px;
  color: #333;
  font-weight: bold;
}
main .doctor-section .card {
  background-color: #f1f3f5;
  border-radius: 9px;
}
main .doctor-section .card .card-body {
  padding: 0;
}
main .doctor-section .card .card-body img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 9px 0 0 9px;
}
main .doctor-section .card .card-body .doctorInfo {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
main .doctor-section .card .card-body .doctorInfo h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}
main .doctor-section .card .card-body .doctorInfo p {
  font-size: 16px;
  font-style: italic;
  text-align: left;
  color: #333;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
main .doctor-section .card .card-body .doctorInfo p.desigination {
  color: #37b24d;
}
main .doctor-section .card .card-body .doctorInfo .doctor-details {
  padding: 20px 40px 0;
}
main .doctor-section .card .card-body .doctorInfo .doctor-contact {
  border: none;
  border-top: 1px solid #dee2e6;
  padding: 20px 40px;
}
main .doctor-section .card .card-body .doctorInfo .doctor-contact a {
  text-decoration: none;
}
main .doctor-section .card .card-body .doctorInfo .doctor-contact a svg {
  width: 50px;
  height: 50px;
  color: #32a045;
  stroke-width: 0.8;
}
main .find-a-doc-section {
  padding: 50px 0;
}
main .find-a-doc-section h1,
main .find-a-doc-section p {
  text-align: center;
}
main .find-a-doc-section p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 14px;
}
main .find-a-doc-section p.heading-four {
  font-size: 24px;
}
main .find-a-doc-section h1 {
  font-size: 35px;
  line-height: 1.05;
  margin-bottom: 32px;
  color: #333;
  font-weight: bold;
}
main .find-a-doc-section .findDocform {
  margin-top: 30px;
  border-radius: 9px;
}
main .find-a-doc-section .findDocform .options {
  top: 0px !important;
  margin-top: 0px !important;
}
main .find-a-doc-section .findDocform .options {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  right: 0;
  background-color: #37b24d;
  border-radius: 4px;
  display: none;
  font-size: 16px;
  z-index: 5;
  padding: 5px 0;
  border-radius: 4px;
  display: block;
  opacity: 0;
  max-height: 0px;
  visibility: hidden;
  transition: all 1s ease-in-out;
}
main .find-a-doc-section .findDocform .options.show-drop {
  opacity: 1;
  visibility: visible;
  max-height: 140px;
}
main .find-a-doc-section .findDocform .options.hide-drop {
  opacity: 0;
  visibility: hidden;
}
main .find-a-doc-section .findDocform .form-control,
main .find-a-doc-section .findDocform .form-select {
  border-radius: 9px;
  padding: 20px;
  margin: 0 auto;
  border: none;
  font-size: 16px;
  color: #37b24d;
  transition: 0.5s all;
}
main .find-a-doc-section .findDocform .form-control:hover, main .find-a-doc-section .findDocform .form-control:focus, main .find-a-doc-section .findDocform .form-control:active, main .find-a-doc-section .findDocform .form-control:focus-visible,
main .find-a-doc-section .findDocform .form-select:hover,
main .find-a-doc-section .findDocform .form-select:focus,
main .find-a-doc-section .findDocform .form-select:active,
main .find-a-doc-section .findDocform .form-select:focus-visible {
  box-shadow: 0 0 6px #37b24d;
  outline: none;
  transition: 0.5s all;
}
main .find-a-doc-section .findDocform .btn-submit,
main .find-a-doc-section .findDocform input[type=submit] {
  color: #fff;
  border: none;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
main .find-a-doc-section .findDocform .btn-submit:hover,
main .find-a-doc-section .findDocform input[type=submit]:hover {
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 6px #37b24d;
}
main .section-testimonial {
  padding: 50px 0;
}
main .section-testimonial h1,
main .section-testimonial p {
  text-align: center;
}
main .section-testimonial p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 14px;
}
main .section-testimonial p.heading-four {
  font-size: 24px;
}
main .section-testimonial h1 {
  font-size: 35px;
  line-height: 1.05;
  margin-bottom: 32px;
  color: #333;
  font-weight: bold;
}
main .section-testimonial .card {
  background-color: transparent;
  border: 0;
}
main .section-testimonial .card .card-body {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 70%;
}
main .section-testimonial .card .card-body .circle-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #ccc;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  position: relative;
}
main .section-testimonial .card .card-body .circle-container:hover {
  border-color: #37b24d;
}
main .section-testimonial .card .card-body .circle-container:hover svg {
  background-color: #37b24d;
  color: #fff;
}
main .section-testimonial .card .card-body .circle-container svg {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 64px;
  width: 64px;
  background-color: #f1f3f5;
  color: #37b24d;
  padding: 10px;
  border: none;
  border-radius: 50%;
  left: 0;
  margin: 0 auto;
  transform: translate(0, 50%) rotate(180deg);
}
main .section-testimonial .card .card-body .circle-container .img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
main .section-testimonial .card .card-body .circle-container .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .section-testimonial .card .card-body h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  padding-top: 15px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  border-top: 1px solid #f1f3f5;
}
main .section-testimonial .card .card-body .patient-profession {
  font-style: italic;
  color: #37b24d;
  margin-bottom: 0;
}
main .section-testimonial .swiper-pagination {
  margin-top: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .section-testimonial .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 20px;
  height: 20px;
  background-color: #f1f3f5;
  border: 1px solid #37b24d;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
main .section-testimonial .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #37b24d;
  width: 40px;
  height: 40px;
}
main .blog-section {
  padding: 50px 0;
}
main .blog-section h1,
main .blog-section p {
  text-align: center;
}
main .blog-section p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 14px;
}
main .blog-section p.heading-four {
  font-size: 24px;
}
main .blog-section h1 {
  font-size: 35px;
  line-height: 1.05;
  margin-bottom: 32px;
  color: #333;
  font-weight: bold;
}
main .blog-section .card {
  background-color: #fff;
  border-radius: 9px;
}
main .blog-section .card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main .blog-section .card .card-body h4 {
  font-size: 24px;
  text-align: left;
  color: #333;
  font-weight: bold;
}
main .blog-section .card .card-body p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  color: #666;
  text-align: left;
}
main .blog-section .card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-top: 1px solid #ccc;
  background-color: #fff;
  border-radius: 0 0 9px 9px;
}
main .blog-section .card .card-footer .post-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
main .blog-section .card .card-footer .post-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #ddd;
}
main .blog-section .card .card-footer .post-author h6 {
  font-size: 14px;
  margin: 0;
  color: #555;
}
main .blog-section .card .card-footer .post-info {
  display: flex;
  gap: 20px;
}
main .blog-section .card .card-footer .post-info .stats {
  font-size: 12px;
}
main .blog-section .card .card-footer .post-info .stats svg {
  color: #37b24d;
  stroke-width: 1.2;
}
main .blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-content: center;
}
main .blog-section .blog-actions {
  margin-top: 24px;
  text-align: center;
  width: 100%;
}
main .blog-section .blog-card {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  overflow: hidden;
  will-change: opacity, transform;
  transition: max-height 0.8s ease-out, opacity 0.8s ease-out, transform 0.8s ease-out;
}
main .blog-section .blog-card .card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  transform: translateY(0);
  transition: transform 0.18s ease-out;
}
main .blog-section .blog-card:hover .card, main .blog-section .blog-card:focus-within .card {
  transform: translateY(-6px);
}
main .blog-section .blog-card .blog-card-image {
  position: relative;
  overflow: hidden;
}
main .blog-section .blog-card .blog-card-image img {
  transform: scale(1);
  transition: transform 0.25s ease-out;
}
main .blog-section .blog-card:hover .blog-card-image img, main .blog-section .blog-card:focus-within .blog-card-image img {
  transform: scale(1.05);
}
main .blog-section .blog-card.blog-card--hidden {
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}
main .blog-section .blog-card .blog-card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
main .blog-section .blog-card .blog-card-image {
  width: 100%;
}
main .blog-section .blog-card .blog-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
main .blog-section .blog-card .card-img-top {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
  display: block;
}
main .blog-section .blog-card .card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
main .blog-section .blog-card .blog-pill,
main .blog-section .blog-card .blog-meta,
main .blog-section .blog-card .blog-read-more {
  display: inline-flex !important;
}
main .blog-section .blog-card .blog-pill {
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #0e3a22;
  background: #e5f5eb;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
main .blog-section .blog-card .blog-pill::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #37b24d;
  border-radius: 50%;
}
main .blog-section .blog-card .blogpost--title {
  font-size: 1.25rem;
  margin: 8px 0;
  font-weight: 700;
  color: #0b1b13;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
main .blog-section .blog-card .blog-meta {
  color: #070c08;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0 10px;
}
main .blog-section .blog-card .blog-excerpt {
  color: #080d09;
  line-height: 1.6;
  margin: 0 0 16px;
  font-size: 1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
main .blog-section .blog-card .blog-read-more {
  align-items: center;
  font-weight: 600;
  color: #38ac5d;
  text-decoration: none;
  gap: 6px;
  margin-top: 15px;
}
main .blog-section .blog-card .blog-read-more svg {
  transition: transform 0.15s ease;
  color: #38ac5d;
}
main .blog-section .blog-card .blog-read-more:hover svg {
  transform: translateX(3px);
}
main .blog-section .blog-card .card-footer {
  display: none !important;
}
main .blog-section .blog-image-loading {
  position: relative;
}
main .blog-section .blog-image-loading img {
  opacity: 0;
}
main .blog-section .blog-image-loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 2px solid #e0e0e0;
  border-top-color: #37b24d;
  border-radius: 50%;
  animation: blog-image-spin 0.6s linear infinite;
}
@keyframes blog-image-spin {
  to {
    transform: rotate(360deg);
  }
}

#footer .footer-section {
  padding: 50px 0;
}
#footer .footer-section p {
  margin: 10px 0;
  font-size: 16px;
  text-align: left;
  line-height: 1.5;
}
#footer .footer-section #newsletterform {
  border-radius: 9px;
  margin-bottom: 30px;
}
#footer .footer-section #newsletterform .form-control,
#footer .footer-section #newsletterform .form-select {
  border-radius: 9px 0 0 9px;
  padding: 16px 10px;
  margin: 0 auto;
  border: none;
  font-size: 16px;
  color: #37b24d;
  transition: 0.5s all;
}
#footer .footer-section #newsletterform .form-control:hover, #footer .footer-section #newsletterform .form-control:focus, #footer .footer-section #newsletterform .form-control:active, #footer .footer-section #newsletterform .form-control:focus-visible,
#footer .footer-section #newsletterform .form-select:hover,
#footer .footer-section #newsletterform .form-select:focus,
#footer .footer-section #newsletterform .form-select:active,
#footer .footer-section #newsletterform .form-select:focus-visible {
  box-shadow: 0 0 6px #37b24d;
  outline: none;
  transition: 0.5s all;
}
#footer .footer-section #newsletterform .btn-submit,
#footer .footer-section #newsletterform input[type=submit] {
  background-color: #37b24d;
  color: #fff;
  border: none;
  padding: 16px 10px;
  margin: 0 auto;
  border: none;
  font-size: 16px;
  border-radius: 0 9px 9px 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#footer .footer-section #newsletterform .btn-submit:hover,
#footer .footer-section #newsletterform input[type=submit]:hover {
  background-color: #32a045;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 6px #37b24d;
}
#footer .footer-section ul {
  gap: 10px;
}
#footer .footer-section ul li a {
  color: #555;
  text-decoration: none;
  display: flex;
  gap: 5px;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  transition: 0.5s all;
  padding: 0;
}
#footer .footer-section ul li a:hover {
  color: #37b24d;
  font-weight: 600;
}
#footer .footer-section ul li a svg {
  stroke: #37b24d;
  width: 30px;
  height: 30px;
  stroke-width: 2;
}
#footer .site-footer {
  background: linear-gradient(to right, #37b24d, #1a3d5c);
  padding: 20px 10px;
}
#footer .site-footer p {
  font-size: 14px;
  color: #fff;
  margin: 0;
}
#footer .site-footer p a {
  color: #fff;
  text-decoration: none;
}
#footer .site-footer p a:hover {
  text-decoration: underline;
}

#up-arrow {
  position: fixed;
  bottom: 90px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: #37b24d;
  border: 1px solid #37b24d;
  color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;
  z-index: 1000;
}
#up-arrow:hover, #up-arrow:active, #up-arrow:focus, #up-arrow:focus-visible {
  background-color: #fff;
  border-color: #32a045;
  color: #32a045;
  box-shadow: 0 0 6px #37b24d;
  transition: 0.3s all;
}
#up-arrow svg {
  width: 24px;
  height: 24px;
}
#up-arrow.show {
  opacity: 1;
  visibility: visible !important;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.fade-in {
  opacity: 0;
  display: block;
  animation: fadeInAnim 0.5s ease-in forwards;
}

@keyframes fadeInAnim {
  to {
    opacity: 1;
  }
}
@media (max-width: 1399.98px) {
  .heading-primary {
    font-size: 45px;
  }
  main .section-health .health-img-box .health-img {
    width: 300px;
  }
  main .section-health .health-img-box .health-img.health-img--2 {
    height: 185.25px;
  }
  main .section-health {
    padding-top: 150px !important;
  }
}
@media (max-width: 1199.98px) {
  .check-text {
    justify-content: center;
    font-size: 14px;
  }
  .health-img-box {
    max-height: 250px !important;
    margin-top: 50px;
  }
  #header nav .navbar-brand {
    width: 30%;
  }
  #header nav .navbar-brand img {
    width: 100%;
  }
  #header nav ul:not(.dropdown-menu) {
    gap: 15px;
  }
  #header nav ul:not(.dropdown-menu) > li > a {
    font-size: 16px;
  }
  .heading-primary {
    font-size: 35px;
  }
  main .section-health p {
    font-size: 18px;
  }
  .btn {
    font-size: 16px;
    padding: 10px 25px;
  }
  main .section-about p.heading-four,
  .heading-four,
  main .find-a-doc-section p.heading-four,
  main .section-testimonial p.heading-four,
  main .blog-section p.heading-four,
  main .blog-section .card .card-body h4 {
    font-size: 20px;
  }
  main .section-about h1,
  main .services-section h1,
  main .section-pricing h1,
  main .doctor-section h1,
  main .find-a-doc-section h1,
  main .section-testimonial h1,
  main .blog-section h1 {
    font-size: 25px;
  }
  main .section-about p,
  main .find-a-doc-section p,
  main .section-testimonial p {
    font-size: 16px;
  }
  main .appointment-form-section .custom-form {
    padding: 10px;
  }
  main .appointment-form-section .custom-form .form-title {
    margin-bottom: 0;
  }
  main .doctor-section .card .card-body .doctorInfo .doctor-details {
    padding: 15px 15px 0;
  }
  main .doctor-section .card .card-body .doctorInfo .doctor-contact {
    padding: 15px;
  }
  main .doctor-section .card .card-body .doctorInfo h4 {
    font-size: 20px;
  }
  main .doctor-section .card .card-body .doctorInfo p {
    font-size: 14px;
  }
  main .doctor-section .card .card-body .doctorInfo .doctor-contact a svg {
    width: 35px;
    height: 35px;
  }
  main .section-testimonial .card .card-body {
    width: 90%;
  }
  main .blog-section .card .card-body p {
    font-size: 13px;
  }
  main .blog-section .card .card-footer .post-author img {
    width: 40px;
    height: 40px;
  }
  #footer .footer-section p {
    font-size: 14px;
  }
  #footer .footer-section ul li a {
    font-size: 14px;
  }
  #footer .footer-section #newsletterform .btn-submit,
  #footer .footer-section #newsletterform input[type=submit] {
    padding: 10px 5px;
    font-size: 14px;
  }
  #footer .footer-section #newsletterform .form-control,
  #footer .footer-section #newsletterform .form-select {
    padding: 10px 5px;
    font-size: 14px;
  }
  main .section-health .health-img-box .health-img {
    width: 240px;
  }
  main .section-health .health-img-box .health-img.health-img--2 {
    height: 148.2px;
  }
  main .appointment-form-section .btn-outline {
    width: -moz-max-content;
    width: max-content;
  }
}
@media (max-width: 1023.98px) {
  .offcanvas-body ul li {
    margin-bottom: 10px;
  }
  #header nav ul:not(.dropdown-menu) {
    align-items: stretch;
    gap: 5px;
  }
  #header nav ul:not(.dropdown-menu) > li > a {
    padding: 8px 16px;
    border-radius: 9px;
    display: flex;
    justify-content: center;
  }
  #header nav ul:not(.dropdown-menu) > li > a.active,
  #header nav ul:not(.dropdown-menu) > li > a:hover {
    color: #fff;
    background: linear-gradient(to right, #37b24d, #1ea99d);
  }
  .offcanvas-body ul li {
    margin-bottom: 16px;
  }
  #header nav ul:not(.dropdown-menu) > li > a {
    font-size: 18px;
  }
  #header nav ul:not(.dropdown-menu) > li > a::before {
    display: none;
  }
  #header nav ul:not(.dropdown-menu) > li > a.btn {
    width: 100%;
  }
  .cta-group {
    justify-content: center;
  }
  .overline-container {
    justify-content: center;
  }
  .overline-container .overline-text {
    font-size: 14px;
  }
  .heading-primary,
  .health-description {
    text-align: center;
  }
  .cta-group .btn:not(.noTransition).btn-outline svg,
  .cta-group .btn:not(.noTransition).btn-outline.no-effect svg {
    transform: rotate(90deg) !important;
    margin: 0;
  }
  main .services-section .flip .card .card-body.back .btn-arrow {
    display: none;
  }
  main .appointment-form-section .btn-outline {
    width: -moz-max-content;
    width: max-content;
  }
  main .services-section .flip .card {
    min-height: 270px;
  }
  main .section-health .health-img-box {
    min-height: 200px;
    margin-top: 40px;
  }
  main .section-health .health-img-box .health-img.health-img--1 {
    top: 0;
    left: 50%;
    bottom: auto;
    transform: translateX(-50%);
  }
  main .section-health .health-img-box .health-img.health-img--1:hover {
    transform: translateX(-50%) scale(1.1);
    z-index: 4;
  }
  main .section-health .health-img-box .health-img.health-img--2 {
    bottom: 0;
    left: 0;
    top: auto;
    transform: translateX(0);
  }
  main .section-health .health-img-box .health-img.health-img--2:hover {
    transform: scale(1.1);
    z-index: 4;
  }
  main .section-health .health-img-box .health-img {
    width: 350px;
  }
  main .section-health .health-img-box .health-img.health-img--1 {
    height: 216.13px;
    width: auto;
    z-index: 3;
  }
  main .section-health .health-img-box .health-img.health-img--2 {
    z-index: 2;
    width: auto;
    height: 216.13px;
  }
  main .section-health .health-img-box .health-img.health-img--3 {
    z-index: 1;
    bottom: 0px;
  }
}
@media (max-width: 991.98px) {
  main .blog-section .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  main .section-about h1,
  main .services-section h1,
  main .section-pricing h1,
  main .doctor-section h1,
  main .find-a-doc-section h1,
  main .section-testimonial h1,
  main .blog-section h1 {
    font-size: 20px;
  }
  main .section-about h1,
  .heading-primary,
  .health-description {
    margin-bottom: 10px;
  }
  main .section-about p,
  main .find-a-doc-section p {
    font-size: 14px;
  }
  .heading-primary {
    font-size: 38px;
  }
  main .section-health p {
    font-size: 16px;
  }
  .btn {
    font-size: 16px;
    padding: 10px 20px;
  }
  main .section-about p.heading-four,
  .heading-four,
  main .find-a-doc-section p.heading-four,
  main .section-testimonial p.heading-four,
  main .blog-section p.heading-four,
  main .blog-section .card .card-body h4 {
    font-size: 16px;
  }
  main .section-about,
  main .section-featured,
  main .section-pricing,
  main .doctor-section,
  main .find-a-doc-section,
  main .section-testimonial,
  main .blog-section,
  #footer .footer-section {
    padding: 25px 0;
  }
  main .services-section {
    padding-top: 25px;
  }
  main .appointment-form-section {
    padding: 45px 0;
  }
  main .section-testimonial .swiper-pagination {
    margin-top: 10px;
  }
  #footer .footer-section .heading-four {
    margin: 20px 0 15px;
  }
  .heading-four,
  main .find-a-doc-section p.heading-four,
  main .section-testimonial p.heading-four,
  main .blog-section p.heading-four {
    text-align: center;
  }
  #footer .footer-section .heading-four {
    text-align: left;
  }
  main .blog-section .card .card-body {
    padding-left: 0;
  }
  main .blog-section .card .card-footer {
    padding-left: 20px;
    margin-left: -20px;
  }
  main .blog-section .card .card-img-top {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 9px 0 0 9px;
  }
  main .blog-section .card .card-body p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  #header nav.navbar-light .navbar-toggler {
    width: 33px;
    height: 33px;
  }
  #header nav.navbar-light .navbar-toggler span {
    width: 18px;
  }
  main .blog-section .blog-card-image {
    padding-right: 0px;
  }
  main .blog-section .blog-card-content {
    padding-left: 20px;
  }
  main .section-health .health-img-box {
    min-height: 130px;
  }
  main .section-health .health-img-box .health-img {
    width: 250px;
  }
  main .section-health .health-img-box .health-img.health-img--1 {
    height: 154.38px;
  }
  main .section-health .health-img-box .health-img.health-img--2 {
    height: 154.38px;
  }
}
@media (max-width: 799.98px) {
  main .section-health p {
    margin-bottom: 20px;
  }
  .cta-group {
    margin-top: 20px;
  }
  main .section-health p {
    text-align: center;
  }
  main .section-health {
    padding: 100px 0 50px 0 !important;
  }
  #footer .footer-section .heading-four {
    text-align: left;
  }
  #footer .site-footer .row {
    gap: 20px;
  }
  #up-arrow {
    position: fixed;
    bottom: 120px;
    right: 40px;
    width: 50px;
    border-radius: 50%;
    height: 50px;
  }
}
@media (max-width: 799.98px) and (min-width: 425px) {
  main .doctor-section .card {
    width: 70%;
    margin: 0 auto;
  }
  main .doctor-section .card .card-body img {
    border-radius: 9px 9px 0 0;
    -o-object-position: top;
       object-position: top;
  }
}
@media (max-width: 767.98px) {
  #header nav .navbar-brand {
    width: 40%;
  }
  .offcanvas-body ul li {
    margin-bottom: 10px;
  }
  #header nav ul:not(.dropdown-menu) > li > a {
    font-size: 16px;
  }
  main .services-section .flip .card .card-body.back .learn-more-btn {
    bottom: -20px;
    position: absolute;
    padding: 5px 20px;
    left: 0;
    right: 0;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    background-color: #37b24d;
    color: #fff;
    border: 3px solid #37b24d;
    transition: 0.5s all;
  }
  main .section-about .card-body {
    padding: 10px 10px 10px 0;
  }
  main .section-about .card-img-top {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 9px 0 0 9px;
  }
  main .section-about p.general-text-size {
    margin: 0;
  }
  #desktopOnly {
    display: none;
  }
  .hideOnTablet {
    display: none;
  }
  main .appointment-form-section .cta-group {
    margin-bottom: 40px;
  }
  main .appointment-form-section p {
    margin-bottom: 20px;
  }
  main .appointment-form-section .custom-form {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
  }
  main .find-a-doc-section .findDocform .btn-submit,
  main .find-a-doc-section .findDocform input[type=submit] {
    margin-top: 20px;
  }
  main .find-a-doc-section {
    padding: 45px 0;
  }
  main .section-health p {
    margin-bottom: 20px;
  }
  .cta-group {
    margin-top: 20px;
  }
  main .section-health p {
    text-align: center;
  }
  .cta-group {
    justify-content: center;
  }
  main .section-about p.heading-four,
  main .section-about h1 {
    text-align: left;
  }
  .heading-four,
  main .find-a-doc-section p.heading-four,
  main .section-testimonial p.heading-four,
  main .blog-section p.heading-four {
    text-align: center;
  }
  main .blog-section .card .card-body {
    padding-left: 0;
  }
  main .blog-section .card .card-img-top {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 9px 0 0 9px;
  }
  main .blog-section .card .card-body p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  main .appointment-form-section p {
    text-align: center;
  }
  .heading-primary,
  .health-description {
    text-align: center;
  }
  main .appointment-form-section .btn-outline {
    width: -moz-max-content;
    width: max-content;
  }
  main .section-pricing .container:before {
    height: 25%;
  }
  #footer .site-footer .row {
    gap: 20px;
  }
  main .blog-section .card .card-body {
    gap: 10px;
  }
  main .blog-section .blog-card .card {
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 6px 18px rgba(0, 0, 0, 0.08);
    min-height: 200px;
  }
  main .blog-section .blog-card .blog-card-inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
  }
  main .blog-section .blog-card .blog-card-image {
    width: 50%;
    padding: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  main .blog-section .blog-card .blog-card-content {
    width: 50%;
    padding: 0;
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
  }
  main .blog-section .blog-card .card-img-top {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0;
    display: block;
  }
  main .blog-section .blog-card .card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    height: 100%;
  }
  main .blog-section .blog-card .card-footer {
    display: none !important;
  }
  main .blog-section .blog-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    color: #1e7128;
    background: #e5f5eb;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 10px;
  }
  main .blog-section .blog-pill::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #37b24d;
    border-radius: 50%;
  }
  main .blog-section .blog-card .card-body .blogpost--title {
    margin: 10px 0 8px;
  }
  main .blog-section .blog-meta {
    color: #070c08;
    font-weight: 500;
    font-size: 1.2rem;
    margin: 0 0 12px;
  }
  main .blog-section .blog-excerpt {
    color: #080d09;
    line-height: 1.6;
    margin: 0 0 16px;
    font-size: 1.3rem;
  }
  main .blog-section .blog-read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #38ac5d;
    text-decoration: none;
    gap: 6px;
    margin-top: auto;
  }
  main .blog-section .blog-read-more svg {
    transition: transform 0.15s ease;
    color: #38ac5d;
  }
  main .blog-section .blog-read-more:hover svg {
    transform: translateX(3px);
  }
  #footer .footer-section .heading-four {
    text-align: left;
  }
  main .doctor-section .card {
    width: 70%;
    margin: 0 auto;
  }
  main .doctor-section .card .card-body img {
    border-radius: 9px 9px 0 0;
    -o-object-position: top;
       object-position: top;
  }
  main .section-health {
    padding: 50px 0 50px 0;
  }
  .heading-primary {
    font-size: 38px;
  }
  main .services-section .flip .card {
    min-height: 270px;
  }
  main .section-health .health-img-box {
    min-height: 110px;
  }
  main .section-health .health-img-box .health-img {
    width: 200px;
  }
  main .section-health .health-img-box .health-img.health-img--1 {
    height: 123.5px;
  }
  main .section-health .health-img-box .health-img.health-img--2 {
    height: 123.5px;
  }
  main .section-pricing .container:before {
    height: 20%;
    transform: translateY(14px) translateX(-50%);
  }
  .arrow-btn {
    margin-top: 20px;
  }
}
@media (max-width: 576.98px) {
  .heading-primary {
    font-size: 28px;
  }
  main .section-about .card {
    border-radius: 9px;
  }
  main .section-about .card-img-top {
    border-radius: 9px 9px 0 0;
  }
  main .section-about .card-body {
    padding: 10px;
  }
  #footer .footer-section ul {
    justify-content: flex-start;
    align-items: flex-start;
  }
  main .find-a-doc-section .findDocform .btn-submit,
  main .find-a-doc-section .findDocform input[type=submit] {
    margin-top: 0px;
  }
  main .section-about p.heading-four,
  .heading-four,
  main .find-a-doc-section p.heading-four,
  main .section-testimonial p.heading-four,
  main .blog-section p.heading-four,
  main .blog-section .card .card-body h4 {
    font-size: 13px;
  }
  .cta-group {
    justify-content: center;
  }
  .featured-swiper .swiper-wrapper {
    gap: 25px !important;
  }
  main .services-section .flip .card .card-body .service-box-info .rating {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  main .appointment-form-section .custom-form {
    margin-top: 30px;
  }
  .findDocform > .row {
    gap: 5px !important;
  }
  .heading-four {
    text-underline-offset: 3px;
  }
  #header nav .navbar-brand {
    width: 206px;
  }
  #header nav.navbar-light .navbar-toggler {
    width: 40px;
    height: 40px;
  }
  #header nav.navbar-light .navbar-toggler span {
    width: 20px;
  }
  .btn {
    font-size: 13px;
    padding: 10px 18px;
  }
  main .services-section .flip .card .card-body.back .service-box-info h4 {
    font-size: 15px;
  }
  main .appointment-form-section .custom-form .form-title {
    font-size: 25px;
  }
  .section-pricing .px-5 {
    padding: 0 10px !important;
  }
  main .section-pricing .price-card {
    padding: 24px 20px 20px;
  }
  main .section-pricing .price-card .price-title {
    font-size: 1.5rem;
  }
  main .section-pricing .price-card .price {
    font-size: 48px;
  }
  main .section-pricing .price-card .checklist li {
    font-size: 14px;
  }
  main .section-about h1,
  main .services-section h1,
  main .section-pricing h1,
  main .doctor-section h1,
  main .find-a-doc-section h1,
  main .section-testimonial h1,
  main .blog-section h1 {
    font-size: 19px;
  }
  main .blog-section .card .card-footer {
    padding-right: 5px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .arrow-btn {
    margin-top: 20px !important;
  }
  .offcanvas-body h4.heading-four.mt-5 {
    margin-top: 20px !important;
  }
  #footer .site-footer p {
    font-size: 13px;
  }
  main .section-testimonial .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px;
    height: 30px;
  }
  #header nav ul:not(.dropdown-menu) > li > a::before {
    display: none;
  }
  main .services-section .flip .card {
    min-height: 250px;
  }
  main .services-section .flip .card .card-body.back .service-box-info {
    padding: 10px 20px;
  }
}
@media (max-width: 519.98px) {
  main .section-health .health-img-box {
    min-height: 90px;
  }
  main .section-health .health-img-box .health-img {
    width: 170px;
  }
  main .section-health .health-img-box .health-img.health-img--1 {
    height: 105px;
  }
  main .section-health .health-img-box .health-img.health-img--2 {
    height: 105px;
  }
}
@media (max-width: 450.98px) {
  #header nav .offcanvas .offcanvas-header {
    padding: 1rem;
  }
  #header nav .offcanvas .offcanvas-header .logo-link img {
    width: 50%;
  }
}
@media (max-width: 424.98px) {
  main .section-health .health-img-box {
    min-height: 70px;
  }
  main .section-health .health-img-box .health-img {
    width: 150px;
  }
  main .section-health .health-img-box .health-img.health-img--1 {
    height: 93px;
  }
  main .section-health .health-img-box .health-img.health-img--2 {
    height: 93px;
  }
  .section-pricing .arrow-btn,
  .doctor-section .arrow-btn {
    margin-top: 20px;
  }
  main .doctor-section .card {
    width: 85%;
  }
  main .section-pricing .container {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media (max-width: 374.98px) {
  #up-arrow {
    right: 10px;
    height: 50px;
  }
  main .section-health .health-img-box {
    min-height: 55px;
  }
  main .section-health .health-img-box .health-img {
    width: 130px;
  }
  main .section-health .health-img-box .health-img.health-img--1 {
    height: 80px;
  }
  main .section-health .health-img-box .health-img.health-img--2 {
    height: 80px;
  }
  main .doctor-section .card {
    width: 100%;
  }
}
@media (min-width: 1400px) {
  main .section-health {
    padding-top: 140px !important;
  }
}
@media (min-width: 767.98px) {
  .visibleOnTablet {
    display: none;
  }
  #tabOrMobOnly {
    display: none;
  }
  main .section-health .header-swiper {
    display: none;
  }
}
@media (min-width: 575.98px) {
  main .section-health .header-swiper {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */