:root {
  /* ML Spine Brand Colors */

  --primary-orange: #ed6b23;

  --primary-green: #8cc63f;

  --text-charcoal: #333333;

  --bg-gray: #eaeaea;

  --white: #ffffff;

  /* Retaining some slate grays for subtle borders/shadows */

  --slate-100: #f1f5f9;

  --slate-200: #e2e8f0;

  --slate-500: #64748b;
}

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

body {
  width: 100%;

  height: 100%;

  font-family: "Poppins", sans-serif;
}

main {
  width: 100%;

  max-width: 1640px;

  margin: 0 auto; /* This centers the entire website on 4K screens */

  overflow: hidden; /* Prevents unwanted horizontal scroll */
}

.poppins-regular {
  font-family: "Poppins", sans-serif;

  font-weight: 100;

  font-style: normal;
}

.top-header {
  width: 100%;

  height: 40px;

  color: white;

  font-size: 13px;

  background-color: var(--primary-green);

  display: flex;

  align-items: center;

  justify-content: space-evenly;

  /* padding: 0 100px; */
}

/* --- Navigation Bar --- */

.navbar {
  background-color: white;

  border-bottom: 1px solid var(--slate-200);

  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

  /* position: fixed; */

  width: 100%;

  /* top: 0; */

  position: sticky;

  z-index: 50;

  top: 0px;
}

.nav-container {
  max-width: 80rem;

  margin: 0 auto;

  padding: 0 1rem;

  display: flex;

  justify-content: space-between;

  align-items: center;

  height: 4rem; /* 64px */
}

/* --- Logo --- */

.logo-wrapper {
  display: flex;

  align-items: center;

  cursor: pointer;

  flex-shrink: 0;
}

.logo-icon {
  width: 2rem;

  height: 2rem;

  background-color: var(--blue-600);

  border-radius: 0.5rem;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-right: 0.5rem;

  color: white;

  font-weight: 700;

  font-size: 1.25rem;
}

.logo-text {
  font-weight: 700;

  font-size: 1.25rem;

  letter-spacing: -0.025em;

  color: var(--text-charcoal);
}

/* --- Desktop Menu --- */

.desktop-menu {
  display: none; /* Hidden by default (mobile first) */

  align-items: center;

  gap: 2rem;
}

.nav-link {
  display: flex;

  align-items: center;

  color: var(--slate-600);

  font-weight: 500;

  text-decoration: none;

  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--blue-600);
}

.btn-primary {
  background-color: var(--primary-orange);

  color: white;

  padding: 0.5rem 1.25rem;

  border-radius: 9999px; /* Pill shape */

  font-weight: 500;

  border: none;

  cursor: pointer;

  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #d15a1a;
}

/* --- Mobile Menu Button --- */

