@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");

:root {
  --white: #ffffffff;
  --main-transition: all 0.1s ease-in-out;
  /* --text-blue: #b2e723; */
  --text-blue: rgb(80, 94, 109);
  --sub-header-bg: #9dcd17;
  /* --sub-header-bg: #003366; */
}

@font-face {
  font-family: bamini;
  src: url(Bamini.ttf);
}

.bamindesc {
  font-family: "bamini" !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

/* ::selection {
  color: 0;
  background: 0;
} */

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.5rem;
  padding: 0;
  margin: 0;
}

h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 26px;
  font-style: normal;
  padding: 0;
  margin: 0;
}

.mini-p {
  color: #a6a6a6;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 26px;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
    line-height: 36px;
  }

  p {
    font-size: 0.9rem;
    line-height: 22px;
  }
}

a {
  text-decoration: none;
}

.text-green-2 {
  color: var(--sub-header-bg);
}
.text-blue {
  color: var(--text-blue);
}

.text-blue-2 {
  color: rgb(133, 156, 187);
}

.blue-bg {
  background-color: var(--sub-header-bg);
}

.light-blue {
  background-color: rgb(228, 242, 254);
}

/* -------------------------------------------------- header -------------------------------------------------- */

header {
  padding: 0;
  transition: padding 0.3s;
}

/* General navbar styles */
.navbar-nav .nav-item {
  margin-left: 10px;
}

