* {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

h1 {
  font-size: 3.5em;
}

h2 {
  font-size: 2.7em;
}

h3 {
  font-size: 2em;
}

p {
  font-size: 1.25em;
  color: white;
}

ul {
  list-style: none;
}

li {
  font-size: 1.25em;
}

button {
  font-size: 1em;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.5); /* Corrected alpha value */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* Corrected alpha value */
  color: white;
  background-color: blueviolet;
}

button:hover {
  background-color: rgb(101, 33, 165);
}

.container {
  max-width: 1400px;
  margin: auto;
}

.color-titulo {
  color: blueviolet;
}

header {
  background-color: rgb(245, 245, 245);
  z-index: 10;
}

header .logo {
  margin: 0;
  padding: 25px 30px;
  font-weight: bold;
  color: blueviolet;
  font-size: 1.6em;
  text-align: center;
}

header .container {
  display: flex;
  flex-direction: column; /* Stack logo and nav on mobile */
  align-items: center; /* Center horizontally */
}

header nav {
  display: flex;
  flex-direction: column; /* Stack links on mobile */
  text-align: center;
  padding-bottom: 25px;
}

header a {
  padding: 5px 12px;
  text-decoration: none;
  font-weight: bold;
  color: black;
}

header a:hover { /* Use :hover instead of .hover */
  color: blueviolet;
}

  /*Uso de cookies*/
  #cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    z-index: 1000;
    display: none;
  }

  .cookie-button {
    margin: 10px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
  }

  .cookie-button.reject {
    background-color: #f44336;
  }