.mobile-menu-btn {
  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0.5rem;

  border-radius: 0.375rem;

  color: var(--slate-600);

  background: transparent;

  border: none;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.mobile-menu-btn:hover {
  color: var(--blue-600);

  background-color: var(--slate-100);
}

/* Icon toggling utilities */

.icon-hidden {
  display: none !important;
}

.icon-block {
  display: block !important;
}

/* --- Mobile Menu Dropdown --- */

.mobile-menu {
  position: absolute;

  width: 100%;

  background-color: white;

  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

  border-bottom: 1px solid var(--slate-200);

  /* Animation properties */

  transition: all 0.3s ease-in-out;

  transform-origin: top;

  opacity: 0;

  transform: scaleY(0);

  visibility: hidden;
}

.mobile-menu.is-open {
  opacity: 1;

  transform: scaleY(1);

  visibility: visible;
}

.mobile-menu-content {
  padding: 0.5rem 1rem 1.5rem 1rem;

  display: flex;

  flex-direction: column;

  gap: 0.5rem;
}

.mobile-link {
  display: flex;

  align-items: center;

  padding: 0.75rem 1rem;

  border-radius: 0.5rem;

  font-size: 1rem;

  font-weight: 500;

  color: var(--slate-700);

  text-decoration: none;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.mobile-link svg {
  width: 1rem;

  height: 1rem;

  margin-right: 0.5rem;
}

.mobile-link:hover {
  color: var(--blue-600);

  background-color: var(--slate-50);
}

.mobile-action-wrapper {
  padding-top: 1rem;

  padding-bottom: 0.5rem;
}

.mobile-action-wrapper .btn-primary {
  width: 100%;

  border-radius: 0.75rem;

  padding: 0.75rem 1.25rem;
}

/* --- Main Content Area --- */

.main-content {
  padding-top: 6rem; /* Account for fixed navbar */

  padding-bottom: 3rem;

  padding-left: 1rem;

  padding-right: 1rem;

  max-width: 80rem;

  margin: 0 auto;

  min-height: 80vh;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;
}

.page-title {
  font-size: 2.25rem;

  font-weight: 800;

  color: var(--slate-900);

  letter-spacing: -0.025em;

  margin-bottom: 1rem;
}

.page-desc {
  font-size: 1.125rem;

  color: var(--slate-600);

  max-width: 42rem;

  margin-bottom: 2rem;
}

.features-grid {
  display: grid;

  grid-template-columns: 1fr;

  gap: 1.5rem;

  width: 100%;

  max-width: 56rem;

  margin-top: 2rem;
}

.feature-card {
  background-color: white;

  padding: 1.5rem;

  border-radius: 1rem;

  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

  border: 1px solid var(--slate-100);

  display: flex;

  flex-direction: column;

  align-items: center;
}

.feature-icon-wrapper {
  width: 3rem;

  height: 3rem;

  background-color: var(--blue-100);

  color: var(--blue-600);

  border-radius: 9999px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 1rem;
}

.feature-title {
  font-weight: 600;

  font-size: 1.125rem;

  margin-bottom: 0.5rem;
}

.feature-text {
  color: var(--slate-500);

  font-size: 0.875rem;
}

/* --- Hero Section --- */

.hero-section {
  width: 100%;

  background-color: transparent;

  background: url(img/hero-bg.jpg);

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  padding: 2rem 1rem;

  /* font-size: 2rem; */

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;
}

.hero-title {
  letter-spacing: 0px;

  line-height: 50px;

  font-size: 48px;

  color: #333333;

  margin-bottom: 15px;

  text-decoration: uppercase;

  text-transform: uppercase;
}

.hero-quote {
  color: #475569;

  font-size: 18px;

  max-width: 600px;

  margin-bottom: 25px;
}

.hero-card-container {
  display: flex;

  flex-direction: column;

  gap: 40px;
}

.div-hero {
  padding: 2rem 1.2rem;

  /* margin: 0 24px; */

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  /* line-height: 38px; */

  border-radius: 9px;
}

.why-to-choose {
  background-color: #1977cc;

  color: white;

  width: 100%;
}

.why-to-choose-title {
  line-height: 38px;

  font-size: 2.25rem;

  font-weight: 600;

  color: white;

  letter-spacing: -0.025em;

  margin-bottom: 1rem;
}

.why-to-choose p {
  color: white;

  font-size: 16px;

  max-width: 600px;

  /* text-align: center; */
}

.btn-why-choose {
  background-color: var(--primary-green);

  color: var(--white);

  padding: 0.7rem 1.45rem;

  margin-top: 30px;

  border-radius: 9999px; /* Pill shape */

  font-weight: 500;

  border: none;

  cursor: pointer;

  transition: background-color 0.2s ease;
}

.btn-why-choose:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.service-1 {
  background-color: var(--bg-gray);
}

.service-1 h4 {
  color: var(--text-charcoal);

  font-size: 1.5rem;

  margin: 10px 0 20px;
}

.service-1 p {
  color: #7b7c7c;

  font-size: 14px;

  text-align: center;

  margin-bottom: 20px;
}

.service-img {
  width: 40px;

  height: 40px;
}

.service-img img {
  width: 100%;

  height: 100%;
}

.service-card-container {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

/* about us */

.about-us {
  width: 100%;

  background-color: transparent;

  /* background: url(img/about-bg.jpg); */

  /* background-size: cover; */

  /* background-position: center; */

  /* background-repeat: no-repeat; */

  padding: 2rem 1rem;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;
}

.about-img {
  width: 100%;

  /* height: 300px; */

  background-color: var(--primary-orange);

  /* border-radius: 9999px; */
}

.about-img img {
  object-fit: cover;

  width: 100%;

  height: 100%;

  /* border-radius: 9999px; */
}

.about-us-title {
  line-height: 38px;

  font-size: 2.25rem;

  font-weight: 700;

  color: var(--text-charcoal);

  letter-spacing: -0.025em;

  /* margin-bottom: 1rem; */

  padding: 2rem 0;

  padding-bottom: 0.8rem;
}

.about-us p {
  color: #475569;

  font-size: 16px;

  max-width: 600px;

  /* text-align: center; */
}

.key {
  width: 54px;

  padding-top: 10px;

  /* display: flex;

  align-items: center; */
}

.key img {
  object-fit: cover;

  text-align: center;

  width: 54px;
}

.about-key-features {
  display: flex;

  gap: 20px;

  margin: 20px 0;
}

.about-key-features h4 {
  color: var(--text-charcoal);

  font-size: 1.125rem;

  /* margin: 10px 0 20px; */
}

.numbers-section {
  width: 100%;

  background-color: #f1f7fc;

  padding: 2rem 1rem;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;
}

.stats-container {
  display: flex;

  background-color: #f1f7fc;

  flex-direction: column;

  gap: 50px;

  width: 100%;

  margin-top: 30px;

  max-width: 350px;
}

.stat-card {
  background-color: #ffffff;

  border-radius: 8px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);

  padding: 50px 20px 30px;

  text-align: center;

  position: relative;
}

.icon-wrapper {
  background-color: #ed6b23;

  color: #ffffff;

  width: 65px;

  height: 65px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 26px;

  position: absolute;

  top: -32px;

  left: 50%;

  transform: translateX(-50%);

  box-shadow: 0 0 0 6px #eff3f8;
}

.stat-number {
  font-size: 42px;

  font-weight: 700;

  color: #2b4b6f;

  margin-bottom: 5px;

  line-height: 1;

  pointer-events: none;
}

.stat-label {
  font-size: 16px;

  color: #4a4a4a;

  font-weight: 400;
}

.services-section {
  padding: 80px 20px;
}

.container {
  max-width: 1100px;

  margin: 0 auto;
}

.section-title {
  text-align: center;

  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;

  font-weight: 700;

  color: #2b4b6f;

  margin-bottom: 20px;
}

.divider {
  width: 150px;

  height: 1px;

  background-color: #dcdcdc;

  margin: 0 auto 20px;

  position: relative;
}

.divider::before {
  content: "";

  position: absolute;

  top: -1px;

  left: 50%;

  transform: translateX(-50%);

  width: 50px;

  height: 3px;

  background-color: #ED6B23;
}

.section-title p {
  font-size: 16px;

  color: #555555;

  max-width: 600px;

  margin: 0 auto;

  line-height: 1.6;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

.service-card {
  background-color: #ffffff;

  border: 1px solid #eaeaea;

  padding: 60px 40px;

  text-align: center;

  transition: all 0.3s ease;

  cursor: pointer;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  transform: translateY(-5px);

  border-color: #ffffff;
}

.icon-box {
  position: relative;

  width: 75px;

  height: 75px;

  margin: 0 auto 30px;
}

.icon-box::before {
  content: "";

  position: absolute;

  top: -8px;

  left: -8px;

  width: 100%;

  height: 100%;

  background-color: #d1e3f8;

  border-radius: 6px;

  z-index: 1;
}

.icon-inner {
  position: relative;

  width: 100%;

  height: 100%;

  background-color: #8cc63f;

  border-radius: 6px;

  display: flex;

  justify-content: center;

  align-items: center;

  z-index: 2;
}

.icon-inner i {
  color: #ffffff;

  font-size: 32px;
}

.service-card h3 {
  font-size: 24px;

  font-weight: 700;

  color: #2b4b6f;

  margin-bottom: 20px;
}

.service-card p {
  font-size: 15px;

  color: #555555;

  line-height: 1.6;
}

.service-card:hover .icon-inner {
  background-color: #ed6b23;
}

.service-card:hover {
  background-color: #8cc63f;
}

.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}

/* Appointment Form */

/* Base Resets */

.appointment-section {
  padding: 60px 20px;
}

/* Section Title (Matching previous design) */

.section-title {
  text-align: center;

  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;

  color: #2b4b6f;

  margin-bottom: 15px;
}

.divider {
  width: 100px;

  height: 1px;

  background-color: #dcdcdc;

  margin: 0 auto 20px;

  position: relative;
}

.divider::before {
  content: "";

  position: absolute;

  top: -1px;

  left: 50%;

  transform: translateX(-50%);

  width: 40px;

  height: 3px;

  background-color: #ed6b23;
}

.section-title p {
  color: #666;

  font-size: 15px;
}

/* Form Container */

.form-wrapper {
  background: #ffffff;

  /* padding: 40px; */

  border-radius: 8px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Grid for Inputs */

.form-row {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 20px;

  margin-bottom: 20px;
}

/* Input & Select Styling */

input,
select,
textarea {
  width: 100%;

  padding: 12px 15px;

  border: 1px solid #e0e0e0;

  border-radius: 4px;

  font-family: inherit;

  font-size: 14px;

  color: #444;

  transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;

  border-color: #ed6b23;
}

textarea {
  resize: vertical;

  margin-bottom: 20px;
}

/* Submit Button */

.submit-wrapper {
  text-align: center;
  padding-bottom: 30px;
}

button {
  background-color: #ed6b23;

  color: white;

  border: none;

  padding: 14px 40px;

  font-size: 16px;

  border-radius: 50px;

  cursor: pointer;

  font-weight: 600;

  transition:
    background-color 0.3s,
    transform 0.2s;
}

button:hover {
  background-color: var(--primary-green);

  transform: translateY(-2px);
}

button:disabled {
  background-color: #a0c1f2;

  cursor: not-allowed;
}

/* Response Message Styling */

.form-response {
  margin-top: 20px;

  padding: 15px;

  border-radius: 4px;

  text-align: center;

  font-weight: 600;
}

.response-success {
  background-color: #d4edda;

  color: #155724;

  border: 1px solid #c3e6cb;
}

.response-error {
  background-color: #f8d7da;

  color: #721c24;

  border: 1px solid #f5c6cb;
}

/* doctor section */

.doctors-section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;

  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 36px;

  font-weight: 700;

  color: #2b4b6f;

  margin-bottom: 20px;
}

.divider {
  width: 150px;

  height: 1px;

  background-color: #dcdcdc;

  margin: 0 auto 20px;

  position: relative;
}

.divider::before {
  content: "";

  position: absolute;

  top: -1px;

  left: 50%;

  transform: translateX(-50%);

  width: 50px;

  height: 3px;

  background-color: var(--primary-orange);
}

.section-title p {
  font-size: 16px;

  color: #555555;

  max-width: 600px;

  margin: 0 auto;

  line-height: 1.6;
}

.doctors-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 350px));

  gap: 30px;

  justify-content: center;
}

