:root {
  --primary: #004f8a;      /* Blu principale */
  --primary-dark: #00365f;
  --bg: #ffffff;
  --text: #111111;
  --muted: #777777;
  --border: #e5e5e5;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius-lg: 18px;
  --radius-full: 999px;
  --header-height: 72px;
}

/* RESET BASE */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Karla', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background-color: var(--bg);
}

body {
  overflow-x: hidden; /* importantissimo con 100vw dello slider */
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
}

/* LAYOUT UTILI */
.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.section h2::before {
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.center {
  text-align: center;
}

.mt-24 {
  margin-top: 1.5rem;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
  flex-wrap: nowrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text .brand {
  display: block;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-text .tagline {
  font-size: 0.78rem;
  color: var(--muted);
}

/* NAV */
.main-nav {
  flex-shrink: 1;
}

.main-nav ul {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  white-space: nowrap; /* evita andare a capo su desktop */
}

.main-nav li {
  position: relative;
}

.main-nav > ul > li > a {
  font-size: 0.92rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background-color: rgba(0, 79, 138, 0.12);
}

.main-nav a.active {
  background-color: var(--primary);
  color: #ffffff;
}

/* DROPDOWN MENU (per voci con sottomenu) */
.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.has-submenu > a::after {
  content: "▾";
  font-size: 0.68rem;
  margin-top: 1px;
}

/* Desktop dropdown */
@media (min-width: 861px) {
  .submenu {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 14px;
    padding: 0.45rem 0;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition:
      opacity 0.15s ease,
      transform 0.15s ease,
      visibility 0.15s ease;
    z-index: 40;
  }

  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .submenu li a {
    display: block;
    padding: 0.45rem 1rem;
    border-radius: 0;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .submenu li a:hover {
    background: rgba(0, 79, 138, 0.08);
  }

  /* Evita che i sottomenu più a destra escano dallo schermo */
  .main-nav > ul > li:nth-last-child(-n + 3) > .submenu {
    left: auto;
    right: 0;
  }
}

/* Mobile: sottomenu in colonna */
@media (max-width: 860px) {
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0.15rem 0 0.4rem;
  }

  .submenu li a {
    display: block;
    padding: 0.35rem 1.6rem;
    font-size: 0.9rem;
  }
}

/* TOGGLE MOBILE */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background-color: #000;
  border-radius: 999px;
}

/* =========================
   HERO SLIDER (CAROSELLO)
   ========================= */

/* full-bleed: esce dalla .container e tocca i bordi pagina */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Barra blu decorativa sopra il carosello */
.hero-slider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    rgba(0, 79, 138, 0.7),
    transparent 35%,
    transparent 65%,
    rgba(0, 79, 138, 0.7)
  );
  z-index: 2;
  pointer-events: none;
}

/* Frame slider: larghezza piena, altezza a ratio 21:9 */
.slider-frame {
  width: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

/* Wrapper che scorre orizzontalmente */
.slide-images {
  display: flex;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}

/* Ogni slide occupa il 100% della larghezza */
.slide {
  position: relative;
  flex: 0 0 100%;
}

/* Rapporto 21:9 (9 / 21 * 100 ≈ 42.857%) */
.slide::before {
  content: "";
  display: block;
  padding-top: 42.857%;
}

/* Immagine: fill totale del box con cover */
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay testo sullo slider */
.slide-overlay {
  position: absolute;
  inset: auto 0 10% 0;
  padding-inline: calc((100vw - min(1100px, 92vw)) / 2 + 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: #000;
  z-index: 3;
}

.slide-overlay h1 {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  padding: 0.5rem 1.3rem;
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  box-shadow: 0 0 0 2px rgba(0, 79, 138, 0.7);
}

.slide-overlay p {
  align-self: flex-start;
  margin-top: 0.25rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.86);
  color: #f5f5f5;
  font-size: 0.86rem;
  border: 1px solid rgba(0, 79, 138, 0.45);
}

/* Controlli hero slider */
.hero-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-arrow {
  pointer-events: auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #333;
  cursor: pointer;
  margin-inline: 0.7rem;
}

.hero-arrow:hover {
  background: var(--primary);
  color: #ffffff;
}

.hero-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  pointer-events: auto;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0;
}

.hero-dot.active {
  background: var(--primary);
}

/* INTRO */
.intro {
  background: radial-gradient(circle at top left, rgba(0, 79, 138, 0.09), transparent), #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.intro h2 {
  font-size: 1.7rem;
  margin-top: 0;
}