/* Media Query for Mobile */
@media (max-width: 768px) {

  header .container {
    flex-direction: column; /* Ensure stacking on mobile */
  }

  header nav {
    flex-direction: column; /* Ensure links stack vertically */
  }

  #hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: auto; /* Changed to auto for better mobile responsiveness */
    padding: 50px 20px; /* Adjusted padding */
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

  #hero h1 {
    color: white;
    font-size: 2.5em; /* Adjusted font size */
  }

  #hero button {
    font-size: 1.2em; /* Adjusted font size */
  }

   /*estilo acerca*/

   #acerca {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 90vh;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo3.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 100%;
  }

  #acerca p {
    color: white;
    text-align: center;
  }

  #acerca h2 {
    color: white;
  }


  #acerca .container {
    width: 90%;
    max-width: 800px;
  }

  #acerca .texto {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    justify-content: center;
  }

  #acerca li {
    font-size: 1.25em;
    text-align: left;
  }

  .carrusel-acerca {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .carrusel-content-acerca {
    display: flex;
    overflow: hidden;
  }

  .carta-container-acerca {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
    position: static;
  }

  .carta-acerca {
    width: 900px;
    /* Aumenta el ancho de la carta */
    margin: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    overflow: hidden;
  }

  .carta-acerca.active {
    display: contents;
  }

  .titulo-carta-acerca h2 {
    text-align: center;
    margin-top: 20px;
  }

  .contenido-carta-acerca {
    padding: 10px;
  }

  .contenido-carta-acerca img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #ddd;
  }

  .contenido-carta-acerca ul {
    padding-left: 20px;
  }

  #prevBtn-acerca,
  #nextBtn-acerca {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
    transition: background 0.3s;
  }

  #inicio, #acerca, #quienes-somos {
    height: auto; /* Changed to auto for better mobile responsiveness */
    padding: 50px 1px; 
  }

  #inicio {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: auto; /* Changed to auto for better mobile responsiveness */
    padding: 50px 20px; /* Adjusted padding */
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo2.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }


  .carta-container, .carta-container-acerca, .carousel, .carousel-item {
    flex-direction: column; /* Stack content within cards */
    align-items: center;  /* Center content horizontally */
    max-width: 90%; /* Make cards responsive */
    margin: 20px auto; /* Center cards */
  }

  .carta, .carta-acerca, .carousel-item {
    width: 100%; /* Make cards occupy full width */
    max-width: 100%;
    padding: 20px; /* add padding to the carousel items*/
    box-sizing: border-box; /* Include padding in width calculation */
  }


  .carta img, .carta-acerca img, .carousel-item img {
    width: 100%; /* Make images responsive */
    height: auto;
    object-fit: cover; /* Maintain aspect ratio */
  }

  .carousel-item.active .text-content {
    width: 100%; /* Make text content responsive */
    padding-left: 0; /* Remove left padding */
    border-left: none; /* Remove left border */
    text-align: center; /* Center text in the container */
  }

  #trabajos-section .carousel-item.active .text-content { /* specific case for the carousel in #trabajos-section */
    width: 100%;
  }

    /* ---- SECCIÓN TRABAJOS ---- */
    #trabajos-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 80px 20px;
      background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo5.png");
      background-repeat: no-repeat;
      background-size: cover;
    }
  
    #trabajos-section .texto {
      background: rgba(0, 0, 0, 0.6);
      color: white;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 30px;
    }
  
    #trabajos-section h3 {
      font-size: 2.5em;
      color: white;
      margin-bottom: 20px;
    }
  
    #trabajos-section h2 {
      font-size: 1.5em;
      color: white;
      margin-bottom: 20px;
    }
  
    #trabajos-section ul {
      text-align: left;
    }
  
    #trabajos-section li {
      text-align: left;
      color: white;
    }
  
    #trabajos-section p {
      text-align: justify;
    }

  #trabajos-section button {
      display: none;
    }

 

  #quienes-somos {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding-top: 120px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo4.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    margin-top: 80px;
    z-index: 1;
  }

  #quienes-somos h2,
  #quienes-somos p {
    color: white;
  }

  #quienes-somos .container {
    width: 90%;
    max-width: 1000px;
  }

  #quienes-somos .texto {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }

    /* Estilos del carrusel */
    .carrusel {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 100%;
      max-width: 600px;
      margin: auto;
      /* Para centrarlo en la sección */
    }
  
    /* Contenedor de las cartas (asegura que se mantenga alineado) */
    .carta-container {
      display: flex;
      justify-content: center;
      /* Centra las cartas dentro del contenedor */
      align-items: center;
      overflow: hidden;
      width: 100%;
      max-width: 400px;
      position: static;
  
  
    }
  
    /* Estilos de la carta */
    .carta {
      display: none;
      flex-direction: column;
      width: 100%;
      max-width: 350px;
      /* Ajusta el tamaño para que se centre mejor */
      border-radius: 10px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.5s ease-in-out;
      margin: 0;
      /* Centrar la carta */
    }
  
    .carta.active {
      z-index: 1;
      display: flex;
      justify-content: center;
  
    }
  
    /* Botones del carrusel */
    #prevBtn,
    #nextBtn {
      background: rgba(0, 0, 0, 0.7);
      color: white;
      border: none;
      padding: 10px 15px;
      font-size: 20px;
      cursor: pointer;
      border-radius: 50%;
      margin: 0 10px;
      transition: background 0.3s;
    }
  
    #prevBtn:hover,
    #nextBtn:hover {
      background: rgba(255, 255, 255, 0.7);
      color: black;
    }

  .texto {
    width: 100%; /* Ensure text blocks are responsive */
    max-width: 800px;
    margin: 20px auto; /* Center text blocks */
    box-sizing: border-box; /* Include padding and border in width */
  }

  #inicio .texto {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }


  #nuestro-equipo .texto {
    width: 90%; /* Two per row on smaller screens */
    margin: 10px auto;
  }

  /* Estilo nuestro equipo */
  /* Estilo nuestro equipo */
#nuestro-equipo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 90px 10px;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo9.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}

#nuestro-equipo h2 {
  color: white;
  margin-bottom: 20px; /* Espacio debajo del título */
}

/* Contenedor de imágenes */
#nuestro-equipo .contenedor-imagenes {
  display: flex;
  flex-wrap: wrap;
  /* Permite que las imágenes bajen de línea si no caben */
  justify-content: center;
  /* Centrar imágenes */
  gap: 10px;
  /* Espacio entre imágenes */
  width: 90%;
  max-width: 1200px;
}