.navbar-nav .nav-item a {
  font-size: 14px;
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 15px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-item a.active {
  /* color: rgb(20, 20, 184); */
  color: #9aca16;
  border-radius: 5px;
}

/* Hover effects */
.navbar-nav .nav-item a:hover {
  color: #5e7718;
  background-color: #f8f9fa;
  border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav .nav-item {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .navbar-nav .nav-item a {
    display: block;
  }
}

.sub-header {
  background-color: var(--sub-header-bg);
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  padding: 10px 0;
}

.sub-header .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
}

.sub-header .d-flex {
  display: flex;
}

.sub-header .align-items-center {
  display: flex;
  align-items: center;
}

.sub-header i {
  color: #ffffff; /* White */
  margin-right: 5px;
}

.sub-header a {
  font-size: 13px;
  color: #ffffff; /* White */
  text-decoration: none;
  margin-left: 20px;
}

.sub-header a:hover {
  color: rgb(133, 156, 187);
}

/* -------------------------------------------------- footer -------------------------------------------------- */

.bg-footer {
  background-color: #2d292d;
}

.footer-p {
  color: lightgray;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  font-weight: 300;
  line-height: 26px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.icons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3b5998;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.icons i {
  font-size: 20px;
}

.icons:hover {
  background-color: #2d4373;
  transform: scale(1.1);
}

.icons:nth-child(2) {
  background-color: #e4405f;
}

.icons:nth-child(2):hover {
  background-color: #c13584;
}

.icons:nth-child(3) {
  background-color: #55acee;
}

.icons:nth-child(3):hover {
  background-color: #2795e9;
}

.icons:nth-child(4) {
  background-color: #0077b5;
}

.icons:nth-child(4):hover {
  background-color: #005582;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 5px;
}

.footer-list li a {
  color: lightgray;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  font-weight: 300;
  line-height: 26px;
}

.footer-list li a:hover {
  color: aliceblue;
}

.getin-icon {
  color: aliceblue;
}

.footer-a {
  color: lightgray;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  font-weight: 300;
  line-height: 26px;
}

.footer-a:hover {
  color: aliceblue;
}

.footer-mini-p {
  color: lightgray;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  font-weight: 300;
  line-height: 26px;
}

.developer {
  color: lightblue;
}

.developer:hover {
  color: white;
}

.mt-90 {
  margin-top: 90px;
}

.pt-130 {
  padding-top: 100px;
}

/* -------------------------------------------------- Contact -------------------------------------------------- */
.h-120 {
  height: 120px !important;
}

.continue-application {
  --color: #fff;
  --background: #404660;
  --background-hover: #3a4059;
  --background-left: #2b3044;
  --folder: #f3e9cb;
  --folder-inner: #beb393;
  --paper: #ffffff;
  --paper-lines: #bbc1e1;
  --paper-behind: #e1e6f9;
  --pencil-cap: #fff;
  --pencil-top: #275efe;
  --pencil-middle: #fff;
  --pencil-bottom: #5c86ff;
  --shadow: rgba(13, 15, 25, 0.2);
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  padding: 17px 29px 17px 69px;
  transition: background 0.3s;
  color: var(--color);
  background: var(--bg, var(--background));
}

.continue-application > div {
  top: 0;
  left: 0;
  bottom: 0;
  width: 53px;
  position: absolute;
  overflow: hidden;
  border-radius: 5px 0 0 5px;
  background: var(--background-left);
}

.continue-application > div .folder {
  width: 23px;
  height: 27px;
  position: absolute;
  left: 15px;
  top: 13px;
}

.continue-application > div .folder .top {
  left: 0;
  top: 0;
  z-index: 2;
  position: absolute;
  transform: translateX(var(--fx, 0));
  transition: transform 0.4s ease var(--fd, 0.3s);
}

.continue-application > div .folder .top svg {
  width: 24px;
  height: 27px;
  display: block;
  fill: var(--folder);
  transform-origin: 0 50%;
  transition: transform 0.3s ease var(--fds, 0.45s);
  transform: perspective(120px) rotateY(var(--fr, 0deg));
}

.continue-application > div .folder:before,
.continue-application > div .folder:after,
.continue-application > div .folder .paper {
  content: "";
  position: absolute;
  left: var(--l, 0);
  top: var(--t, 0);
  width: var(--w, 100%);
  height: var(--h, 100%);
  border-radius: 1px;
  background: var(--b, var(--folder-inner));
}

.continue-application > div .folder:before {
  box-shadow: 0 1.5px 3px var(--shadow), 0 2.5px 5px var(--shadow),
    0 3.5px 7px var(--shadow);
  transform: translateX(var(--fx, 0));
  transition: transform 0.4s ease var(--fd, 0.3s);
}

.continue-application > div .folder:after,
.continue-application > div .folder .paper {
  --l: 1px;
  --t: 1px;
  --w: 21px;
  --h: 25px;
  --b: var(--paper-behind);
}

.continue-application > div .folder:after {
  transform: translate(var(--pbx, 0), var(--pby, 0));
  transition: transform 0.4s ease var(--pbd, 0s);
}

.continue-application > div .folder .paper {
  z-index: 1;
  --b: var(--paper);
}

.continue-application > div .folder .paper:before,
.continue-application > div .folder .paper:after {
  content: "";
  width: var(--wp, 14px);
  height: 2px;
  border-radius: 1px;
  transform: scaleY(0.5);
  left: 3px;
  top: var(--tp, 3px);
  position: absolute;
  background: var(--paper-lines);
  box-shadow: 0 12px 0 0 var(--paper-lines), 0 24px 0 0 var(--paper-lines);
}

.continue-application > div .folder .paper:after {
  --tp: 6px;
  --wp: 10px;
}

.continue-application > div .pencil {
  height: 2px;
  width: 3px;
  border-radius: 1px 1px 0 0;
  top: 8px;
  left: 105%;
  position: absolute;
  z-index: 3;
  transform-origin: 50% 19px;
  background: var(--pencil-cap);
  transform: translateX(var(--pex, 0)) rotate(35deg);
  transition: transform 0.4s ease var(--pbd, 0s);
}

.continue-application > div .pencil:before,
.continue-application > div .pencil:after {
  content: "";
  position: absolute;
  display: block;
  background: var(
    --b,
    linear-gradient(
      var(--pencil-top) 55%,
      var(--pencil-middle) 55.1%,
      var(--pencil-middle) 60%,
      var(--pencil-bottom) 60.1%
    )
  );
  width: var(--w, 5px);
  height: var(--h, 20px);
  border-radius: var(--br, 2px 2px 0 0);
  top: var(--t, 2px);
  left: var(--l, -1px);
}

.continue-application > div .pencil:before {
  -webkit-clip-path: polygon(0 5%, 5px 5%, 5px 17px, 50% 20px, 0 17px);
  clip-path: polygon(0 5%, 5px 5%, 5px 17px, 50% 20px, 0 17px);
}

.continue-application > div .pencil:after {
  --b: none;
  --w: 3px;
  --h: 6px;
  --br: 0 2px 1px 0;
  --t: 3px;
  --l: 3px;
  border-top: 1px solid var(--pencil-top);
  border-right: 1px solid var(--pencil-top);
}

.continue-application:before,
.continue-application:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  border-radius: 1px;
  background: var(--color);
  transform-origin: 9px 1px;
  transform: translateX(var(--cx, 0)) scale(0.5) rotate(var(--r, -45deg));
  top: 26px;
  right: 16px;
  transition: transform 0.3s;
}

.continue-application:after {
  --r: 45deg;
}

.continue-application:hover {
  --cx: 2px;
  --bg: var(--background-hover);
  --fx: -40px;
  --fr: -60deg;
  --fd: 0.15s;
  --fds: 0s;
  --pbx: 3px;
  --pby: -3px;
  --pbd: 0.15s;
  --pex: -24px;
}

.button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: darkgreen;
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button:hover {
  background-color: #000;
}

.button:hover .button__icon-wrapper {
  color: #000;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

/* -------------------------------------------------- Gallery -------------------------------------------------- */

.gallery-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .gallery-main-img {
    height: 300px;
    object-fit: cover;
  }
}

.img-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-container:hover .gallery-img {
  transform: scale(1.1);
}

/* -------------------------------------------------- About -------------------------------------------------- */

.badge-list {
  list-style-type: none;
  padding: 0;
}

.badge {
  display: inline-block;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 10px 20px;
  margin: 5px;
  font-weight: 500;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.badge:hover {
  background-color: #ccc;
}

.about-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.about-img-2 {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .about-img-2 {
    height: 300px;
    object-fit: cover;
  }
}

.protocol-item {
  list-style: none;
  padding: 0;
  margin: 0;
}

.protocol-item {
  padding: 10px 0;
  margin: 5px 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #333;
  transition: background-color 0.3s, transform 0.3s;
}

.right-arrow {
  color: var(--text-blue);
}

/* -------------------------------------------------- Services -------------------------------------------------- */

.dropdown-menu {
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.mini-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

/* .show-drodown {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
} */

.show-drodown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  /* border: 1px solid #ccc; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.show-drodown a {
  background-color: none !important;
}

.mega-dropdown:hover + .show-drodown,
.show-drodown:hover {
  /* display: block; */
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1.05); /* Slightly scale up on hover */
}

.show-drodown .hover-dropdown:hover {
  background-color: rgb(209, 221, 231);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.heade-a {
  background-color: transparent !important;
}

.tech-card {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  height: 350px;
  border-radius: 4px;
}

.tech_img {
  width: 100%;
  height: 350px;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 4px;
}

.overlay-9 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease; /* Smooth transition for the background */
}

.show_text {
  color: white;
  font-size: 24px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease; /* Smooth transition for the text */
}

.tech-card:hover .overlay-9 {
  background: rgba(0, 0, 0, 0.7);
}

.tech-card:hover .tech_img {
  transform: scale(1.1); /* Slight zoom on hover */
}

.tech-card:hover .show_text {
  opacity: 0; /* Hide the text on hover */
}

.tech-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 92, 215, 0.388);
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tech-title {
  margin: 0 0 10px;
  font-size: 24px;
  color: var(--white);
  font-weight: 600;
}