.intro p {
  line-height: 1.6;
}

.intro-highlight {
  background: rgba(0, 79, 138, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(0, 79, 138, 0.3);
}

.intro-highlight h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.intro-highlight ul {
  padding-left: 1.1rem;
  list-style: disc;
}

/* CARDS SERVIZI / CONTENUTI */
.services-home h2,
.brands-home h2 {
  text-align: center;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.card-link {
  margin-top: auto;
  font-size: 0.9rem;
  color: #222;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.card-link::after {
  content: "→";
  font-size: 0.9rem;
}

/* BRAND SLIDER - SLICK CENTER MODE (HOME) */
.brands-home {
  background: #fafafa;
}

.brands-carousel {
  margin-top: 1.3rem;
}

.brand-slide {
  padding: 0.4rem;
}

.brand-slide-inner {
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.brand-slide-inner img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

/* forza dimensioni loghi per sicurezza */
.brands-center-slider .brand-slide-inner img {
  max-height: 55px !important;
  width: auto !important;
  object-fit: contain;
}

/* Effetto center mode: slide centrale leggermente più grande */
.brands-carousel .slick-center .brand-slide-inner {
  transform: scale(1.05);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 79, 138, 0.55);
}

/* Personalizzazione frecce slick */
.brands-carousel .slick-prev,
.brands-carousel .slick-next {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  z-index: 2;
}

.brands-carousel .slick-prev:before,
.brands-carousel .slick-next:before {
  color: #333;
}

.brands-carousel .slick-prev:hover,
.brands-carousel .slick-next:hover {
  background: var(--primary);
}

.brands-carousel .slick-dots li button:before {
  font-size: 8px;
  color: #ccc;
}

.brands-carousel .slick-dots li.slick-active button:before {
  color: var(--primary);
}

/* BRAND SLIDER - OWL (pagina marchi) */
.brand-slider-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.slider-gallery-owl .item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.07);
}

.slider-gallery-owl .item img {
  max-height: 65px !important;
  width: auto !important;
  object-fit: contain;
}

/* CTA */
.package-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.package-text p {
  line-height: 1.6;
}

.package-points {
  margin: 1rem 0 1.3rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.package-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.cta-home {
  background: linear-gradient(120deg, #111111, #222222);
  color: #ffffff;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.cta-inner h2 {
  margin-top: 0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    transform 0.08s ease,
    box-shadow 0.08s ease;
}

.btn.primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 79, 138, 0.4);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 79, 138, 0.5);
}

.btn.secondary {
  background: #ffffff;
  color: #000;
}

.btn.ghost {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.12);
}

.btn.full-width {
  width: 100%;
}

/* FOOTER */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid #ececec;
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-links li + li {
  margin-top: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid #ececec;
  margin-top: 1.5rem;
  padding: 1rem 0 1.5rem;
  font-size: 0.8rem;
  text-align: center;
  color: var(--muted);
}

.dev-credit {
  opacity: 0.75;
}

/* SEO TAGS */
.seo-tags {
  font-size: 0.72rem;
  color: #aaa;
  text-align: center;
  margin-top: 1rem;
}

/* FLOATING BUTTONS + OVERLAY FORM */
.floating-btn {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  right: auto;
  border-radius: var(--radius-full);
  border: none;
  background: #000;
  color: #fff;
  padding: 0.55rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  z-index: 60;
  font-size: 0.9rem;
}

/* STACK BUTTONS */
.floating-btn.email-btn {
  bottom: 1.2rem;
  background: #333333;
}

.floating-btn.whatsapp-btn {
  bottom: 4rem;
  background: #000000;
}

.icon-whatsapp,
.icon-email,
.icon-telegram {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.floating-btn .label {
  white-space: nowrap;
}

/* OVERLAY BASE */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
}

