/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-image: radial-gradient(rgb(26, 52, 83) 2px, transparent 2px);
  background-size: 25px 25px;
  background-color: rgb(38, 64, 96);
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;

}

/* Menú fijo arriba */
.nav-container {
  position: fixed;
  top: 0;
  height: 100px;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;

}

/* Estructura de la barra de navegación */
.navbar {
  background: conic-gradient(at calc(83.3333%) 50%, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg) 43px 43px / calc(86px) calc(86px), conic-gradient(at calc(83.3333%) 50%, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg) 0px 0px / calc(86px) calc(86px), conic-gradient(at calc(66.6667%) 50%, rgb(246, 246, 246) 25%, rgba(0, 0, 0, 0) 0deg) 43px 43px / calc(86px) calc(86px), conic-gradient(at calc(66.6667%) 50%, rgb(246, 246, 246) 25%, rgba(0, 0, 0, 0) 0deg) 0px 0px / calc(86px) calc(86px), repeating-conic-gradient(rgb(255, 255, 255) 0deg, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg, rgba(0, 0, 0, 0) 50%) 0px 0px / calc(86px) calc(86px), linear-gradient(rgb(255, 255, 255) calc(33.3333%), rgb(246, 246, 246) 0px, rgb(246, 246, 246) calc(66.6667%), rgb(255, 255, 255) 0px) 0px 0px / 43px 43px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  padding: 10px 20px;
  margin: auto;
  height: 100%;
  width: auto;
}

/* Logo */
.nav-logo img {
  height: 100px;
  width: 220px;
}

/* Imagen derecha */
.nav-right-img img {
  height: 80px;
}

/* Enlaces de navegación */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  text-align: center;
}

/* Enlaces */
.nav-links li a {
  text-decoration: none;
  color: rgb(38, 64, 96);
  font-size: 20px;
  font-weight: bolder;
  padding: 8px 12px;
  transition: background 0.3s;
}

.nav-links li a:hover {
  background-color: #f0f0f0;
  border-radius: 5px;
  color: rgb(120, 180, 66);
}

.actual-page{
  color: rgb(120, 180, 66);
  text-decoration: underline;
  font-weight: bolder;
}

/* Submenús */
.submenu {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  list-style: none;
  margin-top: 8px;
}

.submenu li a {
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
}

.submenu-parent {
  position: relative;
}

.submenu-parent:hover .submenu {
  display: block;
}

/* Hamburguesa (solo se muestra en móvil) */
.hamburger {
  font-size: 24px;
  cursor: pointer;
  display: none;
}

/* Banner general */
.banner {
  padding: 40px 20px;
  background: conic-gradient(at calc(83.3333%) 50%, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg) 43px 43px / calc(86px) calc(86px), conic-gradient(at calc(83.3333%) 50%, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg) 0px 0px / calc(86px) calc(86px), conic-gradient(at calc(66.6667%) 50%, rgb(246, 246, 246) 25%, rgba(0, 0, 0, 0) 0deg) 43px 43px / calc(86px) calc(86px), conic-gradient(at calc(66.6667%) 50%, rgb(246, 246, 246) 25%, rgba(0, 0, 0, 0) 0deg) 0px 0px / calc(86px) calc(86px), repeating-conic-gradient(rgb(255, 255, 255) 0deg, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg, rgba(0, 0, 0, 0) 50%) 0px 0px / calc(86px) calc(86px), linear-gradient(rgb(255, 255, 255) calc(33.3333%), rgb(246, 246, 246) 0px, rgb(246, 246, 246) calc(66.6667%), rgb(255, 255, 255) 0px) 0px 0px / 43px 43px;
  width: 100%;
  border-top:rgb(38, 64, 96) solid .5rem;
}

/* Grid del banner */
.banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* Lado izquierdo */
.banner-left h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: rgb(120, 180, 66);
  text-decoration: underline;
}

.banner-left p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgb(38, 64, 96);
  font-weight: 700;
}

.banner-buttons button {
  margin-right: 15px;
  padding: 10px 20px;
  font-size: 1rem;
  background-color:rgb(120, 180, 66) ;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.3s;
}
.banner-buttons button a{
  margin-right: 15px;
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}
.banner-buttons button a:hover {
  background-color: rgb(38, 64, 96);
}
.banner-buttons button:hover {
  background-color: rgb(38, 64, 96);
}

/* Lado derecho con imagen */
.banner-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Estilo del formulario */
.formulario {

  padding: 40px 20px;
}

.form-container {
  max-width: 600px;
  margin: auto;
  background: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-container h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  text-align: center;
  color: rgb(120, 180, 66);
}

.form-container form {
  display: flex;
  flex-direction: column;
}