.doctor-card {
  background-color: #ffffff;

  border-radius: 8px;

  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);

  padding: 20px 30px;

  text-align: center;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.doctor-img {
  margin-bottom: 25px;
}

.doctor-img img {
  width: 160px;

  height: 160px;

  border-radius: 50%;

  object-fit: cover;

  justify-content: flex-start;

  background-color: #e6f0fa;
}

.doctor-info h3 {
  font-size: 22px;

  font-weight: 700;

  color: #2b4b6f;

  margin-bottom: 8px;
}

.doctor-info .designation {
  font-size: 15px;

  color: #444444;

  font-weight: 500;

  display: block;
}

.card-divider {
  width: 50px;

  height: 1px;

  background-color: #e0e0e0;

  margin: 15px auto;
}

.doctor-info p {
  font-size: 14px;

  color: #666666;

  line-height: 1.6;

  margin-bottom: 25px;
}

.social-links {
  display: flex;

  justify-content: center;

  gap: 12px;
}

.social-links a {
  width: 40px;

  height: 40px;

  border-radius: 50%;

  background-color: #f4f6f9;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #555555;

  text-decoration: none;

  font-size: 16px;

  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #8cc63f;

  color: #ffffff;
}

/* testinomial section */

.testimonials-section {
  padding: 0px 20px;
}

