
body {
    background-color: black;
    margin: 0;
    padding: 0;
    font-family:"Questrial";
    overflow-x: hidden;
}


h1 h2 h3 h4 h5{
    font-family:Questrial;
}
button{
    font-family:Questrial;
}

.myVideo{
    z-index: 3;
}

/* Barra de desplazamiento */

::-webkit-scrollbar {
    width: 8px;
    /* Ancho de la barra de desplazamiento */
}

::-webkit-scrollbar-track {
    background-color: black;
    /* Color de fondo de la barra de desplazamiento */
}

::-webkit-scrollbar-thumb {
    background-color: #fff200;
    /* Color del "pulgador" de la barra de desplazamiento */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #c9c9c9;
    /* Color del "pulgador" cuando se hace hover */
}


/* nav */
.navbar {
    z-index: 10;
    display:flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    position: fixed;
    top: 0px;
    /* Initial position, outside the screen */
    left: 0;
    width: 100%;
    opacity: 1;
    height: 80px;
    visibility:hidden;
    /* Set your desired navbar height */
    background-color: black;
    /* Background color of the navbar */
    transition: display 0.5s ease;
    /* Smooth transition for the sliding effect */
    /* Additional styles for the navbar */
}






.navbar-right {
    padding-right: 30px;
}

.navbar-left {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 10px;
}

.hamburguer {
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    cursor: pointer;
}

.hamburguer-menu {
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburguer-icon {
    width: 100%;
    height: 2px;
    background-color: #000;
    margin-bottom: 5px;
}

.menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: black;
    padding: 0px;
    width: 100%;
    text-align: center;
    letter-spacing: 1px;

}

.menu a {
    text-decoration: none;
    color: white;
}

.menu li {
    font-family: Questrial;
    font-weight: 600;
    padding: 10px 0;
    /* Añade espaciado entre cada enlace */
    border-bottom: 2px solid #fff;
    /* Línea blanca fina entre enlaces */
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    
}

.menu.open {
    display: block;
    top: 60px;
}

.navbar a:active {
    background-color: transparent;
    /* Establece el fondo transparente */
    color: #fff;
    /* Establece el color de texto deseado */
    text-decoration: none;
    /* Remueve cualquier decoración de texto */
}
/* Estilos para el desplegable secundario */
.dropdown-menu {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 100%;
    left: 0;
    background-color: #2e2e2e;

}

.dropdown-menu a {
    color: #ffffff;
}

.has-dropdown.open .dropdown-menu {
    display: block;
}

@media screen and (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    body{
        font-family: Questrial;
    }
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .hamburger-icon {
        width: 100%;
    }

    .menu {
        position: static;
        display: block;
        background-color: transparent;
        padding: 0;
    }
    

    
}
.hamburger-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hamburger-icon {
  width: 100%;
}

.bar {
    width: 20px;
    height: 3px;
    background-color: white;
    margin-bottom: 4px;
}

/* logo */

.logo {
    z-index: 2;
    position: absolute;
    padding: 10px;
    margin-top: 6px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.logo img {
    width: 70px;
    height: auto;
    text-align: center;
    transition: transform 0.3s;
}

.logo:hover img {
    animation: zoomInOut 1s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}


/* iconos redes sociales */

.navbar-right {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.whatsapp {
    filter: invert(100%);
    width: 26px;
    height: 26px;
    padding: 5px;
    transition: transform 0.3s;
}

.whatsapp:hover {
    animation: zoomInOut 1s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.instagram {
    filter: invert(100%);
    width: 26px;
    height: 26px;
    padding: 5px;
    transition: transform 0.3s;
}

.instagram:hover {
    animation: zoomInOut 1s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.behance {
    filter: invert(100%);
    width: 26px;
    height: 26px;
    padding: 5px;
    transition: transform 0.3s;
}

.behance:hover {
    animation: zoomInOut 1s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.mail {
    filter: invert(100%);
    width: 26px;
    height: 26px;
    padding: 5px;
    transition: transform 0.3s;
}

.mail:hover {
    animation: zoomInOut 1s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.navbar2 {
    z-index:10;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    position: fixed;
    top: 0px;
    /* Initial position, outside the screen */
    left: 0;
    width: 100%;
    height: 80px;
    /* Set your desired navbar height */
    background-color: black;
    /* Background color of the navbar */
    transition: top 0.5s ease;
}
/* responsive */

@media (max-width: 768px) {

    /* Estilos para pantallas de hasta 768px de ancho */
    h1 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

}

@media (max-width: 480px) {

    /* Estilos para pantallas de hasta 480px de ancho */
    h1 {
        font-size: 18px;
    }

    p {
        font-size: 12px;
    }
}


/* Slogan */
#sloganContainer {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 200px;
    z-index: 2;
}

#slogan {
    margin-top: -80%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
    animation-delay: 6s;
    visibility: hidden;

}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Primeros botones */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.primerosBotones {
    display: flex;
    justify-content: center;
    z-index: 6;
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
    animation-delay: 6s;
    position: relative;
}
#primerosBotones {
        visibility: hidden;
}

#botones-primer-pantalla {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 6vh;
    border-radius: 25px;
    width: 18vw;
    color: #000;
    background-color: #fff200;
    margin-top: -38%;
    margin-left: 40px;
    margin-right: 40px;
    z-index: 5;
    font-family:Questrial;
    font-weight: 100;
    border-width: 0;
    font-size: 1.5em;
    cursor: pointer;
    position: relative;
}
#botones-primer-pantalla a{
        font-family:Questrial;
}

#botones-primer-pantalla:hover {
    animation: zoomInOut 1s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}



