@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}
a:hover {
  cursor: pointer !important;
}
/* Header Styles */
.top-header {
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  color: white;
  font-size: 14px;
}

.top-header .contact-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-header .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.top-header .social-links {
  display: flex;
  gap: 15px;
}

.top-header .social-links a {
  color: #fff;
  font-size: 16px;
  transition: color 0.3s;
}

.top-header .social-links a:hover {
  color: #007bff;
}

/* Navigation */
.navbar-nav .dropdown-menu {
  background: #1b5e9c;
  z-index: 1000;
}

.dropdown-menu li a {
  color: #fff;
  padding: 8px 10px;
}

.navbar {
  background: #ffffff00;
  /* backdrop-filter: blur(10px); */
  padding: 15px 0;
  /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); */
  box-shadow: unset;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99999;
}

.navbar .container {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 70px;
}

.navbar-brand {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 11px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.header_logo {
  /* height: 110px;
  object-fit: contain; */
  height: 70px;
  object-fit: cover;
  padding: 10px 10px;
}

.hover-dropdown .dropdown-menu {
  transition: all 0.2s ease-in-out;
}


.hover-dropdown:hover>.dropdown-menu {
  display: block;
  margin-top: 0;
}

.navbar-nav .nav-link {
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #1b5e9c;
  transition: width 0.3s ease;
  border: none;
}


.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* .hero-section{
    z-index:-1;
} */

.navbar-nav .nav-link {
  color: #000000 !important;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #1b5e9c !important;
}

.btn_style {
  position: relative;
  display: inline-flex;
  line-height: 1.2em;
  background: #e5eaec;
  text-transform: capitalize;
  border-radius: 100px;
  padding: 2px 25px 2px 2px;
  border: none;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}

.btn_style::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  background-image: url(../images/arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  transform: translate(-10px, -50%);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.btn_style:hover:before {
  filter: brightness(0) invert(1);
  transform: translate(-10px, -50%);
}

.btn_style::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  border-radius: 100px;
  background: #1b5e9c;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.btn_style:hover::after {
  width: 100%;
}

.btn_style span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  background-color: #1b5e9c;
  color: #fff;
  border-radius: 100px;
  padding: 15px 20px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.btn_style:hover span {
  background-color: transparent;
  color: #1b5e9c;
}

.btn_style span::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  border-radius: 100px;
  background: #e5eaec;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn_style:hover span::after {
  width: 100%;
}


.phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 95vh;
  overflow: hidden;
}

.carousel-item {
  height: 95vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg, rgba(27, 27, 27, 0.904), rgba(27, 27, 27, 0.8)); */
}

