/* Home Hero Slide Overlay override css*/
.hero-overlay{
background:linear-gradient(
    105deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.30) 45%,
    rgba(0,0,0,0.15) 100%
  )
}

/* ============================================================
   CONTACT SECTION ENHANCEMENTS
   Append these rules to the end of site.css (after the
   gallery/news enhancement block if you added that too)
   ============================================================ */


/* ── CONTACT SECTION SHELL ─────────────────────────────────── */

#contact {
  background:
    linear-gradient(135deg, #012d4e 0%, var(--primary) 55%, #1270b0 100%);
  overflow: hidden;
}

/* Subtle grid pattern overlay */
#contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 184, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 184, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* Decorative glow orbs */
#contact .contact-inner--builder {
  position: relative;
  z-index: 1;
}

#contact .contact-inner--builder::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  top: -180px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 184, 255, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

#contact .contact-inner--builder::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 75, 131, 0.35) 0%, transparent 70%);
  pointer-events: none;
}


/* ── LEFT SIDE – HEADER & INFO ─────────────────────────────── */

/* Section label on dark background */
.contact-left--builder .section-label,
.contact-left--builder .content-body .section-label {
  color: var(--accent);
  letter-spacing: 4px;
}
.contact-left--builder .section-label::before {
  background: var(--accent);
  width: 32px;
}

/* Section title */
.contact-left--builder .section-title,
.contact-left--builder .content-body h2 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.5px;
}

/* Section desc */
.contact-left--builder .section-desc,
.contact-left--builder .content-body p,
.contact-left--builder .contact-copy {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.75;
  max-width: 48ch;
}

/* Thin separator accent between header text and info cards */
.contact-left--builder .contact-info {
  position: relative;
  margin-top: 12px;
  padding-top: 28px;
}

.contact-left--builder .contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* Contact info items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.contact-item:hover {
  background: rgba(77, 184, 255, 0.10);
  border-color: rgba(77, 184, 255, 0.28);
  transform: translateX(4px);
}

/* Icon circle */
.contact-item-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(77, 184, 255, 0.14);
  border: 1px solid rgba(77, 184, 255, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.contact-item:hover .contact-item-icon {
  background: rgba(77, 184, 255, 0.22);
  border-color: rgba(77, 184, 255, 0.50);
}

.contact-item-icon svg,
.contact-item-icon i {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  color: var(--accent);
}

/* Item label */
.contact-item-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
  opacity: 0.85;
}

/* Item text */
.contact-item-text,
.contact-item-text a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-text a:hover {
  color: var(--accent);
}


/* ── RIGHT SIDE – FORM SURFACE ─────────────────────────────── */

.contact-form--surface {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  box-shadow:
    0 8px 24px rgba(1, 20, 50, 0.20),
    0 32px 72px rgba(1, 20, 50, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.90);
  position: relative;
  overflow: hidden;
}

/* Top accent stripe on the form card */
.contact-form--surface::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 60%, transparent 100%);
  z-index: 1;
}

/* Form field inputs & textarea */
.contact-form--surface .form-group input,
.contact-form--surface .form-group textarea,
.contact-form--surface .form-group select,
.contact-form-fields .form-group input,
.contact-form-fields .form-group textarea,
.contact-form-fields .form-group select {
  background: var(--off-white);
  border: 1.5px solid rgba(1, 75, 131, 0.12);
  color: var(--text-dark);
  border-radius: 14px;
  font-size: 14px;
  padding: 14px 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form--surface .form-group input::placeholder,
.contact-form--surface .form-group textarea::placeholder {
  color: rgba(74, 107, 133, 0.55);
}

.contact-form--surface .form-group input:focus,
.contact-form--surface .form-group textarea:focus,
.contact-form--surface .form-group select:focus,
.contact-form-fields .form-group input:focus,
.contact-form-fields .form-group textarea:focus,
.contact-form-fields .form-group select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(1, 75, 131, 0.08);
  outline: none;
}

/* Form labels */
.contact-form--surface .form-group label,
.contact-form-fields .form-group label {
  color: var(--primary-light);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* Submit button */
.contact-form--surface .contact-form__submit,
.contact-form-fields + * .contact-form__submit,
.contact-form__submit {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 18px 32px;
  width: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form__submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.45s ease;
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(1, 75, 131, 0.45);
}

.contact-form__submit:hover::before {
  left: 100%;
}

.contact-form__submit:active {
  transform: translateY(0);
}

/* Right-content copy text inside form surface */
.contact-copy--muted,
.contact-copy--muted p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}


/* ── RESPONSIVE ────────────────────────────────────────────── */

@media (max-width: 900px) {
  .contact-inner--builder {
    grid-template-columns: 1fr;
  }

  .contact-left--builder .section-title,
  .contact-left--builder .content-body h2 {
    font-size: clamp(28px, 8vw, 44px);
  }

  .contact-item:hover {
    transform: none;
  }
}