/* Segunda seccion */

#logo3d-conNombre {
    display: flex;
    justify-content: center;
    height: 400px;
    padding-bottom: 20%;
}

#logo3d {
    display: flex;
    justify-content: center;
    width: 20%;
}


#Nombre {
    width: 20%;
}

/* Tercera seccion */


.fondoAmarillo {
    width: 100%;
    height: 800px;
    background-image: linear-gradient(180deg, #Fbff00, #Fbff00,#fef200, #FEF200);
}

#Nosotros {
    padding-left: 15%;
    padding-top: 150px;
    margin-bottom: 20px;
}



#textoNosotrosNegrita {
    padding-left: 16%;
    margin-top: -20px;
    font-size: 25px;
}

#textoNosotros {
    padding-left: 16%;
    font-weight: 100;
    font-size: 25px;
    margin-top: -20px;
    padding-right: 16%;
}
#botonNosotros{
    margin-left: 16%;
    background-color: #000;
    color: white;
    border-radius: 10px;
    height: 40px;
    width: 250px;
    font-size: 18px;
    cursor: pointer;
    font-family: Questrial;
    font-weight: 100;
    transition: transform 0.3s ease;
}

#botonNosotros:hover {
    transform: scale(1.2);

  }

/*Servicios*/
#seccionServicios{
    height: 100%;
    background-color: white;
    padding-bottom: 100px;
}
#tituloServiciosConteiner {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: -10px;
    height: 300px;
    background-color: white;
}
#tituloServicios {
    padding-top: 50px;
    font-family: Questrial;
    font-weight: lighter;
    font-size: 60px;
}
#serviciosConteiner {
    display: flex;
    align-items: flex-start;
    background-color: white;
}
#servicios{
    width: 50%;
    transition: transform 0.3s ease;
}
#servicios:hover {
    transform: scale(1.2);
    cursor: pointer;

  }

#separadorNegro {
    width: 100%;
    margin-bottom: 200px;
}

/*Seccion Portfolio*/

.titulo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
  }
  
  .tituloPortfolio {
    opacity: 0;
    transform: translateX(-100%);
    animation-name: aparecerTitulo;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    color: white;
    font-size: 10vw;
    justify-content: center;
    text-align: center;
  }
  
  @keyframes aparecerTitulo {
    0% {
      opacity: 0;
      transform: translateX(-100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  



  .gallery {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
  }

  
  .filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 100%;
  }
  
  .filter-button {
    margin-right: 10px;
    padding: 8px 16px;
    border: none;
    color:#c9c9c9;
    cursor: pointer;
    background-color: transparent;
    font-family: "Questrial";
    font-weight: 600;
    font-size: 1em;
    letter-spacing: 1px;
    max-width: 90%;
  }
  
  .filter-button.active {
    color: #fff200;
    background-color: transparent;
  }
  
  .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    width: 100%;
  }
  .image-grid img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    cursor: pointer;
}
  
  .image-item {
    position: relative;
    overflow: hidden;
    filter: grayscale(100%);
    transition: filter 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-item:hover {
    filter: none;
  }
  
  .image-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  
  .image-item {
    position: relative;
    display: inline-block;
  }
  
  .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transition: height 0.3s ease;
  }
  
  .overlay-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .image-item:hover .image-overlay {
    height: 40px;
  }
  
  .image-item:hover .overlay-content {
    opacity: 1;
  }
  
  .overlay-content p {
    font-family: Questrial;
    font-size: 20px;
    color: #fff;
    margin: 0;
  }
  
  

  /* Contactanos */

  .contact-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-top: 150px;
  }
  
  .form-title {
    color: white;
    font-size: 3.5em;
  }
  
  .form-group {
    margin-bottom: 5px;
    margin-top: 10px;
  }
  
  label {
    color: white;
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 1.5em;
    font-family: Questrial;
    font-weight: 200;
  }
  
  input,
  textarea {
    width: 500px;
    padding: 10px;
    border-radius: 10px;
  }