.carousel-item.slide1 {
  background-image: url('../images/sliders-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-item.slide2 {
  background-image: url('../images/sliders-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-item.slide3 {
  background-image: url('../images/sliders-3.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#heroCarousel {
  border-radius: 0px 0px 40px 40px;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
  text-align: left;
}

.hero-content ul {
  margin-bottom: 20px;
}

.hero-content ul li {
  font-size: 17px;
  line-height: 1.6;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 600px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #007bff, #0056b3);
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
  color: white;
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid white;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-custom:hover {
  background: white;
  color: #007bff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 94%;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

/* Custom Indicators */
.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
}

.carousel-indicators .active {
  background-color: white;
}

.carousel-control-next,
.carousel-control-prev {
  z-index: 999;
}

.navbar-toggler:focus {
  outline: 0px !important;
  box-shadow: unset !important;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-toggler {
  border: 0px !important;
}



/* 26-08-2025 css */
.home_about_us {
  padding: 100px 0;
  background: linear-gradient(135deg, #f2f8ff 0%, #f0f7ff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Background decorative elements */
.home_about_us .bg-decoration-1 {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgb(27 94 156 / 8%);
  border-radius: 50%;
  z-index: 1;
}

.home_about_us .bg-decoration-2 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgb(171 214 255 / 37%);
  border-radius: 50%;
  z-index: 1;
}

/* Dotted pattern */
.home_about_us .dotted-pattern {
  position: absolute;
  top: 30%;
  left: 45%;
  width: 120px;
  height: 80px;
  background-image: radial-gradient(circle, #1b5e9c 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.6;
  z-index: 2;
}

.home_about_us .container {
  position: relative;
  z-index: 3;
}

/* Image containers */
.home_about_us .images-container {
  position: relative;
}

.home_about_us .main-image {
  width: 100%;
  /* height: 400px; */
  object-fit: cover;
  border-radius: 20px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 4;
  border: 6px solid #fff;
}


.home_about_us .bottom-right-image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -20px;
  right: 20px;
  z-index: 5;
  border: 6px solid #fff;
}

.home_about_us .video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home_about_us .play-icon {
  width: 20px;
  height: 20px;
  background: white;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* Content styling */
.home_about_us .content-section {
  padding-left: 15px;
}

.section-label {
  color: #1b5e9c;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.main-heading {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 25px;
}

.home_about_us .description {
  font-size: 18px;
  color: #000000;
  line-height: 28px;
  margin-bottom: 40px;
}

/* Service list */
.home_about_us .service-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}

.home_about_us .service-icon {
  width: 24px;
  height: 24px;
  background: #1b5e9c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.home_about_us .service-icon i {
  color: white;
  font-size: 12px;
}

/* Read more button */
.home_about_us .read-more-btn {
  background: transparent;
  color: #FFB68F;
  border: 2px solid #FFB68F;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.home_about_us .read-more-btn:hover {
  background: #FFB68F;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 182, 143, 0.3);
}

.home_about_us .read-more-btn i {
  margin-left: 8px;
  font-size: 14px;
}




.who_we_are {
  background: linear-gradient(135deg, #1a5f5f 0%, #2d8080 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.who_we_are_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.who_we_are_content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.who_we_are_image {
  flex: 1;
  min-width: 400px;
  position: relative;
}

.who_we_are_image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.who_we_are_image:hover img {
  transform: translateY(-10px);
}

.who_we_are_text {
  flex: 1;
  min-width: 400px;
  color: white;
}

.who_we_are_header {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffa726;
  margin-bottom: 20px;
  opacity: 0.9;
}

.who_we_are_title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffa726, #ff8a65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.who_we_are_description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-weight: 300;
}

.who_we_are_play_btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-size: 16px;
}

.who_we_are_play_btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.who_we_are_play_icon {
  width: 20px;
  height: 20px;
  background: #ffa726;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* service section css start 28-8-2025*/

.service_section {
  padding: 100px 0;
  background-image: url('../images/Home-1-exray-bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #1b5e9c;
}


.mask-img {
  mask-image: url(../images/download.svg), linear-gradient(#fff 0 0);
  mask-repeat: no-repeat;
  mask-size: auto;
  mask-composite: exclude;
  overflow: hidden;
  mask-position: top right;
  margin: -1px;
  border-radius: 0 0 10px 10px;
  position: relative;
}

.mask-img img {
  /* height: 582px; */
  height: 450px;
  object-fit: cover;
  transition: transform 500ms;
  width: 100% !important;
}

.mask-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(var(255, 255, 255), 0.2) 50%, transparent 100%);
  border-radius: inherit;
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 1;
}

@keyframes sweepShine {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

.service_item:hover .mask-img:before {
  animation: sweepShine 0.8s ease forwards;
}

.service_item {
  position: relative;
  display: grid;
  align-items: end;
  border-radius: 10px 0 10px 10px;
  overflow: hidden;
  height: 100%;
}

.service_item:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #1c1c1c 0%, transparent 50%);
  top: 0;
  left: 0;
}

.content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0px 20px 20px 20px;
  z-index: 1;
  transform: translateY(50px);
  transition: all 0.3s linear 0s;
}

.service_item:hover .content {
  transform: translateY(0);
}

.service_section .main-heading,
.service_section .section-label {
  color: #fff;
}

.content h3 {
  padding-bottom: 40px;
  color: #fff;
  /* border-bottom: 1px solid #afafaf; */
  text-align: center;
}

.subtitle {
  padding-top: 20px;
  opacity: 0;
  text-align: center;
  color: #fff;
  transition: all 0.3s linear 0s;
  font-size: 18px
}

.service_item:hover .subtitle {
  opacity: 1;
}

.service_item:hover .mask-img img {
  transform: perspective(4500px) rotateX(0.03deg) rotateY(0deg) scaleX(1.09) scaleY(1.09);
  transition: transform 500ms;
}

.content-button {
  position: absolute;
  right: 0;
  display: flex;
  top: 0;
}

.content-button a {
  background: #fff;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  color: #1b5e9c;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: unset;
  font-size: 22px;
}

.content-button a i {
  transition: all 0.3s linear 0s;
}

.service_item:hover .content-button a i {
  rotate: -45deg;
  transition: all 0.3s linear 0s;
}

/* method section css  start */
.method_section {
  margin: 100px 0;
  background: url(../images/about-us-bg.svg) no-repeat;
  background-position: right -100px center;
  background-size: auto;

}

.icon-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  padding: 50px 30px;
  border-radius: 30px;
  height: 100%;
  border: 2px solid #1b5e9c29;
  position: relative;
  overflow: hidden;
}

.icon-box:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  border-radius: 0px;
  background-color: #1b5e9c;
  transition: all 0.4s ease-in-out;
  height: 100%;
  z-index: -1;
}

.icon-box:hover:before {
  top: 0;
}

.icon-box h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 0;
}

.method_section .icon-box:hover {
  color: #fff;
}

.icon-box p {
  margin: 0;
}

.icon-box img {
  height: 63px;
  object-fit: contain;
  background: #1b5e9c;
  border-radius: 10px;
  padding: 10px;
}


.icon-box:hover img {
  animation: pxl_bounce 1s ease-out;
}

@keyframes pxl_bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  60% {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}

/* cta section css start */
.gynecology_cta_sec {
  background: linear-gradient(rgb(26 46 65 / 72%), rgb(39 47 53)), url('../images/Gynecologist-cta.webp') !important;
}

.general_medicine_cta_sec {
  background: linear-gradient(rgb(26 46 65 / 72%), rgb(39 47 53)), url('../images/general-surgery-cta.webp') !important;
}

.laparoscopic_surgery_cta_sec {
  background: linear-gradient(rgb(26 46 65 / 72%), rgb(39 47 53)), url('../images/general-surgery-cta.webp') !important;
}

.physiotherapy_cta_sec {
  background: linear-gradient(rgb(26 46 65 / 72%), rgb(39 47 53)), url('../images/physiotherapy-cta.webp') !important;
}

.urology_cta_sec {
  background: linear-gradient(rgb(26 46 65 / 72%), rgb(39 47 53)), url('../images/physiotherapy-cta.webp') !important;
}

.general_surgery_cta_sec {
  background: linear-gradient(rgb(26 46 65 / 72%), rgb(39 47 53)), url('../images/general-surgery-cta.webp') !important;
}

.reconstructive_surgery_cta_sec {
  background: linear-gradient(rgb(26 46 65 / 72%), rgb(39 47 53)), url('../images/general-surgery-cta.webp') !important;
}

.cosmetic_gynecology_cta_sec {
  background: linear-gradient(rgb(26 46 65 / 72%), rgb(39 47 53)), url('../images/cosmetic-gynecology-surgery-cta.webp') !important;
}

.about_cta_sec {
  background: linear-gradient(rgb(26 46 65 / 72%), rgb(39 47 53)), url('../images/about-us-cta.webp') !important;

}

.cta_sec {
  padding: 100px 0;
  background: linear-gradient(rgb(26 46 65 / 72%), rgb(39 47 53)), url('../images/reconstructive-surgery-cta.webp');
  background-position: center center !important;
  background-size: cover !important;
  position: relative;
}


.cta_sec p {
  font-size: 20px;
  line-height: 30px;
}


/* fact-area section css start */
.fact-area {
  padding: 100px 0;
}

.why-choose-box-1,
.why-choose-box-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.why-choose-item {
  position: relative;
  background-color: #F8E6D8;
  align-content: center;
  border-radius: 20px;
  height: 100%;
  padding: 40px;
  overflow: hidden;
}

.why-choose-item p {
  margin-bottom: 40px;
}

.why-choose-item:hover p,
.why-choose-item:hover h2 {
  color: #fff;
}

.why-choose-item h2,
.why-choose-title h2 {
  font-size: 34px;
}

.why-choose-item p,
.why-choose-item h2 {
  position: relative;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.why-choose-image figure {
  height: 100%;
  display: block;
  border-radius: 20px;
  margin: 0;
}

.reveal {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}

.why-choose-image img {
  width: 100%;
  height: 364px;
  object-fit: cover;
  border-radius: 20px;
}

.reveal img {
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.why-choose-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2E303F;
  border-radius: 999px 999px 0 0;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.why-choose-item:hover::before {
  border-radius: 0;
  height: 100%;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.why-choose-image-box figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.57;
  object-fit: cover;
  border-radius: 20px;
  margin: 0;
}

.orthopedic-img figure img {
  min-height: 960px;
  object-position: center right;
}

.why-choose-image-box {
  position: relative;
  height: 100%;
}

.why-choose-image-box figure {
  position: relative;
  display: block;
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
}

.why-choose-image-box figure::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(46, 48, 63, 0) 63.74%, rgba(46, 48, 63, 0.8) 93.09%), linear-gradient(0deg, rgba(46, 48, 63, 0) 68.34%, rgba(46, 48, 63, 0.8) 105.14%);
  width: 100%;
  height: 100%;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}


.why-choose-title,
.why-choose-content {
  position: absolute;
  right: 40px;
  left: 40px;
  z-index: 1;
}

.why-choose-title {
  top: 40px;
}

.why-choose-title,
.why-choose-content {
  position: absolute;
  right: 40px;
  left: 40px;
  z-index: 1;
}

.why-choose-title h2 {
  color: #FFF;
}

.why-choose-content {
  bottom: 40px;
}

.why-choose-box-2 .why-choose-item {
  background-color: #D5E1E7;
}

.why-choose-content p {
  color: #fff;
  margin-bottom: 0;
}

/* footer css start */

.footer {
  background: linear-gradient(rgb(27 94 156 / 96%), rgb(27 94 156 / 84%)), url(../images/footer-bg.webp);
  background-position: center center;
  background-size: cover;
  position: relative;
  border-radius: 40px 40px 0px 0px;
}

.top-footer {
  /* background: #1b5e9c; */
  padding-top: 80px;
  padding-bottom: 40px;
  color: #fff;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  border-radius: 40px 40px 0px 0px !important;
}

.media-icon li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-footer {
  /* background: #1b5e9c; */
  position: relative;
  z-index: 99;
  color: #fff;
  padding: 40px 0 80px 0;
}

.footer .foote_wp_icon {
  background-color: #198754;
  position: fixed;
  right: 1%;
  bottom: 8%;
  text-align: center;
  padding: 15px 17px 11px 17px;
  border-radius: 100px;
  z-index: 9999999;
  right: 20px;
  width: 45px;
  height: 45px;
}

i.fa-brands.fa-whatsapp {
  margin: 0 auto;
  font-size: 25px;
  color: #fff;
}

.footer a.to-top {
  background-color: #257fd3;
  width: 54px;
  height: 54px;
  display: inline-block;
  position: fixed;
  bottom: 2%;
  text-align: center;
  padding: 18px 17px 11px 17px;
  border-radius: 100px;
  z-index: 9999999;
  right: 1%;
  cursor: pointer;
  color: #fff;
}

.footer a.to-top i.fa-solid.fa-angle-up {
  font-size: 21px;
}

.footer-widget ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-widget ul li {
  list-style-type: none;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.footer-widget ul li a {
  color: #fff;
  text-decoration: unset;
}

.footer .widget-title {
  margin-bottom: 20px !important;
  border: none;
  font-size: 24px;
}

.secondary-footer {
  /* background: #1b5e9c; */
  border-top: 1px solid rgb(255 255 255 / 10%);
  padding: 30px 0;
  font-size: 16px;
  color: #fff;
}

.social-icons.footer-social li a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  margin: 0;
}

.footer-subscribe input[type="email"],
.footer-subscribe input[type="text"] {
  border: none;
  background: none;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  margin: 0 0 30px 0;
  width: 100%;
  height: 60px;
  color: #fff;
}

.footer-subscribe input[type="text"] {
  border: none;
  background: none;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  margin: 0 0 30px 0;
  width: 100%;
  height: 60px;
  color: #fff;
}



.footer-subscribe input[type="email"]:focus-visible {
  outline: 0;
}

.footer-subscribe input[type="email"]::placeholder {
  color: #fff;
}

.footer-subscribe input[type="text"]:focus-visible {
  outline: 0;
}

.footer-subscribe input[type="text"]::placeholder {
  color: #fff;
}

.subscribe-btn {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  background-color: #fff;
  color: #1b5e9c;
  border-radius: 100px;
  padding: 15px 20px;
  overflow: hidden;
  border: 0;
}

.copyright {
  font-size: 18px;
  text-align: left;
}

.company-detail {
  font-size: 18px;
  text-align: end;
  margin: 0;
}

.company-detail a {
  text-decoration: none;
}

/* about us page  css start */
.breadcrumb-section {
  /* background: url(../images/breadcrumb.webp); */
  /* background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
  height: 420px;
  position: relative;
  background: url('../images/title_bg.webp') no-repeat center center/cover;
  /* adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding-top: 100px;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d3051, #204a6f, #11375b, #0a1e2d);
  z-index: 1;
  opacity: 0.92;
}

.breadcrumb-section * {
  position: relative;
  z-index: 2;
  /* keeps text/content above overlay */
}

.breadcrumb-content h1 {
  font-size: 55px;
  color: #fff;
  text-transform: uppercase;
}

.breadcrumb-content ul {
  margin: 0;
  padding: 0;
}

ul.breadcrumb-item li {
  list-style: none;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  padding: 10px 0 0;
  font-weight: 500;
  letter-spacing: 2px;
}

ul.breadcrumb-item li a {
  color: #fff;
  transition: 0.5s;
  padding: 0 26px 0 0;
  position: relative;
  z-index: 1;
  text-decoration: unset;
}

ul.breadcrumb-item li a:before {
  position: absolute;
  content: "/";
  right: 7px;
  top: -3px;
}

.about-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  margin: 0;
}

.about-thumb img {
  border-radius: 30px;
  vertical-align: middle;
  height: 650px;
  width: 100%;
  object-fit: cover;
}

.counter-right-side {
  display: flex;
  background: #1b5e9c;
  justify-content: center;
  width: 549px;
  padding: 30px 0 20px;
  border-radius: 0 0 30px 30px;
}

.counter-single-box.bx-1 {
  padding-right: 80px;
}

.odometer-wrapper.counter-box-title {
  display: flex;
  align-items: center;
}

.about-section .mediic-shape2 {
  position: absolute;
  right: 10px;
  top: 50px;
  text-align: right;
  z-index: -1;
}

.about-section .mediic-section-title p {
  font-size: 18px;
  color: #000000;
  line-height: 28px;
}

ul.about-mediic-services li {
  display: block;
  list-style: none;
  padding: 0 0px 10px 25px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
}

ul.about-mediic-services {
  margin: 0;
  padding: 0;
}

ul.about-mediic-services li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #1b5e9c;
}