@media (max-width: 600px) {
  .contact-form--surface {
    border-radius: 18px;
  }

  .contact-item {
    border-radius: 14px;
    padding: 14px 16px;
  }
}
/* ============================================================
   GALLERY & NEWS SECTION ENHANCEMENTS
   Append these rules to the end of site.css
   ============================================================ */


/* ── GALLERY SECTION ───────────────────────────────────────── */

#gallery {
  position: relative;
  overflow: hidden;
}

/* Subtle decorative background orbs */
#gallery::before,
#gallery::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
#gallery::before {
  width: 520px;
  height: 520px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(77, 184, 255, 0.10) 0%, transparent 70%);
}
#gallery::after {
  width: 380px;
  height: 380px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(1, 75, 131, 0.09) 0%, transparent 70%);
}

#gallery > .container {
  position: relative;
  z-index: 1;
}

/* Section header – gallery */
#gallery .section-header {
  position: relative;
  margin-bottom: 56px;
}

#gallery .section-eyebrow {
  color: var(--primary);
  letter-spacing: 4px;
}

#gallery .section-eyebrow::before {
  background: var(--primary);
}

#gallery .section-title {
  letter-spacing: -0.5px;
}

#gallery .section-desc {

}

/* Gallery grid */
.gallery-grid {
  gap: 20px;
}

/* Gallery card base */
.gallery-card {
  border-radius: 14px;
  border: 1px solid rgba(1, 75, 131, 0.08);
  box-shadow:
    0 2px 8px rgba(1, 75, 131, 0.05),
    0 8px 24px rgba(1, 75, 131, 0.06);
  overflow: hidden;
  transition:
    transform 0.36s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.36s cubic-bezier(0.22, 0.61, 0.36, 1);
  background: #fff;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 12px rgba(1, 75, 131, 0.08),
    0 20px 48px rgba(1, 75, 131, 0.16);
}

/* Gallery card media container */
.gallery-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(135deg, #ddeefa, #c5dff5);
}

/* Gallery image zoom + fade-in on hover */
.gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gallery-card:hover .gallery-card__image {
  transform: scale(1.07);
}

/* Hover overlay with magnify icon */
.gallery-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(1, 47, 100, 0.0) 40%,
    rgba(1, 47, 100, 0.48) 100%
  );
  opacity: 0;
  transition: opacity 0.36s ease;
  pointer-events: none;
}

.gallery-card:hover .gallery-card__media::after {
  opacity: 1;
}

/* Zoom icon overlay */
.gallery-card__trigger::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 2;
}

.gallery-card__trigger::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3Cpath d='M11 8v6M8 11h6'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 3;
}

.gallery-card:hover .gallery-card__trigger::before,
.gallery-card:hover .gallery-card__trigger::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Gallery card body */
.gallery-card__body {
  padding: 18px 20px 20px;
  gap: 8px;
}

/* Gallery card meta */
.gallery-card__body .news-card__meta {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-card__body .news-card__meta::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Gallery card title */
.gallery-card__title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  margin: 0;
  letter-spacing: 0;
}

/* Gallery card caption */
.gallery-card__caption {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Responsive gallery grid */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    border-radius: 12px;
  }
}


/* ── NEWS SECTION ──────────────────────────────────────────── */

#news {
  position: relative;
  background: #fff;
}

/* Dark accent stripe at the very top of the section */
#news::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 60%, transparent 100%);
  opacity: 0.55;
}

/* News list header – flex row: text left, button right */
.news-list-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.news-list-header .section-header {
  margin-bottom: 0;
  flex: 1 1 auto;
}

/* News section eyebrow / paragraph eyebrow from page builder */
#news .section-eyebrow,
#news .text-primary.font-bold.tracking-widest,
#news p > span.text-primary {
  color: var(--primary);
}

#news .section-title,
#news h2.text-3xl {
  letter-spacing: -0.3px;
  line-height: 1.1;
}

/* News grid */
.news-grid {
  gap: 24px;
}

/* News card */
.news-card {
  border-radius: 14px;
  border: 1px solid rgba(1, 75, 131, 0.09);
  box-shadow:
    0 2px 8px rgba(1, 75, 131, 0.04),
    0 6px 22px rgba(1, 75, 131, 0.07);
  transition:
    transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow: hidden;
  background: #fff;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 16px rgba(1, 75, 131, 0.08),
    0 22px 52px rgba(1, 75, 131, 0.15);
}

/* News card media */
.news-card__media {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #ddeefa, #c5dff5);
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.news-card:hover .news-card__media img {
  transform: scale(1.05);
}

/* Gradient wash over bottom of image so title reads over it */
.news-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(5, 20, 40, 0.22) 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-card:hover .news-card__media::after {
  opacity: 1;
}

/* Category pill inside news card */
.news-card__media .news-card__category-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(1, 75, 131, 0.82);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.92);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 20px;
}