.tech-p {
  margin: 0;
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
}

.tech-card:hover .tech-content {
  opacity: 1;
  visibility: visible;
}

.object-position-top {
  object-position: top;
}

.immune-icons {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.immune-img-2 {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.text-container {
  position: absolute;
  bottom: 0;
  right: 20%;
  transform: translate(100%, -30%);
  background-color: var(--sub-header-bg);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .immune-img-2 {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .text-container {
    bottom: 0;
    right: 50%;
    transform: translate(100%, -30%);
    background-color: var(--sub-header-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}

@media screen and (max-width: 508px) {
  .immune-img-2 {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .text-container {
    bottom: 0;
    right: 75%;
    transform: translate(100%, -30%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 10px;
  }
}

.text-container-2 {
  position: absolute;
  bottom: 0;
  right: 120%;
  transform: translate(100%, -30%);
  background-color: var(--sub-header-bg);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .text-container-2 {
    position: absolute;
    bottom: 0;
    right: 40%;
    transform: translate(100%, -30%);
    background-color: var(--sub-header-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}

@media screen and (max-width: 508px) {
  .text-container-2 {
    position: absolute;
    bottom: 0;
    right: 68%;
    transform: translate(100%, -30%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}

.first-letter-upper::first-letter {
  text-transform: uppercase;
}

.elderly-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.rounded-pill-lg {
  border-radius: 100px;
}

@media screen and (max-width: 768px) {
  .rounded-pill-lg {
    border-radius: 80px;
  }
}

@media screen and (max-width: 768px) {
  .rounded-pill-lg {
    border-radius: 20px;
  }
}

.object-position-left {
  object-position: left !important;
}

.family-img {
  width: 300px;
  height: 400px;
  object-fit: contain;
  object-position: top;
  margin: 0 auto;
}

.family-img-2 {
  width: 100%;
  /* height: 400px; */
  object-fit: contain;
  object-position: top;
  margin: 0 auto;
}

.family-img-3 {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .family-img-3 {
    height: 250px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
  }
}

/* --------------------------------------------------------- Recipie ------------------------------------------------------ */
.recipie-img {
  width: 100%;
  max-width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
}

.fw-cus-normal {
  font-weight: 600 !important;
}

.badge-list2 {
  list-style-type: none;
  padding: 0;
}

.badge2 {
  display: inline-block;
  background-color: var(--text-blue);
  /* border: 1px solid #ccc; */
  border-radius: 50px;
  padding: 3px 10px;
  /* margin: 5px; */
  font-weight: 500;
  text-align: center;
  font-size: 12px;
  color: aliceblue;
}

/* -------------------------------------------------- Blog -------------------------------------------------- */

.blog-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* -------------------------------------------------- Index -------------------------------------------------- */

.hero-h1 {
  font-size: 4rem !important;
  font-weight: 500;
  font-style: normal;
  line-height: 1.3;
  color: var(--white);
}

#video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 80px; */
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  z-index: -1;
}

#video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

#text-overlay {
  position: relative;
  z-index: 1;
}

@media (max-width: 988px) {
  #video-section {
    margin-top: 0px;
    height: 80vh;
    overflow: hidden;
  }
}

@media (max-width: 728px) {
  .hero-h1 {
    font-size: 3rem !important;
    font-weight: 500;
    font-style: normal;
    line-height: 1.3;
    color: var(--white);
  }
}

@media (max-width: 728px) {
  .hero-h1 {
    font-size: 2.5rem !important;
    font-weight: 500;
    font-style: normal;
    line-height: 1.3;
    color: var(--white);
  }
}

.chevron-icon {
  font-size: 15px;
  font-weight: 400;
  color: black;
  border: 1px solid black;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--main-transition);
}

.chevron-icon:hover,
.chevron-icon:focus {
  background-color: var(--sub-header-bg);
  border: 1px solid var(--sub-header-bg);
  color: white;
}
.card_image {
  width: 200px !important;
  height: 250px;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .card_image {
    width: 130px !important;
    /* max-width: 100%; */
    height: 200px;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
  }
}

.card_image {
  background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
  transition: background-image 0.3s ease-in-out;
}

.card_image:hover {
  background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
}

.card_image:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
  z-index: -1;
}

.card_image:hover {
  opacity: 0.7;
}

.card-text-h6 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.bg-light-2 {
  background-color: #eef6ff;
}

.read-more {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--background-left);
  transition: var(--main-transition);
}

.mini-p-2 {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--background-left);
  transition: var(--main-transition);

  display: -webkit-box;
  -webkit-line-clamp: 4; /* Number of lines to show */
  max-height: 5em;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-img {
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 998px) {
  .main-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
}

@media screen and (max-width: 728px) {
  .main-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
}

.doctor-img {
  border-radius: 4px;
  object-fit: cover;
  width: 250px !important;
  height: 250px !important;
}

.home-img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}

.home-img:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .home-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    background-color: white;
    border-radius: 4px;
  }
}

.logo {
  width: 100px;
  height: 60px;
  object-fit: contain;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .logo {
    width: 60px;
    height: 30px;
    object-fit: contain;
    margin: 0;
  }
}
.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}
.line {
  fill: none;
  stroke: var(--sub-header-bg);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.tamil {
  display: none;
}

.btn2 {
  display: inline-block;
  padding: 0.5rem 1rem;
  width: 140px;
  font-size: 14px;
  font-weight: 500;
  color: black;
  border: 3px solid var(--sub-header-bg);
  cursor: pointer;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: inherit;
}

.btn2:hover {
  color: white;
}

.btn2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sub-header-bg);
  /* background-color: rgb(252, 70, 100); */
  transform: translateX(-100%);
  transition: all 0.3s;
  z-index: -1;
}