.odometer-wrapper.counter-box-title {
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin: 0;
  font-size: 45px;
}

.counter-desc p {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0px 0 0;
  color: #fff;
  margin: 0;
}

.skill-serction {
  padding: 80px 0;
  position: relative;
  background-color: #e6f1ff;
}

.single-skill-box .progress-bar {
  background-color: #1b5e9c;
}

.single-skill-box .progress {
  margin: 10px 0 20px 0;
  background-color: #fff;
}

.single-skill-box .prosses-bar {
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  text-transform: capitalize;
}

.feature-single-box-2 {
  padding: 30px 30px 30px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.30196078431372547);
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.feature-thumb img {
  border-radius: 15px;
}

.feature-single-box-2 .btn_style {
  z-index: 11;
}

.feature-single-box-2 .mediic-icon img {
  padding: 0 0 15px;
}

.feature-title h3 {
  font-size: 24px;
  font-weight: 600;
  padding: 0 0 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 37, 112, 0.2);
  position: relative;
  z-index: 1;
}

.feature-title h3:before {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: #007eff;
  transition: 0.5s;
}

.feature-single-box-2::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
  z-index: 2;
  opacity: 0;
  border-top: 2px solid #1b5e9c;
  border-left: 2px solid #1b5e9c;
  transition: all linear 0.5s;
}

.feature-single-box-2::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 0;
  height: 0;
  z-index: 2;
  opacity: 0;
  border-bottom: 2px solid #007eff;
  border-right: 2px solid #007eff;
  transition: all linear 0.5s;
}

.feature-single-box-2:hover:after {
  width: 100%;
  height: 100%;
  opacity: 1;
  border-radius: 20px;
}

.feature-single-box-2 .feature-content {
  padding-left: 40px;
}

.feature-single-box-2:hover:before {
  width: 100%;
  height: 100%;
  opacity: 1;
  border-radius: 20px;
}

.feature-single-box-2:hover .feature-title h3:before {
  width: 100%;
}

.marquee-section {
  background: #002570;
  padding: 26px 65px 35px;
}

.marquee {
  display: -webkit-box;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 1rem));
  }
}

.marquee-single-box {
  flex-shrink: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-around;
  -webkit-animation: scroll 30s linear infinite;
  animation: scroll 30s linear infinite;
}

.marquee-content h2 {
  font-size: 40px;
  color: #fff;
  display: inline-flex;
  margin: 0;
  align-items: center;
  gap: 20px
}

@keyframes rotateme {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

.marquee-content h2 span img {
  width: 80%;
  animation: rotateme 8s linear infinite;
}

.our-approach {
  padding: 100px 0;
}

.approach-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.approach-item {
  border-radius: 20px;
  padding: 40px;
  background: rgb(171 214 255 / 37%);
}

.approach-item .icon-boxs {
  margin-bottom: 40px;
}

.approach-item,
.approach-image {
  width: calc(50% - 15px);
}

.approach-item-content p {
  margin: 0;
}

.approach-item h3 {
  text-transform: capitalize;
}

.approach-image figure {
  display: block;
  height: 100%;
  border-radius: 20px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
}

.approach-image figure img {
  object-fit: cover;
}

.our-approach-content {
  font-size: 18px;
  color: #000000;
  line-height: 28px;
}

/* blog section css start */
.blog-section {
  background: #e6f1ff;
  padding: 100px 0;
}

.blog-section .main-heading {
  margin-bottom: 0;
}

.top-mediic-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(28, 32, 73, 0.10196078431372549);
  padding: 0 0 28px;
  margin-bottom: 30px;
}

.blog-single-box {
  padding: 25px 25px 35px;
  background-color: rgba(243, 248, 253, 0.30196078431372547);
  border: 2px solid #ffffff;
  margin-bottom: 30px;
  border-radius: 15px;
}

.blog-thumb {
  position: relative;
  z-index: 1;
}

.blog-thumb img {
  border-radius: 15px;
  width: 100%;
}

.blog-thumb .mediic-hover-box {
  background-color: rgba(0, 17, 112, 0.3);
  z-index: 1;
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transition: all 0.5s ease 0s;
  width: 25%;
}

.hover-bx {
  transition-delay: 0.105s;
  border-radius: 20px 0 0 20px;
  left: 0;
}

.hover-bx2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-bx3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-radius: 0 20px 20px 0;
}

.blog-content {
  padding: 23px 42px 0 0;
}

.blogs-category ul li {
  font-size: 16px;
  display: inline-block;
  margin: 0 20px 0 24px;
  position: relative;
  z-index: 1;
}

.blogs-category ul {
  padding: 0;
  margin: 0;
}

.blogs-category ul li:before {
  position: absolute;
  content: "";
  top: 7px;
  left: -23px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: rgba(0, 126, 255, 0.2);
}

.blog-title h3 {
  margin-top: 20px;
}

.blog-title h3 a {
  font-size: 23px;
  font-weight: 600;
  line-height: 30px;
  display: inline-block;
  padding: 4px 0 0;
  transition: 0.5s;
  text-decoration: unset;
  color: #000;
}

.medic-button {
  margin-top: 30px;
}

.blog-single-box:hover .mediic-hover-box {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* testimonial section css start*/
.testimonial-section {
  margin: 100px 0;
}

.testi-thumb img {
  border-radius: 30px;
}

.testi-single-box {
  padding: 40px 40px 20px;
  background-color: rgb(230 241 255 / 40%);
  border: 2px solid #e6f1ff;
  background-image: inherit;
  border-radius: 34px;
}

.user-info {
  display: flex;
  align-items: center;
  padding: 0px 0 0;
  position: relative;
}

.people-pic img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
}

.user-name h4 {
  font-size: 22px;
  font-weight: 700;
}

.testi-quote2 {
  position: absolute;
  right: 40px;
}

.user-name h6 {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 400;
}

.testi-desc p {
  font-size: 16px;
  line-height: 24px;
  padding: 40px 0 0;
  margin: 0;
}

.testi-list .slick-dots {
  bottom: -50px;
}


.testi-list .slick-dots li button:before {
  width: fit-content;
  font-size: 10px;
}


.testi-list .slick-dots li {
  margin: 0;
}

.mediic-section-content p {
  font-size: 18px;
  line-height: 28px;
  color: #000000;
}

.testi-list .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #1b5e9c;
}

.desktop-hide {
  display: none;
}

/* team page css start */
.team-page {
  margin: 100px 0;
}

.team-card-three {
  position: relative;
  overflow: hidden;
  transition: all 500ms ease;
}

.team-card-three__image {
  min-height: 400px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-radius: 20px;
}

.team-card-three .social-links {
  position: absolute;
  top: 30px;
  left: 30px;
  transform: scale(0, 1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform-origin: top left;
  z-index: 1;
  transition: all 500ms ease;
  flex-wrap: wrap;
}

.team-card-three .social-links a {
  border: 0;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #1b5e9c;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: unset;
}

.team-card-three__identity {
  padding: 15px 18px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  right: 30px;
  bottom: 30px;
  background-color: #FFFFFF;
  border-radius: 10px;
  z-index: 1;
  transition: all 500ms ease;
}

.team-card-three__name {
  margin: 0 0 0 5px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.363;
  text-transform: capitalize;
  color: #000;
  text-decoration: unset;
  color: #000;
}

a {
  color: #1b5e9c;
}

.team-card-three:hover .social-links {
  opacity: 1;
  transform: scale(1, 1);
}

.team-card-three:hover .team-card-three__identity {
  background-color: #1b5e9c;
}

.team-card-three:hover .team-card-three__name,
.team-card-three:hover .team-card-three__designation {
  color: #FFFFFF;
}

.gutter-y-30 {
  row-gap: 30px;
}

.team-content p {
  font-size: 18px;
  line-height: 28px;
  width: 80%;
  margin: 0 auto 30px;
}

/* Team detail css start */
.page-doctor-single {
  margin: 100px 0;
}

.doctor-single-sidebar {
  position: sticky;
  top: 120px;
  margin-right: 30px;
}

.doctor-sidebar-image img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: 46px 46px 0 0;
}