/* Cada tarjeta ocupa 25% del ancho */
#nuestro-equipo .texto {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 23%;
  /* Para que entren 4 por fila con margen */
  min-width: 200px;
}

/* Imágenes responsivas */
#nuestro-equipo .texto img {
  width: 100%;
  max-width: 180px;
  border-radius: 10px;
}

#nuestro-equipo .texto p {
  margin-top: 10px;
  font-weight: bold;
}

/* Responsive: En pantallas pequeñas, reducir a 2 por fila */
@media (max-width: 800px) {
  #nuestro-equipo .texto {
    width: 45%;
    /* 2 por fila */
  }
}

/**********/
/* Estilo ajustado para el carrusel */
.ne-texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

/* Agregar position: relative al contenedor del carrusel */
.ne-carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  margin: auto;
  max-width: 900px;
  position: relative;
  height: 500px; /* Ajuste para mantener proporción */
}

.ne-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.ne-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.ne-carousel-item.active {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.ne-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajuste para que las imágenes cubran todo el espacio */
  border-bottom: 2px solid #ddd;
}



#ne-prev-btn,
#ne-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  border-radius: 100%;
}

#ne-prev-btn {
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 10px;
  transition: background 0.3s;
}

#ne-next-btn {
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 10px;
  transition: background 0.3s;
}

/**********/

  #clientes .texto {
    width: 90%;
    margin: 20px auto;
  }

  /* Estilo de la sección clientes */

  #clientes {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 90px 10px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo9.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
  }

  #carousel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; /* Asegura que el contenedor se ajuste al ancho */
    max-width: 800px; /* Limita el ancho máximo del contenedor */
    margin: 0 auto; /* Centra el contenedor */
}

#carousel-image {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%; /* El contenedor de la imagen ocupa todo el ancho de #carousel-container */
    overflow: hidden; /* Recorta la imagen si se sale (opcional, pero útil) */
}

#carousel-image img { /* Estilos para la imagen DENTRO de #carousel-image */
    max-width: 100%;  /* La imagen no excederá el ancho de #carousel-image */
    height: auto;     /* La altura se ajustará proporcionalmente */
    display: block;  /* Evita espacios en blanco debajo de la imagen */
}


  #clientes .texto {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: justify;
    width: 90%;
    max-width: 800px;
    padding: 20px;
    box-sizing: border-box;
  }

  #clientes h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
  }

/* estilo contacto */

#contacto {
  text-align: center;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 120px;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo6.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: 80px;
  z-index: 1;
}

#contacto h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: white;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  box-sizing: border-box; /* Importante para que padding y border no afecten el ancho */
}

.direccion,
.contacto-info {
  text-align: left;
  box-sizing: border-box; /* Para que el padding no afecte el ancho */
  padding: 10px; /* Añade un poco de padding a cada columna */
}

.direccion h3,
.contacto-info h3 {
  margin-bottom: 10px; /* Espacio entre el título y el contenido */
}

.direccion p,
.contacto-info p {
  color: black;
  margin-bottom: 5px; /* Espacio entre párrafos */
  word-wrap: break-word; /* Para que el correo electrónico se ajuste */
  overflow-wrap: break-word; /* Para compatibilidad con navegadores antiguos */
}

.contacto-info ul {
  list-style: none;
  padding: 0;
}

.contacto-info li {
  font-size: 1.2em;
  margin-bottom: 5px; /* Espacio entre elementos de la lista */
}

.contacto-info li::before { /* Añade un bullet o icono antes de cada elemento de la lista */
  content: "• "; /* Puedes cambiar esto por un icono o imagen */
}

