/* Vision Capital – Header & Footer (from rrr - Copy.html) */

:root {
  /* Screenshot / live site palette – single navy family */
  --vc-primary: #23326d;
  --vc-navy: #23326d;
  --vc-navy-dark: #152347;
  --vc-footer-bg: #23326d;
  --vc-blue: #23326d;
  --vc-orange: #e85d04;
  --vc-white: #ffffff;
  --vc-black: #000000;
  --vc-font: "Poppins", "Roboto", sans-serif;
  --vc-heading: "Poppins", "Roboto", sans-serif;
  --vc-container: 1140px;
  --vc-header-width: 1320px;
  --vc-gutter: 15px;
  --vc-text: #1a1a1a;
  --vc-text-muted: #777777;
  --vc-border: #dcdcdc;
  --vc-input-bg: #ffffff;
  --vc-on-dark: #ffffff;
  --vc-on-dark-soft: rgba(255, 255, 255, 0.88);
  --vc-on-dark-muted: rgba(255, 255, 255, 0.72);
  --vc-topbar-h: 38px;
  --vc-header-h: 90px;
  --vc-hero-h: 420px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--vc-font);
  font-size: 15px;
  font-weight: 400;
  color: var(--vc-text);
  line-height: 1.6;
  background: var(--vc-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ===== Page Title Banner (Contact / inner pages) ===== */
.vc-title-banner {
  position: relative;
  min-height: var(--vc-hero-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--vc-navy-dark);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.vc-title-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.45);
}

.vc-title-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -4deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.14) 10px,
    rgba(255, 255, 255, 0.14) 11px
  );
}

.vc-title-banner-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--vc-container);
  margin: 0 auto;
  padding: 0 var(--vc-gutter);
  text-align: center;
  box-sizing: border-box;
}

.vc-breadcrumb-location {
  margin: 0 0 10px;
  font-family: var(--vc-font);
  font-size: 20px;
  font-weight: 500;
  color: var(--vc-on-dark);
  text-transform: capitalize;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.vc-hero-icons {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 14px;
  flex-wrap: nowrap;
}

.vc-hero-icons i {
  font-size: 52px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
}

.vc-title-banner h1 {
  font-family: var(--vc-heading);
  font-size: 62px;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  background: none;
}

.vc-title-banner--home,
.vc-title-banner--contact {
  background-image: url("https://www.visioncapital.co.in/wp-content/uploads/2020/08/Contact-Us.jpg");
  background-color: #1a2b56;
}

/* White curve overlap (Elementor-style, screenshot) */
.vc-banner-curve {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--vc-white);
  box-shadow: 0 0 0 12px var(--vc-white);
}

/* White content section – below breadcrumb */
.vc-page-section {
  background: var(--vc-white);
  padding: 64px 0 56px;
  position: relative;
  z-index: 1;
}

.vc-page-section-inner {
  max-width: var(--vc-header-width);
  margin: 0 auto;
  padding: 0 20px;
}

.vc-page-section-title {
  font-family: var(--vc-heading);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--vc-text);
  text-align: center;
  margin: 0 0 14px;
  line-height: 1.3;
}

.vc-page-section-lead {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: var(--vc-text-muted);
}

.vc-page-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}

.vc-page-col {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.vc-page-col-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  background: #e8ecf2;
  margin-bottom: 18px;
}

.vc-page-col-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-page-col-media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #eef1f6 0%, #dde3ec 100%);
  color: #9aa8bc;
  font-size: 48px;
}

.vc-page-col h3 {
  font-family: var(--vc-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--vc-text);
  margin: 0 0 12px;
  line-height: 1.35;
}