textarea {
  height: 100px;
  width: 500px;
}


  button {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1.5em;
    font-family: Questrial;
  }
  
  button:hover {
    background-color: #555;
    border-radius: 20px;
  }
  
  /* Slider Logos */

  .tituloSlider {
    font-family: Questrial;
    font-weight: 100;
    font-size: 50px;
    color: white;
    display: flex;
    justify-content: center;
    margin-top: 200px;
  }
  .slider {
    margin-top: 20px;
    width: 100%;
    background-color: #1b1b1b;
    height: 120px;
    overflow: hidden;
  }
  
  .slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    flex: 0 0 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-right: 0px;
  }
  
  .slide img {
    width: 100px;
    height: auto;
  }

  .slider-controls {
    display: none;
    justify-content: space-between;
    margin-top: -80px;
    margin-bottom: 50px;
  }

  #btn-next {
    background-color: transparent;
    color: #555;
    font-size: 20px;
    font-weight: 600;
    z-index: 3;
  }
  
  #btn-previous {
    background-color: transparent;
    color: #555;
    font-size: 20px;
    font-weight: 600;
    z-index: 3;
  }
  
/* FOOTER */

  footer {
    background-color: #000;
    padding: 20px;
    color: white;
    margin-top: 50px;
  }
  
  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
  }
  #fyq{
    margin-left: -140px;
  }
  .footer-column {
    flex-basis: 50%;
    text-align: center;
  }
  .footer-column img {
    width: 100px;
  }
  
  .footer-line {
    width: 80%;
    height: 2px;
    background-color: #fff200;
    border: none;
    margin: 10px auto;
    opacity: 0; /* Configuramos la opacidad inicialmente en 0 */
  transform: translateX(-100%); /* Configuramos la posición inicial fuera de la pantalla */
  animation: slide-in 0.5s forwards;
  animation-delay: 2s; /* Agregamos la animación con duración de 0.5 segundos */
}

@keyframes slide-in {
  to {
    opacity: 1; /* Al final de la animación, la opacidad será 1 */
    transform: translateX(0); /* Al final de la animación, la posición será 0 */
  }
}
  
  .footer-row:last-child {
    text-align: center;
    justify-content: center;
  }

  .footer-column a {
    text-decoration: none;
    color: inherit;
  }
  .contact-link {
    text-decoration: underline;
    color: white;
    margin-left: 5px;
  }
  .logoLetraIdeamia {
    font-size: 40px;
    display: flex;  
    flex-direction: column;
    margin-bottom: -20px;
    margin-left: -94px;
  }
  

  /* SUBPAGINAS */

  /* Diseño grafico */

  #dGraficoTitulo {
    font-size: 50px;
    display: flex;
    flex-direction: column;
    color: white;
  }


/* Formulario Contacto de Subpaginas */

.contactoSubpaginas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: #f6f6f6;
  margin-top: 50px;
}

.tituloContactoSubpaginas {
  color: #000;
  font-size: 3.5em;
}

.grupoContactoSubpaginas {
  margin-bottom: 5px;
  margin-top: 10px;
}

.contactoSubpaginas label {
  color: #000;
  display: block;
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 1.5em;
  font-family: Questrial;
  font-weight: 200;
}

.contactoSubpaginas input,
textarea {
  width: 500px;
  padding: 10px;
  border-radius: 10px;
  border-width: 2px;
}


.contactoSubpaginas textarea {
height: 100px;
width: 500px;
}