.form-container label {
  margin: 10px 0 5px;
  font-weight: bold;
}

.form-container input,
.form-container textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-container button {
  margin-top: 20px;
  padding: 12px;
  font-size: 1rem;
  background-color:  rgb(85, 139, 206);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-container button:hover {
  background-color: rgb(120, 180, 66);
}


/* Sección de equipo */
.equipo {
  padding: 50px 20px;
  background: conic-gradient(at calc(83.3333%) 50%, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg) 43px 43px / calc(86px) calc(86px), conic-gradient(at calc(83.3333%) 50%, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg) 0px 0px / calc(86px) calc(86px), conic-gradient(at calc(66.6667%) 50%, rgb(246, 246, 246) 25%, rgba(0, 0, 0, 0) 0deg) 43px 43px / calc(86px) calc(86px), conic-gradient(at calc(66.6667%) 50%, rgb(246, 246, 246) 25%, rgba(0, 0, 0, 0) 0deg) 0px 0px / calc(86px) calc(86px), repeating-conic-gradient(rgb(255, 255, 255) 0deg, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg, rgba(0, 0, 0, 0) 50%) 0px 0px / calc(86px) calc(86px), linear-gradient(rgb(255, 255, 255) calc(33.3333%), rgb(246, 246, 246) 0px, rgb(246, 246, 246) calc(66.6667%), rgb(255, 255, 255) 0px) 0px 0px / 43px 43px;

  text-align: center;
}

.equipo h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: rgb(120, 180, 66);
  font-size: 50px;
}

/* Contenedor de tarjetas en grid */
.tarjetas-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  
}

/* Tarjetas individuales */
.tarjeta {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.527);
  transition: transform 0.3s ease;
}

.tarjeta:hover {
  transform: translateY(-5px);
}

/* Imagen de persona */
.tarjeta img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Nombre y ocupación */
.tarjeta h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
  color: #333;
}

.tarjeta p {
  font-size: 1rem;
  color: #777;
}


/* Sección de proyectos */
.proyectos {
  padding: 60px 20px;
  background-image: radial-gradient(rgb(26, 52, 83) 2px, transparent 2px);
  background-size: 25px 25px;
  background-color: rgb(38, 64, 96);
  text-align: center;
}

.proyectos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: rgb(120, 180, 66);
}

.proyectos-header p {
  font-size: 1.1rem;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 20px;
}

/* Galería de imágenes */
.galeria-proyectos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.cuadro {
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.cuadro:hover {
  transform: scale(1.03);
}

.cuadro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cuadro {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cuadro img {
  transition: transform 0.3s ease;
}

.cuadro:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.cuadro:hover img {
  transform: scale(1.05);
}

.footer {
  background-color: #111;
  color: #f1f1f1;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo img {
  max-width: 250px;
}

.footer-links ul,
.footer-contacto p,
.footer-redes .social-icons {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-contacto p {
  margin: 6px 0;
}

.footer-redes .social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.footer-redes .social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.footer-redes .social-icons a:hover img {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #aaa;
}

.seccion-lista {
  padding: 8% 20px;
  background: #f9f9f9;
}

.contenedor-lista {
  max-width: 1000px;
  margin: auto;
  text-align: center;
 
}

.contenedor-lista h2 {
  font-size: 2.2rem;
  color: rgb(120, 180, 66);
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: bolder;
}

.contenedor-lista p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #707070;
  font-size: 20px;
}

.lista-ventajas {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.lista-ventajas li {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  color: #333;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: transform 0.3s ease;
}

.lista-ventajas li:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.425);
  cursor: pointer;
}

.lista-ventajas span {
  font-size: 1.3rem;
  color: #28a745;
}


.galeria-servicios {
  padding: 80px 20px;
  background: conic-gradient(at calc(83.3333%) 50%, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg) 43px 43px / calc(86px) calc(86px), conic-gradient(at calc(83.3333%) 50%, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg) 0px 0px / calc(86px) calc(86px), conic-gradient(at calc(66.6667%) 50%, rgb(246, 246, 246) 25%, rgba(0, 0, 0, 0) 0deg) 43px 43px / calc(86px) calc(86px), conic-gradient(at calc(66.6667%) 50%, rgb(246, 246, 246) 25%, rgba(0, 0, 0, 0) 0deg) 0px 0px / calc(86px) calc(86px), repeating-conic-gradient(rgb(255, 255, 255) 0deg, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg, rgba(0, 0, 0, 0) 50%) 0px 0px / calc(86px) calc(86px), linear-gradient(rgb(255, 255, 255) calc(33.3333%), rgb(246, 246, 246) 0px, rgb(246, 246, 246) calc(66.6667%), rgb(255, 255, 255) 0px) 0px 0px / 43px 43px;

}

.contenedor-galeria {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.contenedor-galeria h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: rgb(120, 180, 66);
}

.contenedor-galeria p {
  color: #666;
  max-width: 700px;
  margin: auto auto 40px;
  font-size: 1.1rem;
}

.cuadros-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.cuadro-galeria {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.cuadro-galeria:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.445);
}