.vc-page-col p {
display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Elementor-style Read More button */
.vc-read-more {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  background: #23326d;
  color: var(--vc-white) !important;
  font-family: var(--vc-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: flex-start;
}

.vc-read-more:hover {
  background: #23326d;
  color: var(--vc-white) !important;
}

@media (max-width: 992px) {
  .vc-page-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vc-page-section {
    padding: 52px 0 40px;
  }
}

/* Form – after content section */
.vc-page-form-wrap {
  max-width: var(--vc-container);
  margin: 0 auto;
  padding: 0 var(--vc-gutter) 80px;
  position: relative;
  z-index: 2;
}

.vc-page-form-wrap--after-section {
  padding-top: 24px;
}

/* Icons are inside Contact-Us.jpg – do not duplicate */
.vc-hero-icons {
  display: none !important;
}

@media (max-width: 768px) {
  .vc-title-banner {
    min-height: 300px;
  }

  .vc-breadcrumb-location {
    font-size: 16px;
  }

  .vc-hero-icons {
    gap: 16px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .vc-hero-icons i {
    font-size: 36px;
  }

  .vc-title-banner h1 {
    font-size: 38px;
  }
}

/* ===== Top announcement bar – horizontal scroll (marquee) ===== */
.footer-scroll-wrapper {
  display: block;
  width: 100%;
  background: var(--vc-primary);
  color: var(--vc-white);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}

.footer-scroll-inner {
  width: 100%;
  min-height: var(--vc-topbar-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.footer-scroll-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: var(--vc-font);
  font-size: 13px;
  font-weight: 400;
  line-height: var(--vc-topbar-h);
  white-space: nowrap;
  color: var(--vc-white);
  animation: vc-topbar-scroll 24s linear infinite;
  will-change: transform;
}

.footer-scroll-wrapper:hover .footer-scroll-content {
  animation-play-state: paused;
}

@keyframes vc-topbar-scroll {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}

.footer-scroll-content img {
  height: 26px;
  width: auto;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .footer-scroll-inner {
    justify-content: center;
  }

  .footer-scroll-content {
    animation: none;
    transform: none;
  }
}

/* ===== Main Header – logo | center nav | Apply Now (rrr-copy layout) ===== */
.main-header-1 {
  background: var(--vc-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: none;
  border-bottom: none;
}

.vc-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo nav cta";
  align-items: center;
  column-gap: 28px;
  max-width: var(--vc-header-width);
  margin: 0 auto;
  padding: 10px 20px;
  min-height: var(--vc-header-h);
}

.vc-logo {
  grid-area: logo;
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.vc-logo img {
  height: 74px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

.vc-header-nav {
  grid-area: nav;
  justify-self: center;
  min-width: 0;
}

.vc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 0;
}

.vc-nav > li {
  position: relative;
  flex-shrink: 0;
}

.vc-nav > li > a {
  display: block;
  position: relative;
  padding: 10px 11px;
  font-family: var(--vc-font);
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.vc-nav > li > a:hover {
  color: var(--vc-primary);
}

.vc-nav > li > a.active {
  color: var(--vc-primary);
  font-weight: 400;
  box-shadow: inset 0 -2px 0 0 var(--vc-primary);
}

.btn-apply-vc {
  grid-area: cta;
  justify-self: end;
}

.vc-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--vc-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--vc-primary);
  z-index: 100;
  padding: 8px 0;
}

.vc-nav li:hover > .sub-menu {
  display: block;
}

.vc-nav .sub-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
}

.vc-nav .sub-menu a:hover {
  background: #f0f6ff;
  color: var(--vc-blue);
}

.vc-nav .has-children > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-left: 5px;
  font-size: 12px;
  vertical-align: middle;
  border: none;
  width: auto;
  height: auto;
  color: #333333;
}

.btn-apply-vc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vc-primary);
  color: var(--vc-white) !important;
  font-family: var(--vc-font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 30px;
  min-height: 46px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
}

.btn-apply-vc:hover {
  background: #152347;
}

.vc-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--vc-navy);
  cursor: pointer;
  padding: 4px 8px;
}

/* ===== Google Maps (above footer) ===== */
.vc-maps-section {
  width: 100%;
  background: #e8e8e8;
}

