@charset "UTF-8";
.has-fade {
  display: none;
}

@keyframes fade-in {
  from {
    display: none;
    opacity: 0;
  }
  1% {
    display: flex;
    opacity: 0;
  }
  to {
    display: flex;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 200ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    display: flex;
    opacity: 1;
  }
  99% {
    display: flex;
    opacity: 0;
  }
  to {
    display: none;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 200ms ease-in-out forwards;
}

@keyframes fade-in-fixed {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out-fixed {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@font-face {
  font-family: "roobert";
  src: url(../../assets/lib/fonts/RoobertPRO-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "roobert";
  src: url(../../assets/lib/fonts/RoobertPRO-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
html {
  font-size: 100%;
  box-sizing: border-box;
  scrollbar-color: #03468e #25b8c5 !important;
  scrollbar-width: thin !important;
}
html::-webkit-scrollbar-track {
  background: #03468e !important;
}
html::-webkit-scrollbar-track {
  background: #25b8c5 !important;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  list-style: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: "roobert";
  font-weight: normal;
  scrollbar-color: #25b8c5 rgba(1, 54, 71, 0.208) !important;
  scrollbar-width: thin !important;
}
body.noscroll {
  overflow: hidden;
}

a,
a:visited,
a:hover {
  text-decoration: none;
  color: #042d59;
  cursor: pointer;
}

.primary-color {
  color: #25b8c5;
}

.read-more-label {
  cursor: pointer !important;
}

button {
  cursor: pointer;
}

/* Flexbox */
.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.item-center {
  align-items: center;
}

.item-end {
  align-items: end;
}

/* Container */
.main-container {
  padding: 0 10rem;
}
@media (max-width: 87.4375em) {
  .main-container {
    padding: 0 1.5rem;
  }
}

.sub-container {
  padding: 0 13rem;
}
@media (max-width: 87.4375em) {
  .sub-container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 1023px) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 1023px) {
  .hide-for-desktop {
    display: none;
  }
}

@media (max-width: 639px) {
  .hide-for-logo-mobile {
    display: none;
  }
}

@media (min-width: 639px) {
  .hide-for-logo-desktop {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .checkbox-label span.mobile {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.z-index-none {
  z-index: -1;
}

/* Text Css */
.text-center {
  text-align: center;
}

.opacity-text {
  opacity: 0.66;
  color: #042d59;
}

.font-22 {
  font-size: 22px;
}

.font-18 {
  font-size: 18px;
}

.font-17 {
  font-size: 17px;
}

.font-16 {
  font-size: 16px;
}

.font-15 {
  font-size: 15px;
}

.font-14 {
  font-size: 14px;
}

.font-13 {
  font-size: 13px;
}

.font-12 {
  font-size: 12px;
}

/* intlTelInput.css | https://www.medicanainternational.com/medicana-app/assets/js/phone/css/intlTelInput.css */
.iti__country-list {
  text-align: start !important;
}

.iti__country-list--dropup {
  left: 0 !important;
}

.iti--allow-dropdown {
  width: 100%;
}
.iti--allow-dropdown .iti__dropdown-content {
  z-index: 99 !important;
}
.iti--allow-dropdown .iti__dropdown-content .iti__country-list {
  position: relative;
  z-index: 99;
  scrollbar-color: #25b8c5 rgba(1, 54, 71, 0.208) !important;
  scrollbar-width: thin !important;
}
.iti--allow-dropdown .iti__dropdown-content .iti__country-list li {
  position: relative;
  z-index: 99 !important;
}
.iti--allow-dropdown .iti__dropdown-content .iti__country-list li * {
  position: relative;
  z-index: 99 !important;
}

.select-country * {
  max-height: 30px;
  overflow-y: auto;
}

/* Base */
/* Layouts */
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(to left, rgba(216, 250, 255, 0.231372549) 20%, rgba(255, 255, 255, 0.3921568627) 90%) !important;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
}

.header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: linear-gradient(to left, #d8faff 20%, rgba(255, 255, 255, 0.6862745098) 90%);
}
.header nav {
  padding: 2rem 0;
  width: 100%;
}
.header nav .header-tel-no-desktop {
  font-size: 17px;
  color: #144d89;
}
.header nav .header-tel-no-desktop img {
  width: 17px;
}
@media screen and (max-width: 1023px) {
  .header nav .header-tel-no-desktop {
    display: none;
  }
}
.header-contact-btn {
  position: relative;
  white-space: nowrap;
  padding: 0.5rem 1rem !important;
  background: white;
  border-radius: 31px;
  border: none;
  color: #25b8c5 !important;
  font-size: 16px !important;
  font-weight: bold !important;
  margin: 0 !important;
  transition: all 0.2s;
}
.header-contact-btn svg {
  width: 17px;
}
.header-contact-btn svg * {
  transition: all 0.2s;
}
.header-contact-btn:hover {
  position: relative;
  background: #144d89;
  color: #ffffff !important;
}
.header-contact-btn:hover * {
  fill: white;
}
.header-contact-btn:hover svg {
  animation: zoom-infinite 0.5s linear infinite;
}
@keyframes zoom-infinite {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 1799px) {
  .header-logo img {
    width: 300px;
  }
  .header-contact-btn {
    font-size: 14px !important;
    padding: 6px 10px !important;
  }
}
@media (max-width: 87.4375em) {
  .header-logo img {
    width: 240px;
  }
  .header-contact-btn {
    font-size: 12px !important;
    padding: 0 10px !important;
  }
  .header-contact-btn img {
    margin-right: 4px;
  }
}
@media (max-width: 1023px) {
  .header-contact-btn img {
    margin-right: 4px !important;
    font-size: 12px !important;
  }
}
@media (max-width: 639px) {
  .header-logo img {
    width: auto;
    height: 34px;
  }
}

.footer {
  background: #ffffff;
  padding-top: 5rem;
}
.footer .footer-logo a img {
  max-width: 100% !important;
}
@media screen and (max-width: 420px) {
  .footer .footer-logo a img {
    width: 250px;
  }
}
.footer .row {
  width: 100% !important;
  margin: auto;
}
.footer .row .footer-links ul {
  padding: 0 0rem 0 2rem;
}
.footer .row .footer-links ul li {
  color: #042d59;
  transition: all 0.3s;
  margin-bottom: 9px;
  cursor: pointer;
}
.footer .row .footer-links ul li:hover {
  transform: scale(1.02) translateX(6px);
}
.footer .row .footer-links ul li a .footer-dots {
  display: block;
  width: 5px;
  height: 5px;
  margin-left: 8px;
  background: #25b8c5;
  border-radius: 100%;
}
.footer .row .footer-social-media-card {
  background: rgba(37, 184, 197, 0.0431372549);
}
.footer .row .footer-social-media-card .card-subtitle {
  color: #042d59;
}
.footer .row .footer-social-media-card .card-title {
  color: #25b8c5;
}
.footer .row .footer-social-media-card .row {
  width: 100% !important;
  margin: auto;
}
.footer .row .footer-social-media-card .row .social-media-links-wrapper {
  padding-left: 3rem !important;
  padding-right: 0rem !important;
}
.footer .row .footer-social-media-card .row .social-media-links-wrapper .social-media-icons {
  width: 32px !important;
  height: 20px !important;
}
.footer .row .footer-social-media-card .row .social-media-links-wrapper .social-media-name {
  color: #042d59;
  font-weight: bold;
  font-size: 12px;
}
.footer .row .footer-social-media-card .row .social-media-links-wrapper .social-media-description {
  color: #042d59;
  font-size: 8px;
}
.footer .row .footer-social-media-card .row .social-media-card-contact-title-left {
  font-size: 18px;
  color: #042d59;
}
.footer .row .footer-social-media-card .row .contact-email-wrapper {
  font-size: 11px;
}
.footer .row .footer-social-media-card .row .contact-email-wrapper img {
  width: 22.5px !important;
  height: 15px !important;
}
.footer .row .footer-social-media-card .row .contact-location-wrapper {
  font-size: 11px;
}
.footer .row .footer-social-media-card .row .contact-location-wrapper img {
  width: 22.5px !important;
  height: 15px !important;
}
.footer .row .footer-social-media-card .row .social-media-card-contact-title-right {
  font-size: 18px;
  color: #042d59;
}
.footer .row .footer-social-media-card .row .google-maps-wrapper iframe {
  max-width: 100% !important;
  max-height: 60px !important;
}
.footer .row .footer-social-media-card .separator-line {
  border-top: 1px solid rgba(4, 45, 89, 0.2235294118);
  width: 100%;
  height: 1px;
}
.footer .footer-social-media-card {
  background: rgba(37, 184, 197, 0.0431372549);
}
.footer .footer-social-media-card .footer-agreement-policies-normal {
  margin: 0;
  padding: 0;
  font-size: 10px;
  margin-bottom: 0.5rem;
  display: block;
}
.footer .footer-social-media-card .footer-agreement-policies-bold {
  display: block;
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 10px;
  margin-bottom: 0.5rem;
}
.footer .footer-social-media-card .footer-agreement-policies-phone-wrapper {
  background: #25b8c5;
  border-radius: 4px;
}
.footer .footer-social-media-card .footer-agreement-policies-phone-wrapper .footer-agreement-policies-phone-number {
  color: #ffffff;
  font-size: 10px;
}
.footer .row .footer-copyright-text {
  color: #042d59;
  opacity: 0.39;
  font-size: 12px;
}
.footer .row .footer-download-app-wrapper .footer-download-app-text {
  font-size: 12px;
}
.footer .row .footer-download-app-wrapper .footer-download-app-ios {
  width: 130px;
}
@media screen and (max-width: 542px) {
  .footer .row .footer-download-app-wrapper .footer-download-app-ios {
    width: 100px;
  }
}
.footer .row .footer-download-app-wrapper .footer-download-app-android {
  width: 130px;
}
@media screen and (max-width: 542px) {
  .footer .row .footer-download-app-wrapper .footer-download-app-android {
    width: 100px;
  }
}

.header-links a {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 2.125rem;
  transition: transform 0.3s ease; /* Smooth transition for the movement */
}
.header-links a .dot {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  background: #25b8c5;
  border-radius: 100%;
  transition: transform 0.3s ease; /* Smooth transition for the movement */
}
.header-links a .active {
  transform: translateY(-4px); /* Move the dot upwards */
}
.header-links a .active .dot {
  transform: translateY(-8px); /* Move the dot upwards */
}
@media (max-width: 1799px) {
  .header-links a {
    font-size: 14px;
  }
}
@media (max-width: 87.4375em) {
  .header-links a {
    font-size: 12px;
  }
}

.header.open .header-toggle > span {
  background: #042d59;
}
.header.open .header-toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header-toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header-toggle > span:last-child {
  transform: rotate(-45deg);
}
.header .overlay {
  opacity: 1;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 5;
  height: 100vh;
  background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #25b8c5 35%);
}
.header-toggle > span {
  display: block;
  width: 26px;
  height: 3px;
  background: #042d59;
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
  margin-left: 1.5rem;
  position: relative;
  z-index: 10;
}
.header-toggle > span:not(:last-child) {
  margin-bottom: 4px;
}
.header-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  height: 90vh;
  right: 0;
  gap: 10px;
  align-items: start;
  flex-direction: column;
  justify-content: end;
  padding-left: 2.5rem;
  z-index: 9;
}
.header-menu a {
  color: #ffffff;
  padding: 5px;
  padding-left: 0;
  font-size: 20px !important;
}
.header-menu a .dot {
  display: block;
  width: 8px;
  height: 8px;
  margin-right: 1rem;
  background: #ffffff;
  border-radius: 100%;
  transition: transform 0.3s ease;
  /* Smooth transition for the movement */
}
.header-menu a div {
  justify-content: center;
}
.header-menu a.active {
  color: #25b8c5;
}
.header-menu a.active .dot {
  background: #042d59;
}
.header-menu .phone {
  background: #ffffff;
  padding: 0rem 1rem;
  border-radius: 3px;
  font-weight: bold;
}
.header-menu .phone a {
  color: #25b8c5;
}
.header-menu .phone img {
  margin-top: 0.25rem;
  margin-right: 0.25rem;
  width: 25px;
}
.header-menu .mobile-language-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.4666666667);
  border-radius: 3px;
  width: 237px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.header-menu .mobile-language-wrapper::-webkit-scrollbar {
  display: none;
}
.header-menu .mobile-language-wrapper *::-webkit-scrollbar {
  display: none;
}
.header-menu .mobile-language-wrapper .language-icon-mobile {
  cursor: pointer;
}
.header-menu .mobile-language-wrapper .language-icon-mobile img {
  width: 27px;
  aspect-ratio: 1/1;
}
.header-menu .mobile-language-wrapper .language-icon-mobile .language-icon-close {
  display: none;
  font-size: 26px;
  position: relative;
  z-index: 999;
}
.header-menu .mobile-language-wrapper .mobile-language-list-wrapper {
  width: auto;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.header-menu .mobile-language-wrapper .mobile-language-list-wrapper::-webkit-scrollbar {
  display: none;
}
.header-menu .mobile-language-wrapper .mobile-language-list-wrapper *::-webkit-scrollbar {
  display: none;
}
.header-menu .mobile-language-wrapper .mobile-language-list-wrapper .mobile-language-list .mobile-language-list-items:not(:nth-child(1)) {
  display: none;
}
.header-menu .mobile-language-wrapper .mobile-language-list-wrapper .mobile-language-list .mobile-language-list-items:not(:nth-child(1)) .mobile-language-list-items-text {
  display: none;
}
.header-menu .mobile-language-wrapper .mobile-language-list-wrapper .mobile-language-list .mobile-language-list-items:nth-child(1) {
  display: flex;
}
.header-menu .mobile-language-wrapper .mobile-language-list-wrapper .mobile-language-list .mobile-language-list-items img {
  width: 27px;
}
.header-menu .mobile-language-wrapper .mobile-language-list-wrapper .mobile-language-list .mobile-language-list-items .mobile-language-list-items-text {
  font-weight: normal !important;
  font-size: 12px;
  animation: fade-in-fixed 0.5s linear forwards;
}
.header-menu .mobile-language-wrapper .language-mobile-arrow {
  display: flex;
  align-items: center;
}
.header-menu .mobile-language-wrapper .language-mobile-arrow img {
  width: 13px !important;
  aspect-ratio: 1/1;
}
.header-menu .social-media {
  margin: 1rem 0;
}

/* Pages */
.home-header.home-page-header {
  background: linear-gradient(146deg, #EDF6FF 0%, #BADDFF 100%);
}

.home-page-banner {
  position: relative;
}
.home-page-banner .banner-wrapper {
  position: relative;
  height: 70vh;
  background: linear-gradient(78deg, #EDF6FF 0%, #BADDFF 100%);
  transition: all 0.3s;
}
.home-page-banner .banner-wrapper * {
  transition: all 0.3s;
}
.home-page-banner .banner-wrapper .search-fixed-wrapper {
  display: none;
  transition: all 0.3s;
}
.home-page-banner .banner-wrapper .search-fixed-wrapper.fixed {
  transition: all 0.3s;
  overflow: hidden;
  margin: auto;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to left, rgba(216, 250, 255, 0.231372549) 20%, rgba(255, 255, 255, 0.3921568627) 90%);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  z-index: 999;
}
.home-page-banner .banner-wrapper .search-fixed-wrapper .search-fixed-close-btn {
  font-size: 50px;
  position: absolute;
  right: 20px;
  top: 20%;
  text-shadow: 2px 1px 5px rgba(3, 18, 33, 0.3882352941);
  z-index: 1000;
}
.home-page-banner .banner-wrapper .search-fixed-wrapper .shadow-bg {
  box-shadow: 0px 1px 10px rgba(3, 18, 33, 0.137254902);
}
.home-page-banner .banner-wrapper .search-mobile-input-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 10vh;
  display: flex;
  align-items: end;
  justify-content: center;
  z-index: 10;
}
.home-page-banner .banner-wrapper .search-mobile-input-wrapper .search-div-bg {
  display: flex;
  padding: 0.5rem 1.5rem;
  width: 90%;
  background: #fff;
  gap: 1rem;
  border-radius: 30px;
}
@media screen and (min-width: 452px) {
  .home-page-banner .banner-wrapper .search-mobile-input-wrapper .search-div-bg {
    width: 80%;
  }
}
@media screen and (min-width: 652px) {
  .home-page-banner .banner-wrapper .search-mobile-input-wrapper .search-div-bg {
    width: 65%;
  }
}
.home-page-banner .banner-wrapper .search-mobile-input-wrapper .search-div-bg .search-icon {
  background: #fff;
}
.home-page-banner .banner-wrapper .search-mobile-input-wrapper .search-div-bg input {
  width: 100%;
  border: none;
  outline: none;
}
@media screen and (max-width: 500px) {
  .home-page-banner .banner-wrapper {
    padding: 0;
  }
}
@media screen and (max-width: 992px) {
  .home-page-banner .banner-wrapper {
    height: auto;
  }
}
@media screen and (max-width: 992px) {
  .home-page-banner .banner-wrapper .col-lg-6 {
    padding: 0 !important;
  }
}
@media screen and (min-width: 992px) {
  .home-page-banner .banner-wrapper .search-desktop-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.home-page-banner .banner-wrapper .search-desktop-col .search-mobile-input-wrapper {
  position: static !important;
  width: 100%;
}
.home-page-banner .banner-wrapper .search-desktop-col .search-mobile-input-wrapper .search-div-bg {
  width: 80%;
}
.home-page-banner .banner-wrapper .banner-title {
  font-size: 50px;
}
@media screen and (max-width: 992px) {
  .home-page-banner .banner-wrapper .banner-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 602px) {
  .home-page-banner .banner-wrapper .banner-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 450px) {
  .home-page-banner .banner-wrapper .banner-title {
    font-size: 22px;
  }
}
@media screen and (min-width: 1700px) {
  .home-page-banner .banner-wrapper .banner-title {
    margin-top: 0 !important;
    font-size: 64px;
  }
}
.home-page-banner .banner-wrapper .banner-img-wrapper {
  height: 70vh;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .home-page-banner .banner-wrapper .banner-img-wrapper {
    height: 50vh;
  }
}
.home-page-banner .banner-wrapper .banner-img-wrapper .banner-img-desktop {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1700px) {
  .home-page-banner .banner-wrapper .banner-img-wrapper .banner-img-desktop {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.home-page-banner .banner-wrapper .banner-img-wrapper .banner-img-mobile {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  transform: translateX(10px);
}
@media screen and (max-width: 401px) {
  .home-page-banner .banner-wrapper .banner-img-wrapper .banner-img-mobile {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.home-page-banner .banner-card {
  gap: 1rem;
  padding: 1rem;
  background: rgba(37, 184, 197, 0.0431372549);
  border-radius: 3px;
}
.home-page-banner .banner-card .card-icon {
  padding: 10px;
  background: rgba(37, 184, 197, 0.1843137255);
  border-radius: 3px;
}
.home-page-banner .banner-card .card-title {
  color: #25b8c5;
  font-weight: bold;
}
.home-page-banner .card-yellowed {
  background: rgba(247, 198, 2, 0.0901960784) !important;
}
.home-page-banner .card-yellowed .card-title {
  color: #f7c602;
}
.home-page-banner .card-yellowed .card-icon {
  background: rgba(247, 198, 2, 0.1960784314);
}

.home-hospitals-desktop {
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 717px) {
  .home-hospitals-desktop {
    display: none;
  }
}
.home-hospitals-desktop .home-hospitals-bg {
  width: 400px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-hospitals-desktop .home-hospitals-title {
  position: absolute;
  top: 3rem;
  right: 0;
  padding: 0 13rem;
}
@media (max-width: 87.4375em) {
  .home-hospitals-desktop .home-hospitals-title {
    padding: 0 1.5rem;
  }
}
.home-hospitals-desktop .home-hospitals-link {
  position: absolute;
  padding: 0 13rem;
  padding-left: 1.5rem;
  bottom: 15%;
  right: 0;
  color: #25b8c5;
}
.home-hospitals-desktop .home-hospitals-link::after {
  content: "";
  display: block;
  height: 2px;
  width: 50%;
  background-image: linear-gradient(to right, #25b8c5 50%, transparent 50%);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 87.4375em) {
  .home-hospitals-desktop .home-hospitals-link {
    padding: 0 4rem;
    padding-left: 1rem;
  }
}
@media screen and (max-width: 890px) {
  .home-hospitals-desktop .home-hospitals-link {
    left: 1.5rem;
    right: inherit;
    bottom: 0;
  }
}
.home-hospitals-desktop .card-absolute-1 {
  top: 25%;
  left: 15%;
}
@media screen and (min-width: 1700px) {
  .home-hospitals-desktop .card-absolute-1 {
    left: 18%;
  }
}
@media screen and (max-width: 1250px) {
  .home-hospitals-desktop .card-absolute-1 {
    left: 3%;
  }
}
@media screen and (max-width: 890px) {
  .home-hospitals-desktop .card-absolute-1 {
    left: 1.5rem;
  }
}
.home-hospitals-desktop .card-absolute-2 {
  top: 15%;
  right: 20%;
}
@media screen and (max-width: 1250px) {
  .home-hospitals-desktop .card-absolute-2 {
    right: 8%;
  }
}
@media screen and (max-width: 890px) {
  .home-hospitals-desktop .card-absolute-2 {
    right: 1.5rem;
  }
}
.home-hospitals-desktop .card-absolute-3 {
  top: 60%;
  left: 15%;
}
@media screen and (min-width: 1700px) {
  .home-hospitals-desktop .card-absolute-3 {
    left: 18%;
  }
}
@media screen and (max-width: 1250px) {
  .home-hospitals-desktop .card-absolute-3 {
    left: 3%;
  }
}
@media screen and (max-width: 890px) {
  .home-hospitals-desktop .card-absolute-3 {
    left: 1.5rem;
  }
}
.home-hospitals-desktop .card-absolute-4 {
  top: 50%;
  right: 20%;
}
@media screen and (max-width: 1250px) {
  .home-hospitals-desktop .card-absolute-4 {
    right: 8%;
  }
}
@media screen and (max-width: 890px) {
  .home-hospitals-desktop .card-absolute-4 {
    right: 1.5rem;
  }
}
.home-hospitals-desktop .card-absolute-5 {
  bottom: 0;
  right: 45%;
  transform: translateX(50%);
}
@media screen and (max-width: 890px) {
  .home-hospitals-desktop .card-absolute-5 {
    right: 30%;
  }
}
.home-hospitals-desktop .hospitals-card-wrapper {
  width: 25%;
  position: absolute;
}
@media screen and (max-width: 1250px) {
  .home-hospitals-desktop .hospitals-card-wrapper {
    width: 35%;
  }
}
@media screen and (max-width: 890px) {
  .home-hospitals-desktop .hospitals-card-wrapper {
    width: 45%;
  }
}
.home-hospitals-desktop .hospitals-card-wrapper * {
  transition: all 0.3s;
}
.home-hospitals-desktop .hospitals-card-wrapper .hospitals-card {
  background: #fff;
  box-shadow: 0px 30px 40px rgba(3, 18, 33, 0.0588235294);
  padding: 1rem;
  position: relative;
  border-radius: 3px;
}
.home-hospitals-desktop .hospitals-card-wrapper .hospitals-card .new {
  position: relative;
  position: absolute;
  z-index: 5;
  color: #042d59;
  top: -7px;
  left: -15px;
  background: #ffffff;
  font-size: 13px;
  border-radius: 3px;
  box-shadow: 0px 10px 30px rgba(4, 45, 89, 0.537254902);
}
.home-hospitals-desktop .hospitals-card-wrapper .hospitals-card .new .new-stars {
  position: absolute;
  top: -3px;
  left: -5px;
  z-index: 10;
  box-shadow: 0px 3px 10px #F7C702;
}
.home-hospitals-desktop .hospitals-card-wrapper .hospitals-card .hospitals-card-bg {
  width: 60px;
  height: 60px;
  background: #25b8c5;
  border-radius: 3px;
  position: absolute;
  top: 10px;
  right: 18px;
}
.home-hospitals-desktop .hospitals-card-wrapper .hospitals-card-img {
  position: relative;
  width: 90px;
  height: 80px;
  z-index: 9;
}
.home-hospitals-desktop .hospitals-card-wrapper .hospitals-card .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 82px;
  height: 80px;
  background-color: #11c3d3;
  opacity: 0;
  z-index: 10;
}
.home-hospitals-desktop .hospitals-card-wrapper .hospitals-card-content-icon * {
  fill: #fff;
}
.home-hospitals-desktop .hospitals-card-wrapper .hospitals-card-content-text {
  color: #25b8c5;
  font-size: 14px;
}
.home-hospitals-desktop .hospitals-card-wrapper:hover .hospitals-card {
  transform: translateY(-0.7rem);
}
.home-hospitals-desktop .hospitals-card-wrapper:hover .hospitals-card * {
  fill: #25b8c5;
}
.home-hospitals-desktop .hospitals-card-wrapper:hover .hospitals-card .hospitals-card-bg {
  top: 6px;
}
.home-hospitals-desktop .hospitals-card-wrapper:hover .hospitals-card .overlay {
  opacity: 0.4;
}
.home-hospitals-desktop .hospitals-card-wrapper:hover .hospitals-card .new {
  opacity: 0;
}
.home-hospitals-desktop .hospitals-card-wrapper.new-card-wrapper .hospitals-card {
  background: linear-gradient(114deg, #042D59 0%, #144D89 100%);
}
.home-hospitals-desktop .hospitals-card-wrapper.new-card-wrapper .hospitals-card *:not(.new) {
  color: #fff;
}
.home-hospitals-desktop .hospitals-card-wrapper.new-card-wrapper .hospitals-card-bg {
  background: #fff;
}
.home-hospitals-desktop .hospitals-card-wrapper.new-card-wrapper:hover .hospitals-card {
  background: #fff;
}
.home-hospitals-desktop .hospitals-card-wrapper.new-card-wrapper:hover .hospitals-card *:not(.new) {
  color: #25b8c5;
}
.home-hospitals-desktop .hospitals-card-wrapper.new-card-wrapper:hover .hospitals-card .hospitals-card-title {
  color: #042d59 !important;
}
.home-hospitals-desktop .hospitals-card-wrapper.new-card-wrapper:hover .hospitals-card-bg {
  background: #25b8c5;
}

.home-hospitals-mobile {
  height: 50vh;
}
@media screen and (max-width: 717px) {
  .home-hospitals-mobile {
    height: 42vh;
  }
}
@media screen and (max-width: 500px) {
  .home-hospitals-mobile {
    height: 45vh;
  }
}
@media screen and (max-width: 400px) {
  .home-hospitals-mobile {
    height: 360px;
  }
}
@media screen and (min-width: 717px) {
  .home-hospitals-mobile {
    display: none;
  }
}
.home-hospitals-mobile .see-hospitals {
  display: inline-block;
  position: relative;
  color: #25b8c5;
}
.home-hospitals-mobile .see-hospitals::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #25b8c5 60%, transparent 40%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.home-hospitals-mobile .swiper {
  width: 100%;
  height: 100%;
}
.home-hospitals-mobile .swiper .swiper-slide {
  background: #fff;
  height: calc((100% - 30px) / 2) !important;
}
.home-hospitals-mobile .swiper .swiper-slide * {
  transition: all 0.3s;
}
.home-hospitals-mobile .swiper .swiper-slide .hospitals-card {
  box-shadow: 0px 10px 20px rgba(3, 18, 33, 0.0588235294);
  padding: 1rem;
  position: relative;
  border-radius: 3px;
}
.home-hospitals-mobile .swiper .swiper-slide .hospitals-card .new {
  position: relative;
  position: absolute;
  z-index: 9;
  color: #ffffff;
  top: 5px;
  right: -12px;
  background: #042d59;
  font-size: 10px;
  border-radius: 3px;
  box-shadow: 0px 10px 30px rgba(4, 45, 89, 0.537254902);
}
.home-hospitals-mobile .swiper .swiper-slide .hospitals-card .new .new-stars {
  position: absolute;
  top: -3px;
  left: -5px;
  background: white;
  z-index: 10;
  box-shadow: 0px 3px 10px #F7C702;
}
.home-hospitals-mobile .swiper .swiper-slide .hospitals-card .hospitals-card-bg {
  width: 60px;
  height: 60px;
  background: #25b8c5;
  border-radius: 3px;
  position: absolute;
  top: 10px;
  right: 18px;
}
.home-hospitals-mobile .swiper .swiper-slide .hospitals-card-img {
  position: relative;
  width: 90px;
  height: 80px;
  z-index: 9;
}
.home-hospitals-mobile .swiper .swiper-slide .hospitals-card .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 82px;
  height: 80px;
  background-color: #11c3d3;
  opacity: 0;
  z-index: 10;
}
.home-hospitals-mobile .swiper .swiper-slide .hospitals-card-content-text {
  color: #25b8c5;
  font-size: 14px;
}
.home-hospitals-mobile .swiper .swiper-slide:hover .hospitals-card {
  transform: translateY(-0.7rem);
}
.home-hospitals-mobile .swiper .swiper-slide:hover .hospitals-card .hospitals-card-bg {
  top: 6px;
}
.home-hospitals-mobile .swiper .swiper-slide:hover .hospitals-card .overlay {
  opacity: 0.4;
}
.home-hospitals-mobile .swiper .swiper-slide:hover .hospitals-card .new {
  opacity: 0;
}

.home-treatment h2 {
  text-align: left !important;
}
.home-treatment .treatment-methods-card {
  position: relative;
  background: linear-gradient(103deg, #042D59 0%, #03468E 100%);
  border-radius: 3px;
}
.home-treatment .treatment-methods-card .home-treatment-image {
  position: absolute;
  top: -3rem;
  right: 6rem;
  bottom: 0;
  height: 110%;
  width: 30%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.2);
}
@media screen and (min-width: 1700px) {
  .home-treatment .treatment-methods-card .home-treatment-image {
    transform: scale(1.2);
    height: 120%;
  }
}
@media screen and (max-width: 1075px) {
  .home-treatment .treatment-methods-card .home-treatment-image {
    transform: scale(1.4);
    height: 100%;
  }
}
@media screen and (max-width: 992px) {
  .home-treatment .treatment-methods-card .home-treatment-image {
    transform: scale(1.6);
    width: 27%;
    height: 80%;
    top: 0;
  }
}
@media screen and (max-width: 829px) {
  .home-treatment .treatment-methods-card .home-treatment-image {
    transform: scale(1.3);
    width: 32%;
    height: 90%;
    top: 0;
    left: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .home-treatment .treatment-methods-card .home-treatment-image {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .home-treatment .treatment-methods-card .home-treatment-image {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.home-treatment .treatment-methods-card .col-md-7 {
  margin-right: auto !important;
  margin-left: 0 !important;
}
.home-treatment .treatment-methods-card ul * {
  fill: #fff;
  color: #fff;
}
.home-treatment .treatment-methods-card ul svg {
  transform: rotate(180deg);
}
.home-treatment .treatment-methods-card ul li {
  transition: all 0.4s;
  margin-bottom: 0.1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.home-treatment .treatment-methods-card ul li:hover {
  transform: translateX(0.5rem);
  background: rgba(37, 184, 197, 0.3058823529);
}
@media screen and (max-width: 650px) {
  .home-treatment .treatment-methods-card ul li {
    font-size: 13px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 380px) {
  .home-treatment .treatment-methods-card ul li {
    font-size: 12px;
    margin-bottom: 0;
  }
}
.home-treatment .treatment-methods-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: #fff;
  z-index: 0;
}
.home-treatment .treatment-methods-card .z-index {
  position: relative;
  z-index: 2;
}
.home-treatment .see-treatment {
  display: flex;
  align-items: end;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  .home-treatment .see-treatment {
    display: inline-block;
    padding-left: 1.2rem;
    padding-bottom: 1rem;
    margin-top: 1rem;
  }
}
.home-treatment .see-treatment span {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 3px;
}

.home-medical-services {
  background: linear-gradient(120deg, rgba(37, 184, 197, 0.0392156863) 0%, rgba(19, 92, 99, 0.0392156863) 100%);
  position: relative;
}
.home-medical-services .see-services {
  display: inline-block;
  position: relative;
  color: #25b8c5;
}
.home-medical-services .see-services::after {
  content: "";
  display: block;
  width: 200px;
  height: 1.5px;
  background-image: linear-gradient(to right, #25b8c5 60%, transparent 40%);
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 3px;
}
.home-medical-services-img {
  position: relative;
  position: absolute;
  z-index: 0;
  max-height: 100% !important;
  top: 0;
  bottom: -100px;
  right: 0;
  left: 13rem;
}
@media (max-width: 87.4375em) {
  .home-medical-services-img {
    left: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .home-medical-services-img {
    position: static !important;
  }
}
.home-medical-services-img img {
  transform: scale(1.025);
  position: absolute;
  bottom: 0;
  left: 0;
  max-height: 90% !important;
  max-width: 100%;
}
@media screen and (min-width: 1600px) {
  .home-medical-services-img img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  .home-medical-services-img img {
    transform: scale(1);
    position: static !important;
  }
}
.home-medical-services-mobile {
  width: 100%;
}
.home-medical-services-mobile img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-medical-services .home-medical-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 5px;
  padding: 0.2rem 2rem;
  box-shadow: 35px 20px 40px rgba(2, 15, 29, 0.0509803922);
  transition: all 0.3s;
}
.home-medical-services .home-medical-card:hover {
  box-shadow: 35px 20px 40px rgba(2, 15, 29, 0.0901960784);
  transform: scale(1.02);
}
.home-medical-services .home-medical-card .home-medical-card-head {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  gap: 0.7rem;
}
.home-medical-services .home-medical-card .home-medical-card-head .home-medical-card-icon {
  position: relative;
}
.home-medical-services .home-medical-card .home-medical-card-head .home-medical-card-icon img {
  border-radius: 3px;
  background: rgba(37, 184, 197, 0.1529411765);
  padding: 5px;
  width: 33px;
  height: 33px;
}
.home-medical-services .home-medical-card .home-medical-card-head .home-medical-card-title {
  font-weight: bold;
  color: #25b8c5;
  margin: 0;
}
.home-medical-services .home-medical-card .home-medical-card-body {
  margin-top: 1rem;
}
.home-medical-services .home-medical-card .home-medical-card-body .home-medical-card-description {
  opacity: 0.66;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 992px) {
  .home-medical-services .home-medical-card .home-medical-card-body .home-medical-card-description {
    font-size: 13px;
  }
}

.featured-doctors-bg {
  background: linear-gradient(115deg, #042D59 0%, #010912 100%);
}
.featured-doctors-bg * {
  color: #fff;
}
.featured-doctors-bg .see-doctors {
  display: inline-block;
  position: relative;
  color: #fff;
}
.featured-doctors-bg .see-doctors::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #fff 60%, transparent 40%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.featured-doctors-bg .featured-doctors .featured-doctor-card-wrapper {
  border-radius: 3px;
  text-decoration: none !important;
  display: inherit;
}
.featured-doctors-bg .featured-doctors .featured-doctor-card-wrapper * {
  color: #fff;
  transition: all 0.3s;
}
.featured-doctors-bg .featured-doctors .featured-doctor-card-wrapper .card-head {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  background: linear-gradient(to top, #fff 80%, rgba(255, 255, 255, 0) 20%);
}
.featured-doctors-bg .featured-doctors .featured-doctor-card-wrapper .card-head .circle-bg {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 100%;
  z-index: 0;
  top: 60%;
  transform: translateY(-50%);
  background: rgba(91, 204, 214, 0.8352941176);
}
.featured-doctors-bg .featured-doctors .featured-doctor-card-wrapper .card-head .hover-line-img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 35%;
  opacity: 0;
}
.featured-doctors-bg .featured-doctors .featured-doctor-card-wrapper .card-head .doctor-img {
  width: 60%;
  position: relative;
  z-index: 1;
}
.featured-doctors-bg .featured-doctors .featured-doctor-card-wrapper .card-body {
  background: radial-gradient(circle, rgba(60, 69, 79, 0.7058823529) 0%, rgba(26, 36, 50, 0.8784313725) 100%);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border: 2px solid rgba(60, 69, 79, 0.7058823529);
  border-bottom: none;
}
.featured-doctors-bg .featured-doctors .featured-doctor-card-wrapper .card-body * {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}
.featured-doctors-bg .featured-doctors .featured-doctor-card-wrapper .card-footer {
  background: radial-gradient(circle, rgba(60, 69, 79, 0.7058823529) 0%, rgba(26, 36, 50, 0.8784313725) 100%);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border: 2px solid rgba(60, 69, 79, 0.7058823529);
  border-top: none;
  border-radius: 0 0 3px 3px;
}
.featured-doctors-bg .featured-doctors .featured-doctor-card-wrapper .card-footer p {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4%;
  margin-bottom: 0.5rem !important;
}
.featured-doctors-bg .featured-doctors .featured-doctor-card-wrapper .card-footer p span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}
.featured-doctors-bg .featured-doctors .featured-doctor-card-wrapper:hover .doctor-img {
  transform: translateX(-10%);
}
.featured-doctors-bg .featured-doctors .featured-doctor-card-wrapper:hover .circle-bg {
  transform: translate(20%, -50%);
}

.home-page-contact-form .row .contact-us-content {
  background: linear-gradient(132deg, #edf6ff 0%, #baddff 100%);
  border-radius: 3px;
  position: relative;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper .contact-us-form-title {
  color: #25b8c5;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form {
  background: linear-gradient(113deg, #edfdff 0%, #bae8ff 100%);
  border-radius: 3px;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .form-balls-img {
  position: absolute;
  width: 100px;
  z-index: 10;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row #form-balls-img-1 {
  top: 20px;
  transform: rotate(180deg);
  left: 250px;
  height: 50px;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row #form-balls-img-2 {
  bottom: -15px;
  height: 30px;
  left: 60px;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row #form-balls-img-3 {
  bottom: -6px;
  height: 40px;
  right: 60px;
  transform: rotate(120deg);
}
@media screen and (max-width: 576px) {
  .home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row #form-balls-img-3 {
    bottom: 390px;
    right: -15px;
    z-index: 0;
  }
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 {
  position: relative;
  margin-bottom: 1rem;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 input,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 select,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 textarea,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 label,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 input,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 select,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 textarea,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 label,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 input,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 select,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 textarea,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 label,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 input,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 select,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 textarea,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 label,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 input,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 select,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 textarea,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 label,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 input,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 select,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 textarea,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 label,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 input,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 select,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 textarea,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 label {
  padding: 0.7rem 1rem;
  height: 100%;
  border: none;
  font-size: 13px;
  background: #ffffff;
  border-radius: 4px;
  overflow: auto;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 input:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 select:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 textarea:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 label:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 input:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 select:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 textarea:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 label:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 input:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 select:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 textarea:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 label:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 input:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 select:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 textarea:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 label:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 input:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 select:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 textarea:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 label:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 input:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 select:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 textarea:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 label:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 input:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 select:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 textarea:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 label:focus {
  border: none;
  outline: none;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 input option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 select option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 textarea option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 label option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 input option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 select option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 textarea option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 label option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 input option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 select option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 textarea option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 label option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 input option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 select option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 textarea option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 label option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 input option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 select option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 textarea option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 label option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 input option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 select option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 textarea option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 label option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 input option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 select option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 textarea option,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 label option {
  font-family: "roobert", sans-serif !important;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 select.custom-select,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 select.custom-select,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 select.custom-select,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 select.custom-select,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 select.custom-select,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 select.custom-select,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 select.custom-select {
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 4 5%22%3E%3Cpath fill%3D%22%23000%22 d%3D%22M2 0L0 2h4z%22/%3E%3C/svg%3E") no-repeat left 20px center;
  background-size: 10px 10px;
  background-position: 5% 20px;
  cursor: pointer;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 select.custom-select.focused,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 select.custom-select.focused,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 select.custom-select.focused,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 select.custom-select.focused,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 select.custom-select.focused,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 select.custom-select.focused,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 select.custom-select.focused {
  background: #fff url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 4 5%22%3E%3Cpath fill%3D%22%23000%22 d%3D%22M0 0L2 2 4 0z%22/%3E%3C/svg%3E") no-repeat left 20px center;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-size: 10px 10px;
  background-position: 5% 20px;
  cursor: pointer;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 label.label-wrapper,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 label.label-wrapper,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 label.label-wrapper,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 label.label-wrapper,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 label.label-wrapper,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 label.label-wrapper,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 label.label-wrapper {
  padding: 0.7rem 1rem;
  height: 100%;
  border: none;
  font-size: 13px;
  background: #ffffff;
  border-radius: 4px;
  color: rgba(4, 45, 89, 0.4039215686);
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 label.label-wrapper:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 label.label-wrapper:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 label.label-wrapper:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 label.label-wrapper:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 label.label-wrapper:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 label.label-wrapper:focus,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 label.label-wrapper:focus {
  border: none;
  outline: none;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 label.label-wrapper #select-file,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 label.label-wrapper #select-file,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 label.label-wrapper #select-file,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 label.label-wrapper #select-file,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 label.label-wrapper #select-file,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 label.label-wrapper #select-file,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 label.label-wrapper #select-file {
  background: rgba(4, 45, 89, 0.1019607843);
  border-radius: 3px;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  max-width: 100% !important;
  text-align: center;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 label.label-wrapper #selected-file,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 label.label-wrapper #selected-file,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 label.label-wrapper #selected-file,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 label.label-wrapper #selected-file,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 label.label-wrapper #selected-file,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 label.label-wrapper #selected-file,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 label.label-wrapper #selected-file {
  white-space: nowrap;
  overflow-x: hidden;
  flex-grow: 1;
  text-overflow: ellipsis;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 #mySubmitBtnContactForm,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 #mySubmitBtnContactForm,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 #mySubmitBtnContactForm,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 #mySubmitBtnContactForm,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 #mySubmitBtnContactForm,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 #mySubmitBtnContactForm,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 #mySubmitBtnContactForm {
  background: #25b8c5;
  border: none;
  outline: none;
  color: #ffffff;
  height: 100%;
  border-radius: 4px;
  min-height: 45px;
  transition: all 0.4s;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 #mySubmitBtnContactForm:hover,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-4 #mySubmitBtnContactForm:hover,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-sm-3 #mySubmitBtnContactForm:hover,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-2 #mySubmitBtnContactForm:hover,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-4 #mySubmitBtnContactForm:hover,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-lg-6 #mySubmitBtnContactForm:hover,
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 #mySubmitBtnContactForm:hover {
  background: #1dabb7;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container * {
  transition: all 0.5s;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container .custom-checkbox {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: start;
  background: #fff;
  border-radius: 3px;
  color: rgba(4, 45, 89, 0.3725490196);
  font-size: 13px;
  padding-left: 1rem;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container .custom-checkbox input[type=radio]:checked + .checkbox-indicator {
  background: #25b8c5;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container .custom-checkbox input[type=radio]:checked + .checkbox-indicator + .checkbox-label {
  color: #042d59 !important;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container .custom-checkbox input {
  display: none;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container .custom-checkbox .checkbox-indicator {
  width: 20px;
  height: 20px;
  background: #DEDEDE;
  border-radius: 3px;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container.col-12 * {
  transition: all 0.5s;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container.col-12 .custom-checkbox {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: start;
  justify-content: start;
  border-radius: 3px;
  color: rgba(4, 45, 89, 0.3725490196);
  font-size: 13px;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container.col-12 .custom-checkbox a {
  color: rgba(4, 45, 89, 0.3725490196);
  border-bottom: 2px solid rgba(4, 45, 89, 0.3725490196);
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container.col-12 .custom-checkbox input[type=checkbox]:checked + .checkbox-indicator {
  background: #25b8c5;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container.col-12 .custom-checkbox input[type=checkbox]:checked + .checkbox-indicator + .checkbox-label {
  color: #042d59 !important;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container.col-12 .custom-checkbox input[type=checkbox]:checked + .checkbox-indicator + .checkbox-label a {
  color: #042d59 !important;
  border-bottom: 2px solid #042d59;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container.col-12 .custom-checkbox input {
  display: none;
}
.home-page-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container.col-12 .custom-checkbox .checkbox-indicator {
  min-width: 20px;
  height: 20px;
  background: #DEDEDE;
  border-radius: 3px;
}

.about-us-title {
  font-size: 45px;
  font-weight: bold;
  color: #042d59;
  margin-bottom: 2rem;
}
.about-us-content-1 {
  font-size: 25px;
  margin-bottom: 2rem;
  color: #042d59;
  opacity: 0.66;
  padding-left: 0;
  text-align: left;
}
.about-us-content-2 {
  color: #042d59;
  opacity: 0.66;
  padding-left: 0;
  text-align: left;
}
.about-us-content-2 span {
  width: 100%;
  padding: 15px 0;
  border-bottom: 9px solid #25b8c5;
  border-radius: 3px;
  white-space: nowrap;
}
.about-us .group-desc {
  margin: 53px 0;
}
.about-us .group-desc h4 {
  font-size: 25px;
  color: #042d59;
  margin-left: 20px;
}
.about-us .group-list {
  list-style: none;
  /* Varsayılan numaralandırmayı kaldır */
  margin-bottom: 60px;
}
.about-us .group-list li {
  margin-bottom: 32px;
  position: relative;
  /* ::before için konumlandırma */
  color: #042d59;
  opacity: 0.66;
}
.about-us .group-list li:nth-child(1),
.about-us .group-list li:nth-child(2) {
  counter-increment: custom-counter;
  /* İlk iki öğe için sayacı arttır */
  font-size: 25px;
  position: relative;
}
.about-us .group-list li:nth-child(1) .my-list-item-dot-wrapper,
.about-us .group-list li:nth-child(2) .my-list-item-dot-wrapper {
  width: 1rem;
  height: 1rem;
  border-radius: 3px;
  background: #25b8c5;
  position: absolute;
  top: 4px;
  left: 40px;
}
.about-us .group-list li:nth-child(1) .my-list-item-dot-wrapper .my-list-item-dots,
.about-us .group-list li:nth-child(2) .my-list-item-dot-wrapper .my-list-item-dots {
  width: 0.5rem;
  height: 0.5rem;
  background: #ffffff;
  border-radius: 100%;
}
.about-us .group-list li {
  padding-left: 3rem;
  /* Yıldız ve metin için boşluk bırak */
}
.about-us .group-list li p {
  font-size: 18px;
  padding-left: 1rem;
  margin-bottom: 0;
}
.about-us-doctors {
  background: linear-gradient(103deg, #edf6ff 0%, #baddff 100%);
  border-radius: 3px 3px 3px 100px;
  margin: 150px 0 100px 0;
  padding: 0px 2rem;
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .about-us-doctors {
    grid-column: 8 span;
    gap: 0;
    border-radius: 3px;
  }
}
.about-us-doctors .image-doctors {
  grid-column: 5 span;
  position: relative;
  width: 100%;
  height: 100%;
  top: -20%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .about-us-doctors .image-doctors {
    place-self: center;
    grid-column: 12 span;
    width: 100%;
  }
}
.about-us-doctors .image-doctors .group-doctors {
  width: 100%;
  height: 100%;
}
.about-us-doctors .image-doctors .logo {
  position: absolute;
  bottom: -15px;
  right: -7px;
  width: -moz-fit-content;
  width: fit-content;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 30px rgba(4, 23, 44, 0.1725490196);
  border-radius: 3px;
  padding: 6px 10px;
}
.about-us-doctors .content-doctors {
  grid-column: 7 span;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto 0;
}
@media screen and (max-width: 768px) {
  .about-us-doctors .content-doctors {
    grid-column: 12 span;
    padding-bottom: 3rem;
  }
}
.about-us-hospitals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.about-us-hospitals .hospital-card {
  height: 118px;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 50px rgba(0, 0, 0, 0.0784313725);
  padding: 0 27px;
  border-radius: 3px;
}
.about-us-hospitals .image-bg {
  background: #25b8c5 0% 0% no-repeat padding-box;
  border-radius: 3px;
  position: relative;
  width: 64px;
  height: 62px;
  margin-right: 25px;
  border-radius: 3px;
}
.about-us-hospitals .image-bg img {
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 3px;
}
.about-us-hospitals p {
  font-size: 25px;
  color: #042d59;
}
@media (max-width: 1799px) {
  .about-us-title {
    font-size: 25px !important;
  }
  .about-us-content-1 {
    font-size: 16px !important;
  }
  .about-us-content-2 {
    font-size: 16px !important;
  }
  .about-us-content-2 span {
    border-bottom: 3px solid #25b8c5;
    padding: 10px 0;
  }
}
@media screen and (max-width: 1799px) and (max-width: 768px) {
  .about-us-content-2 span {
    border-bottom: 2px solid #25b8c5;
  }
}
@media (max-width: 1799px) {
  .about-us .group-desc img {
    width: 30px;
    height: auto;
  }
  .about-us .group-desc h4 {
    font-size: 16px;
  }
  .about-us .group-list li:nth-child(1),
  .about-us .group-list li:nth-child(2) {
    font-size: 16px;
  }
  .about-us .group-list li {
    padding-left: 5em;
    /* Yıldız ve metin için boşluk bırak */
  }
  .about-us .group-list li p {
    font-size: 14px;
  }
  .about-us-hospitals .hospital-card p {
    font-size: 16px !important;
  }
}
@media (max-width: 87.4375em) {
  .about-us-content-2 span {
    white-space: wrap;
    padding: 0px;
  }
  .about-us-doctors .logo {
    position: fixed;
    right: -7px;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: #140505 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 30px rgba(4, 23, 44, 0.1725490196);
    border-radius: 3px;
    padding: 6px 10px;
  }
  .about-us-doctors .logo img {
    width: 30px;
    height: auto;
  }
  .about-us-doctors .content-doctors {
    font-size: 20px;
    padding-left: 2rem;
  }
}
@media (max-width: 1023px) {
  .about-us-doctors .content-doctors {
    font-size: 14px !important;
    padding-left: 1.5rem;
  }
}
@media screen and (max-width: 1023px) and (max-width: 768px) {
  .about-us-doctors .content-doctors {
    font-size: 21px !important;
    line-height: 35px !important;
    transform: translateY(-10%);
  }
}
@media screen and (max-width: 1023px) and (max-width: 510px) {
  .about-us-doctors .content-doctors {
    font-size: 18px !important;
    line-height: 30px !important;
    transform: translateY(-6%);
  }
}
@media screen and (max-width: 1023px) and (max-width: 425px) {
  .about-us-doctors .content-doctors {
    font-size: 14px !important;
    line-height: 24px !important;
    transform: translateY(-3%);
  }
}
@media (max-width: 1023px) {
  .about-us .group-list {
    padding: 0;
    margin: 0;
  }
  .about-us-hospitals {
    grid-template-columns: repeat(1, 1fr);
  }
}

.our-titles * {
  color: #042d59;
}
.our-titles .our-vision-description {
  opacity: 0.66;
}
.our-titles .our-mission-description {
  opacity: 0.66;
}
.our-titles .our-values-cards-wrapper .our-values-card {
  background: rgba(37, 184, 197, 0.0431372549);
  max-width: 30% !important;
  border-radius: 5px;
  padding: 1rem 2rem;
}
@media screen and (max-width: 992px) {
  .our-titles .our-values-cards-wrapper .our-values-card {
    max-width: 45% !important;
  }
}
@media screen and (max-width: 542px) {
  .our-titles .our-values-cards-wrapper .our-values-card {
    max-width: 100% !important;
  }
}
.our-titles .our-values-cards-wrapper .our-values-card .our-values-card-head {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  gap: 0.7rem;
}
.our-titles .our-values-cards-wrapper .our-values-card .our-values-card-head .our-values-card-icon {
  position: relative;
}
.our-titles .our-values-cards-wrapper .our-values-card .our-values-card-head .our-values-card-icon img {
  border-radius: 3px;
  background: rgba(37, 184, 197, 0.1529411765);
  padding: 5px;
  width: 33px;
  height: 33px;
}
.our-titles .our-values-cards-wrapper .our-values-card .our-values-card-head .our-values-card-title {
  font-weight: bold;
  margin: 0;
}
.our-titles .our-values-cards-wrapper .our-values-card .our-values-card-body {
  margin-top: 1rem;
}
.our-titles .our-values-cards-wrapper .our-values-card .our-values-card-body .our-values-card-description {
  opacity: 0.66;
}
.our-titles .my-list-style-wrapper .my-list-style-vertical-line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 1rem;
  height: 90%;
  border-right: 1px solid rgba(112, 112, 112, 0.6980392157);
  opacity: 0.66;
  transform: translateY(-50%);
}
.our-titles .my-list-style-wrapper ul.my-list-items {
  padding: 0;
  position: relative;
  z-index: 99;
  width: 100%;
}
.our-titles .my-list-style-wrapper ul.my-list-items li.my-list-item {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  padding: 0.5rem;
}
.our-titles .my-list-style-wrapper ul.my-list-items li.my-list-item .my-list-item-dot-wrapper {
  width: 1rem;
  height: 1rem;
  border-radius: 3px;
  background: #25b8c5;
}
.our-titles .my-list-style-wrapper ul.my-list-items li.my-list-item .my-list-item-dot-wrapper .my-list-item-dots {
  width: 0.5rem;
  height: 0.5rem;
  background: #ffffff;
  border-radius: 100%;
}
.our-titles .my-list-style-wrapper ul.my-list-items li.my-list-item .my-list-item-description {
  opacity: 0.66;
  max-width: 90%;
}

.contracted-corporations {
  color: #042d59;
}
.contracted-corporations-subtitle {
  opacity: 0.66;
}
.contracted-corporations .corp-dot {
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #25b8c5;
}
.contracted-corporations .contracted-corp-cards-wrapper .contracted-corp-card {
  cursor: pointer;
  background: rgba(3, 27, 52, 0.0196078431);
  border-radius: 3px;
}
.contracted-corporations .contracted-corp-cards-wrapper .contracted-corp-card-img {
  -o-object-fit: cover;
     object-fit: cover;
}
.contracted-corporations .contracted-corp-cards-wrapper .contracted-corp-card-title {
  color: #042D59;
}
.contracted-corporations .contracted-corp-flag {
  background: rgba(3, 27, 52, 0.0196078431);
  border-radius: 3px;
  cursor: pointer;
}
.contracted-corporations .contracted-corp-flag img {
  border-radius: 100%;
}
.human-resources {
  background: #ffffff;
  margin-top: 169px;
}
.human-resources .human-resources-content-text {
  opacity: 0.66;
  font-size: 18px;
}
.human-resources .human-resources-slider .HRSwiper .swiper-wrapper .swiper-slide .HR-card .HR-slider-dots {
  width: 10px;
  height: 10px;
  background: #25b8c5;
  border-radius: 100%;
}
.human-resources .human-resources-slider .HRSwiper .swiper-wrapper .swiper-slide .HR-card .HR-slider-text {
  max-width: 85% !important;
  text-wrap: nowrap;
}
.human-resources .e-mail-card-wrapper {
  padding: 1rem;
  background: rgba(3, 27, 52, 0.0274509804);
  max-width: 90%;
  border-radius: 4px;
}
.human-resources .e-mail-card-wrapper .email-card-icon {
  width: 30px;
  height: 30px;
}
.human-resources .e-mail-card-wrapper .email-card-icon path {
  fill: #25b8c5;
}
.human-resources .HR-steps-card {
  background: linear-gradient(to left, rgba(37, 184, 197, 0.0431372549) 90%, #fff 10%);
}
@media screen and (max-width: 992px) {
  .human-resources .HR-steps-card {
    background: linear-gradient(to top, rgba(37, 184, 197, 0.0431372549) 70%, #fff 30%);
  }
}
.human-resources .HR-steps-card-img img {
  max-width: 100% !important;
  transform: translateY(-30px);
}
@media screen and (max-width: 992px) {
  .human-resources .HR-steps-card-img img {
    transform: translateY(0);
    transform: translateX(20px);
    margin-bottom: 1.5rem;
  }
}
.human-resources .HR-steps-card-descriptions {
  opacity: 0.66;
}

.investments-content {
  background: #ffffff;
}
.investments-content .investments-content-start-description {
  opacity: 0.66;
  font-size: 18px;
  line-height: 35px;
}
.investments-content .investments-card {
  background: rgba(37, 184, 197, 0.0431372549);
  border-radius: 3px 3px 49px 3px;
}
@media screen and (max-width: 992px) {
  .investments-content .investments-card {
    padding-bottom: 0 !important;
  }
}
.investments-content .investments-card-title {
  font-size: 19px;
  opacity: 0.66;
}
.investments-content .investments-card .investments-card-image-wrapper {
  position: relative;
}
@media screen and (max-width: 992px) {
  .investments-content .investments-card .investments-card-image-wrapper {
    transform: translateY(-13%);
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.investments-content .investments-card .investments-card-image-wrapper .investments-card-image {
  position: absolute;
  max-width: 80%;
  top: 0;
  right: 0;
  transform: translateY(-55%);
}
@media screen and (min-width: 1800px) {
  .investments-content .investments-card .investments-card-image-wrapper .investments-card-image {
    max-width: 57% !important;
  }
}
@media screen and (min-width: 1660px) {
  .investments-content .investments-card .investments-card-image-wrapper .investments-card-image {
    max-width: 70%;
  }
}
@media screen and (max-width: 992px) {
  .investments-content .investments-card .investments-card-image-wrapper .investments-card-image {
    position: static;
    max-width: 100%;
    transform: translateY(0);
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 992px) {
  .investments-content .investments-card .investments-card-description-wrapper {
    transform: translateY(-20%);
  }
}
.investments-content .investments-card .investments-card-description-wrapper .investments-card-description {
  font-size: 16px;
  opacity: 0.66;
}
.investments-content .growth-route-component-wrapper {
  position: relative;
  margin-left: 1rem;
}
.investments-content .growth-route-component-wrapper .growth-route-vertical-line {
  transform: translateY(2rem);
  position: absolute;
  width: 0.9rem;
  height: 100%;
  border-right: 1px solid #25b8c5;
}
.investments-content .growth-route-component-wrapper ul.growth-route-items {
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 99;
}
.investments-content .growth-route-component-wrapper ul.growth-route-items li.growth-route-item {
  display: flex;
  gap: 2rem;
  max-width: 90%;
  margin-bottom: 3rem;
}
.investments-content .growth-route-component-wrapper ul.growth-route-items li.growth-route-item:last-child {
  margin-bottom: 0;
}
.investments-content .growth-route-component-wrapper ul.growth-route-items li.growth-route-item * {
  transition: all 0.5s;
}
.investments-content .growth-route-component-wrapper ul.growth-route-items li.growth-route-item:hover img.growth-route-item-icon {
  transform: scale(1.2);
}
.investments-content .growth-route-component-wrapper ul.growth-route-items li.growth-route-item:hover p.growth-route-item-content {
  opacity: 1;
}
.investments-content .growth-route-component-wrapper ul.growth-route-items li.growth-route-item img.growth-route-item-icon {
  background: #25b8c5;
  padding: 0.5rem;
  border-radius: 100%;
  box-shadow: 0px 0px 0px 5px rgba(37, 184, 197, 0.231372549);
  margin-top: 0.4rem;
}
.investments-content .growth-route-component-wrapper ul.growth-route-items li.growth-route-item p.growth-route-item-content {
  opacity: 0.66;
}

.quality-policy .quality-policy-content-description {
  opacity: 0.66;
  font-size: 18px;
  line-height: 35px;
}
.quality-policy .quality-policy-card-wrapper .swiper {
  margin: 0;
}
.quality-policy .quality-policy-card-wrapper .swiper .swiper-slide .QP-card {
  gap: 1rem;
  padding: 1rem;
  background: rgba(37, 184, 197, 0.0431372549);
  border-radius: 3px;
}
.quality-policy .quality-policy-card-wrapper .swiper .swiper-slide .QP-card .card-icon {
  padding: 10px;
  background: rgba(37, 184, 197, 0.1843137255);
  border-radius: 3px;
}
.quality-policy .quality-policy-card-wrapper .swiper .swiper-slide .QP-card .card-title {
  color: #25b8c5;
  font-weight: bold;
}
.quality-policy .certifications-wrapper .certifications-card-icons {
  padding: 1rem 1.5rem;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.0823529412);
  border-bottom: 4px solid #25b8c5;
}
.quality-policy .certifications-wrapper .certifications-card-descriptions {
  opacity: 0.66;
  font-size: 18px;
  line-height: 30px;
}
@media screen and (max-width: 576px) {
  .quality-policy .certifications-wrapper .certifications-card-descriptions {
    font-size: 18px;
  }
}

.contact-us-content-wrapper {
  padding: 3rem 0;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left {
  background: linear-gradient(132deg, #edf6ff 0%, #baddff 100%);
  border-radius: 3px;
  position: relative;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper .contact-us-form-title {
  color: #25b8c5;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .checkbox-container * {
  transition: all 0.5s;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .checkbox-container .custom-checkbox {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: start;
  justify-content: start;
  border-radius: 3px;
  color: rgba(4, 45, 89, 0.3725490196);
  font-size: 13px;
  padding: 0.7rem 1rem;
  background: #fff;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .checkbox-container .custom-checkbox a {
  color: rgba(4, 45, 89, 0.3725490196);
  border-bottom: 2px solid rgba(4, 45, 89, 0.3725490196);
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .checkbox-container .custom-checkbox input[type=checkbox]:checked + .checkbox-indicator {
  background: #25b8c5;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .checkbox-container .custom-checkbox input[type=checkbox]:checked + .checkbox-indicator + .checkbox-label {
  color: #042d59 !important;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .checkbox-container .custom-checkbox input[type=checkbox]:checked + .checkbox-indicator + .checkbox-label a {
  color: #042d59 !important;
  border-bottom: 2px solid #042d59;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .checkbox-container .custom-checkbox input {
  display: none;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .checkbox-container .custom-checkbox .checkbox-indicator {
  min-width: 20px;
  height: 20px;
  background: #DEDEDE;
  border-radius: 3px;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .form-balls-img {
  position: absolute;
  width: 100px;
  z-index: 10;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row #form-balls-img-1 {
  top: 20px;
  transform: rotate(180deg);
  left: 250px;
  height: 50px;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row #form-balls-img-2 {
  bottom: -15px;
  height: 30px;
  left: 60px;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row #form-balls-img-3 {
  bottom: -6px;
  height: 40px;
  right: 60px;
  transform: rotate(120deg);
}
@media screen and (max-width: 576px) {
  .contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row #form-balls-img-3 {
    bottom: 390px;
    right: -15px;
    z-index: 0;
  }
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 {
  position: relative;
  margin-bottom: 1rem;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 input,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 select,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 textarea,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 input,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 select,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 textarea {
  padding: 0.7rem 1rem;
  height: 100%;
  border: none;
  font-size: 13px;
  background: #ffffff;
  border-radius: 4px;
  overflow: auto;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 input:focus,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 select:focus,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 textarea:focus,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 input:focus,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 select:focus,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 textarea:focus {
  border: none;
  outline: none;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 input option,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 select option,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 textarea option,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 input option,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 select option,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 textarea option {
  font-family: "roobert", sans-serif !important;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 select.custom-select,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 select.custom-select {
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 4 5%22%3E%3Cpath fill%3D%22%23000%22 d%3D%22M2 0L0 2h4z%22/%3E%3C/svg%3E") no-repeat left 20px center;
  background-size: 10px 10px;
  background-position: 5% 20px;
  cursor: pointer;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 select.custom-select.focused,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 select.custom-select.focused {
  background: #fff url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 4 5%22%3E%3Cpath fill%3D%22%23000%22 d%3D%22M0 0L2 2 4 0z%22/%3E%3C/svg%3E") no-repeat left 20px center;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-size: 10px 10px;
  background-position: 5% 20px;
  cursor: pointer;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 label.label-wrapper,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 label.label-wrapper {
  padding: 0.7rem 1rem;
  height: 100%;
  border: none;
  font-size: 13px;
  background: #ffffff;
  border-radius: 4px;
  color: rgba(4, 45, 89, 0.4039215686);
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 label.label-wrapper:focus,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 label.label-wrapper:focus {
  border: none;
  outline: none;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 label.label-wrapper #select-file,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 label.label-wrapper #select-file {
  background: rgba(4, 45, 89, 0.1019607843);
  border-radius: 3px;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  max-width: 100% !important;
  text-align: center;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 label.label-wrapper #selected-file,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 label.label-wrapper #selected-file {
  white-space: nowrap;
  overflow-x: hidden;
  flex-grow: 1;
  text-overflow: ellipsis;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 #mySubmitBtnContactForm,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 #mySubmitBtnContactForm {
  background: #25b8c5;
  border: none;
  outline: none;
  color: #ffffff;
  height: 100%;
  border-radius: 4px;
  min-height: 45px;
  transition: all 0.4s;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-sm-6 #mySubmitBtnContactForm:hover,
.contact-us-content-wrapper .sub-container .row .contact-us-content-left .contact-us-form-wrapper form.contact-us-form .row .col-12 #mySubmitBtnContactForm:hover {
  background: #1dabb7;
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-right {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .contact-us-content-wrapper .sub-container .row .contact-us-content-right {
    width: 100%;
  }
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-right .img-phone-wrapper {
  position: relative;
  max-width: 80%;
}
@media screen and (max-width: 768px) {
  .contact-us-content-wrapper .sub-container .row .contact-us-content-right .img-phone-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
  }
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-right .img-phone-wrapper img.contact-use-doctor-img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .contact-us-content-wrapper .sub-container .row .contact-us-content-right .img-phone-wrapper img.contact-use-doctor-img {
    width: 70%;
  }
}
@media screen and (max-width: 576px) {
  .contact-us-content-wrapper .sub-container .row .contact-us-content-right .img-phone-wrapper img.contact-use-doctor-img {
    width: 96%;
  }
}
@media screen and (max-width: 401px) {
  .contact-us-content-wrapper .sub-container .row .contact-us-content-right .img-phone-wrapper img.contact-use-doctor-img {
    width: 100%;
  }
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-right .img-phone-wrapper .contact-use-phone-btn-wrapper {
  background: #25b8c5;
  position: absolute;
  padding: 1rem 1rem;
  border-radius: 47px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  box-shadow: rgba(37, 184, 197, 0.4039215686) 0px 14px 28px, rgba(37, 184, 197, 0) 0px 10px 10px;
  width: 70%;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 969px) {
  .contact-us-content-wrapper .sub-container .row .contact-us-content-right .img-phone-wrapper .contact-use-phone-btn-wrapper {
    font-size: 14px;
  }
}
@media screen and (max-width: 969px) {
  .contact-us-content-wrapper .sub-container .row .contact-us-content-right .img-phone-wrapper .contact-use-phone-btn-wrapper img {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .contact-us-content-wrapper .sub-container .row .contact-us-content-right .img-phone-wrapper .contact-use-phone-btn-wrapper {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .contact-us-content-wrapper .sub-container .row .contact-us-content-right .img-phone-wrapper .contact-use-phone-btn-wrapper {
    font-size: 15px;
  }
}
@media screen and (max-width: 401px) {
  .contact-us-content-wrapper .sub-container .row .contact-us-content-right .img-phone-wrapper .contact-use-phone-btn-wrapper {
    font-size: 15px;
    width: 80%;
  }
}
.contact-us-content-wrapper .sub-container .row .contact-us-content-right .img-phone-wrapper .contact-use-phone-btn-wrapper a {
  color: #ffffff;
}
.contact-us-content-wrapper .sub-container .row .contact-us-maps-card {
  background: rgba(37, 184, 197, 0.0431372549);
  height: 100%;
  width: 100%;
}
.contact-us-content-wrapper .sub-container .row .contact-us-maps-card .card-head .card-title-dots {
  width: 8px;
  height: 8px;
  background: #25b8c5;
  border-radius: 100%;
}
.contact-us-content-wrapper .sub-container .row .contact-us-maps-card .card-body .card-content-wrapper .card-content-icon {
  background: #E1EAEF;
  padding: 5px;
  border-radius: 4px;
}
.contact-us-content-wrapper .sub-container .row .contact-us-maps-card .card-body .card-content-wrapper .card-content-text {
  opacity: 0.66;
}
.contact-us-content-wrapper .sub-container .row .contact-us-maps-wrapper {
  width: 100% !important;
  height: 100% !important;
  border-radius: 3px;
}
.contact-us-content-wrapper .sub-container .row .contact-us-maps-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  border-radius: 3px;
}
.contact-us-content-wrapper .sub-container .row .medical-content-card-icon {
  padding: 6px;
  background: rgba(37, 184, 197, 0.1529411765);
  border-radius: 3px;
}
.contact-us-content-wrapper .sub-container .row .medical-content-card-text {
  opacity: 0.66;
}

#contact_us_basic_form,
#contact_us_second_form {
  display: none;
  transition: all 0.3s;
}

.contact_us_form_btns {
  transition: all 0.3s;
}

.active-contact-form {
  transition: all 0.3s;
  display: block !important;
}

.active-contact-form-btn {
  transition: all 0.3s;
  color: #25b8c5;
  font-size: 18px;
  display: inline-block;
  padding-left: 1rem;
  padding-bottom: 0.3rem;
  position: relative;
  border-bottom: 1px solid transparent;
  background-image: linear-gradient(to right, #25b8c5 80%, transparent 20%);
  background-position: bottom;
  background-size: 100% 1px;
  background-repeat: no-repeat;
}

.doctors {
  position: relative;
}
.doctors-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  height: auto;
  gap: 20px;
  position: relative;
  margin: 0;
}
.doctors-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 3rem;
}
.doctors-more button {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(4, 45, 89, 0.0784313725);
  border-radius: 3px;
  padding: 20px 40px;
  color: #042d59;
  font-size: 18px;
}
.doctors-more img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px 0;
  color: #042d59;
}
@media (max-width: 1799px) {
  .doctors-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .doctors-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .doctors-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.hospitals {
  position: relative;
}
.hospitals .hospitals-cards-wrapper .hospitals-cards .col-lg-4 * {
  transition: all 0.3s;
}
.hospitals .hospitals-cards-wrapper .hospitals-cards .col-lg-4 .hospitals-card {
  box-shadow: 0px 30px 40px rgba(3, 18, 33, 0.0588235294);
  padding: 1rem;
  position: relative;
  border-radius: 3px;
}
.hospitals .hospitals-cards-wrapper .hospitals-cards .col-lg-4 .hospitals-card .new {
  position: relative;
  position: absolute;
  z-index: 9;
  color: #ffffff;
  top: 5px;
  left: -12px;
  background: #042d59;
  font-size: 10px;
  border-radius: 3px;
  box-shadow: 0px 10px 30px rgba(4, 45, 89, 0.537254902);
}
.hospitals .hospitals-cards-wrapper .hospitals-cards .col-lg-4 .hospitals-card .new .new-stars {
  position: absolute;
  top: -3px;
  left: -5px;
  background: white;
  z-index: 10;
  box-shadow: 0px 3px 10px #F7C702;
}
.hospitals .hospitals-cards-wrapper .hospitals-cards .col-lg-4 .hospitals-card .hospitals-card-bg {
  width: 60px;
  height: 60px;
  background: #25b8c5;
  border-radius: 3px;
  position: absolute;
  top: 10px;
  right: 18px;
}
.hospitals .hospitals-cards-wrapper .hospitals-cards .col-lg-4 .hospitals-card-img {
  position: relative;
  width: 90px;
  height: 80px;
  z-index: 9;
}
.hospitals .hospitals-cards-wrapper .hospitals-cards .col-lg-4 .hospitals-card .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 82px;
  height: 80px;
  background-color: #11c3d3;
  opacity: 0;
  z-index: 10;
}
.hospitals .hospitals-cards-wrapper .hospitals-cards .col-lg-4 .hospitals-card-content-text {
  color: #25b8c5;
  font-size: 14px;
  position: static;
}
.hospitals .hospitals-cards-wrapper .hospitals-cards .col-lg-4:hover .hospitals-card {
  transform: translateY(-0.7rem);
}
.hospitals .hospitals-cards-wrapper .hospitals-cards .col-lg-4:hover .hospitals-card .hospitals-card-bg {
  top: 6px;
}
.hospitals .hospitals-cards-wrapper .hospitals-cards .col-lg-4:hover .hospitals-card .overlay {
  opacity: 0.4;
}
.hospitals .hospitals-cards-wrapper .hospitals-cards .col-lg-4:hover .hospitals-card .new {
  opacity: 0;
}
.hospitals-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 3rem;
}
.hospitals-more button {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(4, 45, 89, 0.0784313725);
  border-radius: 3px;
  padding: 20px 40px;
  color: #042d59;
  font-size: 18px;
}
.hospitals-more img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px 0;
  color: #042d59;
}
@media (max-width: 87.4375em) {
  .hospitals-cards .card .new {
    padding: 10px;
  }
}
@media (max-width: 1023px) {
  .hospitals-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .hospitals-cards .card {
    padding: 10px;
    padding-top: 50px;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 639px) {
  .hospitals-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.treatment-methods-input-bg {
  padding: 2rem;
}
.treatment-methods-input-bg .overlay {
  position: absolute;
  z-index: 0;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(112deg, #EDF6FF 0%, #BADDFF 100%);
}
@media screen and (min-width: 1023px) {
  .treatment-methods-input-bg .overlay {
    height: 220px;
  }
}
.treatment-methods-input-bg .search-input-wrapper {
  position: relative;
  transform: translateY(40px);
}
.treatment-methods-input-bg .search-input-wrapper .search-icon {
  background: #25b8c5;
  padding: 0.5rem 1rem;
  border-radius: 22px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 35%;
}
@media screen and (max-width: 1136px) {
  .treatment-methods-input-bg .search-input-wrapper .search-icon {
    left: 150px;
  }
}
@media screen and (max-width: 700px) {
  .treatment-methods-input-bg .search-input-wrapper .search-icon {
    left: 75px;
  }
}
@media screen and (max-width: 430px) {
  .treatment-methods-input-bg .search-input-wrapper .search-icon {
    left: 45px;
  }
}
.treatment-methods-input-bg .search-input-wrapper .search-icon-close {
  display: none;
  width: 24px;
  height: 24px;
  border-radius: 22px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 33%;
}
@media screen and (max-width: 1136px) {
  .treatment-methods-input-bg .search-input-wrapper .search-icon-close {
    right: 150px;
  }
}
@media screen and (max-width: 700px) {
  .treatment-methods-input-bg .search-input-wrapper .search-icon-close {
    right: 75px;
  }
}
@media screen and (max-width: 430px) {
  .treatment-methods-input-bg .search-input-wrapper .search-icon-close {
    right: 50px;
  }
}
.treatment-methods-input-bg .search-input-wrapper input {
  padding: 1rem 0;
  width: 40%;
  border-radius: 47px;
  border: none;
  outline: none;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1058823529);
}
.treatment-methods-input-bg .search-input-wrapper input:focus {
  border: none;
  outline: none;
}
.treatment-methods-input-bg .search-input-wrapper input::-moz-placeholder {
  opacity: 0.36;
}
.treatment-methods-input-bg .search-input-wrapper input::placeholder {
  opacity: 0.36;
}
@media screen and (max-width: 768px) {
  .treatment-methods-input-bg .search-input-wrapper input::-moz-placeholder {
    width: 100%;
  }
  .treatment-methods-input-bg .search-input-wrapper input::placeholder {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .treatment-methods-input-bg .search-input-wrapper input {
    width: 100%;
  }
}
@media screen and (max-width: 1136px) {
  .treatment-methods-input-bg .search-input-wrapper input {
    width: 80%;
  }
}

.treatment-methods-content .most-searched-wrapper {
  width: 85%;
}
.treatment-methods-content .most-searched-wrapper .swiper-wrapper {
  display: flex;
  align-items: center;
}
.treatment-methods-content .most-searched-wrapper .swiper-wrapper #most-search {
  opacity: 0.36;
}
.treatment-methods-content .most-searched-wrapper .swiper-wrapper .most-searchs {
  text-decoration: underline;
}
.treatment-methods-content .search-letter-div .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
}

.treatment-methods-content .search-letter-div .swiper-wrapper .swiper-slide #letter-div-all {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 5px;
  border: 1px solid rgba(4, 45, 89, 0.1803921569);
  transition: all 0.2s;
  border-radius: 3px;
  cursor: pointer;
}
.treatment-methods-content .search-letter-div .swiper-wrapper .swiper-slide #letter-div-all:hover {
  background: rgba(4, 45, 89, 0.031372549);
}
.treatment-methods-content .search-letter-div .swiper-wrapper .swiper-slide #letter-div-all.active {
  background: rgba(37, 184, 197, 0.1607843137) !important;
  border: 1px solid #25b8c5;
  color: #25b8c5;
}
.treatment-methods-content .search-letter-div .swiper-wrapper .swiper-slide .letter-div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 5px;
  border: 1px solid rgba(4, 45, 89, 0.1803921569);
  transition: all 0.2s;
  border-radius: 3px;
  cursor: pointer;
}
.treatment-methods-content .search-letter-div .swiper-wrapper .swiper-slide .letter-div:hover {
  background: rgba(4, 45, 89, 0.031372549);
}
.treatment-methods-content .search-letter-div .swiper-wrapper .swiper-slide .letter-div.active {
  background: rgba(37, 184, 197, 0.1607843137) !important;
  border: 1px solid #25b8c5;
  color: #25b8c5;
}
.treatment-methods-content .special-letter-wrapper {
  display: none;
}
.treatment-methods-content .special-letter-wrapper .special-letter {
  font-size: 4.5rem;
  color: #25b8c5;
}
@keyframes zoom-in-letter {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.treatment-methods-content .special-search-result {
  border-bottom: 1px solid rgba(4, 45, 89, 0.3058823529);
}
@media screen and (max-width: 762px) {
  .treatment-methods-content .special-search-result {
    max-height: 400px;
    overflow: auto;
    scrollbar-color: #25b8c5 rgb(15, 15, 15) !important;
    scrollbar-width: thin !important;
  }
}
.treatment-methods-content .special-search-result .styled-list li {
  position: relative;
  color: rgba(4, 45, 89, 0.4549019608);
  padding: 0.5rem 0 0.5rem 0.5rem;
  transition: all 0.5s;
}
.treatment-methods-content .special-search-result .styled-list li img {
  transform: rotate(180deg);
}
.treatment-methods-content .special-search-result .styled-list li path {
  transition: all 0.5s;
}
.treatment-methods-content .special-search-result .styled-list li:hover {
  background: rgba(38, 184, 197, 0.04);
}
.treatment-methods-content .special-search-result .styled-list li:hover path {
  fill: #25b8c5;
}
.treatment-methods-content .special-search-result .styled-list li a {
  color: rgba(4, 45, 89, 0.4588235294);
}
.treatment-methods-content .search-result-wrapper .styled-list li {
  position: relative;
  color: rgba(4, 45, 89, 0.4549019608);
  padding: 0.5rem;
  transition: all 0.5s;
}
.treatment-methods-content .search-result-wrapper .styled-list li svg {
  transform: rotate(180deg);
}
.treatment-methods-content .search-result-wrapper .styled-list li path {
  transition: all 0.5s;
}
.treatment-methods-content .search-result-wrapper .styled-list li:hover {
  background: rgba(38, 184, 197, 0.04);
}
.treatment-methods-content .search-result-wrapper .styled-list li:hover path {
  fill: #25b8c5;
}
.treatment-methods-content .search-result-wrapper .styled-list li a {
  color: rgba(4, 45, 89, 0.4549019608);
}

.medical-services-detail {
  position: relative;
}
.medical-services-detail .content {
  padding-top: 4rem;
}
.medical-services-detail .content .description p {
  font-size: 18px;
  color: #042d59;
  opacity: 0.66;
  margin-top: 3rem;
}
.medical-services-detail .content-image {
  position: relative;
}
.medical-services-detail .content-image img {
  position: relative;
  z-index: 2;
}
.medical-services-detail .content-image .bg {
  position: absolute;
  background: #25b8c5 0% 0% no-repeat padding-box;
  box-shadow: 0px 30px 40px rgba(37, 184, 197, 0.3058823529);
  border-radius: 3px;
  opacity: 1;
  z-index: 1;
  width: 157px;
  height: 118px;
  top: -15px;
  left: -15px;
}
.medical-services-detail .content form.contact-us-form {
  background: linear-gradient(132deg, #edf6ff 0%, #baddff 100%);
  border-radius: 3px;
  position: relative;
}
.medical-services-detail .content form.contact-us-form .checkbox-container * {
  transition: all 0.5s;
}
.medical-services-detail .content form.contact-us-form .checkbox-container .custom-checkbox {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: start;
  justify-content: start;
  border-radius: 3px;
  color: rgba(4, 45, 89, 0.3725490196);
  font-size: 13px;
  padding: 0.7rem 1rem;
  background: #fff;
}
.medical-services-detail .content form.contact-us-form .checkbox-container .custom-checkbox a {
  color: rgba(4, 45, 89, 0.3725490196);
  border-bottom: 2px solid rgba(4, 45, 89, 0.3725490196);
}
.medical-services-detail .content form.contact-us-form .checkbox-container .custom-checkbox input[type=checkbox]:checked + .checkbox-indicator {
  background: #25b8c5;
}
.medical-services-detail .content form.contact-us-form .checkbox-container .custom-checkbox input[type=checkbox]:checked + .checkbox-indicator + .checkbox-label {
  color: #042d59 !important;
}
.medical-services-detail .content form.contact-us-form .checkbox-container .custom-checkbox input[type=checkbox]:checked + .checkbox-indicator + .checkbox-label a {
  color: #042d59 !important;
  border-bottom: 2px solid #042d59;
}
.medical-services-detail .content form.contact-us-form .checkbox-container .custom-checkbox input {
  display: none;
}
.medical-services-detail .content form.contact-us-form .checkbox-container .custom-checkbox .checkbox-indicator {
  min-width: 20px;
  height: 20px;
  background: #DEDEDE;
  border-radius: 3px;
}
.medical-services-detail .content form.contact-us-form .row .form-balls-img {
  position: absolute;
  width: 100px;
  z-index: 10;
}
.medical-services-detail .content form.contact-us-form .row #form-balls-img-1 {
  top: 20px;
  transform: rotate(180deg);
  left: 250px;
  height: 50px;
}
.medical-services-detail .content form.contact-us-form .row #form-balls-img-2 {
  bottom: -15px;
  height: 30px;
  left: 60px;
}
.medical-services-detail .content form.contact-us-form .row #form-balls-img-3 {
  bottom: -6px;
  height: 40px;
  right: 60px;
  transform: rotate(120deg);
}
@media screen and (max-width: 576px) {
  .medical-services-detail .content form.contact-us-form .row #form-balls-img-3 {
    bottom: 390px;
    right: -15px;
    z-index: 0;
  }
}
.medical-services-detail .content form.contact-us-form .row .col-sm-6,
.medical-services-detail .content form.contact-us-form .row .col-12 {
  position: relative;
  margin-bottom: 1rem;
}
.medical-services-detail .content form.contact-us-form .row .col-sm-6 input,
.medical-services-detail .content form.contact-us-form .row .col-sm-6 select,
.medical-services-detail .content form.contact-us-form .row .col-sm-6 textarea,
.medical-services-detail .content form.contact-us-form .row .col-12 input,
.medical-services-detail .content form.contact-us-form .row .col-12 select,
.medical-services-detail .content form.contact-us-form .row .col-12 textarea {
  padding: 0.7rem 1rem;
  height: 100%;
  border: none;
  font-size: 13px;
  background: #ffffff;
  border-radius: 4px;
  overflow: auto;
}
.medical-services-detail .content form.contact-us-form .row .col-sm-6 input:focus,
.medical-services-detail .content form.contact-us-form .row .col-sm-6 select:focus,
.medical-services-detail .content form.contact-us-form .row .col-sm-6 textarea:focus,
.medical-services-detail .content form.contact-us-form .row .col-12 input:focus,
.medical-services-detail .content form.contact-us-form .row .col-12 select:focus,
.medical-services-detail .content form.contact-us-form .row .col-12 textarea:focus {
  border: none;
  outline: none;
}
.medical-services-detail .content form.contact-us-form .row .col-sm-6 input option,
.medical-services-detail .content form.contact-us-form .row .col-sm-6 select option,
.medical-services-detail .content form.contact-us-form .row .col-sm-6 textarea option,
.medical-services-detail .content form.contact-us-form .row .col-12 input option,
.medical-services-detail .content form.contact-us-form .row .col-12 select option,
.medical-services-detail .content form.contact-us-form .row .col-12 textarea option {
  font-family: "roobert", sans-serif !important;
}
.medical-services-detail .content form.contact-us-form .row .col-sm-6 select.custom-select,
.medical-services-detail .content form.contact-us-form .row .col-12 select.custom-select {
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 4 5%22%3E%3Cpath fill%3D%22%23000%22 d%3D%22M2 0L0 2h4z%22/%3E%3C/svg%3E") no-repeat left 20px center;
  background-size: 10px 10px;
  background-position: 5% 20px;
  cursor: pointer;
}
.medical-services-detail .content form.contact-us-form .row .col-sm-6 select.custom-select.focused,
.medical-services-detail .content form.contact-us-form .row .col-12 select.custom-select.focused {
  background: #fff url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 4 5%22%3E%3Cpath fill%3D%22%23000%22 d%3D%22M0 0L2 2 4 0z%22/%3E%3C/svg%3E") no-repeat left 20px center;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-size: 10px 10px;
  background-position: 5% 20px;
  cursor: pointer;
}
.medical-services-detail .content form.contact-us-form .row .col-sm-6 label.label-wrapper,
.medical-services-detail .content form.contact-us-form .row .col-12 label.label-wrapper {
  padding: 0.7rem 1rem;
  height: 100%;
  border: none;
  font-size: 13px;
  background: #ffffff;
  border-radius: 4px;
  color: rgba(4, 45, 89, 0.4039215686);
}
.medical-services-detail .content form.contact-us-form .row .col-sm-6 label.label-wrapper:focus,
.medical-services-detail .content form.contact-us-form .row .col-12 label.label-wrapper:focus {
  border: none;
  outline: none;
}
.medical-services-detail .content form.contact-us-form .row .col-sm-6 label.label-wrapper #select-file,
.medical-services-detail .content form.contact-us-form .row .col-12 label.label-wrapper #select-file {
  background: rgba(4, 45, 89, 0.1019607843);
  border-radius: 3px;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  max-width: 100% !important;
  text-align: center;
}
.medical-services-detail .content form.contact-us-form .row .col-sm-6 label.label-wrapper #selected-file,
.medical-services-detail .content form.contact-us-form .row .col-12 label.label-wrapper #selected-file {
  white-space: nowrap;
  overflow-x: hidden;
  flex-grow: 1;
  text-overflow: ellipsis;
}
.medical-services-detail .content form.contact-us-form .row .col-sm-6 #mySubmitBtnContactForm,
.medical-services-detail .content form.contact-us-form .row .col-12 #mySubmitBtnContactForm {
  background: #25b8c5;
  border: none;
  outline: none;
  color: #ffffff;
  height: 100%;
  border-radius: 4px;
  min-height: 45px;
  transition: all 0.4s;
}
.medical-services-detail .content form.contact-us-form .row .col-sm-6 #mySubmitBtnContactForm:hover,
.medical-services-detail .content form.contact-us-form .row .col-12 #mySubmitBtnContactForm:hover {
  background: #1dabb7;
}
@media (max-width: 1799px) {
  .medical-services-detail .content .image p {
    font-size: 16px;
  }
  .medical-services-detail .content .form-container h2 {
    font-size: 25px;
  }
  .medical-services-detail .content .form-container p {
    font-size: 16px;
  }
}

.management-team {
  color: #042d59;
}
.management-team .chairman-wrapper-description {
  opacity: 0.66;
  line-height: 27px;
}
.management-team .chairman-wrapper .cahirman-content-bio-btn {
  position: relative;
  padding: 0.7rem 0rem;
}
.management-team .chairman-wrapper .cahirman-content-bio-btn-line {
  border-radius: 5px;
  border-top: 3px solid #042d59;
  position: absolute;
  width: 8rem;
  height: 0.1px;
  bottom: 0;
}
.management-team .chairman-wrapper .chairman-content-description {
  line-height: 30px;
}
.management-team .chairman-wrapper .chairman-card-wrapper {
  background: linear-gradient(138deg, #042D59 0%, #000000 100%);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.0274509804);
  width: 250px;
  position: relative;
  padding: 1.8rem 1.8rem 1rem 1.8rem;
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 576px) {
  .management-team .chairman-wrapper .chairman-card-wrapper {
    width: 100%;
    align-items: center;
  }
}
@media screen and (min-width: 1500px) {
  .management-team .chairman-wrapper .chairman-card-wrapper {
    width: 300px;
  }
}
@media screen and (min-width: 1700px) {
  .management-team .chairman-wrapper .chairman-card-wrapper {
    width: 340px;
  }
}
.management-team .chairman-wrapper .chairman-card-wrapper * {
  transition: all 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
.management-team .chairman-wrapper .chairman-card-wrapper .line-logo {
  position: absolute;
  z-index: 0;
}
@media screen and (max-width: 576px) {
  .management-team .chairman-wrapper .chairman-card-wrapper .line-logo {
    transform: scale(1.4);
  }
}
.management-team .chairman-wrapper .chairman-card-wrapper #line-logo-1 {
  top: 0;
  left: 0;
}
@media screen and (max-width: 576px) {
  .management-team .chairman-wrapper .chairman-card-wrapper #line-logo-1 {
    top: 5%;
    left: 5%;
  }
}
.management-team .chairman-wrapper .chairman-card-wrapper #line-logo-2 {
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 576px) {
  .management-team .chairman-wrapper .chairman-card-wrapper #line-logo-2 {
    bottom: 4%;
    right: 2%;
  }
}
.management-team .chairman-wrapper .chairman-card-wrapper .chairman-img-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 3px;
}
@media screen and (max-width: 576px) {
  .management-team .chairman-wrapper .chairman-card-wrapper .chairman-img-wrapper {
    width: 230px;
  }
}
.management-team .chairman-wrapper .chairman-card-wrapper .chairman-img-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 99.5%;
  background: rgba(37, 184, 197, 0.471);
  z-index: 2;
  border-radius: 3px;
}
.management-team .chairman-wrapper .chairman-card-wrapper .chairman-img-wrapper .chairman-png {
  position: absolute;
  z-index: 3;
  width: 100%;
  left: -4px;
  height: 100%;
  bottom: 1px;
  -o-object-fit: cover;
     object-fit: cover;
}
.management-team .chairman-wrapper .chairman-card-wrapper .chairman-img-wrapper .chairman-img {
  width: 100%;
  border-radius: 3px;
}
.management-team .chairman-wrapper .chairman-card-wrapper .chairman-img-wrapper .chairman-img img {
  border-radius: 3px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.management-team .chairman-wrapper .chairman-card-wrapper .card-subtitle {
  font-size: 11px;
}
.management-team .chairman-wrapper .chairman-card-wrapper:hover .overlay {
  opacity: 0;
}

@media screen and (max-width: 992px) {
  .team .col-lg-3:nth-child(3n) {
    padding-right: 0;
  }
  .team .col-lg-3:nth-child(3n) .team-card-wrapper {
    padding-right: 0;
    align-items: end;
  }
  .team .col-lg-3:nth-child(3n+1) {
    padding-left: 0;
  }
  .team .col-lg-3:nth-child(3n+1) .team-card-wrapper {
    padding-left: 0;
    align-items: start;
  }
}
@media screen and (max-width: 768px) {
  .team .col-lg-3:nth-child(2n) {
    padding-right: inherit;
  }
  .team .col-lg-3:nth-child(2n) .team-card-wrapper {
    padding: 1rem 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
  }
  .team .col-lg-3:nth-child(2n+1) {
    padding-right: inherit;
  }
  .team .col-lg-3:nth-child(2n+1) .team-card-wrapper {
    padding: 1rem 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
@media screen and (max-width: 576px) {
  .team .col-lg-3:nth-child(n) .team-card-wrapper {
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .team .col-lg-3:nth-child(4n) {
    padding-right: 0;
  }
  .team .col-lg-3:nth-child(4n) .team-card-wrapper {
    padding-right: 0;
  }
  .team .col-lg-3:nth-child(4n+1) {
    padding-left: 0;
  }
  .team .col-lg-3:nth-child(4n+1) .team-card-wrapper {
    padding-left: 0;
  }
}
.team .col-lg-3 .team-card-wrapper {
  padding: 1rem 1rem 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.team .col-lg-3 .team-card-wrapper .card-head {
  background: rgba(37, 184, 197, 0.0980392157);
  padding: 2rem;
  padding-bottom: 0;
  position: relative;
}
.team .col-lg-3 .team-card-wrapper .card-head .card-img {
  width: 180px;
  height: 180px;
}
.team .col-lg-3 .team-card-wrapper .card-head .card-img img {
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  background: #fff;
  box-shadow: 0px 25px 30px rgba(0, 0, 0, 0.1058823529);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1500px) {
  .team .col-lg-3 .team-card-wrapper .card-head .card-img {
    width: 200px;
    height: 200px;
  }
}
@media screen and (min-width: 1700px) {
  .team .col-lg-3 .team-card-wrapper .card-head .card-img {
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 768px) {
  .team .col-lg-3 .team-card-wrapper .card-head .card-img {
    width: 190px;
    height: 190px;
  }
}
@media screen and (max-width: 630px) {
  .team .col-lg-3 .team-card-wrapper .card-head .card-img {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 576px) {
  .team .col-lg-3 .team-card-wrapper .card-head .card-img {
    width: 210px;
    height: 210px;
  }
}
.team .col-lg-3 .team-card-wrapper .card-head .line-logo {
  position: absolute;
  z-index: 0;
}
.team .col-lg-3 .team-card-wrapper .card-head .line-logo-3 {
  top: 0;
  left: 0;
}
.team .col-lg-3 .team-card-wrapper .card-head .line-logo-4 {
  bottom: 0;
  right: 0;
}
.biography-modal.fixed {
  position: fixed;
  z-index: 15;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  overflow-y: auto;
  scrollbar-color: #25b8c5 rgba(0, 0, 0, 0) !important;
  scrollbar-width: thin !important;
}

.biography-modal {
  background: rgba(255, 255, 255, 0.737254902);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  display: none;
  position: relative;
  color: #042d59 !important;
}
.biography-modal .close-bio-modal-btn {
  position: absolute;
  top: 0px;
  right: 10%;
  font-size: 40px;
}
@media screen and (max-width: 576px) {
  .biography-modal .close-bio-modal-btn {
    right: 24px;
  }
}
.biography-modal-content-head {
  padding: 1rem 1rem 0 1rem;
  width: 100%;
  background: rgba(37, 184, 197, 0.0980392157);
  position: relative;
}
.biography-modal-content-head .line-logo {
  position: absolute;
  z-index: 0;
}
.biography-modal-content-head .line-logo-5 {
  top: 0;
  left: 0;
  width: 120px;
}
@media screen and (max-width: 576px) {
  .biography-modal-content-head .line-logo-5 {
    height: 100%;
    width: 100%;
  }
}
.biography-modal-content-head .line-logo-6 {
  width: 150px;
  height: 100%;
  top: 0;
  right: 0;
}
@media screen and (max-width: 576px) {
  .biography-modal-content-head .line-logo-6 {
    display: none;
  }
}
.biography-modal-content-head-img {
  position: relative;
  z-index: 1;
  padding: 0.5rem;
  background: #fff;
  width: 150px;
  border-radius: 3px;
  box-shadow: 0px 25px 40px rgba(0, 0, 0, 0.0823529412);
}
@media screen and (max-width: 576px) {
  .biography-modal-content-head-img {
    width: 70%;
  }
}
.biography-modal-content-body-text {
  opacity: 0.66;
  margin: 0;
  margin-bottom: 2rem;
  line-height: 33px;
  font-size: 18px;
}
.biography-modal .a-button {
  border: 1px solid rgba(4, 45, 89, 0.0784313725);
  border-radius: 3px;
}

.doctor-details {
  position: relative;
}
.doctor-details .gradient-container {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.doctor-details .gradient-container .gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80%;
  width: 100%;
  background: transparent linear-gradient(113deg, #dfefff, #FFFFFF);
}
@media screen and (max-width: 992px) {
  .doctor-details .gradient-container .gradient-top {
    height: 83%;
  }
}
@media screen and (max-width: 768px) {
  .doctor-details .gradient-container .gradient-top {
    height: 50%;
  }
}
.doctor-details .gradient-container .gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: #fff;
}
@media screen and (max-width: 992px) {
  .doctor-details .gradient-container .gradient-bottom {
    height: 17%;
  }
}
@media screen and (max-width: 768px) {
  .doctor-details .gradient-container .gradient-bottom {
    height: 50%;
  }
}
.doctor-details .doctor-details-card-wrapper {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .doctor-details .doctor-details-card-wrapper {
    width: 100% !important;
  }
}
@media screen and (max-width: 992px) {
  .doctor-details .doctor-details-card-wrapper .doctor-details-card-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .doctor-details .doctor-details-card-wrapper .doctor-details-card-subtitle {
    font-size: 15px;
  }
}
.doctor-details .doctor-details-card-wrapper .doctor-details-img-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 0;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.0352941176);
}
.doctor-details .doctor-details-card-wrapper .doctor-details-img {
  position: relative;
  z-index: 1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .doctor-details .doctor-details-card-wrapper .doctor-details-img {
    width: 100% !important;
  }
}
.doctor-details .doctor-details-card-wrapper .doctor-details-contact-wrapper * {
  display: inline-block;
  color: #042d59;
  color: rgba(4, 45, 89, 0.5490196078);
  background: #fff;
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.6rem;
  border-radius: 3px;
  font-size: 12px;
}
.doctor-details .doctor-details-card-wrapper .doctor-details-contact-wrapper .own-hospital {
  width: 49.5%;
}
.doctor-details .doctor-details-card-wrapper .doctor-details-contact-wrapper .own-number {
  width: 49.5%;
  float: left;
}
.doctor-details .doctor-details-card-wrapper .doctor-details-contact-wrapper .own-email {
  width: 100%;
}
.doctor-details .doctor-details-card-wrapper .own-skills-wrapper .own-skill {
  display: flex;
  align-items: center;
  background: rgba(37, 184, 197, 0.0705882353);
  padding: 0.7rem 1rem;
  font-size: 14px;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .doctor-details .doctor-details-card-wrapper .own-skills-wrapper .own-skill {
    transform: scale(1.5);
  }
}
@media screen and (max-width: 620px) {
  .doctor-details .doctor-details-card-wrapper .own-skills-wrapper .own-skill {
    transform: scale(1.2);
  }
}
@media screen and (max-width: 520px) {
  .doctor-details .doctor-details-card-wrapper .own-skills-wrapper .own-skill {
    transform: scale(1);
  }
}
@media screen and (max-width: 430px) {
  .doctor-details .doctor-details-card-wrapper .own-skills-wrapper .own-skill {
    margin-bottom: 0.7rem;
  }
}
.doctor-details .doctor-details-card-wrapper .own-skills-wrapper .own-skill .skills-img {
  background: rgba(37, 184, 197, 0.1882352941);
  height: 100%;
}
@media screen and (max-width: 992px) {
  .doctor-details .doctor-details-card-wrapper .own-skills-wrapper .own-skill .skills-img {
    width: 35px;
    padding: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .doctor-details .doctor-details-card-wrapper .own-skills-wrapper {
    display: flex;
    justify-content: center;
    gap: 8rem;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 620px) {
  .doctor-details .doctor-details-card-wrapper .own-skills-wrapper {
    gap: 5rem;
  }
}
@media screen and (max-width: 520px) {
  .doctor-details .doctor-details-card-wrapper .own-skills-wrapper {
    gap: 2rem;
  }
}
@media screen and (max-width: 440px) {
  .doctor-details .doctor-details-card-wrapper .own-skills-wrapper {
    gap: 1rem;
  }
}
@media screen and (max-width: 430px) {
  .doctor-details .doctor-details-card-wrapper .own-skills-wrapper {
    display: inline-block;
  }
}

.doctor-details-tab .doctor-detail-swiper-1 .swiper-slide {
  color: rgba(4, 45, 89, 0.6392156863);
  cursor: pointer !important;
}
.doctor-details-tab .doctor-detail-swiper-1 .swiper-slide-thumb-active {
  color: #042d59 !important;
}
.doctor-details-tab .doctor-detail-swiper-1 .swiper-slide-thumb-active .swiper-tab-cards {
  border-bottom: 3px solid #25b8c5;
}
.doctor-details-tab .doctor-detail-swiper-2 .swiper-wrapper .swiper-slide {
  color: rgba(4, 45, 89, 0.6392156863) !important;
}
.doctor-details-tab .doctor-detail-swiper-2 .swiper-wrapper .swiper-slide .my-list-item-dot-wrapper {
  width: 1rem;
  height: 1rem;
  border-radius: 3px;
  background: #25b8c5;
}
.doctor-details-tab .doctor-detail-swiper-2 .swiper-wrapper .swiper-slide .my-list-item-dot-wrapper .my-list-item-dots {
  width: 0.5rem;
  height: 0.5rem;
  background: #ffffff;
  border-radius: 100%;
}

.similar-doctors a.see-doctors {
  color: #25b8c5;
  display: inline-block;
  position: relative;
}
.similar-doctors a.see-doctors::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #25b8c5 60%, transparent 40%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.similar-doctors .similar-doctor-card-wrapper {
  border: 1px solid rgba(4, 45, 89, 0.0823529412);
  border-radius: 3px;
  text-decoration: none !important;
  display: inherit;
}
.similar-doctors .similar-doctor-card-wrapper * {
  transition: all 0.3s;
}
.similar-doctors .similar-doctor-card-wrapper .card-head {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  background: #F5FCFD;
}
.similar-doctors .similar-doctor-card-wrapper .card-head .circle-bg {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  z-index: 0;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(37, 184, 197, 0.1411764706);
}
.similar-doctors .similar-doctor-card-wrapper .card-head .hover-line-img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 35%;
  opacity: 0;
}
.similar-doctors .similar-doctor-card-wrapper .card-head .doctor-img {
  width: 60%;
  position: relative;
  z-index: 1;
}
.similar-doctors .similar-doctor-card-wrapper .card-body * {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}
.similar-doctors .similar-doctor-card-wrapper .card-footer p {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4%;
  margin-bottom: 0.5rem !important;
}
.similar-doctors .similar-doctor-card-wrapper .card-footer p span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}
.similar-doctors .similar-doctor-card-wrapper:hover {
  border: 2px solid rgba(37, 184, 197, 0.3254901961);
}
.similar-doctors .similar-doctor-card-wrapper:hover * {
  fill: #fff;
  color: #fff;
}
.similar-doctors .similar-doctor-card-wrapper:hover .doctor-img {
  transform: translateX(-10%);
}
.similar-doctors .similar-doctor-card-wrapper:hover .hover-line-img {
  opacity: 1;
}
.similar-doctors .similar-doctor-card-wrapper:hover .card-body,
.similar-doctors .similar-doctor-card-wrapper:hover .card-footer {
  background: #25b8c5;
}

.hospitals-details {
  position: relative;
}
.hospitals-details .hospitals-details-page-title-slide {
  height: 100px;
}
.hospitals-details .hospitals-details-page-title-slide .swiper-slide .hospitals-content-card-wrapper .hospitals-content-card {
  padding: 0.75rem 1rem 0.75rem 1rem;
  background: #fff;
  border-radius: 3px;
  font-size: 12px;
  transition: all 0.2s;
}
.hospitals-details .hospitals-details-page-title-slide .swiper-slide .hospitals-content-card-wrapper .hospitals-content-card-icon {
  width: 17px;
  height: 17px;
}
.hospitals-details .hospitals-details-page-title-slide .swiper-slide .hospitals-content-card-wrapper .hospitals-content-card-title {
  opacity: 0.6;
}
.hospitals-details .hospitals-details-page-title-slide .swiper-slide .hospitals-content-card-wrapper .hospitals-content-card:hover {
  background: #fdfbfb;
  transform: scale(1.025);
}
.hospitals-details .gradient-container {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.hospitals-details .gradient-container .gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80%;
  width: 100%;
  background: transparent linear-gradient(113deg, #dfefff, #FFFFFF);
}
@media screen and (max-width: 992px) {
  .hospitals-details .gradient-container .gradient-top {
    height: 83%;
  }
}
@media screen and (max-width: 768px) {
  .hospitals-details .gradient-container .gradient-top {
    height: 50%;
  }
}
.hospitals-details .gradient-container .gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: #fff;
}
@media screen and (max-width: 992px) {
  .hospitals-details .gradient-container .gradient-bottom {
    height: 17%;
  }
}
@media screen and (max-width: 768px) {
  .hospitals-details .gradient-container .gradient-bottom {
    height: 50%;
  }
}
.hospitals-details .hospitals-details-card-wrapper {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .hospitals-details .hospitals-details-card-wrapper {
    width: 100% !important;
  }
}
.hospitals-details .hospitals-details-card-wrapper .hospitals-details-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background: #25b8c5;
  padding: 0 2rem;
  box-shadow: 0px 3px 50px rgba(0, 0, 0, 0.031372549);
}
@media screen and (max-width: 768px) {
  .hospitals-details .hospitals-details-card-wrapper .hospitals-details-img {
    width: 100% !important;
  }
}
@media screen and (min-width: 768px) {
  .hospitals-details .hospitals-details-card-wrapper .hospitals-details-content-row .hospitals-content-card-wrapper:nth-child(2n+1) {
    padding-right: 0.25rem;
  }
  .hospitals-details .hospitals-details-card-wrapper .hospitals-details-content-row .hospitals-content-card-wrapper:nth-child(2n+2) {
    padding-left: 0.25rem;
  }
}
.hospitals-details .hospitals-details-card-wrapper .hospitals-details-content-row .hospitals-content-card-wrapper .hospitals-content-card {
  box-shadow: 0px 25px 40px rgba(0, 0, 0, 0.0274509804);
  padding: 0.75rem 1rem 0.75rem 1rem;
  background: #fff;
  border-radius: 3px;
  font-size: 12px;
  transition: all 0.2s;
}
.hospitals-details .hospitals-details-card-wrapper .hospitals-details-content-row .hospitals-content-card-wrapper .hospitals-content-card-icon {
  width: 17px;
  height: 17px;
}
.hospitals-details .hospitals-details-card-wrapper .hospitals-details-content-row .hospitals-content-card-wrapper .hospitals-content-card-title {
  opacity: 0.6;
}
.hospitals-details .hospitals-details-card-wrapper .hospitals-details-content-row .hospitals-content-card-wrapper .hospitals-content-card:hover {
  background: #fdfbfb;
  transform: scale(1.025);
}
@media screen and (max-width: 768px) {
  .hospitals-details .hospitals-details-card-wrapper .own-skills-wrapper {
    width: 100%;
    margin: auto;
  }
}
.hospitals-details .hospitals-details-card-wrapper .own-skills-wrapper .own-skill {
  display: flex;
  align-items: center;
  background: rgba(37, 184, 197, 0.0705882353);
  padding: 0.7rem 1rem;
  font-size: 13px;
  gap: 1rem;
}
.hospitals-details .hospitals-details-card-wrapper .own-skills-wrapper .own-skill .skills-img {
  background: rgba(37, 184, 197, 0.1882352941);
  height: 100%;
  width: 31px;
}
@media screen and (max-width: 992px) {
  .hospitals-details .hospitals-details-card-wrapper .own-skills-wrapper .own-skill .skills-img {
    width: 35px;
    padding: 0.5rem;
  }
}
@media screen and (max-width: 992px) {
  .hospitals-details .hospitals-details-card-wrapper .own-skills-wrapper .own-skill {
    background: #e4f4fb;
  }
}
@media screen and (max-width: 768px) {
  .hospitals-details .hospitals-details-card-wrapper .own-skills-wrapper .own-skill {
    height: 100%;
  }
}

.information-section .information-content p {
  font-size: 18px;
  line-height: 32px;
}
.information-section .information-card {
  background: rgba(3, 27, 52, 0.0274509804);
  display: inline-flex;
  padding: 0.6rem 1.2rem;
  border-radius: 3px;
}
.information-section .information-section-slider {
  height: 200px;
}
.information-section .information-section-slider.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to left, rgba(216, 250, 255, 0.231372549) 20%, rgba(255, 255, 255, 0.3921568627) 90%) !important;
  z-index: 999;
  width: 100% !important;
  height: 100%;
  margin: auto !important;
  margin-bottom: auto !important;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  padding: 10rem 0;
}
.information-section .information-section-slider.active .information-slide-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent !important;
  box-shadow: none !important;
}
.information-section .information-section-slider.active img {
  height: 50vh !important;
  width: 500px !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
@media screen and (max-width: 768px) {
  .information-section .information-section-slider.active img {
    width: 350px !important;
  }
}
@media screen and (min-width: 1768px) {
  .information-section .information-section-slider.active img {
    width: 750px !important;
  }
}
.information-section .information-section-slider.active .overlay-container {
  display: none;
}
.information-section .information-section-slider.active .swiper-btn-paginations {
  display: flex;
  color: #25b8c5 !important;
}
@media screen and (max-width: 768px) {
  .information-section .information-section-slider.active .swiper-btn-paginations {
    display: none;
  }
}
.information-section .information-section-slider.active .swiper-button-next {
  right: 5rem;
}
.information-section .information-section-slider.active .swiper-button-prev {
  left: 5rem;
}
.information-section .information-section-slider.active .gallery-modal-close {
  display: block;
  position: absolute;
  right: 5rem;
  top: 8rem;
  font-size: 40px;
  color: #03468e;
  cursor: pointer;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .information-section .information-section-slider.active .gallery-modal-close {
    top: 6rem;
    right: 1.5rem;
  }
}
.information-section .information-section-slider.active .swiper-pagination {
  display: block;
  z-index: 99;
  bottom: 22vh;
}
@media screen and (max-width: 768px) {
  .information-section .information-section-slider.active .swiper-pagination {
    bottom: 26vh;
  }
}
.information-section .information-section-slider.active .swiper-pagination-bullet-active {
  background: #25b8c5 !important;
}
.information-section .information-section-slider .swiper-pagination {
  display: none;
}
.information-section .information-section-slider .swiper-btn-paginations {
  display: none;
}
.information-section .information-section-slider .gallery-modal-close {
  display: none;
}
.information-section .information-section-slider .swiper-wrapper {
  height: 150px;
}
.information-section .information-section-slider .swiper-wrapper .swiper-slide {
  height: 150px !important;
}
.information-section .information-section-slider .swiper-wrapper .swiper-slide * {
  box-sizing: border-box !important;
}
.information-section .information-section-slider .swiper-wrapper .swiper-slide .information-slide-card {
  position: relative;
  padding: 0.5rem;
  background: #ffffff;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.0352941176);
}
.information-section .information-section-slider .swiper-wrapper .swiper-slide .information-slide-card img {
  position: relative;
  z-index: 0;
  border-radius: 4px;
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.information-section .information-section-slider .swiper-wrapper .swiper-slide .information-slide-card .overlay-container {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem;
}
.information-section .information-section-slider .swiper-wrapper .swiper-slide .information-slide-card .overlay-container .overlay {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  background: rgba(37, 184, 197, 0.2901960784);
  z-index: 1;
  border-radius: 3px;
}
.information-section .information-section-slider .swiper-wrapper .swiper-slide .information-slide-card:hover .overlay {
  opacity: 0;
}

.rooms-section .hospital-detail-room-tab-1 .swiper-slide {
  cursor: pointer;
  color: rgba(4, 45, 89, 0.6392156863);
}
.rooms-section .hospital-detail-room-tab-1 .swiper-slide-thumb-active {
  transition: all 0.4s;
  color: #25b8c5 !important;
}
.rooms-section .hospital-detail-room-tab-1 .swiper-slide-thumb-active .swiper-tab-cards {
  border-bottom: 3px solid #25b8c5;
}
.rooms-section .hospital-detail-room-tab-2.active {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  height: 100% !important;
}
.rooms-section .hospital-detail-room-tab-2.active .swiper-wrapper {
  height: 100% !important;
}
.rooms-section .hospital-detail-room-tab-2.active .swiper-wrapper .swiper-slide {
  height: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider {
  position: relative;
  height: 200px;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(to left, rgba(216, 250, 255, 0.231372549) 20%, rgba(255, 255, 255, 0.3921568627) 90%) !important;
  z-index: 9999999 !important;
  width: 100% !important;
  height: 100% !important;
  margin: auto !important;
  margin-bottom: auto !important;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  padding: 10rem 0;
  border: 1px solid red;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms .rooms-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: transparent !important;
  box-shadow: none !important;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms .rooms-card-head {
  box-shadow: none !important;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms .rooms-card-body {
  display: none;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms img {
  cursor: auto !important;
  height: 50vh !important;
  width: 500px !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
@media screen and (max-width: 768px) {
  .rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms img {
    width: 350px !important;
  }
}
@media screen and (min-width: 1768px) {
  .rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms img {
    width: 750px !important;
  }
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms .overlay-container {
  display: none;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms .swiper-btn-paginations {
  display: flex;
  color: #25b8c5 !important;
}
@media screen and (max-width: 768px) {
  .rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms .swiper-btn-paginations {
    display: none;
  }
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms .swiper-button-next {
  right: 5rem;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms .swiper-button-prev {
  left: 5rem;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms .gallery-modal-close-rooms {
  display: block;
  position: absolute;
  right: 5rem;
  top: 250px;
  font-size: 40px;
  color: #03468e;
  cursor: pointer;
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  .rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms .gallery-modal-close-rooms {
    top: 250px;
    right: 1.5rem;
  }
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms .swiper-pagination {
  display: block;
  z-index: 99999;
  bottom: 35vh;
}
@media screen and (max-width: 768px) {
  .rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms .swiper-pagination {
    bottom: 300px;
  }
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider.active-rooms .swiper-pagination-bullet-active {
  background: #25b8c5 !important;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider .swiper-pagination {
  display: none;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider .swiper-btn-paginations {
  display: none;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider .gallery-modal-close-rooms {
  display: none;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider .swiper-wrapper {
  height: 150px;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider .swiper-wrapper .swiper-slide {
  height: 150px;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider .swiper-wrapper .swiper-slide * {
  box-sizing: border-box;
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider .swiper-wrapper .swiper-slide .rooms-card-head {
  padding: 0.5rem;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.0352941176);
}
.rooms-section .hospital-detail-room-tab-2 .swiper-wrapper .swiper-slide .rooms-card-wrapper-slider .swiper-wrapper .swiper-slide .rooms-card-head img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
}

.hostpitals-medical-services-section .medical-services-list-wrapper ul li:last-child a {
  margin-bottom: 0 !important;
}
.hostpitals-medical-services-section .medical-services-list-wrapper ul li a {
  display: inline-flex;
  transition: all 0.2s;
  padding: 0.2rem 0.5rem;
}
.hostpitals-medical-services-section .medical-services-list-wrapper ul li a img {
  transform: rotate(180deg);
}
.hostpitals-medical-services-section .medical-services-list-wrapper ul li * {
  color: rgba(4, 45, 89, 0.4549019608);
}
.hostpitals-medical-services-section .medical-services-list-wrapper ul li:hover a {
  background: rgba(4, 45, 89, 0.0431372549);
  transform: scale(1.01);
}
.hostpitals-medical-services-section .medical-services-list-wrapper .see-all-services {
  display: inline-block;
  position: relative;
}
.hostpitals-medical-services-section .medical-services-list-wrapper .see-all-services::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #25b8c5 60%, transparent 40%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.hostpitals-medical-services-section .medical-services-list-wrapper .see-all-services a {
  color: #25b8c5;
}

.featured-units-section ul.featured-units-list-wrapper .featured-units-list-items {
  padding-bottom: 1rem;
}
.featured-units-section ul.featured-units-list-wrapper .featured-units-list-items-dots {
  width: 8px;
  height: 8px;
  background: #25b8c5;
  border-radius: 100%;
}

.how-to-go-section .how-to-go-slider .swiper-wrapper .swiper-slide {
  padding: 1rem 0;
}
.how-to-go-section .how-to-go-slider .swiper-wrapper .swiper-slide .howtogo-card {
  height: 100%;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.0352941176);
  padding: 1rem 1.5rem;
  height: 400px;
}
.how-to-go-section .how-to-go-slider .swiper-wrapper .swiper-slide .howtogo-card-head-icon {
  width: 18px;
}
@media screen and (max-width: 430px) {
  .how-to-go-section .how-to-go-slider .swiper-wrapper .swiper-slide .howtogo-card-head-title {
    font-size: 15px;
  }
}
@media screen and (max-width: 390px) {
  .how-to-go-section .how-to-go-slider .swiper-wrapper .swiper-slide .howtogo-card-head-title {
    font-size: 13px;
  }
}
.how-to-go-section .how-to-go-slider .swiper-wrapper .swiper-slide .howtogo-card-head-title-primary {
  color: #25b8c5 !important;
}
.how-to-go-section .how-to-go-slider .swiper-wrapper .swiper-slide .howtogo-card-head-arrow {
  transform: rotate(180deg);
  margin-left: auto;
}
.how-to-go-section .how-to-go-slider .swiper-wrapper .swiper-slide .howtogo-card-body {
  height: calc(350px - 1rem);
  overflow: auto;
  scrollbar-color: #25b8c5 rgba(37, 184, 197, 0.0431372549) !important;
  scrollbar-width: thin !important;
}
.how-to-go-section .how-to-go-slider .swiper-wrapper .swiper-slide .howtogo-card-body::-webkit-scrollbar-track {
  background: #25b8c5 !important;
}
.how-to-go-section .how-to-go-slider .swiper-wrapper .swiper-slide .howtogo-card-body::-webkit-scrollbar-track {
  background: rgba(37, 184, 197, 0.0431372549) !important;
}
.how-to-go-section .how-to-go-slider .swiper-wrapper .swiper-slide .howtogo-card-body .vehicle-card .vehicle-icon {
  width: 24px;
  border-radius: 100%;
  background: rgba(37, 184, 197, 0.1411764706);
  padding: 0.3rem;
}
.how-to-go-section .how-to-go-slider .swiper-wrapper .swiper-slide .howtogo-card-body .vehicle-card .vehicle-text {
  font-size: 13px;
}
.how-to-go-section .how-to-go-slider .swiper-wrapper .swiper-slide .howtogo-card-body .subway-card .subway-icon {
  width: 24px;
  border-radius: 100%;
  background: rgba(37, 184, 197, 0.1411764706);
  padding: 0.3rem;
}
.how-to-go-section .how-to-go-slider .swiper-wrapper .swiper-slide .howtogo-card-body .subway-card .subway-text {
  font-size: 13px;
}

.services-offered-section .services-offered-cards-wrapper .services-offered-card {
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.0352941176);
  padding: 1rem 1rem 1rem 2rem;
}
.services-offered-section .services-offered-cards-wrapper .services-offered-card .card-icon {
  width: 24px;
  border-radius: 100%;
  background: rgba(37, 184, 197, 0.1411764706);
  padding: 0.3rem;
  margin-right: 0.7rem;
}
@media screen and (max-width: 576px) {
  .services-offered-section .services-offered-cards-wrapper .services-offered-card .card-icon {
    align-self: flex-start !important;
  }
}
.services-offered-section .services-offered-cards-wrapper .services-offered-card .text-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
}
@media screen and (max-width: 576px) {
  .services-offered-section .services-offered-cards-wrapper .services-offered-card .text-wrapper {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .services-offered-section .services-offered-cards-wrapper .services-offered-card .text-wrapper .card-title-services-offered {
    margin-bottom: 0.5rem !important;
  }
}
.services-offered-section .services-offered-cards-wrapper .services-offered-card .text-wrapper .opacity-text {
  flex: 1;
  margin-left: 10px;
}

.medical-tech-section .medical-tech-card-wrapper {
  background: rgba(37, 184, 197, 0.0431372549);
  transition: all 0.3s;
}
.medical-tech-section .medical-tech-card-wrapper .medical-tech-card-img {
  padding: 0.7rem;
  background: #fff;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.0901960784);
  height: 100%;
}
.medical-tech-section .medical-tech-card-wrapper .medical-tech-card-img img {
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.medical-tech-section .medical-tech-more-wrapper {
  display: none;
}

#doctors-anchors a.see-doctors {
  color: #25b8c5;
  display: inline-block;
  position: relative;
}
#doctors-anchors a.see-doctors::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #25b8c5 60%, transparent 40%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.patient-stories .patient-stories-card-wrapper {
  transition: all 0.3s;
}
.patient-stories .patient-stories-card-wrapper .patient-stories-card {
  background: linear-gradient(103deg, #042D59 0%, #03468E 100%);
  box-shadow: 0px 10px 20px rgba(3, 18, 33, 0.0784313725);
  padding: 2rem 0.5rem 0 1.5rem;
  border-radius: 3px;
}
.patient-stories .patient-stories-card-wrapper .patient-stories-card .card-content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.patient-stories .patient-stories-card-wrapper .patient-stories-card .card-head img {
  max-width: 100%;
}
.patient-stories .patient-stories-card-wrapper .card-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.patient-stories .patient-stories-card-wrapper:hover {
  transform: scale(1.025);
  opacity: 0.95;
}

.ellipse-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.corporote-brand-idenity-img-cover {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100% !important;
  height: 400px;
}
.corporote-brand-idenity-img-contain {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100% !important;
}

.health-blog-categories {
  z-index: 1;
  background: #f5fcfd;
  border-radius: 3px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.health-blog-categories .title {
  color: #25b8c5;
  border-bottom: 1px solid rgba(4, 45, 89, 0.2235294118);
  padding-bottom: 0.5rem;
}
.health-blog-categories .categories-content {
  background: #fff;
  flex-grow: 1;
  overflow: auto;
  height: 200px;
  scrollbar-color: #25b8c5 #EAF3F6 !important;
  scrollbar-width: thin !important;
}
.health-blog-categories .categories-content-items {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 13px;
}
.health-blog-categories .categories-content-items-border {
  border-bottom: 1px solid rgba(4, 45, 89, 0.1058823529);
  width: 100%;
  display: block;
  padding-bottom: 0.5rem;
}

.health-blog-detail-section {
  position: relative;
}

.health-blog-detail-categories {
  height: 400px;
}
.health-blog-detail-categories.fixed {
  position: fixed;
  right: 10rem;
  top: 140px;
  z-index: 999;
}
@media (max-width: 87.4375em) {
  .health-blog-detail-categories.fixed {
    right: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .health-blog-detail-categories.fixed {
    position: static !important;
    right: 0;
    top: 0;
    z-index: auto;
  }
}
.health-blog-detail-categories.absolute {
  position: absolute;
  right: auto;
  bottom: 0;
  z-index: 99;
}
@media (max-width: 87.4375em) {
  .health-blog-detail-categories.absolute {
    right: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .health-blog-detail-categories.absolute {
    position: static !important;
    right: 0;
    top: 0;
    z-index: auto;
  }
}

.my-list-items-wrapper .my-list-item {
  align-items: start;
  gap: 8px;
}
.my-list-items-wrapper .my-list-item-dot {
  width: 8px;
  aspect-ratio: 1/1;
  background: #25b8c5;
  border-radius: 100%;
}
.my-list-items-wrapper .my-list-item-text {
  width: calc(100% - 8px);
  margin-left: auto;
}

/* Components */
.fixed-items-wrapper {
  height: 100%;
  width: 100%;
}
.fixed-items-wrapper .fixed-language-bar-wrapper {
  background: #fff;
  position: fixed;
  z-index: 999999;
  right: 0;
  top: 10%;
  border-radius: 3px 0 0 3px;
  padding: 5px;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1137254902);
  transition: all 0.4s;
  display: inline-flex;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .fixed-items-wrapper .fixed-language-bar-wrapper {
    max-width: 70%;
    /*display: none !important;*/
  }
}
.fixed-items-wrapper .fixed-language-bar-wrapper .language-icon-wrapper {
  cursor: pointer;
}
.fixed-items-wrapper .fixed-language-bar-wrapper .language-icon-wrapper img {
  width: 26px;
  aspect-ratio: 1/1;
}
.fixed-items-wrapper .fixed-language-bar-wrapper .language-list {
  /*display: flex;*/
  align-items: center;
  transition: all 0.4s;
  min-height: 100% !important;
  padding: 0 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.fixed-items-wrapper .fixed-language-bar-wrapper .language-list::-webkit-scrollbar {
  display: none;
}
.fixed-items-wrapper .fixed-language-bar-wrapper .language-list *::-webkit-scrollbar {
  display: none;
}
.fixed-items-wrapper .fixed-language-bar-wrapper .language-list.hidden-list {
  display: none;
}
.fixed-items-wrapper .fixed-language-bar-wrapper .language-list .language-arrow {
  transform: rotate(90deg);
  width: 10px;
}
.fixed-items-wrapper .fixed-language-bar-wrapper .language-list .list-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.fixed-items-wrapper .fixed-language-bar-wrapper .language-list .list-item img {
  width: 25px;
}
.fixed-items-wrapper .back-to-top-wrapper {
  position: fixed;
  bottom: 6rem;
  right: 15px;
  z-index: 9998;
  cursor: pointer;
}
.fixed-items-wrapper .back-to-top-wrapper .back-to-top-btn {
  border: none;
  outline: none;
  background: none;
  transform: translateX(100px);
  transition: all 1s;
  display: none;
}
.fixed-items-wrapper .back-to-top-wrapper .back-to-top-btn.show {
  transition: all 1s;
  transform: translateX(0px);
}
.fixed-items-wrapper .back-to-top-wrapper .back-to-top-btn img {
  background: #25b8c5;
  width: 55px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  box-shadow: 1px 1px 6px 1px rgba(0, 0, 0, 0.279);
}
.fixed-items-wrapper .fixed-wp-wrapper {
  position: fixed;
  bottom: 2rem;
  left: 20px;
  z-index: 9998;
  cursor: pointer;
}
.fixed-items-wrapper .fixed-wp-wrapper img {
  border-radius: 100%;
  width: 55px;
  animation: wp-animation 1s linear infinite;
  background: #0dc143;
  transition: all 0.3s;
}
.fixed-items-wrapper .fixed-wp-wrapper img:hover {
  animation: wp-animation-hover 0.5s linear infinite;
}
@keyframes wp-animation {
  0% {
    box-shadow: 1px 1px 6px 1px rgba(13, 193, 67, 0.2039215686);
  }
  40% {
    box-shadow: 1px 1px 6px 2px rgba(13, 193, 67, 0.662745098);
  }
  100% {
    box-shadow: 1px 1px 6px 1px rgba(13, 193, 67, 0.2039215686);
  }
}
@keyframes wp-animation-hover {
  0% {
    box-shadow: 1px 1px 10px 1px rgba(13, 193, 67, 0.2039215686);
  }
  40% {
    box-shadow: 1px 1px 10px 2px rgba(13, 193, 67, 0.662745098);
  }
  100% {
    box-shadow: 1px 1px 10px 1px rgba(13, 193, 67, 0.2039215686);
  }
}
.fixed-items-wrapper .fixed-form-wrapper .let-us-call-u-btn {
  background: #03468e;
  position: fixed;
  bottom: 2rem;
  right: 0;
  z-index: 9998;
  border-radius: 5px 0 0 5px;
  color: #fff;
  cursor: pointer;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form {
  display: none;
  z-index: 9999;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto !important;
  scrollbar-color: #25b8c5 rgba(1, 54, 71, 0.208) !important;
  scrollbar-width: thin !important;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form.fixed {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4745098039);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content {
  background: linear-gradient(270deg, #042D59 0%, #010912 100%);
  border-radius: 3px;
  position: relative;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper .close-let-us-call-u {
  width: 40px;
  aspect-ratio: 1/1;
  font-size: 35px;
  cursor: pointer;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper .contact-us-form-title {
  color: #fff;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form {
  border-radius: 3px;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12,
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-md-6 {
  position: relative;
  margin-bottom: 1rem;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 input,
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-md-6 input {
  padding: 0.7rem 1rem;
  height: 100%;
  border: none;
  font-size: 14px;
  border-radius: 4px;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 input:focus,
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-md-6 input:focus {
  border: none;
  outline: none;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 #mySubmitBtnContactForm,
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-md-6 #mySubmitBtnContactForm {
  background: #25b8c5;
  border: none;
  outline: none;
  color: #ffffff;
  height: 100%;
  border-radius: 4px;
  min-height: 45px;
  transition: all 0.4s;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-12 #mySubmitBtnContactForm:hover,
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .col-md-6 #mySubmitBtnContactForm:hover {
  background: #1dabb7;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container * {
  transition: all 0.5s;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container .custom-checkbox {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: start;
  justify-content: start;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.768627451);
  font-size: 13px;
  cursor: pointer !important;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container .custom-checkbox a {
  color: rgba(255, 255, 255, 0.768627451);
  border-bottom: 2px solid rgba(255, 255, 255, 0.768627451);
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container .custom-checkbox input[type=checkbox]:checked + .checkbox-indicator {
  background: #25b8c5;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container .custom-checkbox input[type=checkbox]:checked + .checkbox-indicator + .checkbox-label {
  color: #fff !important;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container .custom-checkbox input[type=checkbox]:checked + .checkbox-indicator + .checkbox-label a {
  color: #fff !important;
  border-bottom: 2px solid #ffffff;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container .custom-checkbox input {
  display: none;
}
.fixed-items-wrapper .fixed-form-wrapper .fixed-contact-form .row .contact-us-content .contact-us-form-wrapper form.contact-us-form .row .checkbox-container .custom-checkbox .checkbox-indicator {
  min-width: 20px;
  height: 20px;
  background: #DEDEDE;
  border-radius: 3px;
}

.main-page-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(116deg, #EDF6FF 0%, #BADDFF 100%);
}
.main-page-title h2 {
  font-weight: bold;
  color: #042d59;
}
.main-page-title .share {
  display: flex;
  align-items: center;
}
.main-page-title .share-text {
  margin: 0;
  color: #042d59;
  opacity: 0.61;
}
.main-page-title .breadcrumb {
  margin-bottom: 0px;
}
.main-page-title .breadcrumb ul {
  display: flex;
  padding: 0;
  margin: 0;
  color: #042d59;
  font-size: 16px;
  opacity: 0.31;
}
.main-page-title .breadcrumb ul li::after {
  content: " >  ";
}
.main-page-title .breadcrumb ul li:last-child::after {
  content: "";
}
@media (max-width: 87.4375em) {
  .main-page-title {
    left: 1.5rem;
    right: 1.5rem;
    padding: 0 1.5rem;
  }
  .main-page-title .breadcrumb ul {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 639px) {
  .main-page-title {
    gap: 5px;
    top: -100px;
  }
  .main-page-title h2 {
    font-size: 18px;
  }
  .main-page-title .share-text {
    display: none;
  }
  .main-page-title .share img {
    height: 15px;
    width: 15px;
  }
}

.page-title-component-wrapper {
  position: relative;
  padding-bottom: 7rem;
}
.page-title-component-wrapper-bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 100px;
  background: linear-gradient(117deg, #EDF6FF 0%, #BADDFF 100%);
}
@media screen and (max-width: 992px) {
  .page-title-component-wrapper-bg {
    height: 249px;
  }
}
.page-title-component-wrapper .page-title-content {
  position: relative;
  align-items: center;
  z-index: 1;
  transform: translateY(5rem);
}
@media screen and (max-width: 992px) {
  .page-title-component-wrapper .page-title-content {
    transform: translateY(3rem);
  }
}
.page-title-component-wrapper .page-title-content .page-title-img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: auto !important;
}
.page-title-component-wrapper .page-title-content .page-title-img-wrapper .page-title-img-bg {
  width: 200px;
  height: 250px;
  background: #25b8c5;
  border-radius: 0 0 0 4rem;
  position: absolute;
}
@media screen and (max-width: 992px) {
  .page-title-component-wrapper .page-title-content .page-title-img-wrapper .page-title-img-bg {
    width: 100% !important;
    height: 100% !important;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    background: rgba(37, 184, 197, 0.1803921569);
    border-radius: 0px;
    position: absolute;
    z-index: 3;
  }
}
.page-title-component-wrapper .page-title-content .page-title-img-wrapper .page-title-img {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 200px;
  border-bottom-left-radius: 4rem 2.7rem;
}
@media screen and (max-width: 992px) {
  .page-title-component-wrapper .page-title-content .page-title-img-wrapper .page-title-img {
    width: 100% !important;
    height: 200px !important;
    border-radius: 0px;
    position: static;
    padding: 0 !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.page-title-component-wrapper .page-title-content .page-title-cards-wrapper {
  position: relative;
  z-index: 999;
  padding-left: 7rem;
}
@media screen and (max-width: 1200px) {
  .page-title-component-wrapper .page-title-content .page-title-cards-wrapper {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 992px) {
  .page-title-component-wrapper .page-title-content .page-title-cards-wrapper {
    padding-left: 0rem;
    transform: translateY(-1rem);
  }
}
.page-title-component-wrapper .page-title-content .page-title-cards-wrapper .page-title-cards-title {
  background: #25b8c5;
  border-radius: 3px;
  display: inline-block;
  box-shadow: 0px 20px 20px rgba(37, 184, 197, 0.3058823529);
  min-width: 40%;
}
.page-title-component-wrapper .page-title-content .page-title-cards-wrapper .page-title-card {
  border-bottom: 5px solid #25b8c5;
  background: #ffffff;
  border-radius: 3px;
  padding: 1rem;
  box-shadow: 0px 10px 40px rgba(3, 18, 33, 0.0588235294);
}
@media screen and (max-width: 459px) {
  .page-title-component-wrapper .page-title-content .page-title-cards-wrapper .page-title-card {
    padding: 1rem 0.7rem;
  }
}
.page-title-component-wrapper .page-title-content .page-title-cards-wrapper .page-title-card a {
  font-size: 14px;
}
@media screen and (max-width: 459px) {
  .page-title-component-wrapper .page-title-content .page-title-cards-wrapper .page-title-card a {
    font-size: 11px;
  }
}
@media screen and (max-width: 459px) and (max-width: 500px) {
  .page-title-component-wrapper .page-title-content .page-title-cards-wrapper .page-title-card a {
    font-weight: bold;
  }
}
@media screen and (max-width: 374px) {
  .page-title-component-wrapper .page-title-content .page-title-cards-wrapper .page-title-card a {
    font-size: 10px;
  }
}

.doctor-card {
  border: 1px solid rgba(4, 45, 89, 0.0823529412);
  border-radius: 3px;
  opacity: 1;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
}
.doctor-card .tooltip {
  visibility: hidden;
  background-color: #042d59;
  color: #fff;
  box-shadow: 0px 7px 30px rgba(4, 45, 89, 0.3333333333);
  text-align: center;
  border-radius: 3px;
  padding: 10px 25px;
  position: absolute;
  font-family: "roobert";
  z-index: 3;
  bottom: 45%;
  left: 75%;
  transform: translateX(-75%);
  font-size: 16px;
  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}
.doctor-card * {
  transition: all 0.1s;
}
.doctor-card .doctor-image {
  height: 370px;
  background: #f5fcfd;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.doctor-card .doctor-image .circle-bg {
  width: 216px;
  height: 216px;
  background: rgba(37, 184, 197, 0.1411764706);
  border-radius: 100%;
  margin: 35px auto;
}
.doctor-card .doctor-image .doctor-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
.doctor-card .doctor-image .line-logo {
  display: none;
}
.doctor-card .doctor-info {
  padding: 25px;
  margin: 0;
}
.doctor-card .doctor-info h3 {
  font-size: 25px;
  color: #042d59;
  font-weight: bold;
  margin-bottom: 20px;
}
.doctor-card .doctor-info h3 span {
  font-weight: normal;
}
.doctor-card .doctor-info p {
  gap: 10px;
  color: #042d59;
  opacity: 0.64;
}

.doctor-card:hover {
  border: 1px solid #25b8c5 !important;
}
.doctor-card:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
.doctor-card:hover .doctor-image .doctor-img {
  transform: translateX(-40px);
  transition: all 0.5s;
}
.doctor-card:hover .doctor-image .line-logo {
  display: inline;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1;
  padding: 0;
  margin: 0;
  right: -15px;
  bottom: -30px;
}
.doctor-card:hover .doctor-info {
  background: #25b8c5;
  margin: 0;
}
.doctor-card:hover .doctor-info h3,
.doctor-card:hover .doctor-info p {
  color: #ffffff;
  opacity: 1;
}
.doctor-card:hover .doctor-info svg * {
  fill: white !important;
}

.author-card-wrapper .creator-doctor {
  border: 1px solid rgba(4, 45, 89, 0.0823529412);
  border-radius: 3px;
}
@media screen and (max-width: 410px) {
  .author-card-wrapper .creator-doctor .font-12 {
    font-size: 9px;
  }
}
.author-card-wrapper .creator-doctor .card-bg-row {
  background: rgba(37, 184, 197, 0.0431372549);
  height: 100%;
}
.author-card-wrapper .creator-doctor .card-bg-row .font-22 {
  font-size: 19px;
}
@media screen and (max-width: 430px) {
  .author-card-wrapper .creator-doctor .card-bg-row .font-22 {
    font-size: 16px;
  }
}
@media screen and (max-width: 390px) {
  .author-card-wrapper .creator-doctor .card-bg-row .font-22 {
    font-size: 14px;
  }
}
.author-card-wrapper .creator-doctor .card-bg-row .font-15 {
  font-size: 14px;
}
@media screen and (max-width: 430px) {
  .author-card-wrapper .creator-doctor .card-bg-row .font-15 {
    font-size: 13px;
  }
}
@media screen and (max-width: 390px) {
  .author-card-wrapper .creator-doctor .card-bg-row .font-15 {
    font-size: 11px;
  }
}
.author-card-wrapper .creator-doctor .card-bg-row .doctor-card-col {
  position: relative;
  display: flex;
  justify-content: center;
}
.author-card-wrapper .creator-doctor .card-bg-row .doctor-card-col .ellipsis-bg {
  position: absolute;
  width: 70%;
  aspect-ratio: 1/1;
  background: rgba(37, 184, 197, 0.118);
  border-radius: 100%;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.author-card-wrapper .creator-doctor .card-bg-row .doctor-card-col img.author-doctor-img {
  position: relative;
  z-index: 1;
  width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 576px) {
  .author-card-wrapper .creator-doctor .card-bg-row .doctor-card-col img.author-doctor-img {
    width: 100%;
  }
}
.author-card-wrapper .creator-doctor .card-bg-row a.author-visit-profile {
  cursor: pointer;
  color: #fff;
  background: #25b8c5;
  align-self: flex-start;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  transition: all 0.3s;
}
.author-card-wrapper .creator-doctor .card-bg-row a.author-visit-profile:hover {
  background: #1dabb7;
}
.author-card-wrapper .creator-doctor .creator-cards-col {
  padding-left: 0.2rem !important;
  padding-right: 0.2rem !important;
}
.author-card-wrapper .creator-doctor .creator-cards-col .creator-cards {
  background: #FCFCFC;
}
.author-card-wrapper .creator-medicana {
  border: 1px solid rgba(4, 45, 89, 0.0823529412);
  border-radius: 3px;
}
.author-card-wrapper .creator-medicana .bg-row {
  background: rgba(37, 184, 197, 0.0431372549);
  height: 100%;
}
.author-card-wrapper .creator-medicana .vertical-divider {
  height: 75px;
  width: 1px;
  background-color: rgba(4, 45, 89, 0.0823529412);
  margin-right: 20px;
}
.author-card-wrapper .creator-medicana .creator-cards-col {
  padding-left: 0.2rem !important;
  padding-right: 0.2rem !important;
}
.author-card-wrapper .creator-medicana .creator-cards-col .creator-cards {
  background: #FCFCFC;
}

.details-page-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.details-page-title .share {
  display: flex;
  align-items: center;
}
.details-page-title .share-text {
  margin: 0;
  color: #042d59;
  opacity: 0.61;
}
.details-page-title .breadcrumb {
  margin-bottom: 0px;
}
.details-page-title .breadcrumb ul {
  display: flex;
  padding: 0;
  margin: 0;
  color: #042d59;
  font-size: 16px;
  opacity: 0.31;
}
.details-page-title .breadcrumb ul li::after {
  content: " >  ";
}
.details-page-title .breadcrumb ul li:last-child::after {
  content: "";
}
@media (max-width: 87.4375em) {
  .details-page-title .breadcrumb ul {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 639px) {
  .details-page-title {
    gap: 5px;
  }
  .details-page-title h2 {
    font-size: 18px;
  }
  .details-page-title .share-text {
    display: none;
  }
  .details-page-title .share img {
    cursor: pointer;
    height: auto;
    width: 15px;
  }
}

.medical-services-hospital .medical-services-hospital-slider * {
  transition: all 0.3s;
}
.medical-services-hospital .medical-services-hospital-slider .hospitals-card {
  box-shadow: 0px 10px 20px rgba(3, 18, 33, 0.0588235294);
  padding: 1rem;
  position: relative;
  border-radius: 3px;
}
.medical-services-hospital .medical-services-hospital-slider .hospitals-card .hospitals-card-bg {
  width: 60px;
  height: 60px;
  background: #25b8c5;
  border-radius: 3px;
  position: absolute;
  top: 10px;
  right: 18px;
}
.medical-services-hospital .medical-services-hospital-slider .hospitals-card-img {
  position: relative;
  width: 90px;
  height: 80px;
  z-index: 9;
}
.medical-services-hospital .medical-services-hospital-slider .hospitals-card .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 82px;
  height: 80px;
  background-color: #11c3d3;
  opacity: 0;
  z-index: 10;
}
.medical-services-hospital .medical-services-hospital-slider .hospitals-card-content-text {
  color: #25b8c5;
  font-size: 14px;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 0;
  position: relative;
  z-index: 15;
}
@media screen and (max-width: 1023px) {
  .filter-bar {
    flex-direction: column;
    align-items: start !important;
    row-gap: 1rem;
  }
}
.filter-bar .dropdowns {
  display: none;
  align-items: center;
  gap: 2rem;
  transition: all 0.5s;
}
@media screen and (max-width: 1023px) {
  .filter-bar .dropdowns {
    order: 2;
    width: 100%;
    justify-content: space-between;
  }
}
@media screen and (min-width: 576px) {
  .filter-bar .dropdowns {
    display: flex;
  }
}
.filter-bar .dropdowns .dropdown {
  min-width: 15em;
  width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .filter-bar .dropdowns .dropdown {
    min-width: 0;
    flex-grow: 1;
  }
}
@media screen and (min-width: 576px) {
  .filter-bar .dropdowns .dropdown {
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 0;
  }
}
.filter-bar .dropdowns .dropdown * {
  box-sizing: border-box;
}
.filter-bar .dropdowns .dropdown .select {
  background: #ffffff;
  color: #042d59;
  opacity: 0.65;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px rgba(4, 45, 89, 0.0823529412) solid;
  border-radius: 3px;
  padding: 1em;
  cursor: pointer;
  transition: background 0.3;
}
.filter-bar .dropdowns .dropdown .select-clicked {
  border: 2px #25b8c5 solid;
}
.filter-bar .dropdowns .dropdown .select div {
  gap: 20px;
}
.filter-bar .dropdowns .dropdown .menu {
  list-style: none;
  padding: 0.2em 0.5em;
  background: #ffffff;
  border: 2px rgba(4, 45, 89, 0.0823529412) solid;
  border-radius: 3px;
  color: #042d59;
  text-align: start !important;
  opacity: 0.65;
  position: absolute;
  top: 4em;
  width: 100%;
  opacity: 0;
  display: none;
  transition: 0.2s;
  z-index: 5;
}
.filter-bar .dropdowns .dropdown .menu-open {
  display: block;
  opacity: 1;
}
.filter-bar .dropdowns .dropdown .menu li {
  padding: 0.7em 0.5em;
  margin: 0.3em 0;
  border-radius: 3px;
  cursor: pointer;
  text-align: start !important;
}
.filter-bar .dropdowns .dropdown .menu .active {
  color: #25b8c5;
}
.filter-bar .filter-input {
  display: flex;
  align-items: center;
  gap: 25px;
}
    .filter-bar .filter-input .search-hospitals {
        border: 1px solid rgba(4, 45, 89, 0.0823529412);
        border-radius: 3px;
        color: #042d59;
        font-size: 16px;
        opacity: 1;
        padding: 1rem 4rem;
        width: 100%;
        background: url(https://static.medicanainternational.com/static/assets/images/search.svg) no-repeat scroll 20px 20px;
    }
.filter-bar .filter-input button.filter-bar-icon {
  padding: 1em;
  border: 1px solid rgba(4, 45, 89, 0.0823529412);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-bar .filter-input button.filter-bar-icon:hover {
  background: rgba(37, 184, 197, 0.0431372549);
}
@media screen and (min-width: 1023px) {
  .filter-bar .filter-input button.filter-bar-icon {
    display: none;
  }
}

@media (max-width: 1023px) {
  .filter-bar {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 3rem 0;
  }
  .filter-bar .dropdowns {
    gap: 10px;
  }
  .filter-bar .filter-input {
    width: 100%;
  }
  .filter-bar .filter-input .search-hospitals {
    padding-right: 10px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .filter-bar .filter-input button {
    margin-left: auto;
  }
}
@media (max-width: 639px) {
  .filter-bar {
    padding: 3rem 0;
  }
  .filter-bar .filter-input {
    margin-left: auto;
    width: 100%;
  }
  .filter-bar .filter-input .search-hospitals {
    width: 100%;
  }
}
ul.suggestionsList {
  padding: 0;
  display: block;
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999999;
  border-radius: 20px;
  max-height: 200px;
  overflow-x: auto;
  scrollbar-color: #25b8c5 rgba(1, 54, 71, 0.208) !important;
  scrollbar-width: thin !important;
}
ul.suggestionsList li {
  color: #042d59;
}
ul.suggestionsList li:hover {
  transition: all 0.3s;
  background: rgba(1, 53, 71, 0.033);
  color: #25b8c5;
}
ul.suggestionsList li a {
  padding: 0.5rem 1.5rem;
  width: 100% !important;
  display: block !important;
}
ul.suggestionsList li a:hover {
  transition: all 0.3s;
  color: #25b8c5;
}/*# sourceMappingURL=style.css.map */