/* Media Query para pantallas más pequeñas (opcional) */
@media (max-width: 768px) {
  .contacto-grid {
      grid-template-columns: 1fr; /* Una columna en pantallas pequeñas */
      max-width: 95%; /* Ajusta el ancho para pantallas pequeñas */
  }

  .direccion,
  .contacto-info {
      text-align: left; /* Alinea el texto a la izquierda en pantallas pequeñas */
      padding: 15px;
  }
}

  .cliente-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .cliente-btn {
    cursor: pointer;
    padding: 12px 25px;
    margin: 10px;
    background-color: blueviolet;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
  }

  .cliente-btn:hover {
    background-color: #ddd;
    color: black;
  }

  #carousel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  #carousel-image {
    position: relative;
    display: flex;
    justify-content: center;
  }

  #pie-texto {
    margin-top: 10px;
    /* Espacio entre la imagen y el texto */
    text-align: center;
    font-size: 1rem;
    color: white;
    /* Color del texto */
    opacity: 0;
    /* El pie de texto estará oculto inicialmente */
    transition: opacity 0.5s ease;
    /* Transición suave */
    font-size: 1.5em;
    text-align: justify;
  }


  button:hover {
    background-color: #ddd;
  }

  #prev-btn,
  #next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    border-radius: 100%;
  }

  #prev-btn {
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
    transition: background 0.3s;
    z-index: 1;
  }

  #next-btn {
    right: 1px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
    transition: background 0.3s;
  }

  .cliente-selector {
    flex-wrap: wrap; /* Allow buttons to wrap */
    justify-content: center; /* Center buttons */
  }

  #pie-texto {
    font-size: 1em; /* Adjust font size for mobile */
  }

  .whatsapp-btn, .facebook-btn {
    bottom: 120px; /* Adjust as needed */
    right: 20px; /* Adjust as needed */
  }

  #solicita-cotiza form {
    max-width: 90%; /* Responsive form */
  }


  /*estilo solicita-cotiza*/
  #solicita-cotiza {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo8.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
  }

  #solicita-cotiza h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
  }

  #solicita-cotiza form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  #solicita-cotiza label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
  }

  #solicita-cotiza input,
  #solicita-cotiza textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  #solicita-cotiza button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    background-color: blueviolet;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  #solicita-cotiza button:hover {
    background-color: rgb(101, 33, 165);
  }

  /*estilo visitanos*/
  #visitanos {
    text-align: center;
    padding-top: 10px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo7.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
  }

  #visitanos h2 {
    color: white;
  }


  #visitanos iframe {
    width: 90%; /* Responsive iframe */
    height: 300px; /* Adjust height as needed */
    margin: 20px auto;
  }

   /* Estilos para el botón de WhatsApp */
   .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    /* Se coloca a 20px del fondo */
    right: 10px;
    /* Se coloca a 20px del lado derecho */
    z-index: 1000;
    /* Asegura que se muestre por encima de otros elementos */
  }

  .whatsapp-btn a img {
    width: 60px;
    /* Tamaño del icono de WhatsApp */
    height: 60px;
    border-radius: 50%;
    /* Hace que el icono sea redondeado */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Sombra para darle profundidad */
    transition: transform 0.3s ease-in-out;
    /* Efecto de transición */
  }

  .whatsapp-btn a img:hover {
    transform: scale(2.2);
    /* Aumenta ligeramente el tamaño del icono al pasar el ratón */
  }

  /* Estilos para el botón de facebook */
  .facebook-btn {
    position: fixed;
    bottom: 100px;
    /* Se coloca a 20px del fondo */
    right: 10px;
    /* Se coloca a 20px del lado derecho */
    z-index: 1000;
    /* Asegura que se muestre por encima de otros elementos */
  }

  .facebook-btn a img {
    width: 60px;
    /* Tamaño del icono de facebook */
    height: 60px;
    border-radius: 50%;
    /* Hace que el icono sea redondeado */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Sombra para darle profundidad */
    transition: transform 0.3s ease-in-out;
    /* Efecto de transición */
  }

  .facebook-btn a img:hover {
    transform: scale(2.2);
    /* Aumenta ligeramente el tamaño del icono al pasar el ratón */
  }

  /*estilo footer*/
  footer {
    background-color: rgb(230, 230, 230);
  }

  footer p {
    margin: 0;
    padding: 12px;
    color: rgb(100, 100, 100);
  }

  footer .container {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-size: 0.5em;
  }

}