.vc-maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
  margin: 0 auto;
}

.vc-map-item {
  position: relative;
  min-height: 320px;
  background: #ddd;
}

.vc-map-item iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* ===== Footer Main ===== */
.vc-footer {
  background: var(--vc-footer-bg);
  color: var(--vc-on-dark);
  font-family: var(--vc-font);
}

.vc-footer-main {
  padding: 48px 0 36px;
  border-top: none;
}

.vc-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 36px 40px;
  max-width: var(--vc-header-width);
  margin: 0 auto;
  padding: 0 20px;
}

.vc-footer-logo {
  display: inline-block;
  background: var(--vc-white);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 18px;
  line-height: 0;
}

.vc-footer-logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0;
}

.vc-footer-about p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--vc-on-dark-soft);
  margin: 0 0 22px;
}

.vc-footer-col h3 {
  font-family: var(--vc-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--vc-on-dark);
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--vc-on-dark);
  display: block;
  width: 100%;
}

.vc-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  position: relative;
}

.vc-footer-links::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.45);
  transform: translateX(-50%);
}

.vc-footer-links ul {
  margin: 0;
  padding: 0;
}

.vc-footer-links ul li {
  margin-bottom: 9px;
}

.vc-footer-links a {
  font-size: 13px;
  color: var(--vc-on-dark-soft);
  transition: color 0.2s;
}

.vc-footer-links a:hover,
.vc-footer-links a.active {
  color: var(--vc-on-dark);
}

.vc-branch-list {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.7;
  color: var(--vc-on-dark-soft);
  margin-bottom: 20px;
}

.vc-branch-list i {
  color: var(--vc-on-dark);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 16px;
}

.vc-social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vc-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vc-primary);
  font-size: 16px;
  transition: opacity 0.2s, transform 0.2s;
}

.vc-social-icons a:hover {
  opacity: 0.9;
  transform: scale(1.05);
  color: var(--vc-primary);
}

.vc-visitors {
  margin-top: 8px;
  text-align: center;
}

.vc-visitors-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--vc-on-dark);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vc-visitors-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.vc-visitors-count img {
  display: inline-block;
  width: auto;
  height: 28px;
  vertical-align: middle;
}

/* ===== Footer Section 2 (optional – hidden on main layout) ===== */
.vc-footer-2,
.vc-footer-2--extra {
  display: none !important;
}

.vc-footer-2 {
  background: url("https://visioncapital.co.in/wp-content/uploads/2020/08/bhjioplkj.jpg") center/cover no-repeat;
  position: relative;
  padding: 40px 0;
}

.vc-footer-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 40, 0.88);
}