.overlay.active {
  display: block;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.overlay-content {
  position: relative;
  max-width: 420px;
  width: 92vw;
  margin: 6vh auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem 1.7rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.overlay-content h2 {
  margin-top: 0;
}

.overlay-close {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

/* FORMS */
.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 0.2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.5rem 0.55rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.form-group textarea {
  resize: vertical;
}

fieldset.form-group {
  border: none;
  padding: 0;
}

fieldset.form-group legend {
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
}

.form-consent {
  font-size: 0.8rem;
  margin: 0.3rem 0 0.9rem;
}

.form-consent input {
  margin-right: 0.3rem;
}

.form-status {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.form-status.error {
  color: #d32f2f;
}

.form-status.success {
  color: #2e7d32;
}

/* MAPPA FOOTER */
.map-wrapper {
  margin-top: 0.8rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
}

/* GALLERY PROGETTI (effetto hover) */
.gallery {
  max-width: 900px;
  height: 360px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.gallery-panel {
  flex: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition:
    flex 0.5s ease-in-out,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gallery-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-panel:hover {
  flex: 2.4;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.gallery-panel:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    position: absolute;
    inset: var(--header-height) 0 auto 0;
    background: #ffffff;
    border-bottom: 1px solid #ececec;
    padding: 0.7rem 0 1rem;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.18s ease,
      opacity 0.18s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding-inline: 1.2rem;
    white-space: normal;
  }

  .main-nav > ul > li > a {
    width: 100%;
  }

  .nav-toggle {
    display: inline-block;
  }

  .slide-overlay {
    inset: auto 0 8% 0;
  }

  .gallery {
    flex-direction: column;
    height: auto;
  }

  .gallery-panel {
    flex: unset;
    height: 220px;
  }

  .package-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .slide-overlay h1 {
    font-size: 1.2rem;
  }

  .floating-btn .label {
    display: none;
  }

  .floating-btn {
    border-radius: 50%;
    padding-inline: 0.6rem;
  }
}

/* =========================
   FIX RESPONSIVE MOBILE EXTRA
   ========================= */

/* Regolazioni generali per schermi piccoli */
@media (max-width: 860px) {
  .section {
    padding: 3rem 0;
  }

  .container {
    width: min(100%, 94vw);
  }

  .intro h2 {
    font-size: 1.45rem;
  }

  .card h3 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  /* HEADER: logo + testo un po' più compatti */
  .logo-img {
    height: 32px;
  }

  .logo-text .brand {
    font-size: 0.95rem;
  }

  .logo-text .tagline {
    font-size: 0.7rem;
  }

  /* NAV mobile: già c’è, solo un po’ più leggibile */
  .main-nav > ul > li > a {
    padding: 0.45rem 0.2rem;
    font-size: 0.95rem;
  }
}

/* HERO SLIDER MOBILE:
   - testo centrato
   - pillole più piccole
   - niente calc complicati sui padding
*/
@media (max-width: 860px) {
  .slide-overlay {
    inset: auto 0 12% 0;
    padding-inline: 1rem;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
  }

  .slide-overlay h1 {
    align-self: center;
    max-width: 90%;
    font-size: clamp(1rem, 4vw, 1.25rem);
    padding: 0.45rem 1rem;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .slide-overlay p {
    align-self: center;
    max-width: 90%;
    font-size: 0.8rem;
    padding: 0.3rem 0.9rem;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }

  .hero-arrow {
    width: 26px;
    height: 26px;
    font-size: 0.95rem;
    margin-inline: 0.4rem;
  }

  .hero-dots {
    bottom: 6px;
    gap: 4px;
  }

  .hero-dot {
    width: 6px;
    height: 6px;
  }
}

/* Schermi molto piccoli (telefoni “stretti”) */
@media (max-width: 480px) {
  .slide::before {
    /* rapporto un filo più alto del 21:9 per evitare che il testo “esca” */
    padding-top: 50%;
  }

  .slide-overlay {
    inset: auto 0 10% 0;
    padding-inline: 0.9rem;
  }

  .slide-overlay h1 {
    font-size: 0.95rem;
    padding: 0.4rem 0.9rem;
    box-shadow: 0 0 0 1px rgba(0, 79, 138, 0.6);
  }

  .slide-overlay p {
    font-size: 0.78rem;
    padding: 0.28rem 0.8rem;
  }
}

/* GALLERY progetti più friendly su mobile */
@media (max-width: 860px) {
  .gallery {
    flex-direction: column;
    height: auto;
    gap: 0.8rem;
  }

  .gallery-panel {
    height: 200px;
  }
}

/* CTA e footer più compatti su mobile */
@media (max-width: 860px) {
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner h2 {
    font-size: 1.3rem;
  }

  .footer-grid {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

/* Floating buttons: già nascondi la label, qui stringiamo un filo la posizione */
@media (max-width: 600px) {
  .floating-btn {
    left: 1rem;
    bottom: 1rem;
    padding-inline: 0.55rem;
  }

  .floating-btn.whatsapp-btn {
    bottom: 3.4rem;
  }
}