.contactoSubpaginas button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1.5em;
  font-family: Questrial;
  border-radius: 10px 10px 0 0;
  margin-top: 40px;
}

button:hover {
  background-color: #555;
  border-radius: 10px 10px 0 0;
}







.two-row-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: white;
  margin-left: 15%;
  margin-right: 10%;
  margin-top: 60px;
  font-family: Questrial;
  letter-spacing: 1px;
  margin-bottom: 10%;
  height: 80vh;
}

.two-row-section .row {
  width: 100%;
  display: flex;

}

.two-row-section h2 {
  text-align: left;
  font-size: 70px;
  margin-bottom: 20px;
}

.two-row-section .column {
  width: 50%;
  text-align: left;
  margin-right: 5%;
  font-size: 25px;

}



.serviciosGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Cambia el número de columnas según desees */
  gap: 0px; /* Espacio entre imágenes */
}
.serviciosGrid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Cambia el número de columnas según desees */
  gap: 0px; /* Espacio entre imágenes */
}
.servicios2 {
  width: 100%;
  transition: transform 0.3s ease;
}
.servicios {
  width: 100%;
  transition: transform 0.3s ease;
}

.servicios:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.servicios2:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.serviciosMobile{
    display:none;
}


#subpageText{
    font-family:Questrial;
}















@media (max-width: 768px) {
  .two-row-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .two-row-section .row {
    width: 100%;
    display: block;
  }

  .two-row-section .column {
    width: 100%;
  }

}