.doctor-sidebar-body {
  background-color: #e6f1ff;
  padding: 40px;
}

.doctor-sidebar-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.doctor-sidebar-image figure {
  margin: 0;
}

.doctor-sidebar-body ul li {
  display: inline-flex;
  width: 100%;
  border-bottom: 1px solid #55617124;
  margin-bottom: 15px;
  padding-bottom: 15px;
  align-items: center;
  color: #000;
}

.doctor-sidebar-body ul li span {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: #0B1030;
  width: 45%;
}

.doctor-sidebar-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 40px;
  background-color: #1b5e9c;
  border-radius: 0 0 46px 46px;
}

.doctor-sidebar-footer span {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
}

.doctor-sidebar-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doctor-sidebar-footer ul li {
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}

.doctor-sidebar-footer ul li a {
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  color: #fff;
  text-decoration: unset;
}

.doctor-sidebar-body ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.doctor-sidebar-footer ul li:hover a i {
  color: #1b5e9c;
}

.doctor-sidebar-footer ul li:hover a {
  background-color: #fff;
}

.doctor-member-info p {
  font-size: 18px;
  line-height: 28px;
}

.doctor-single-entry {
  row-gap: 50px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.page-doctor-single .main-heading {
  font-size: 32px;
  margin-bottom: 20px;
}

.member-experience-info-item h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: 600;
}

.member-experience-info-item {
  margin-bottom: 30px;
}

.doctor-member-skills {
  width: 100%;
}

.doctor-member-expertise img {
  margin: 15px 0;
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

.doctor-single-entry p:last-child {
  margin-bottom: 0;
}

.member-experience-info-item:last-child {
  margin-bottom: 0;
}

.doctor-single-entry p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 28px;
}

.doctor-single-entry ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.doctor-single-entry ul li {
  position: relative;
  width: calc(50% - 10px);
  text-transform: capitalize;
  padding-left: 30px;
}

.doctor-single-entry ul li::before {
  content: '\f058';
  position: absolute;
  font-family: 'FontAwesome';
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
  color: #1b5e9c;
  display: inline-block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.doctor-contact-form {
  background-color: rgb(230 241 255 / 50%);
  border: 2px solid #e6f1ff;
  border-radius: 46px;
  padding: 40px;
}

.doctor-contact-form .main-heading {
  margin-bottom: 40px;
}

.contact-form .form-control {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  padding: 0 20px;
  outline: 0;
  display: inline-block;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(0, 37, 112, 0.5);
  font-weight: 500;
}

.contact-form textarea.form-control {
  width: 100%;
  padding: 15px 22px;
  outline: 0;
  margin-bottom: 25px;
  outline: 0;
  display: inline-block;
  height: 150px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(0, 37, 112, 0.5);
  font-weight: 500;
}

.form-control:focus {
  box-shadow: unset;
}


.our_collaboration {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, #f2f8ff 0%, #f0f7ff 100%);
}

.our_collaboration .main-heading {
  margin-bottom: 0;
}

.our_collaboration img {
  width: 235px;
  height: 100px;
  object-fit: contain;
  padding: 12px;
  border-radius: 8px;
  display: block;
  background: #fff;
  border: 1px solid #e5e5e5;
}

/* media query */



.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: #388cc3;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 99999999;
}


.whatsapp-float {
  position: fixed;
  bottom: 75px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 99999999;
  transition: background 0.3s ease, transform 0.2s ease-in-out;
}


/* 22-09-2025 contact page */

.contact_us_page {
  background-color: #f8f9fa;
  padding: 80px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact_us_page .section-header {
  color: #b8860b;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}


.contact_us_page .description {
  font-size: 18px;
  line-height: 28px;
  color: #000;
}


.contact_us_page .hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.contact_us_page .person-silhouette {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.contact_us_page .person-silhouette i {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.8);
}

.contact_us_page .headset {
  position: absolute;
  top: -10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_us_page .headset i {
  font-size: 18px;
  color: white;
}

.contact_us_page .contact-card {
  background: rgba(212, 235, 255, 0.54);
  border-radius: 20px;
  padding: 48px 30px;
  margin-bottom: 20px;
  border: none;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0px 10px rgb(0 0 0 / 14%);
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #155d9a;
  z-index: 0;
  transition: bottom 0.4s ease;
}

.contact-card:hover::before {
  bottom: 0;
}

/* content sits above animation */
.contact-card * {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

/* text + icon white on hover */
.contact-card:hover .contact-title,
.contact-card:hover .contact-info div,
.contact-card:hover .contact-icon i {
  color: #fff;
}

.contact_us_page .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact_us_page .contact-icon {
  width: 80px;
  height: 50px;
  /* background: rgba(76, 175, 80, 0.1); */
  border-radius: 50%;
  /* display: flex
; */
  /* align-items: center; */
  /* justify-content: center; */
  margin-bottom: 19px;
  /* padding: 14px; */
  margin: 0px 0px 15px 0px;
}

.contact_us_page .contact-icon i {
  font-size: 50px;
  color: #155d9a;
}

.contact_us_page .contact-title {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}

.contact_us_page .contact-info {
  color: #000;
  font-size: 16px;
  line-height: 1.5;
}

.contact_us_page .contact-info a {
  color: #000;
  text-decoration: none;
}

.contact-card:hover .contact-info a {
  color: #fff;
}

.contact_us_page .contact-info div {
  margin-bottom: 5px;
}




/* Contact Form Section Styles */
.contact-form-section {
  background-color: #f8f9fa;
  padding: 0px 0 80px;
}

.form-container {
  background: rgb(161 192 221 / 30%);
  max-height: 600px;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  padding: 40px 40px;
  border-radius: 20px 0px 0px 20px;
}

.form-wrapper {
  max-width: 500px;
  width: 100%;
}

.form-heading {
  color: #000000;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.2;
}

.contact-form .form-input,
.contact-form .form-textarea {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 37, 112, 0.5);
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgb(27 94 156 / 22%);
  background: rgba(255, 255, 255, 1);
}

.contact-form .form-textarea {
  border-radius: 25px;
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
  color: #999;
}

.submit-btn {
  background: #c8860d;
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #b8760b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.3);
}

.map-container {
  position: relative;
  max-height: 600px;
  overflow: hidden;
  height: 100%;
  border-radius: 0px 20px 20px 0;
}

.map-container iframe {
  filter: sepia(20%) saturate(80%) brightness(95%);
}

.map-info-card {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 280px;
  z-index: 10;
}

.map-info-card h5 {
  color: #1b5e9c;
  font-weight: 600;
  margin-bottom: 8px;
}

.map-info-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  color: #ffa726;
  font-size: 14px;
  font-weight: 600;
}

.review-count {
  color: #666;
  font-size: 12px;
}

.view-map-link {
  color: #4285f4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.view-map-link:hover {
  text-decoration: underline;
}

.contact_us_page .contact-info div {
  margin-bottom: 5px;
}



.contact-form-section .contact-form textarea.form-control {
  background-color: rgb(255 255 255);
}

.contact-form-section .contact-form .form-control {
  max-height: 50px;
  height: 100%;
}

.contact_us_page .person-silhouette img {
  max-height: 300px;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}




/*Orthopedic Page Css */

.ortho_about_section {
  padding: 100px 0;
  position: relative;
}


.ortho_about_section .description,
.ortho_sevice_section .description,
.ortho_why_choose .description {
  font-size: 18px;
  color: #000000;
  line-height: 28px;
  margin-bottom: 30px;
}

.ortho_about_image img {
  width: 100%;
}

.ortho_about_section ul li {
  padding-bottom: 8px;
  font-size: 16px;
  line-height: 26px;
}

.ortho_stats {
  display: flex;
  justify-content: left;
  gap: 40px;
  margin-bottom: 40px;
}

.stat_item {
  text-align: center;
}

.stat_number {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: #1b5e9c;
  display: block;
}

.stat_label {
  font-size: 14px;
  line-height: 24px;
  color: #000;
  font-weight: 500;
}

.ortho_about_img figure {
  margin: 0 !important;
}

.ortho_about_img figure img {
  aspect-ratio: unset;
}

.ortho_about_section .mediic-shape2 {
  position: absolute;
  left: -10px;
  top: 50px;
  text-align: left;
  z-index: -1;
}

.ortho_sevice_section {
  padding-bottom: 100px;
}

.ortho_why_choose {
  padding: 100px 0px 76px 0px;
  background: linear-gradient(135deg, #f2f8ff 0%, #f0f7ff 100%);
}

.ortho_sevice_section .section_heading {
  text-align: center;
}

.ortho_sevice_section .nav-pills .nav-link {
  border: none;
  background: #1b5e9c;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
  width: 100%;
}

.ortho_sevice_section .nav-pills .nav-link.active {
  background: #1b5e9c;
  color: unset;
}

.ortho_sevice_section .nav-pills .nav-link img {
  width: 40px;
  height: 40px;
}

.ortho_sevice_section .tab-content .icon-box {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}


.ortho_sevice_section .nav-pills .nav-link span {
  display: inline-block;
  min-width: 240px;
  /* same width for all spans */
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  text-align: left;
}


.feature-box {
  display: flex;
  gap: 25px;
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-height: 268px;
  border: 1px solid #1b5e9c;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.ortho_why_choose_list {
  list-style: disc;
  margin-bottom: 28px;
}

.ortho_why_choose_list .ortho_why_choose_list_item {
  padding-bottom: 8px;
  font-size: 16px;
  line-height: 26px;
}


.feature-content h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
}

.feature-content p {
  /* color: #718096; */
  color: #212529;
  font-size: 16px;
  line-height: 26px;
}

.ortho_team {
  margin-bottom: 100px;
}

.ortho_team .main-heading {
  margin-bottom: 40px;
}

.ortho_team .team-card-three__identity {
  transform: unset;
  writing-mode: horizontal-tb;
}

/* FAQ Section */
.faq-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  border: 1px solid #e5e5e5;
}

.appointment_section h3 {
  color: #1b5e9c;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Bootstrap Accordion Customization */
.accordion {
  --bs-accordion-border-color: #e0e7ff;
  --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #e0e7ff;
  background: transparent;
  margin-bottom: 0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  background: transparent;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  padding: 20px 20px;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: #2a5298;
  box-shadow: none;
}

.accordion-button:hover {
  color: #1b5e9c;
}



.accordion-body {
  color: #000;
  font-size: 15px;
  line-height: 25px;
  padding: 20px;
}

.accordion-collapse {
  border: none;
}

/* Form Section */
.form-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 30px;
  border-radius: 10px;
  border: 1px solid #1b5e9c;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 0px 30px 0px;
}

.form-section h3 {
  color: #1b5e9c;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 30px;
}

.form-section>p {
  color: #4a5568;
  font-size: 15px;
  margin-bottom: 30px;
}

.form-label {
  color: #1a202c;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  padding: 14px 18px;
  border: 2px solid #e0e7ff;
  border-radius: 10px;
  font-size: 15px;

  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #2a5298;
  box-shadow: 0 0 0 0.25rem rgba(42, 82, 152, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.appointment_section {
  /* padding-bottom: 100px; */
  padding: 100px 0px;
}

.form-section .btn_style {
  margin-top: 20px;
}

/*Facility Page Css */

.facility_section {
  padding: 100px 0;
}

.facility_section_image {
  position: relative;
  margin-left: 0;
  margin-right: 20px;
}

.facility_section_image img {
  width: 100%;
}

.counter_wrap {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 20px;
  background-color: #287ebb;
  box-shadow: 0px 4px 30px 0px rgba(84, 72, 161, 0.1);
  padding: 20px 25px;
  text-align: center;
}

.counter_wrap .item {
  border-radius: 20px;
  border: 1px solid #fff;
  padding: 25px;
}

.counter_wrap span {
  display: block;
}

.counter_wrap h3 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 52px;
  font-weight: 700;
  color: #fff;
}


.counter_wrap p {
  margin-bottom: 0 !important;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-transform: capitalize;
}

.wrap_two {
  bottom: 0;
  top: auto;
  left: 0;
  right: auto;
  background-color: #2cb7a2;
  padding: 20px;
}

.wrap_two .item {
  padding: 15px 25px;
}

.facility_section .description {
  font-size: 18px;
  color: #000000;
  line-height: 28px;
  margin-bottom: 0px;
}

.facility_list {
  padding: 0;
  margin: 20px 0;
  list-style: none;
}


.facility_list li {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #000;
  font-weight: 500;
  font-size: 15px;
}

.facility_list i {
  color: #1b5e9c;
  margin-right: 10px;
}

.section_title {
  text-align: center;
}



.facility_detail .descrption {
  font-size: 18px;
  color: #000000;
  line-height: 28px;
  margin-bottom: 30px;
}

.facility_card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
}

.facility_card_img1 {
  background-image: url('../images/General-Wards-Available.webp');
}

.facility_card_img2 {
  background-image: url('../images/In-House-Pharmacy.webp');
}

.facility_card_img3 {
  background-image: url('../images/18-Bed-Facility.webp');
}

.facility_card_img4 {
  background-image: url('../images/Ambulance-Service-Available.webp');
}

.facility_card_img5 {
  background-image: url('../images/Sonography.webp');
}

.facility_card_img6 {
  background-image: url('../images/Gynecologist-cta.webp');
}

.facility_card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 50, 92, 0.8);
  z-index: 0;
  transition: opacity 0.4s ease;
}

