body, html {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 100px; /* Ajusta según la altura de tu navbar */
}

.section-Services,.section-AboutMe
{
  scroll-margin-top: 120px;
}
/*--Navbaar*/

/* Navbar completo pegado a los bordes y con borde inferior */
.dqe-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 124px;
  padding: 10px 40px;
  z-index: 1000;
  background-color: transparent;
  border-bottom: none;
}

/* Línea con desvanecimiento */
.dqe-navbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.15) 70%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 9;
}

.logo-container {
    position: absolute;
    bottom: -57px; /* sobresale 20px hacia abajo del navbar */
    left: 40px; /* o donde lo necesites */
    z-index: 20;
    text-align: center;
}

.logo-S{
  display: none;
}

.logo-M{
  display: none;
}  

/* Menú */
.dqe-navbar .nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 10px;
    color: #000;
}

.nav-link.effect {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000; /* o el color que quieras */
  transition: color 0.3s ease;
}

.nav-link.effect::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0; /* justo en el borde inferior */
  width: 0;
  height: 2px;
  background-color: #080808; /* color del subrayado */
  transition: width 0.4s ease;
}

.nav-link.effect:hover::after {
  width: 100%;
}


/* Contacto */
.contact-info {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #000;
}

.contact-info i {
  margin-right: 4px;
}

section{

  width: 100%;
  height: 100vh;
}

/*--Home*/
.section-Home {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

/* Contenedor del video */
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* VIDEO DE FONDO */
.video-bg {
  position: absolute; /* para que esté detrás de todo */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* detrás de overlay y texto */
}

/* CAPA OSCURA o GRADIENTE ENCIMA DEL VIDEO */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,1));
  z-index: 2;
  pointer-events: none;
}

/* TEXTO ENCIMA DEL VIDEO Y DEL OVERLAY */
.texto-overlay {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: black;
  padding: 1rem;
}


/* Carousel ocupa todo el espacio de la sección */
#carouselExampleFade {
  width: 100%;
  height: 100%; /* toma el 100% de la sección */
}

/* Las imágenes ocupan ancho 100% y alto 100% para cubrir el carousel sin deformarse */
#carouselExampleFade .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* mantiene proporción y rellena sin deformar */ /* centra la imagen */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 18.66%, #FFF 91.15%);
}

#typed-word {
  font-family: 'Cormorant Garamond', serif;
  font-weight: bold;
  border-right: 2px solid #000;
  white-space: nowrap;
  overflow: hidden;
}