.cuadro-galeria img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cuadro-galeria h4 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: rgb(3, 52, 112);
}

.cuadro-galeria p {
  font-size: 0.95rem;
  color: #555;
  padding: 0 15px;
  margin-top: 8px;
  line-height: 1.4;
}


.gallery-page {
  padding: 10% 20px;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.gallery-container h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: rgb(120, 180, 66);
}

.gallery-container p {
  color: #f0f0f0;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: #1111116e solid 1px;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  
}

.close-lightbox {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}


.about-us {
  padding:  20px;
  
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.about-text h2 {
  font-size: 2.3rem;
  color:rgb(120, 180, 66) ;
  margin-bottom: 20px;
}

.about-text p {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #ebfc58;
  text-decoration: underline;
}

.about-extra {
  background: conic-gradient(at calc(83.3333%) 50%, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg) 43px 43px / calc(86px) calc(86px), conic-gradient(at calc(83.3333%) 50%, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg) 0px 0px / calc(86px) calc(86px), conic-gradient(at calc(66.6667%) 50%, rgb(246, 246, 246) 25%, rgba(0, 0, 0, 0) 0deg) 43px 43px / calc(86px) calc(86px), conic-gradient(at calc(66.6667%) 50%, rgb(246, 246, 246) 25%, rgba(0, 0, 0, 0) 0deg) 0px 0px / calc(86px) calc(86px), repeating-conic-gradient(rgb(255, 255, 255) 0deg, rgb(255, 255, 255) 25%, rgba(0, 0, 0, 0) 0deg, rgba(0, 0, 0, 0) 50%) 0px 0px / calc(86px) calc(86px), linear-gradient(rgb(255, 255, 255) calc(33.3333%), rgb(246, 246, 246) 0px, rgb(246, 246, 246) calc(66.6667%), rgb(255, 255, 255) 0px) 0px 0px / 43px 43px;

  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.testimonials {
  background: #fff;
  padding-top: 8%;
  text-align: center;
  width: 100%;
  position: relative;
}

.testimonial-container {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.testimonial-container h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color:rgb(38, 64, 96) ;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.testimonial {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  font-size: 1.1rem;
  color: #444;
  padding: 0 20px;
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

.testimonial h4 {
  margin-top: 15px;
  color: #222;
  font-weight: bold;
}

.stars {
  color: gold;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

/* Flechas */
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.slider-controls button {
  background: #222;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-controls button:hover {
  background: #444;
}
.nav-logo {
  transition: transform 0.4s ease;
}

.nav-logo:hover {
  transform: scale(1.05) rotate(-2deg);
}


@media (max-width: 768px) {
  .navbar {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .nav-links {
    flex-direction: column;
    display: none; /* Puedes usar JS para mostrar con hamburguesa */
  }

  .nav-icon {
    display: none; /* O muévelo a otra parte del diseño móvil si quieres */
  }
}

@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translatex(-19px); }
  100% { transform: translateY(0); }
}

.nav-logo {
  animation: floatLogo 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial {
    font-size: 1rem;
  }
}


.testimonial-container {
  max-width: 800px;
  margin: auto;
}

.testimonial-container h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.testimonial {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  font-size: 1.1rem;
  color: #444;
}

.testimonial h4 {
  margin-top: 15px;
  color: #222;
  font-weight: bold;
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

.testimonials {
  background: #fff;
  padding-top: 7% ;
  text-align: center;
}

.testimonial-container {
  max-width: 1000px;
  margin: auto;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.testimonial {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.473);
  transition: transform 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial .stars {
  color: gold;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.testimonial h4 {
  margin-top: 15px;
  font-weight: bold;
  color: #333;
}

/* Swiper buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #333;
}

/* Responsive grid */
@media (max-width: 768px) {
  .swiper {
    padding: 10px;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-extra {
    margin-top: 30px;
  }
}


/* Responsive */
@media (max-width: 768px) {
 .seccion-lista{
  padding-top: 25%;
 }
}

/* Responsive para móviles */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-redes .social-icons {
    justify-content: center;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .banner-content {
    margin-top: 10%;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .banner-buttons button {
    margin-right: 0;
  }

  .banner-right {
    margin-top: 20px;
  }

  .banner-right img {
    height: auto;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    display: none;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-right-img {
    display: none;
  }
}