.facility_card>* {
  position: relative;
  z-index: 1;
}



.facility_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  z-index: 1;
}

.facility_card:hover::before {
  transform: scaleY(1);
}

.facility_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(27, 94, 127, 0.3);
}

.facility_icon {
  width: 70px;
  height: 70px;
  background: transparent;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 32px;
  transition: all 0.3s ease;
}

.facility_icon i {
  color: #fff;
}

.facility_card:hover .facility_icon {
  transform: rotateY(360deg);
}

.facility_card h3 {
  color: #fff;
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 15px;
  font-weight: 600;
}

.facility_card p {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}

.cta_sec_facility {
  margin-top: 100px;
  background: linear-gradient(rgb(26 46 65 / 72%), rgb(39 47 53)), url('../images/project-img-02.webp');
  background-position: center center;
  background-size: cover;
}

/* BLog Page Css */
.blog_page {
  background: #fff;
}

.page_blog_box {
  border: 1px solid #002570;
  margin-bottom: 0;
}

/*Single Blog Page Css */

.single-blog-content {
  padding: 80px 0;
}

.feature_img {
  box-shadow: 0 2px 20px rgb(0 0 0 / 27%);
}

.blog-meta i {
  color: #1b5e9c;
}

.single-blog-content .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.single-blog-content h1 {
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
  font-weight: 700;
}

.single-blog-content h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.single-blog-content h3 {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 12px;
  font-weight: 600;
}

.single-blog-content h4 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
  font-weight: 600;
}

.single-blog-content h5 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
  font-weight: 500;
}

.single-blog-content h6 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 12px;
  font-weight: 500;
}

.single-blog-content p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 18px;
  color: #000;
}

.single-blog-content span {
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.single-blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
}

.side-box span {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
}

.single-blog-content table th,
.single-blog-content table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
}

.single-blog-content table th {
  font-weight: 600;
  background-color: #f9f9f9;
}

.single-blog-content table tr:nth-child(even) {
  background-color: #f5f5f5;
}


.single-blog-content .form-control {
  margin-bottom: 8px;
}

.single-blog-content .footer-links li a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer-links li::before {
  content: "•";
  color: rgb(241, 90, 41);
  position: absolute;
  left: 0px;
  font-weight: bold;
}



.side-box {
  background-color: #1b5e9c;
  color: white;
  border-radius: 10px;
  padding: 32px 20px;
  box-shadow: 4px 4px 8px rgb(0 0 0 / 0.12);
}

.side-box .footer-links li:last-child {
  margin-bottom: 0;
}

.single-blog-content ol li::marker {
  font-weight: bold;
}