.btn2:hover::before {
  transform: translateX(0);
}

.sub-p {
  font-size: 14px !important;
  line-height: 10px !important;
}

/* -------------------------------------------------- Table ----------------------------------------------------- */
.vl-middle {
  vertical-align: middle !important;
}

.bg-green {
  background-color: rgb(181, 255, 181) !important;
}

.text-green {
  color: darkgreen !important;
  font-weight: 600;
}

th {
  text-transform: uppercase;
  font-weight: 600;
}

.md-device {
  display: none !important;
}

@media screen and (max-width: 1029px) {
  .md-device {
    display: block !important;
  }
}

@media screen and (max-width: 1030px) {
  .md-device-2 {
    display: none !important;
  }
}

.loader {
  width: 25px;
  height: 25px;
  border: 5px solid #fff;
  border-bottom-color: #ff3d00;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hide {
  display: none;
}

.footer-logo {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.page-header {
  text-align: center;
  font-size: 1.5em;
  font-weight: normal;
  border-bottom: 1px solid #ddd;
  margin: 30px 0;
}
#pagination {
  margin: 0;
  padding: 0;
  text-align: center;
}
#pagination li {
  display: inline;
}
#pagination li a {
  display: inline-block;
  text-decoration: none;
  padding: 5px 10px;
  color: #000;
}

/* Active and Hoverable Pagination */
#pagination li a {
  border-radius: 5px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
#pagination li a.active {
  background-color: #9dcd17;
  color: #fff;
}
#pagination li a:hover:not(.active) {
  background-color: #ddd;
}

.b-pagination-outer {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  display: flex;
}
#border-pagination {
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
#border-pagination li {
  display: inline;
}
#border-pagination li a {
  display: block;
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  border: 1px solid #ddd;
  float: left;
}
#border-pagination li a {
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
#border-pagination li a.active {
  background-color: #9dcd17;
  color: #fff;
}
#border-pagination li a:hover:not(.active) {
  background: #ddd;
}
