:root {
  --ink: #444444;
  --muted: #666666;
  --primary: #005eb8;
  --primary-dark: #003f8f;
  --green: #005eb8;
  --green-dark: #003f8f;
  --green-soft: #eaf4ff;
  --soft: #f5faff;
  --panel: #ffffff;
  --line: #dceeee;
  --deep: #3a3f44;
  --deep-2: #003f8f;
  --hero-height: clamp(260px, 33.35vw, 535px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.scroll-progress {
  background: var(--green);
  height: 4px;
  left: 0;
  position: fixed;
  top: 0;
  transform-origin: left;
  transform: scaleX(0);
  width: 100%;
  z-index: 1100;
}

.site-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1050;
}

.main-nav {
  background: #ffffff;
  border-bottom: 4px solid var(--primary);
  min-height: 120px;
  padding: 22px 0;
}

.site-header.is-scrolled .main-nav {
  background: #ffffff;
  min-height: 104px;
  padding: 16px 0;
}

.navbar-brand {
  align-items: center;
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
  max-width: min(650px, 46vw);
  min-width: 0;
  padding: 0;
}

.brand-logo-mark {
  border-radius: 50%;
  display: block;
  flex: 0 0 72px;
  height: 72px !important;
  max-height: 72px;
  max-width: 72px;
  object-fit: cover;
  width: 72px !important;
}

.brand-name {
  color: #c50f1f;
  display: inline-block;
  font-size: clamp(30px, 2vw, 38px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  padding: 8px 0 10px;
  position: relative;
  white-space: normal;
}

.brand-name span {
  color: #00528f;
}

.brand-name::after {
  background: #00528f;
  border-radius: 999px;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  width: 72px;
}

.nav-link {
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  padding: 16px 11px !important;
  text-transform: none;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--primary);
}

.dropdown-menu {
  border: 0;
  border-radius: 8px;
  padding: 10px;
}

.treatments-menu {
  box-shadow: 0 22px 50px rgba(0, 63, 143, 0.16);
  max-height: min(72vh, 620px);
  min-width: 640px;
  overflow-y: auto;
  padding: 18px;
}

.treatments-menu-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dropdown-section-title {
  color: var(--primary-dark);
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 4px 0 8px;
  text-transform: uppercase;
}

.dropdown-item {
  border-radius: 6px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 12px;
}

.dropdown-item:hover {
  background: var(--soft);
  color: var(--primary-dark);
}

.btn {
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 11px 18px;
}

.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--green);
  --bs-btn-hover-border-color: var(--green);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary-dark);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
}

.hero-actions i {
  margin-right: 6px;
}

.nav-cta {
  align-self: stretch;
  background: var(--primary);
  border-color: transparent;
  border-radius: 0;
  font-size: 21px;
  min-width: 178px;
  padding-left: 22px;
  padding-right: 22px;
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--green);
  border-color: transparent;
}

.header-social {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-left: 14px;
}