.testimonials-header {
  margin-bottom: 40px;
}

.testimonials-header h2 {
  font-size: 36px;

  font-weight: 700;

  color: #2b4b6f;

  margin-bottom: 10px;
}

.testimonials-header p {
  font-size: 16px;

  color: #555;

  line-height: 1.6;
}

.slider-wrapper {
  position: relative;

  width: 100%;

  overflow: hidden;

  padding-bottom: 30px;
}

.slider-track {
  display: flex;

  align-items: center;
}

.slide {
  min-width: 100%;

  padding: 10px;
}

.testimonial-card {
  background: #ffffff;

  border-radius: 8px;

  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);

  padding: 5px;
}

.card-top {
  display: flex;

  align-items: center;

  margin-bottom: 20px;
}

.profile-img {
  width: 80px;

  height: 80px;

  border-radius: 50%;

  object-fit: cover;

  margin-right: 20px;
}

.user-info h3 {
  font-size: 20px;

  font-weight: 700;

  color: #2b4b6f;

  margin-bottom: 2px;
}

.user-info .role {
  font-size: 14px;

  color: #999;

  display: block;

  margin-bottom: 5px;

  font-weight: 600;
}

.user-info .stars {
  color: #ffc107;

  font-size: 14px;
}

.card-content p {
  font-size: 16px;

  color: #444;

  line-height: 1.6;

  font-style: italic;
}