@media (max-width:1200px){
  body {
    overflow-x: hidden;
          width:100vw;
  }
  html{
      width:100vw;
  }
  #Nosotros{
    width:100vw;
    padding:5vw;
  }
  #logo3d-conNombre{
    width: 90vw;
  }
  #textoNosotros{
    width: 90vw;
  }
  #Nosotros{
    display: flex;
    width: 90%;
    text-align: center;
    justify-content: center;
    margin-left: 5%;
    padding: 0;
  }
  #textoNosotrosNegrita {
    font-size: 22px;
    margin: 0;
    padding-left: 10%;
    padding-right:30%;
    width: 80%;
  }
  #textoNosotros{
    font-size: 20px;
    margin: 0;
    padding-left: 10%;
    margin-right: 20%;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 80%;
  }
  #separadorAmarilloConteiner{
    max-width: 100%;
    margin-top: -10%;
    z-index: 1;
  }

  .fondoAmarillo{
   width: 100%;
    padding: 0;
    justify-content: center;
    padding-bottom: 120px;
    height: auto;
    background-image: linear-gradient(180deg, #Fbff00, #Fbff00,#fef200, #FEF200);
  }

  .primerosBotones{
    width: 100vw;
    margin-top: -420px;
    margin-bottom: 0px;
    padding: 0;
    z-index: 5;
    font-size: 0.8em;
    font-weight:100;
  }
  #botones-primer-pantalla{
    width: 200px;
    margin: 10px;
        font-weight:100;
  }
  .videoContainer{
    width: 100vw;
    overflow: hidden;
    z-index: 1;
  }
  #myVideo{
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 500%;
    margin-left: -200%;
    z-index: 1;
  }
  #sloganContainer{
    width: 100vw;
    padding-left: 20;
    padding-right: 20px;
    height: 100vh;
    text-align: center;
    justify-content: center;
    display: flex;
    z-index: 2;
    margin-top: -900px;
  }
  #slogan{
    width: 90%;
    margin-top: -200px;
    padding: 0;
    text-align: center;
    justify-content: center;
  }

  .dropdown-menu a{
    color: white;
  }

  .hamburguer{
    width: 10%;
    z-index: 7;
    justify-content: center;
    text-align: center;
  }
  .menu{
    margin-top: -500px;
    margin-right: 14%;
    width: 100%;
    text-align: center;
    justify-content: center;
    z-index: 20;
  }
  .menu li{
   width: 100%;
  }
  .menu.open{
    height: auto;
    margin-top: 300px;
    z-index: 20;
  }
  .menu.open ul{
    margin-right: 20%;
  }
  .menu.open li{
    background-color: #000;
    color: white;
    width: 100%;

  }
  .dropdown-menu{
    background-color: #000;
  }
  .has-dropdown{
    width: 100%;
    overflow: visible;
  }
  .has-dropdown.open{
    overflow: visible;
    color: white;
    text-align: center;
    justify-content: center;
    margin-left: -40px;
  }

  .logo{
    width: 60%;
    text-align: right;
    right: 0;
    margin: 0;
    padding-left: 50px;
  
  }
  .logo img{
    width: 70px;
  }
  .navbar{
    padding-top: 7px;
    padding-bottom: 7px;
    width:100vw;
    overflow-x: hidden;

  }
  #navbar{
    width:100vw;
    overflow: visible;
  }
  .navbar-left{
    max-width: 100%;
  }
  .navbar-right{
    width: 20%;
    display: none;
  }
  #seccionServicios{
    margin-top: -30px;
    margin-bottom: -10px;
  }
  #tituloServicios{
    font-size: 10vw;
  padding: 10px;  
  margin-top: 40px
  }
  .serviciosGrid{
    width: 100%;
    display:none;
  }
  .serviciosConteiner {
    flex-direction: column;
  }
  
  .serviciosMobile{
      display:flex;
  }
    .seccionserviciosMobile{
      padding-bottom:30px;
      background-color:white;
  }
  
  .seccionPortfolio{
          display:none;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .filter-buttons{
    width: 100%;
    text-align: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .filter-button{
   font-size: 2vw;
   font-weight: 700;
   width: 100%;
   margin: 0 auto;
   padding: 0;
  }
  .tituloPortfolio{
    font-size: 50px;
  }
  .gallery{
    width: 100%;
    margin: 0 auto;
    padding:0;
    text-align: center;
    justify-content: center;
    overflow: visible;
  }
  .image-grid{
    justify-content: center;
    text-align: center;
  }
  .gallery img {
    width: 100%;
    justify-content: center;
  }
  .contact-form{
    max-width: 100%;
  }
  #logo3d-conNombre{
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top:30vh;
  }
  #logo3d {
    width: 160px;
    margin-left: -20px;
    margin-top:30px;
  }
  #Nombre {
    width: 200px;
    margin-left: -20px;
  }
  #botonNosotros{
    width: 70%;
    margin-top: 50px;
    overflow-y: hidden;
    height: auto;
  }
  .serviciosGrid {
    display: grid;
    grid-template-columns:1fr; /* Cambia el número de columnas según desees */
    gap: 0px; /* Espacio entre imágenes */
  }
  
  #separadorNegro{
    height:auto;
    margin: 0;
    padding: 0;
  }
  #separadorAmarilloConteiner{
    margin-top: -40px;
  }
  #separadorAmarillo{
    z-index: 23;
  }
  #seccionPortfolio{
    width: 100%;
    margin: 0;
    padding: 0;
    justify-content: center;
    text-align: center;
  }
  .servicios img{
    width: 100%;
  }
  .contact-form{
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .form-group{
    width: 100%;
  }
  .form-group input{
    width: 80%;
  }
  .form-group textarea{
    width: 80%;
  }
  .tituloSlider{
    font-size: 9vw;
  }
  footer{
      width:100%;
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top:30px;
  }
  .footer-row p{
    width: 70%;
    justify-content: center;
    text-align: center;
  }
  
  .derechos{
      margin-left: 30px;
  }
  
  footer a{
    font-size: 3vw;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
  }
  #fyq{
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }
  .footer-column{
    justify-content: center;
    text-align: center;
  }
  .logoLetraIdeamia {
    justify-content: center;
    text-align: center;
    padding-bottom: 8px;
    margin-left: 10%;
  }
.footer-line{
  width: 100%;
}

#portadaDG{
  width: 70%;
  margin-right: 300px;  
  overflow: hidden;
  height: auto;
}
.row{
  overflow: visible;
}
#portadaDG p{
  width: 100%;
  overflow: hidden;
    font-family:Questrial;
}
#portadaDG h2{
  font-size: 50px;
  width: 90%;
  overflow: hidden;
}

.buttonForm{
  width: 150px;
}
#seccionPortfolio{
  overflow: visible;
}
.serviciosGrid{
        height:10px;
    visibility:hidden;
}
.serviciosGrid2{
    display:none;
}
.serviciosMobile{
    width:100%;
}
.serviciosMobileImg{
    width:100%;

}
.seccionServicios{
    display:none;
        visibility:hidden;
        height:10px;
}
#tituloServiciosConteiner{
height:200px;
}
#tituloServicios{
    font-size:3em;
    padding-top:30px;
}
#separadorNegro{
    margin-top:-2px;
}
}