.btn-home{
  background-color: var(--neutral-900) !important;
  color: var(--neutral-0);
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.btn-home:Hover{
  background-color: transparent !important;
  color: var(--neutral-1000);
  border: 1px solid var(--neutral-1000);
}

.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
/*--About Me*/

.section-AboutMe {
  /*background-color: aqua;*/
  width: 100%;
  height: auto;
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.slide-text {
  display: none;
  animation: fade 0.5s ease-in-out;
}

.slide-text.active {
  display: block;
}

.tooltip-term {
  position: relative;
  cursor: help;
  border-bottom: 1px dashed #999; /* Puedes cambiar el color si quieres */
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  max-width: 240px;
  background-color: #111; /* Fondo oscuro */
  color: #fff;
  text-align: left;
  padding: 8px 10px;
  border-radius: 6px;
  position: absolute;
  bottom: 125%; /* Aparece encima del texto */
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
  z-index: 10;

  /* Tip visual opcional */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.tooltip-term:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

@keyframes fade {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

.sobrepuesta-img {
  position: absolute;
  top: 60%;
  right: 0;
  transform: translate(41%, -50%);
  max-width: 62%;
  z-index: 2;
}

.AboutMe{
  height: auto;
  width: 50vw !important;
  padding: 20px 24px;
  border: 1px solid black !important;
  margin-left: 50px !important;
  margin-right: 50px !important;
}

/* Asegura que el slider ocupe todo el ancho y esté en columna */
.slider-text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* esto estira los hijos al 100% */
}

/* Hace que cada slide se adapte al ancho completo */
.slide-text {
  width: 100%;
}

.btn-AboutMe{
  background-color: var(--neutral-0) !important;
  color: var(--neutral-1000);
  padding: 16px 32px;
  margin-right: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  border: 1px solid black !important;
}

.btn-AboutMe:hover{
  background-color: var(--neutral-1000) !important;
  color: var(--neutral-0) !important;
  margin-right: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.icons-row {
  width: 32px;  /* o el tamaño deseado */
  height: 32px;
  cursor: pointer;
}

.card-Me{
  border: 1px solid black;
}

.fade-img {
  transition: opacity 0.4s ease;
  opacity: 1;
}

.fade-img.fade-out {
  opacity: 0;
}

/*--Technologies*/
  .section-technolgies{
    height: auto;
    margin-top: 200px;
    margin-bottom: 200px;
  }
  .logo-strip {
    overflow: hidden;
    white-space: nowrap;
    background: transparent;
    padding: 10px 0;
  }

  .logo-strip .logos {
    display: inline-block;
    animation: scroll-left 50s linear infinite;
  }

  .logo-strip .logos img {
    height: 50px;
    margin: 0 30px;
    vertical-align: middle;
  }

  @keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*--Services*/
.section-Services{
  height: auto;
  margin-bottom: 125px;
}
.card-servicio {
  height: 100%;
  position: relative;
  background-color: #1817175e; /* gris claro */
  padding: 2rem;
  margin: 2rem;
  margin-bottom: 16px !important;
  text-align: center;
  overflow: hidden;
}


.card-servicio h3 {
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.card-servicio .descripcion {
   position: relative;
  padding: 1rem;
  font-size: 0.95rem;
  color: #222;
  background-color: transparent;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  border: 1px solid #333;
}

.boton-servicio {
  display: inline-block;
  background-color: #000;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: background 0.3s;
  position: relative;
  z-index: 1;
}

.boton-servicio:hover {
  color: var(--neutral-0);
  background-color: transparent;
  text-decoration: none;
  border: 1px solid #e9e9e9;
}

.card-servicio.card-ux:hover{
  font-weight: 400;
  background-image: url('/src/Assets/IMG/CONTENIDO/UX-With-Filter2.png');
  /* filter:brightness(0.5);  Oscurece al 50% */
  background-size: cover;
  background-position: center;
}

.card-servicio.card-ui:hover{
  /* filter:brightness(0.5);  Oscurece al 50% */
  background-image: url('/src/Assets/IMG/CONTENIDO/UI-With-Filter2.png');
  background-size: cover;
  background-position: center;
}

.card-servicio.card-sistema:hover{
  /* filter:brightness(0.5);  Oscurece al 50% */
  background-image: url('/src/Assets/IMG/CONTENIDO/Sistema-With-Filter2.png');
  background-size: cover;
  background-position: center;
}
.card-servicio.card-prototipado:hover{
  /* filter:brightness(0.5);  Oscurece al 50% */
  background-image: url('/src/Assets/IMG/CONTENIDO/Protipado-With-Filter2.png');
  background-size: cover;
  background-position: center;
}
.card-servicio.card-Traduccion:hover{
  /* filter:brightness(0.5);  Oscurece al 50% */
  background-image: url('/src/Assets/IMG/CONTENIDO/Programacion-With-Filter.png');
  background-size: cover;
  background-position: center;
}
.card-servicio.card-Colaboracion:hover{
  background-image: url('/src/Assets/IMG/CONTENIDO/Meet-With-Filter.png');
  background-size: cover;
  background-position: center;
}
.card-servicio.card-Recursos:hover{
 /* filter:brightness(0.5);  Oscurece al 50% */
  background-image: url('/src/Assets/IMG/CONTENIDO/Maquina-With-Filter2.png');
  background-size: cover;
  background-position: center;
}


.card-servicio.card-ux:hover .descripcion,
.card-servicio.card-ui:hover .descripcion,
.card-servicio.card-sistema:hover .descripcion,
.card-servicio.card-prototipado:hover .descripcion,
.card-servicio.card-Colaboracion:hover .descripcion,
.card-servicio.card-Traduccion:hover .descripcion,
.card-servicio.card-Recursos:hover .descripcion{
  background-color: rgba(255, 255, 255, 0.2);
  /*backdrop-filter: blur(5px);*/
  color: rgb(230, 228, 228);
  padding: 1rem;
  border-radius: 8px; 
  border: none;
}

.card-servicio.card-ux:hover h3,
.card-servicio.card-ui:hover h3,
.card-servicio.card-sistema:hover h3,
.card-servicio.card-prototipado:hover h3,
.card-servicio.card-Traduccion:hover h3,
.card-servicio.card-Colaboracion:hover h3,
.card-servicio.card-Recursos:hover h3 {
  color: white;
}

.section-Services,
.section-technolgies,
.conatiner-cards-tel,
.section-Proyects,
.container-fluid-pry,
.container-pry{
  position: relative;
  z-index: 1;
}

.decoracion-tela {
  position: absolute;
  top: -327px;
  left: -20px;
  width: 1000px;
  height: 903px;
  background-image: url('/src/Assets/IMG/Telas/Seda-Rosa-Iz-ajustada1.png'); /* o .svg */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;

}

.decoracion-tela2 {
  position: absolute;
  top: 600px;
  left: -3px;
  width: 1030px;
  height: 1114px;
  background-image: url('/src/Assets/IMG/Telas/Seda-Rosa-Der-Ajustada-punta.png'); /* o .svg */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;

}
.decoracion-tela5 {
  position: absolute;
  top: 1182px;
  right: 0px;
  width: 810px;
  height: 903px;
  background-image: url('/src/Assets/IMG/Telas/Seda-ajustada.png'); /* o .svg */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;

}
/*---Porjects*/
.section-Proyects{
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 250px;
}

.project-card {
  height: auto;
  overflow: auto;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  background-color: #ffffff48;
  padding: 2rem;
  border:1px solid #f0efef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-top: 100px;
}
.heading-medium{
  font-weight: bold;
}
.project-image {
  flex: 1;
  height: 100%;
  background-image: url('/src/Assets/IMG/PROYECTOS/AIRBNB/Airbnb-Portada.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.project-image img {
  width: 100%;
  
  object-fit: cover;
}
.img-pry{
  height: 100%;
}
.img-pry.img-aircol{
  height: 600px;
}
.project-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags span:hover{
  background-color: #0f0f0f; /* Nuevo color */
  color: #FFF;
  transform: scale(1.40);     /* Aumenta ligeramente el tamaño */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
}

.tags span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  background: #eee;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.85rem;
}

/* 🔧 Nueva sección para íconos de tecnologías */
.tech-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tech-icons img {
  width: 40px;
  height: 40px;
  object-fit:contain;
}
.img-icons-tech{
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.button-container-pry{
  flex: 1;
  display: flex;
  flex-direction:row;
  gap: 1rem;
}

.button-pry {
  font-family: 'Montserrat', sans-serif;
  width: 100% !important;
  display: block;
  text-align: center;
  background: black;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  align-self: flex-start;
  cursor: pointer;
}

.button-pry:hover{
  color: #000;
  background-color: transparent;
  border:1px solid #000;

}

/* Estilo general del scroll */
::-webkit-scrollbar {
  width: 12px; /* Ancho vertical */
  height: 8px; /* Alto horizontal (para scroll horizontal) */
}

/* Fondo de la barra (track) */
::-webkit-scrollbar-track {
  background: #18171744;
  border-radius: 10px;
}

/* Parte que se mueve (thumb) */
::-webkit-scrollbar-thumb {
  height: 8px;
  background: #88888836;
  border-radius: 10px;
  border: 2px solid #4e4e4e67; /* espacio alrededor */
}

/* Al hacer hover sobre el thumb */
::-webkit-scrollbar-thumb:hover {
  background: #202020;
}

.decoracion-tela3 {
    position: absolute;
    top: -581px;
    left: -5px;
    width: 100%;
    height: 100%;
    background-image: url('/src/Assets/IMG/Telas/Seda-Rosa-Iz-3.png'); /* o .svg */
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;

  }

  .decoracion-tela4 {
    position: absolute;
    top: 900px;
    left: -20px;
    width: 100%;
    height: 68%;
    background-image: url('/src/Assets/IMG/Telas/Seda-Rosa-Der-4.png'); /* o .svg */
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;

  }

  footer{
    background-color: #000 !important;
  }
  .footer-fade-top {
    height: 1px;
    background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.15) 35%,
      rgba(255, 255, 255, 0.15) 100%
    );
  }
  .img-social-media{
    width: 50px; height: 50px;
    border-radius:50%;
  }



/*---RESPONSIVE*/

/* Mobile - pequeño: 320px a 425px */
@media (min-width: 320px) and (max-width: 425px) {

  .glass-card{
    background: rgba(255, 255, 255, 0.1); /* fondo translúcido */
    backdrop-filter: blur(10px); /* difumina lo que hay detrás */
    -webkit-backdrop-filter: blur(10px); /* soporte para Safari */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .logo-container{
    display: none;
  }

  .logo-M{
  display: none;
  } 
  
  .logo-S{
    display: block;
  }

  .btn-home{
    font-size: 0.7rem;
    padding: 8px 20px;
    font-family: 'Montserrat', sans-serif;
  }

  .texto-overlay {
    width: 100vw;
  }

  /*About me*/
  .slide-text .heading-xlarge {
    font-size: 1.8rem;
  }
  .section-AboutMe .slide-text .text-large {
    font-size: 1rem;
  }

  /*--About Me*/

  .section-AboutMe {
    /*background-color: aqua;*/
    width: 100%;
    height: auto;
    position: relative;
    padding: 0;
    margin: 0; 
    }

    .AboutMe{
    width: 100vw !important;
    padding: 0px 4px;
    border: 1px solid black !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .sobrepuesta-img {
    position: static;
      transform: none;
      display: block;
      margin: 2rem auto 0;
  }

  .section-technolgies {
      height: auto;
      margin-top: 100px;
      margin-bottom: 100px;
  }
  /*--Servies*/
  .card-servicio {
    padding: 0.5rem;
    margin:  0px;
  }
  .text-large {
    font-size: 16px;
    line-height: 150%;
  }
  .heading-medium.cormorant.text-left{
    font-size: 24px;
    line-height: 140%;
  }
  .decoracion-tela {
    position: absolute;
    top: -100px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-image: url('/src/Assets/IMG/Telas/Seda-Rosa-Iz-ajustada1.png'); /* o .svg */
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;

  }

  .decoracion-tela2,
  .decoracion-tela4,
  .decoracion-tela5 {
    display: none;

  }

  .decoracion-tela3{
    top: -136px !important;
  }


  .project-card {
    height: auto;
    flex-direction: column;
    text-align: center;
    padding: 1rem 5px;
  }

  .project-info {
    align-items: center;
  }

  .tech-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .tags span:hover{
  transform: scale(0.5); 
  }
  .button-pry{
    font-size: 14px;
  }

}

/* Tablet: 426px a 768px */
@media (min-width: 426px) and (max-width: 768px) {

  .glass-card{
    background: rgba(255, 255, 255, 0.1); /* fondo translúcido */
    backdrop-filter: blur(10px); /* difumina lo que hay detrás */
    -webkit-backdrop-filter: blur(10px); /* soporte para Safari */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
   
  .navbar-toggler {
    margin-left: auto !important;
  }
  .logo-container{
    display: none;
  }
  .logo-M{
  display: none;
  }  
  .logo-S{
    display: block;
  }

  .texto-overlay {
    width: 100vw;
  }

  /*About me*/
  .slide-text .heading-xlarge {
    font-size: 1.8rem;
  }
  .section-AboutMe .slide-text .text-large {
    font-size: 1rem;
  }

  /*--About Me*/

.section-AboutMe {
  /*background-color: aqua;*/
  width: 100%;
  height: auto;
  position: relative;
  padding: 0;
  margin: 0; 
  }

  .AboutMe{
  width: 100vw !important;
  padding: 0px 4px;
  border: 1px solid black !important;
}
/*
.sobrepuesta-img {
   max-width: 40%;
   transform: translate(33%, -28%);
}
*/
.sobrepuesta-img {
   position: static;
    transform: none;
    display: block;
    margin: 2rem auto 0;    
    max-width: 49%;
}

.section-technolgies {
    height: auto;
    margin-top: 150px;
    margin-bottom: 150px;
}

/*Servicios*/
.decoracion-tela {
  position: absolute;
  top: -334px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-image: url('/src/Assets/IMG/Telas/Seda-Rosa-Iz-ajustada1.png'); /* o .svg */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;

}

.decoracion-tela3{
  position: absolute;
  top: -474px;
  left: -5px;
  width: 100%;
  height: 100%;
  background-image: url(/src/Assets/IMG/Telas/Seda-Rosa-Iz-3.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1
}


.decoracion-tela2,
.decoracion-tela4,
.decoracion-tela5 {
  display: none;

}

.decoracion-tela5{
  width: 100%;
  height: 100%;
}

.project-image {
  flex: 1;
  height: 100%;
  
}

}

/* PC: 1024px a 1440px */
@media (min-width: 1024px) and (max-width: 1440px) {
   
  .logo-container{
    display: none;
  }

  .logo-S{
    display: none;
  }

  .logo-M{
    display: block;
    position: absolute; /* o fixed si quieres que esté fijo en pantalla */
    top: 21px;
    left: -10px;
    z-index: 1000;
  }
  
  .dqe-navbar {
    padding: 10px 20px;
  }
  .dqe-navbar .nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 10px;
    color: #000;
  }
  .texto-overlay {
    width: 80vw;
  }

  .btn-home{
    padding: 14px 32px;
  }

    /*--About Me*/
  /*--About Me*/

.section-AboutMe {
  /*background-color: aqua;*/
  width: 100%;
  height: auto;
  position: relative;
  padding: 0;
  margin: 0; 
  }

  .AboutMe{
  width: 100vw !important;
  padding: 0px 4px;
  border: 1px solid black !important;
}

/*
.sobrepuesta-img {
   max-width: 40%;
   transform: translate(33%, -28%);
}
*/
.sobrepuesta-img {
    position: absolute;
    top: 60%;
    right: 0;
    transform: translate(29%, -50%);
    max-width: 62%;
    z-index: 2;
  }
  /*Servicios*/
  .decoracion-tela {
  position: absolute;
  top: -431px;
  left: -5px;
  width: 1024px;
  height: 100%;
  background-image: url('/src/Assets/IMG/Telas/Seda-Rosa-Iz-ajustada1.png'); /* o .svg */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;

}

.decoracion-tela2 {
  position: absolute;
  top: 985px;
  left: -20px;
  width: 1024px;
  background-image: url('/src/Assets/IMG/Telas/Seda-Rosa-Der-Ajustada-punta.png'); /* o .svg */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;

}

.decoracion-tela5{
  position: absolute;
  top: 2119px;
  right: 0px;
  width: 50%;
  height: 50%;
  background-image: url('/src/Assets/IMG/Telas/Seda-ajustada.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
   
}


/* PC XL: 1920px en adelante */
@media (min-width: 1920px) {
  .logo-S{
  display: none;
  }  
  .logo-M{
  display: none;
  }  
}