.header-social a,
.footer-social a {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.header-social a {
  background: #eef7ff;
  border: 1px solid var(--line);
  color: var(--primary-dark);
  font-size: 18px;
  height: 40px;
  width: 40px;
}

.header-social a:hover,
.header-social a:focus {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.main-nav .container-xxl {
  align-items: center;
  column-gap: 18px;
  max-width: none;
  padding-left: 24px;
  padding-right: 0;
}

.hero-slider {
  margin-top: 120px;
}

.hero-slider,
.hero-slider .carousel-item {
  height: var(--hero-height);
  min-height: var(--hero-height);
  overflow: hidden;
}

.hero-slider .carousel-item {
  background: #ffffff;
  position: relative;
}

.hero-media {
  background: #ffffff;
  display: block;
  height: var(--hero-height);
  object-fit: contain;
  object-position: center center;
  opacity: 1;
  width: 100%;
}

.hero-doctor {
  object-position: 73% 38%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

.feature-strip {
  margin-top: 28px;
  position: relative;
  z-index: 4;
}

.feature-grid {
  background: #fff;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.feature-grid article {
  border-right: 1px solid var(--line);
  padding: 28px;
}

.feature-grid article:last-child {
  border-right: 0;
}

.feature-grid i {
  align-items: center;
  background: #e8f6fb;
  border-radius: 8px;
  color: var(--primary);
  display: inline-flex;
  font-size: 28px;
  height: 58px;
  justify-content: center;
  margin-bottom: 16px;
  width: 58px;
}

.feature-grid h3,
.department-card h3,
.mission-grid h3,
.blog-grid h3 {
  font-size: 21px;
  font-weight: 500;
}

.feature-grid p,
.department-card p,
.mission-grid p,
.blog-grid p,
.section-heading p,
.about-section p,
.faq-section p {
  color: var(--muted);
}

.section-pad {
  padding: 98px 0;
}

.section-label {
  color: var(--primary);
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-label.light {
  color: #9cf3f7;
}

.section-heading {
  margin: 0 auto 44px;
  max-width: 760px;
  text-align: center;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  color: #36535e;
  font-size: 19px;
}

.image-stack {
  position: relative;
}

.image-stack img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.experience-card {
  align-items: center;
  background: var(--green);
  border-radius: 8px;
  bottom: 24px;
  color: #ffffff;
  display: flex;
  gap: 12px;
  left: 24px;
  padding: 16px 18px;
  position: absolute;
}

.experience-card strong {
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

.experience-card span {
  font-weight: 500;
  line-height: 1.25;
  max-width: 140px;
}

.mission-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.mission-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.mission-grid i {
  color: var(--green);
  font-size: 28px;
}

.stats-band {
  background: var(--primary);
  color: #fff;
  padding: 44px 0;
}

.stat-card {
  border: 1px solid #ffffff;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  line-height: 1;
}

.stat-card span {
  color: #ffffff;
  font-weight: 400;
  margin-top: 10px;
}

.soft-section {
  background: var(--soft);
}

.department-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 100%;
  padding: 30px;
}

.department-card:hover {
  background: #ffffff;
}

.card-icon {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--primary);
  display: inline-flex;
  font-size: 32px;
  height: 66px;
  justify-content: center;
  margin-bottom: 22px;
  width: 66px;
}

.department-card a {
  color: var(--primary);
  font-weight: 500;
}

.procedure-tabs {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  gap: 8px;
  padding: 10px;
}

.procedure-tabs .nav-link {
  border-radius: 6px;
  color: var(--ink);
  text-align: left;
}

.procedure-tabs .nav-link.active {
  background: var(--primary);
  color: #fff;
}

.procedure-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.procedure-content .tab-pane {
  min-height: 500px;
  position: relative;
}

.procedure-content img {
  height: 500px;
  object-fit: cover;
  width: 100%;
}

.procedure-content .tab-pane > div {
  background: var(--primary-dark);
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 70px 34px 30px;
  position: absolute;
  right: 0;
}

.procedure-content h3 {
  font-size: 30px;
  font-weight: 500;
}

.procedure-content p {
  color: #ffffff;
  max-width: 640px;
}

.symptoms-section {
  background: #fff;
}

.symptom-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.symptom-cloud span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 400;
  padding: 11px 16px;
}

.dark-section {
  background: var(--primary-dark);
  color: #fff;
}

.dark-section p {
  color: #ffffff;
}

.facility-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.facility-list span {
  align-items: center;
  display: flex;
  font-weight: 400;
  gap: 10px;
}

.facility-list i {
  color: #a9efc2;
  font-size: 22px;
}

.facility-carousel {
  border-radius: 8px;
  overflow: hidden;
}

.facility-carousel img {
  height: 480px;
  object-fit: cover;
  width: 100%;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.gallery-filter button {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 400;
  padding: 9px 18px;
}

.gallery-filter button.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}

.gallery-item img {
  aspect-ratio: 1.22 / 1;
  display: block;
  object-fit: cover;
  width: 100%;
}

.gallery-item span {
  background: var(--primary-dark);
  bottom: 0;
  color: #fff;
  font-weight: 500;
  left: 0;
  padding: 48px 18px 16px;
  position: absolute;
  right: 0;
}

.gallery-item:hover img {
  transform: none;
}

.doctor-section {
  background: #fff;
}

.doctor-carousel {
  border-radius: 8px;
  overflow: hidden;
}

.doctor-slide {
  align-items: center;
  background: var(--soft);
  display: grid;
  gap: 34px;
  grid-template-columns: 330px 1fr;
  min-height: 370px;
  padding: 34px;
}

.doctor-slide img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.doctor-slide h3 {
  font-size: 34px;
  font-weight: 500;
}

.doctor-slide p {
  color: var(--muted);
  font-size: 18px;
}

.blog-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.blog-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.blog-grid span {
  color: var(--primary);
  display: block;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 18px;
}

.testimonial-band {
  background: var(--primary);
  color: #fff;
  padding: 58px 0;
  text-align: center;
}

.testimonial-band blockquote {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto;
  max-width: 980px;
}

.faq-section .accordion-item {
  border: 1px solid var(--line);
  border-radius: 8px !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-button {
  color: var(--ink);
  font-weight: 400;
}

.accordion-button:not(.collapsed) {
  background: var(--soft);
  color: var(--primary-dark);
}

.contact-section {
  background: var(--soft);
}

.contact-card,
.appointment-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.contact-card p {
  align-items: flex-start;
  color: var(--muted);
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-card i {
  color: var(--green);
  font-size: 20px;
}

.form-control,
.form-select {
  border-color: var(--line);
  border-radius: 6px;
  min-height: 54px;
}

textarea.form-control {
  min-height: 130px;
}

.site-footer {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 16px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.footer-social {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  align-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .32);
  color: #fff;
  display: inline-flex;
  font-size: 20px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  margin-bottom: 0;
  padding: 0;
  width: 44px;
}

.footer-social a i {
  display: block;
  line-height: 1;
}

.footer-social a:hover,
.footer-social a:focus {
  background: #fff;
  color: var(--primary-dark);
}

.footer-bottom {
  border-top: 1px solid #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 22px;
}

.back-to-top {
  align-items: center;
  background: var(--primary);
  border: 0;
  border-radius: 8px;
  bottom: 22px;
  color: #fff;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 22px;
  width: 46px;
  z-index: 1040;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  border: 0;
  border-radius: 8px;
}

.modal-note {
  color: var(--muted);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lightbox {
  align-items: center;
  background: var(--primary-dark);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 28px;
  position: fixed;
  z-index: 1200;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  border-radius: 8px;
  max-height: 84vh;
  object-fit: contain;
}

.lightbox-close {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 42px;
}

.reveal {
  animation: none;
}

.inner-main {
  margin-top: 120px;
}

.inner-hero {
  background: linear-gradient(135deg, #f5faff 0%, #ffffff 52%, #eaf4ff 100%);
  padding: 86px 0 58px;
}

.inner-hero-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.inner-hero h1 {
  color: var(--deep);
  font-size: clamp(38px, 4.4vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  margin: 14px 0 22px;
}

.inner-lead {
  color: var(--muted);
  font-size: 20px;
  max-width: 920px;
}

.inner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.inner-quick-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 63, 143, 0.12);
  padding: 24px;
}

.inner-quick-card img {
  background: var(--soft);
  border-radius: 8px;
  height: 190px;
  margin-bottom: 18px;
  object-fit: contain;
  padding: 10px;
  width: 100%;
}

.doctor-profile-card img {
  background: #ffffff;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  padding: 0;
}

.inner-quick-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.inner-quick-card a {
  color: var(--primary);
  display: inline-flex;
  gap: 8px;
  margin-top: 8px;
}

.inner-content-section {
  padding: 70px 0 92px;
}

.inner-content-grid {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 330px;
}

.content-stack {
  display: grid;
  gap: 20px;
}

.content-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--primary);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 63, 143, 0.08);
  padding: 28px;
}

.content-panel h2 {
  color: var(--deep);
  font-size: 28px;
  margin-bottom: 14px;
}

.content-panel p {
  margin-bottom: 12px;
}

.related-pages {
  background: var(--primary-dark);
  border-radius: 8px;
  color: #ffffff;
  padding: 24px;
  position: sticky;
  top: 142px;
}

.related-pages h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.related-pages a {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: block;
  margin-top: 10px;
  padding: 13px 14px;
}

.related-pages a span {
  color: #d7ebff;
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.topic-directory {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.topic-link-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 63, 143, 0.08);
  display: block;
  min-height: 116px;
  padding: 18px;
}

.topic-link-card span {
  color: var(--primary);
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}

.topic-link-card strong {
  color: var(--deep);
  display: block;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
}

@media (min-width: 1200px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (max-width: 1199px) {
  :root {
    --hero-height: clamp(230px, 33.35vw, 400px);
  }

  html {
    scroll-padding-top: 112px;
  }

  .hero-slider {
    margin-top: 112px;
  }

  .main-nav {
    min-height: 112px;
    padding: 18px 0;
  }

  .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--line);
    margin-top: 12px;
    padding: 12px 0 18px;
  }

  .treatments-menu {
    box-shadow: none;
    max-height: 58vh;
    min-width: 0;
    padding: 12px;
  }

  .treatments-menu-grid {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    align-self: auto;
    border-radius: 6px;
    margin: 12px 0 0 12px;
    min-height: 54px;
  }

  .header-social {
    margin: 14px 0 0 12px;
  }

  .feature-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid article:nth-child(2) {
    border-right: 0;
  }

  .feature-grid article {
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-main {
    margin-top: 112px;
  }

  .inner-hero-grid,
  .inner-content-grid {
    grid-template-columns: 1fr;
  }

  .inner-quick-card {
    max-width: 560px;
  }

  .related-pages {
    position: static;
  }

  .topic-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  :root {
    --hero-height: clamp(210px, 33.35vw, 330px);
  }

  .section-pad {
    padding: 74px 0;
  }

  .mission-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .procedure-content .tab-pane,
  .procedure-content img,
  .facility-carousel img {
    height: 420px;
    min-height: 420px;
  }

  .doctor-slide {
    grid-template-columns: 1fr;
  }

  .doctor-slide img {
    max-width: 360px;
  }

  .hero-slider,
  .hero-slider .carousel-item,
  .hero-media {
    min-height: var(--hero-height);
  }

  .hero-media {
    height: var(--hero-height);
  }

  .topic-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  :root {
    --hero-height: clamp(170px, 44vw, 250px);
  }

  html {
    scroll-padding-top: 104px;
  }

  .brand-name {
    font-size: 22px;
    white-space: normal;
  }

  .navbar-brand {
    gap: 10px;
    max-width: calc(100vw - 96px);
    min-width: 0;
  }

  .brand-logo-mark {
    flex-basis: 52px;
    height: 52px !important;
    min-width: 52px;
    width: 52px !important;
  }

  .hero-slider {
    margin-top: 104px;
  }

  .hero-slider,
  .hero-slider .carousel-item,
  .hero-media {
    min-height: var(--hero-height);
  }

  .hero-media {
    height: var(--hero-height);
  }

  .inner-main {
    margin-top: 104px;
  }

  .inner-hero {
    padding: 58px 0 40px;
  }

  .inner-hero h1 {
    font-size: 34px;
  }

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

  .inner-actions .btn {
    width: 100%;
  }

  .content-panel {
    padding: 22px;
  }

  .content-panel h2 {
    font-size: 24px;
  }

  .topic-directory {
    grid-template-columns: 1fr;
  }

  .modal-actions .btn {
    width: 100%;
  }

  .feature-strip {
    margin-top: 0;
  }

  .feature-grid,
  .mission-grid,
  .gallery-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    border-right: 0;
  }

  .experience-card {
    bottom: 14px;
    left: 14px;
    right: 14px;
  }

  .procedure-content .tab-pane,
  .procedure-content img,
  .facility-carousel img {
    height: 360px;
    min-height: 360px;
  }

  .procedure-content .tab-pane > div {
    padding: 80px 22px 22px;
  }

  .doctor-slide {
    padding: 22px;
  }

  .doctor-slide h3 {
    font-size: 26px;
  }

  .footer-bottom {
    display: block;
  }
}