.quote-icon {
  color: var(--primary-green);

  font-size: 22px;

  margin: 0 5px;
}

.pagination-dots {
  display: flex;

  justify-content: center;

  gap: 8px;

  margin-top: 30px;
}

.dot {
  width: 12px;

  height: 12px;

  border-radius: 50%;

  background-color: #e0e0e0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: var(--primary-orange);
}

/* gallart section */

.gallery-section {
  padding: 40px 10px; /* No side padding here so images can touch edges if needed */
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- Section Header Styling --- */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2b4b6f; /* Dark slate blue */
  margin-bottom: 20px;
}

.divider {
  width: 150px;
  height: 1px;
  background-color: #dcdcdc;
  margin: 0 auto 20px;
  position: relative;
}



.section-title p {
  font-size: 16px;
  color: #555555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Gallery Grid Layout --- */
.gallery-grid {
  display: grid;
  /* On mobile it will be 1 column, auto-expanding to 3 columns on desktop */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px; /* Very thin gap between images, exactly like the reference image */
  overflow: hidden;
}

/* --- Individual Gallery Item --- */
.gallery-item {
  position: relative;
  overflow: hidden; /* Keeps the zoomed image inside the box */
  height: 300px; /* Fixed height for consistency */
  padding: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills the box without distortion */
  display: block;
  transition: transform 0.4s ease-in-out;
}

/* Hover Effect - Smooth Zoom */
.gallery-item:hover img {
  transform: scale(1.08); /* Zooms in slightly on hover */
  cursor: pointer;
}

.site-footer {
  background-color: #f4f7fc; /* Very light grayish-blue from the image */
  padding: 60px 20px 20px;
  color: #555555;
  border-top: 1px solid #e9f0f8;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Responsive Grid Layout */
.footer-grid {
  display: grid;
  /* Mobile-first: 1 column */
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Typography & Colors */
.footer-about h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2b4b6f; /* Dark slate blue */
  margin-bottom: 25px;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a5562;
  margin-bottom: 20px;
}

.footer-about .contact-info strong {
  color: #2b4b6f;
  font-weight: 600;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 25px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #c8d6e5;
  color: #669f1c;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #ed6b23;
  border-color: #ed6b23;
  color: #ffffff;
}

.footer-links h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2b4b6f;
  margin-bottom: 25px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 16px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #6a7686; /* Muted blue-gray */
  font-size: 15px;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: #1a73e8; /* Blue accent on hover */
}

.lower-footer {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 14px;
  color: #6a7686;
  background-color: #f4f7fc;
}