.vc-footer-2-inner {
  position: relative;
  z-index: 1;
  max-width: var(--vc-container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.vc-footer-2-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.vc-footer-2 h2 {
  font-family: var(--vc-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--vc-white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.vc-footer-2-links ul li {
  margin-bottom: 8px;
}

.vc-footer-2-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.vc-footer-2-links a:hover {
  color: var(--vc-white);
}

.vc-qr-block {
  text-align: center;
}

.vc-qr-block h2 {
  font-size: 16px;
  margin-bottom: 12px;
}

.vc-qr-block img {
  max-width: 140px;
  margin: 0 auto;
  border-radius: 8px;
}

/* ===== Copyright Bar ===== */
.vc-footer-copy {
  background: var(--vc-footer-bg);
  padding: 0 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.vc-footer-copy-inner {
  max-width: var(--vc-header-width);
  margin: 0 auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--vc-on-dark-muted);
}

.vc-footer-copy h3 {
  font-size: 13px;
  font-weight: 400;
  color: var(--vc-on-dark-muted);
  margin: 0;
}

/* ===== Mobile Sticky Footer (screenshot: green WhatsApp | white Call Us) ===== */
.vc-mobile-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: transparent;
}

.vc-mobile-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.vc-mobile-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  font-family: var(--vc-font);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s ease;
}

.vc-mobile-footer a:first-child {
  background: #25d366;
  color: #ffffff !important;
}

.vc-mobile-footer a:first-child:hover {
  background: #20bd5a;
  color: #ffffff !important;
}

.vc-mobile-footer a:last-child {
  background: #ffffff;
  color: var(--vc-primary) !important;
}

.vc-mobile-footer a:last-child:hover {
  background: #f5f5f5;
  color: var(--vc-primary) !important;
}

.vc-mobile-footer i {
  font-size: 18px;
}

/* ===== Popup ===== */
.popup-frame {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.65);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-container {
  position: relative;
  background: var(--vc-white);
  border-radius: 18px;
  width: min(480px, 100%);
  max-height: 90vh;
  overflow: hidden;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  z-index: 2;
}

.popup-content {
  height: 600px;
}

.popup-content iframe,
.form-embed-wrap,
.form-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.form-embed-wrap {
  height: 100%;
}

#wpsvccount img,
#wpsvccount-mobile img {
  height: auto;
  width: auto;
  vertical-align: middle;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .vc-nav > li > a {
    font-size: 14px;
    padding: 10px 8px;
  }

  .btn-apply-vc {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .footer-scroll-content {
    font-size: 12px;
    animation-duration: 20s;
  }

  .vc-header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo toggle"
      "nav nav"
      "cta cta";
    min-height: auto;
    padding: 10px 16px;
    row-gap: 0;
  }

  .vc-logo img {
    height: 56px;
    max-width: 200px;
  }

  .vc-menu-toggle {
    grid-area: toggle;
    display: block;
    justify-self: end;
    align-self: center;
  }

  .vc-header-nav,
  .vc-header-inner > .btn-apply-vc {
    display: none;
  }

  .vc-header-inner.is-open .vc-header-nav,
  .vc-header-inner.is-open > .btn-apply-vc {
    display: block;
  }

  .vc-header-nav {
    width: 100%;
    border-top: 1px solid #e8ecf2;
    margin-top: 8px;
    padding-top: 4px;
  }

  .vc-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .vc-nav > li > a {
    padding: 12px 16px;
    white-space: normal;
  }

  .vc-nav > li > a.active {
    box-shadow: inset 0 -2px 0 0 var(--vc-primary);
  }

  .vc-nav .sub-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    padding-left: 16px;
    display: none;
  }

  .vc-nav li.sub-open > .sub-menu {
    display: block;
  }

  .vc-header-inner > .btn-apply-vc {
    width: calc(100% - 32px);
    margin: 12px 16px 8px;
    justify-self: stretch;
    text-align: center;
  }

  .vc-maps-grid {
    grid-template-columns: 1fr;
  }

  .vc-map-item,
  .vc-map-item iframe {
    min-height: 260px;
    height: 260px;
  }

  .vc-footer-grid,
  .vc-footer-2-inner {
    grid-template-columns: 1fr;
  }

  .vc-footer-links::before {
    display: none;
  }

  .vc-footer-links {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vc-visitors-desktop {
    display: block;
  }
}

@media (max-width: 768px) {
  .vc-mobile-footer {
    display: block;
  }

  body {
    padding-bottom: 52px;
  }

  .vc-footer-links {
    grid-template-columns: 1fr;
  }

  .vc-visitors-desktop {
    display: none;
  }

  .vc-footer-copy-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 769px) {
  .vc-footer-2 .vc-visitors-mobile,
  .vc-footer-2.vc-footer-2--extra {
    display: none !important;
  }

  .vc-visitors-desktop {
    display: block;
  }
}

/* ===== Floating WhatsApp ===== */
.vc-float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 997;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--vc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.vc-float-whatsapp:hover {
  transform: scale(1.06);
  color: var(--vc-white);
}

@media (max-width: 768px) {
  .vc-float-whatsapp {
    bottom: 68px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