/* News card body */
.news-card__body {
  padding: 20px 22px 22px;
  gap: 10px;
  flex: 1 1 auto;
}

/* News card meta */
.news-card__meta {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  color: var(--primary-light);
  gap: 10px;
  align-items: center;
}

/* News card title */
.news-card__title,
.news-card__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 0;
  letter-spacing: 0;
  transition: color 0.25s ease;
}

.news-card:hover .news-card__title,
.news-card:hover .news-card__body h3 {
  color: var(--primary);
}

/* News card summary */
.news-card__summary {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* News card CTA arrow */
.news-card__cta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(1, 75, 131, 0.08);
  font-size: 11px;
  letter-spacing: 1.8px;
  transition: gap 0.25s ease, color 0.25s ease;
}

.news-card:hover .news-card__cta {
  gap: 12px;
  color: var(--primary-dark);
}

/* News card CTA arrow icon */
.news-card__cta svg,
.news-card__cta .icon-sm {
  transition: transform 0.25s ease;
}
.news-card:hover .news-card__cta svg,
.news-card:hover .news-card__cta .icon-sm {
  transform: translateX(3px);
}

/* "Tümünü Gör" / view-all button in news header */
#news .button--secondary {
  flex-shrink: 0;
  border-color: rgba(1, 75, 131, 0.28);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

#news .button--secondary:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(1, 75, 131, 0.28);
}

/* Responsive news grid */
@media (max-width: 900px) {
  .news-list-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

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

  .news-card__title,
  .news-card__body h3 {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    border-radius: 12px;
  }

  .news-card__media {
    min-height: 180px;
  }
}
    /* ── Sadece bu bölüme ait ek stiller ── */
    #kalite {
      background: var(--white);
      max-width: 100%;
      padding: 100px 60px;
      position: relative;
      overflow: hidden;
      margin-top:-6.1rem
    }
 
    #kalite::before {
      content: '';
      position: absolute;
      right: -140px;
      top: -160px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(1, 75, 131, 0.05);
      pointer-events: none;
    }
 
    #kalite::after {
      content: '';
      position: absolute;
      left: -140px;
      bottom: -170px;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: rgba(201, 168, 76, 0.05);
      pointer-events: none;
    }
 
    .kalite-inner {
      max-width: 1180px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
 
    /* Başlık bloğu */
    .kalite-header {
      text-align: center;
      margin-bottom: 56px;
    }
 
    .kalite-header .section-label {
      color: var(--primary);
      justify-content: center;
    }
    .kalite-header .section-label::before {
      background: var(--primary);
    }
 
    .kalite-header .section-title {
      color: var(--text-dark);
      margin-bottom: 18px;
    }
 
    .kalite-header .section-desc {
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto;
    }
 
    /* Kart grid */
    .kalite-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }
 
    /* Kart */
    .kalite-card {
      padding: 32px 28px;
      background: var(--off-white);
      border: 1px solid rgba(1, 75, 131, 0.10);
      box-shadow: 0 8px 32px rgba(1, 75, 131, 0.07);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
    }
 
    .kalite-card:hover {
      transform: translateY(-6px);
      background: var(--white);
      border-color: rgba(1, 75, 131, 0.22);
      box-shadow: 0 24px 56px rgba(1, 75, 131, 0.13);
    }
 
    /* Arka plan numara */
    .kalite-card__bg-num {
      position: absolute;
      right: -12px;
      top: -14px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 96px;
      font-weight: 900;
      line-height: 1;
      color: rgba(1, 75, 131, 0.06);
      user-select: none;
      pointer-events: none;
    }
 
    /* İkon kutusu */
    .kalite-card__icon {
      width: 52px;
      height: 52px;
      margin-bottom: 24px;
      background: var(--primary);
      border: 1px solid rgba(1, 75, 131, 0.20);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 1px;
      position: relative;
      z-index: 1;
      transition: background 0.3s, box-shadow 0.3s;
    }
 
    .kalite-card:hover .kalite-card__icon {
      background: var(--primary-light);
      box-shadow: 0 8px 24px rgba(1, 75, 131, 0.30);
    }
 
    /* Kart başlık */
    .kalite-card__title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--text-dark);
      margin: 0 0 12px;
      line-height: 1.25;
      position: relative;
      z-index: 1;
    }
 
    /* Kart metin */
    .kalite-card__desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
      margin: 0;
      position: relative;
      z-index: 1;
    }
 
    /* ── Responsive ── */
    @media (max-width: 960px) {
      .kalite-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
 
    @media (max-width: 560px) {
      #kalite {
        padding: 70px 24px;
      }
      .kalite-grid {
        grid-template-columns: 1fr;
      }
    }