.single-blog-content {
  margin-top: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.sticky-sidebar {
  position: sticky;
  top: 120px;
}

/*Our Collabration */

.our_collaboration_details {
  padding: 100px 0;
}

.our_collaboration_details .description {
  font-size: 18px;
  color: #000000;
  line-height: 28px;
  margin-bottom: 30px;
}

.our_collabration_form {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 30px;
  border-radius: 10px;
  border: 1px solid #1b5e9c;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 0px 30px 0px;
}

.partnership_section {
  padding-bottom: 100px;
}

.partnership_heading {
  text-align: center;
}

.company_logo_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.company_logo {
  flex: 0 0 calc(20% - 16px);
}

.company_logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.company_logo img {
  width: 100%;
  height: 125px;
  object-fit: contain;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* 20-11-2025 ya.ma. */

.blog-section {
  display: none !important;
}

.working_hours img {
  width: 200px;
  height: 53px;
  object-fit: contain;
}

.footer-logo {
  background-color: #fff;
  border-radius: 5px;
}

.top-mediic-section {
  text-align: left;
}

.top-mediic-section p.description {
  padding-left: 10px;
}

.top-mediic-section .btn_style span {
  text-align: center;
}

.contact_logo {
  width: 200px;
  height: 53px;
  object-fit: contain;
}

.contact-card:hover .contact_logo {
  filter: invert(1) !important;
}

.footer-cntct ul  li a {
  text-transform: lowercase;
}
.working_hours h3 {
  margin-bottom: 20px !important;
    border: none;
    font-size: 24px;
}
.menu-service-menu-container ul li {
      display: inline-block;
    width: 49%;
    vertical-align: top;
}



@media only screen and (min-width:1260px) and (max-width:1600px) {
  .hero-section {
    height: 120vh !important;
  }

  .carousel-item {
    height: 120vh !important;
  }

  .footer .foote_wp_icon {
    bottom: 12% !important;
  }

  .navbar a.nav-link {
    font-size: 14px !important;
  }

  .btn_style span {
    font-size: 13px !important;
  }

  .hero-content {
    top: 56% !important;
  }

  body {
    zoom: 0.8;
  }
  .navbar-nav .nav-link {
    margin: 0 10px;
  }
}
@media only screen and (min-width:1260px) and (max-width:1600px) {
  .contact_us_page .contact-card {
    padding: 38px 20px;
  }
}
@media only screen and (min-width:1200px) and (max-width:1399px) {

  .header_logo {
    height: 90px;
    width: auto;
  }

  .hero-title {
    font-size: 42px;
  }

  .main-heading {
    font-size: 35px;
  }

  .form-heading {
    font-size: 35px !important;
  }

  .contact_us_page .contact-card {
    margin-bottom: 0px !important;
  }
}
@media only screen and (min-width:1200px) and (max-width:1320px) {
  .hero-content {
    padding-left: 50px;
  }

  .mask-img img {
    height: 357px;
  }

  .why-choose-item {
    padding: 20px;
  }

  .why-choose-image img {
    height: 280px;
  }

  .why-choose-item h2,
  .why-choose-title h2 {
    font-size: 28px;
  }

  .main-heading {
    margin-bottom: 15px;
  }

  .mediic-section-content p {
    font-size: 17px;
  }

  .counter-right-side {
    padding: 20px;
  }

  .skill-serction .mt-5 {
    margin-top: 10px !important;
  }

  .approach-item {
    padding: 30px 20px;
  }

  .approach-item .icon-boxs {
    margin-bottom: 10px;
  }

}
@media (min-width:1260px) and (max-width:1299px) {
  .counter_wrap {
    padding: 15px;
  }

  .counter_wrap .item {
    padding: 20px 25px;
  }

  .wrap_two .item {
    padding: 10px 20px;
  }
}
@media (max-width:1280px) {
  .footer .foote_wp_icon {
    bottom: 10%;
  }
}
@media (max-width:1199px) {
  .navbar-nav .nav-link {
    margin: 0;
    font-size: 15px;
  }

  .navbar .btn_style span {
    font-size: 16px;
  }

  .header_logo {
    height: 70px;
    width: auto;
  }
}
@media (min-width:992px) and (max-width:1199px) {
  .ortho_sevice_section .nav-pills .nav-link span {
    min-width: 150px;
    font-size: 14px;
    line-height: 24px;
  }

  .ortho_why_choose .main-heading br {
    display: none;
  }

  .ortho_why_choose .feature-box {
    margin-top: 20px;
  }

  .form-section h3 {
    font-size: 34px;
    line-height: 44px;
  }
    .facility_section_image {
    margin: 0;
  }

  .counter_wrap {
    padding: 12px;
  }

  .wrap_two .item {
    padding: 8px 16px !important;
  }

  .counter_wrap h3 {
    font-size: 36px;
    line-height: 46px;
  }

  .counter_wrap .item {
    padding: 15px 18px;
  }
}
@media only screen and (min-width:992px) and (max-width:1024px) {
  .hero-content {
    padding-left: 80px;
  }

  .home_about_us .dotted-pattern {
    left: 40%;
  }

  .icon-box {
    padding: 30px 15px;
    height: 100%;
    margin-bottom: 0;
  }

  .icon-box h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .hero-title {
    font-size: 40px;
  }

  .main-heading {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .home_about_us .description {
    margin-bottom: 15px;
    font-size: 17px;
  }

  .home_about_us .service-item {
    margin-bottom: 15px;
  }

  .mask-img img {
    height: 430px;
  }

  .breadcrumb-section {
    height: 300px;
  }

  .counter-right-side {
    width: 100%;
  }

  ul.about-mediic-services li {
    font-size: 15px;
  }

  .mediic-section-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .feature-single-box-2 .mediic-icon img {
    height: 60px;
  }

  .feature-title h3 {
    font-size: 18px;
    padding: 0 0 15px;
    margin-bottom: 15px;
  }

  .marquee-section {
    padding: 20px 0;
  }

  .approach-item {
    padding: 20px;
  }

  .approach-item .icon-boxs {
    margin-bottom: 10px;
  }

  .approach-item-content h3 {
    font-size: 22px;
  }

  .our-approach-content {
    font-size: 17px;
  }

  .testi-quote2 {
    right: 0;
  }

  .testi-quote2 img {
    height: 45px;
  }

  .contact_us_page .contact-card {
    margin-bottom: 0px !important;
    font-size: 34px !important;
  }

  .form-heading {
    font-size: 34px !important;
  }

  .contact_us_page .col-md-6.mb-4:nth-child(3),
  .contact_us_page .col-md-6.mb-4:nth-child(4) {
    margin-bottom: 0px !important;
  }

  .contact_us_page .col-lg-6:nth-child(1) {
    width: 40% !important;
  }

  .contact_us_page .col-lg-6:nth-child(2) {
    width: 60% !important;
  }

  .contact_us_page .contact-card {
    padding: 48px 23px !important;
  }

  /* .contact_us_page .col-lg-6:nth-child(1) {
    width: 40%;
  }
   .contact_us_page .col-lg-6:nth-child(2) {
    width: 60%;
  } */

}
@media (max-width:1024px) {
  .doctor-sidebar-body {
    padding: 15px;
  }


  .doctor-sidebar-body ul li span {
    font-size: 16px;
    width: 40%;
  }

  .doctor-sidebar-footer span {
    font-size: 16px;
  }

  .doctor-sidebar-footer ul li {
    margin-right: 5px;
  }

  .doctor-sidebar-footer {
    padding: 15px 15px;
  }

  .doctor-sidebar-body ul li {
    justify-content: space-between;
  }
  .team-card-three__identity {
        bottom: 10px;
        writing-mode: unset;
    transform: unset;
            left: 10px;
        right: 10px;
  }
  .team-card-three__name {
    margin: 0 0 0 5px;
    font-size: 20px;
  }

}
@media (max-width:1024px) {
  .navbar .btn_style span {
    font-size: 12px !important;
  }

  .footer .foote_wp_icon {
    bottom: 12%;
  }
}
@media (max-width:1024px) {
  .single-blog-content {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .company_logo {
    flex: 0 0 calc(33.333% - 14px);
  }
}
@media (max-width: 992px) {
  .who_we_are_content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .who_we_are_image,
  .who_we_are_text {
    min-width: auto;
    width: 100%;
  }

  .who_we_are_title {
    font-size: 2.8rem;
  }
}
@media (max-width: 992px) {
  .home_about_us .content-section {
    padding-left: 0;
    margin-top: 50px;
  }

  .main-heading {
    font-size: 40px;
  }

  .home_about_us .top-right-image,
  .home_about_us .bottom-right-image {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 20px 0;
  }

  .home_about_us .dotted-pattern {
    display: none;
  }
}
@media (max-width:991px) {
  .navbar-brand {
    margin: 0;
  }

  .header_logo {
    width: auto;
    height: 60px;
  }
}
@media (min-width:768px) and (max-width:991px) {

  .ortho_about_section {
    padding: 50px 0;
  }

  .ortho_about_section .row {
    flex-direction: column-reverse;
  }

  .ortho_stats {
    justify-content: left;
  }


  .ortho_about_img figure {
    width: 65%;
    text-align: center;
    margin: 0 auto 20px !important;
  }

  .ortho_why_choose {
    padding: 50px 0px 30px 0px;
  }

  .appointment_section {
    padding: 50px 0px;
  }

  .ortho_sevice_section {
    padding-bottom: 50px;
  }

  .ortho_why_choose .feature-box {
    margin-top: 20px;
  }

  .ortho_team {
    margin-bottom: 50px;
  }

  .ortho_sevice_section .nav-pills .nav-link span {
    min-width: 148px;
    font-size: 15px;
    line-height: 25px;
  }

  .ortho_team .team-card-three__image {
    min-height: 325px;
  }

  .form-section {
    margin-top: 30px;
    padding: 30px;
  }

  .ortho_team .team-card-three {
    margin-bottom: 25px;
  }

  .ortho_why_choose .main-heading br {
    display: none;
  }

}
@media (min-width:768px) and (max-width:991px) {
  .facility_section {
    padding: 50px 0;
  }

  .cta_sec_facility {
    margin-top: 50px;
  }

  .facility_content {
    margin-top: 24px;
  }

  .facility_section_image {
    margin: 0;
  }

  .counter_wrap .item {
    padding: 30px;
  }

  .counter_wrap {
    padding: 30px;
  }

  .wrap_two .item {
    padding: 20px 25px !important;
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {

  .hero-section,
  .carousel-item {
    height: 50vh;
  }

  .hero-buttons {
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    margin: 0 auto 40px auto;
  }

  .home_about_us .main-image {
    max-width: 100%;
  }

  .main-heading {
    font-size: 28px;
    margin-bottom: 15px;
  }


  .home_about_us .bottom-right-image {
    margin-top: -50px;
    left: unset;
    right: -45px;
  }


  .home_about_us .description {
    font-size: 17px;
    margin-bottom: 10px;
  }


  .home_about_us .service-item {
    margin-bottom: 12px;
  }

  .home_about_us,
  .service_section,
  .method_section,
  .cta_sec,
  .fact-area {
    padding: 50px 0;
  }

  .home_about_us .content-section {
    margin-top: 0;
  }

  .tab-hide {
    display: none;
  }

  .mask-img img {
    height: 360px;
  }

  .method_section .row {
    row-gap: 30px;
  }

  .method_section .main-heading {
    margin-bottom: 0;
  }

  .cta_sec p {
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 20px !important;
  }

  .why-choose-item {
    padding: 20px 15px;
  }

  .why-choose-item h2,
  .why-choose-title h2 {
    font-size: 19px;
  }

  .why-choose-title,
  .why-choose-content {
    right: 15px;
    left: 15px;
  }

  .why-choose-image img {
    height: 250px;
  }

  .why-choose-item p {
    font-size: 14px;
  }

  .why-choose-image-box figure img {
    aspect-ratio: unset;
  }

  .top-footer {
    padding-top: 50px;
  }

  .primary-footer {
    padding-bottom: 40px;
  }

  .home_about_us .bg-decoration-1,
  .home_about_us .bg-decoration-2 {
    height: 200px;
    width: 200px;
  }

  .breadcrumb-section {
    height: 300px;
  }

  .breadcrumb-content h1 {
    font-size: 40px;
  }

  ul.breadcrumb-item li {
    padding: 0;
  }

  .about-thumb {
    text-align: center;
  }

  .counter-right-side {
    margin: 0 auto;
  }

  .mediic-section-content {
    margin-top: 50px;
  }

  .about-section,
  .skill-serction {
    padding: 50px 0;
  }

  .feature-single-box-2 {
    flex-direction: column;
    margin-bottom: 0;
  }

  .feature-single-box-2 .feature-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .feature-single-box-2 .mediic-icon img {
    height: 70px;
  }

  .feature-title h3 {
    padding: 0 0 20px;
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 32px;
  }

  .our-approach {
    padding: 50px 0;
  }

  .marquee-section {
    padding: 20px 0;
  }

  .approach-item {
    padding: 20px;
  }

  .approach-item .icon-boxs {
    margin-bottom: 10px;
  }

  .testimonial-section {
    margin: 50px 0;
  }

  .desktop-hide {
    display: block;
  }

  .tab-hide {
    display: none;
  }

  .testi-single-box {
    padding: 20px;
  }

  .testi-quote2 img {
    display: none !important;
  }

  .testi-desc p {
    padding: 10px 0 0;
  }

  .user-name h4 {
    font-size: 19px;
  }

  .testi-list .slick-dots {
    bottom: -30px;
  }

  .contact_us_page .col-lg-6:first-child {
    margin-bottom: 30px !important;
  }

  .contact_us_page .col-md-6.mb-4 {
    margin-bottom: 5px !important;
  }

  .contact_us_page .contact-card:nth-child(3),
  .contact_us_page .contact-card:nth-child(4) {
    margin-bottom: 0px !important;
  }

  .contact_us_page {
    padding: 50px 0 !important;
  }

  .contact-form-section {
    padding-bottom: 50px !important;
  }

  .contact-form-section .col-lg-6 {
    width: 50% !important;
  }

  .form-heading {
    font-size: 25px !important;
  }

  .contact_us_page .col-lg-6:nth-child(2) {
    margin-top: 20px !important;
  }

}
@media only screen and (min-width:768px) and (max-width:991px) {
  .single-blog-content h2 {
    font-size: 27px !important;
    line-height: 37px;
  }

  .faq_section .custom-accordion .accordion-button {
    font-size: 17px;
    line-height: 27px;
  }
    .blog-section {
    padding: 70px 0;
  }
}
@media (max-width: 991px) {
  .doctor-single-sidebar {
    margin-right: 0;
  }
}
@media (max-width:820px) {
  .navbar .btn_style span {
    font-size: 12px !important;
  }

  .header_logo {
    margin-left: 10px !important;
  }

  button.navbar-toggler {
    margin-right: 10px !important;
  }
}
@media (max-width: 768px) {
  .company_logo_grid {
    gap: 15px;
  }

  .company_logo {
    flex: 0 0 calc(50% - 8px);
  }

  .team-card-three__identity {
    left: 30px !important;
  }
  .top-header {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    padding: 0 20px;
    top: 57%;
  }

  .contact-info {
    flex-direction: column;
    gap: 15px !important;
  }

  .navbar {
    left: 10px;
    right: 10px;
  }

  .navbar .container {
    border-radius: 42px !important;
  }

  .footer .foote_wp_icon {
    bottom: 8% !important;
  }

  .hero-section,
  .carousel-item {
    height: 60vh;
  }
}
@media (max-width: 768px) {
  .contact_us_page {
    padding: 40px 0;
  }

  .contact_us_page .main-heading {
    font-size: 28px !important;
  }

  .form-heading {
    font-size: 28px !important;
  }

  .contact_us_page .hero-image {
    height: 250px;
    margin-bottom: 30px;
  }

  .contact_us_page .contact-card {
    height: auto;
    margin-bottom: 15px;
  }
  .team-card-three__identity {
    writing-mode: unset;
    transform: unset;
  }
  .team-content p {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .main-heading {
    font-size: 32px;
  }

  .home_about_us .images-container {
    text-align: center;
  }

  .home_about_us .main-image {
    width: 100%;
    max-width: 280px;
  }

  .home_about_us .top-right-image,
  .home_about_us .bottom-right-image {
    width: 100%;
    max-width: 220px;
  }

  .navbar-collapse {
    padding-bottom: 10px !important;
  }
}
@media (max-width: 768px) {
  .who_we_are {
    padding: 60px 0;
  }

  .who_we_are_image {
    min-width: auto;
  }

  .who_we_are_image img {
    height: 300px;
  }

  .who_we_are_title {
    font-size: 2.2rem;
  }

  .who_we_are_description {
    font-size: 16px;
  }
}
@media (max-width: 768px) {


  .form-container {
    padding: 40px 20px;
    min-height: auto;
  }

  .form-heading {
    font-size: 32px;
  }

  .map-container {
    height: 100%;
  }

  .map-info-card {
    position: relative;
    top: auto;
    left: auto;
    margin: 20px;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .doctor-sidebar-body ul li {
    justify-content: unset;
  }

  .doctor-single-sidebar {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .doctor-sidebar-body ul li span {
    font-size: 16px;
    width: 15%;
  }

  .doctor-sidebar-image img {
    aspect-ratio: 1 / 1;
  }
}
@media (max-width:767px) {
  .our_collaboration_details {
    padding: 50px 0;
  }

  .our_collaboration_details .description {
    font-size: 16px;
    line-height: 26px;
  }

  .partnership_section {
    padding-bottom: 50px;
  }

  .company_logo_grid {
    gap: 15px;
  }

  .company_logo {
    flex: 0 0 100%;
  }

  .our_collabration_form {
    margin-top: 30px;
    padding: 20px;

  }
}
@media (max-width:767px) {

  .single-blog-content h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .single-blog-content h2 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 12px;
  }

  .single-blog-content h3 {
    font-size: 24px;
    line-height: 34px;
  }

  .single-blog-content h4 {
    font-size: 20px;
    line-height: 30px;
  }

  .single-blog-content h5 {
    font-size: 16px;
    line-height: 26px;
  }

  .single-blog-content h6 {
    font-size: 14px;
    line-height: 24px;
  }

  .single-blog-content p,
  .single-blog-content span {
    font-size: 16px;
    line-height: 26px;
  }

  .single-blog-content table {
    font-size: 14px;
  }

  .single-blog-content table th,
  .single-blog-content table td {
    padding: 8px 10px;
  }
}
@media (max-width:767px) {
  .facility_section {
    padding: 50px 0;
  }

  .facility_section_image {
    margin: 0;
  }

  .counter_wrap {
    padding: 8px;
    border-radius: 10px;
  }

  .counter_wrap .item {
    border-radius: 10px;
    padding: 10px;
  }

  .wrap_two .item {
    padding: 8px 10px;
  }

  .counter_wrap h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .counter_wrap p {
    font-size: 13px;
    line-height: 16px;
  }

  .facility_content {
    margin-top: 25px;
  }

  .facility_card {
    padding: 25px;
  }

  .cta_sec_facility {
    margin-top: 50px;
  }

  .section_title {
    text-align: left;
  }

  .mediic-section-title {
    text-align: left;
  }

  .facility_list {
    margin: 0;
  }

  .facility_list1 {
    margin-top: 20px;
  }

  .facility_list2 {
    margin-bottom: 20px;
  }

}
@media (max-width:767px) {

  .btn_style span {
    font-size: 16px;
    padding: 12px 16px;
  }

  .carousel-item,
  .hero-section {
    height: 50vh;
  }

  .hero-title {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-description {
    margin-bottom: 15px;
  }

  .home_about_us {
    padding: 50px 0;
  }

  .home_about_us .main-image {
    max-width: 100%;
  }

  .home_about_us .bg-decoration-1 {
    width: 150px;
    height: 150px;
    top: 0;
  }

  .home_about_us .bg-decoration-2 {
    width: 150px;
    height: 150px;
    bottom: 0;
  }

  .home_about_us .bottom-right-image {
    display: none;
  }

  .home_about_us .content-section {
    margin-top: 0;
  }

  .main-heading {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .section-label {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .home_about_us .description {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .home_about_us .service-item {
    margin-bottom: 10px;
  }

  .service_section {
    padding: 50px 0;
  }

  .mask-img img {
    height: 350px;
    width: 100%;
  }

  .service_item {
    display: flex;
    align-items: unset;
  }

  .service_section .main-heading {
    margin-bottom: 0;
  }

  .service_section .row {
    row-gap: 30px;
  }

  .service_section .mt-5 {
    margin-top: 0 !important;
  }

  .our_collaboration {
    padding: 50px 0;
  }

  .our_collaboration img {
    width: 165px;
  }

  .method_section {
    margin: 50px 0;
  }


  .icon-box {
    margin-bottom: 30px;
    height: auto;
  }


  .method_section .row .col-md-6:last-child .icon-box {
    margin-bottom: 0;
  }


  .cta_sec {
    padding: 50px 0;
    text-align: center;
  }


  .cta_sec p {
    font-size: 18px;
    line-height: 28px;
  }


  .fact-area {
    padding: 50px 0;
  }

  .why-choose-image-box {
    margin: 30px 0;
    height: auto;
  }


  .why-choose-image-box figure img {
    aspect-ratio: unset;
  }

  .why-choose-image-box figure {
    height: auto;
  }

  .flogo {
    height: 70px;
  }

  #custom_html-5 {
    text-align: left;
    margin-top: 30px;
  }

  .top-footer {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  footer .mt-5 {
    margin-top: 0px !important;
  }

  .primary-footer {
    padding: 40px 0;
  }

  .copyright,
  .company-detail {
    font-size: 16px;
  }

  .icon-box {
    padding: 30px;
  }

  .why-choose-item h2,
  .why-choose-title h2 {
    font-size: 27px;
  }

  .breadcrumb-content h1 {
    font-size: 30px;
  }

  .breadcrumb-section {
    height: 250px;
    padding-top: 80px;
  }

  ul.breadcrumb-item li {
    font-size: 16px;
    letter-spacing: 1px;
    padding: 0;
  }

  .about-section {
    padding: 50px 0;
  }

  .counter-right-side {
    width: 100%;
  }


  .odometer-wrapper.counter-box-title {
    font-size: 30px;
  }

  .counter-right-side {
    padding: 15px;
  }

  .mediic-section-content {
    margin-top: 30px;
  }

  .mediic-section-content p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  ul.about-mediic-services li:last-child {
    padding-bottom: 0;
  }

  .skill-serction {
    padding: 50px 0;
  }

  .single-skill-box .progress {
    margin: 10px 0;
  }

  .skill-serction .mt-5 {
    margin-top: 20px !important;
  }

  .feature-single-box-2 {
    flex-direction: column;
    padding: 20px 15px;
  }

  .feature-single-box-2 .feature-content {
    padding-left: 0;
    margin-top: 20px;
  }

  .feature-thumb,
  .feature-thumb img {
    width: 100%;
  }

  .feature-title h3 {
    padding: 0 0 15px;
    margin-bottom: 15px;
    font-size: 19px;
  }

  .feature-single-box-2 .mediic-icon img {
    height: 65px;
  }

  .skill-serction .row .col-lg-6:last-child .feature-single-box-2 {
    margin-bottom: 0;
  }

  .marquee-section {
    padding: 20px 0;
  }

  .marquee-content h2 {
    font-size: 30px;
  }

  .marquee-content h2 span img {
    width: 70%;
  }

  .our-approach {
    padding: 50px 0;
  }

  .our-approach-content {
    font-size: 16px;
    line-height: 26px;
  }

  .approach-item,
  .approach-image {
    width: 100%;
  }

  .approach-item {
    padding: 20px;
  }

  .approach-item .icon-boxs {
    margin-bottom: 20px;
  }

  .approach-item-list {
    gap: 20px;
    flex-direction: column-reverse;
  }

  .icon-boxs img {
    height: 50px;
  }

  .testimonial-section {
    margin: 50px 0;
  }

  .mediic-section-title {
    text-align: center;
  }

  .testi-single-box {
    padding: 20px 15px;
  }

  .testi-quote2 img {
    display: none !important;
  }

  .testi-desc p {
    padding: 20px 0 0;
  }

  .user-name h4 {
    font-size: 20px;
  }

  .testi-desc p {
    font-size: 15px;
  }

  .testi-list .slick-dots {
    bottom: -30px;
  }

  .testi-thumb {
    margin-top: 30px;
  }

  .footer-widget {
    margin-top: 30px;
  }

  .primary-footer .row .col-lg-3:first-child .footer-widget {
    margin-top: 0;
  }
}
@media (max-width:767px) {
  .blog-section {
    padding: 50px 0;
  }

  .blog-single-box {
    padding: 12px;
  }

  .top-mediic-section {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .blog-content {
    padding: 20px 20px 0 0;
  }

  .medic-button {
    margin-top: 15px;
  }

  .top-mediic-section .btn_style {
    margin-top: 15px;
  }
}
@media (max-width: 576px) {
  .who_we_are_container {
    padding: 0 15px;
  }

  .who_we_are_title {
    font-size: 1.8rem;
  }

  .who_we_are_play_btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .header_logo {
    height: 65px !important;
  }

  .media-grp {
    width: 100% !important;
  }

  .navbar .container {
    border-radius: 27px !important;
  }

  .navbar button.navbar-toggler {
    border: 0px !important;
    margin-right: 0px !important;
  }

  .footer .wp_link .foote_wp_icon {
    bottom: 12% !important;
  }

  .carousel-control-prev,
  .carousel-control-next {
    top: 93% !important;
  }

  .carousel-control-prev {
    left: 36% !important;
  }

  .carousel-control-next {
    right: 36% !important;
  }

  .contact-form-section .col-lg-6:nth-child(1) {
    margin-bottom: 30px !important;
  }

  .contact-form-section .form-container {
    max-height: unset !important;
  }

  .contact-form-section {
    padding-bottom: 50px !important;
  }

  .contact_us_page .col-md-6:nth-child(4) {
    margin-bottom: 0px !important;
  }

  .copyright {
    text-align: center !important;
    line-height: 26px;
  }

  .company-detail {
    text-align: center !important;
    line-height: 26px;
  }

  .about-thumb img {
    height: 100%;
  }

  .carousel-item,
  .hero-section {
    height: 59vh;
  }

  .hero-content {
    top: 55%;
  }

  .hero-title {
    font-size: 35px;
    line-height: 45px;
  }

  .team-card-three__identity {
    width: 96%;
    transform: unset;
    left: 7px !important;
    writing-mode: unset;
  }

  .flogo {
    height: 100px;
  }

  .team-content p {
    width: 95%;
  }

  .main-heading {
    font-size: 28px;
  }

  .breadcrumb-section {
    height: 320px;
    padding-top: 80px;
  }

  .ortho_about_img figure {
    width: 100%;
    height: 500px;
    min-height: 500px;
  }

  .orthopedic-img figure img {
    height: 500px;
    min-height: 500px;
  }
}
@media (max-width:600px) {
  .ortho_about_section {
    padding: 50px 0;
  }
  .btn_style span {
        font-size: 14px;
        padding: 12px 16px;
    }

  .ortho_stats {
    margin-bottom: 24px;
  }

  .stat_number {
    font-size: 26px;
    line-height: 36px;
  }

  .ortho_about_img {
    margin-top: 20px !important;
    margin-bottom: 0px !important;
  }

  .ortho_sevice_section .nav-pills .nav-link span {
    min-width: 300px;
    text-align: left;
  }

  .ortho_sevice_section .nav-pills .nav-link {
    justify-content: left !important;
  }


  .ortho_sevice_section .section_heading {
    text-align: left;
  }

  .ortho_sevice_section {
    padding-bottom: 50px;
  }

  .ortho_why_choose {
    padding: 50px 0px 30px 0px;
  }

  .ortho_why_choose .feature-box {
    margin-top: 20px;
  }

  .ortho_team {
    margin-bottom: 50px;
  }

  .appointment_section h3 {
    font-size: 26px;
    line-height: 36px;
  }

  .form-section {
    margin-top: 30px;
    padding: 20px;
  }

  .appointment_section {
    padding: 50px 0px;
  }

  .ortho_team .main-heading {
    margin-bottom: 20px;
  }

  .ortho_why_choose .main-heading br {
    display: none;
  }

  .ortho_team .team-card-three__image {
    min-height: 370px;
  }

  .ortho_team .team-card-three__identity {
    bottom: 10px;
  }

  .form-section h3 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 15px;
  }

}
@media screen and (max-width: 600px) {
  .doctor-sidebar-body ul li span {
    width: 30%;
  }

  .doctor-single-entry ul li {
    position: relative;
    width: calc(100% - 10px);
  }

  .team-page {
    margin: 50px 0;
  }

  .page-doctor-single {
    margin: 50px 0;
  }
  .menu-service-menu-container ul li {
    display: block;
    width: 100%;
    vertical-align: top;
}
}
@media (max-width: 390px) {

  .carousel-item,
  .hero-section {
    height: 65vh !important;
  }

  .carousel-control-prev {
    left: 35% !important;
  }

  .carousel-control-next {
    right: 35% !important;
  }
}