@charset "UTF-8";
@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Evita scroll horizontal */
}

html {
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

p {
  color: black;
  font-size: 2rem;
  margin-top: 5px;
  line-height: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05rem;
  text-align: left;
}

.section-title {
  font-size: 3rem;
  font-weight: 300;
  color: black;
  margin-bottom: 10px;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  text-align: center;
}
.section-title span {
  color: #fab415;
}

.cta {
  display: inline-block;
  padding: 10px 30px;
  color: white;
  background-color: transparent;
  border: 2px solid #fab415;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-top: 30px;
  transition: 0.3s ease;
  transition-property: background-color, color;
}
.cta:hover {
  color: white;
  background-color: #fab415;
}

.brand img {
  width: 50px;
}
.brand h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: white;
}
.brand h1 span {
  color: #fab415;
}

/* Header section */
#header {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: auto;
}
#header .header {
  min-height: 8vh;
  background-color: rgba(31, 30, 30, 0.24);
  transition: 0.3s ease background-color;
}
#header .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 1300px;
  padding: 0 10px;
}
#header .nav-list ul {
  text-align: center;
  list-style: none;
  position: absolute;
  background-color: rgb(31, 30, 30);
  width: 100vw;
  height: 100vh;
  left: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  overflow-x: hidden;
  transition: 0.5s ease left;
}
#header .nav-list ul.active {
  left: 0%;
}

#header .nav-list ul a {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  padding: 20px;
  display: block;
}

#header .nav-list ul a::after {
  content: attr(data-after);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: rgba(240, 248, 255, 0.021);
  font-size: 13rem;
  letter-spacing: 50px;
  z-index: -1;
  transition: 0.3s ease letter-spacing;
}

#header .nav-list ul li:hover a::after {
  transform: translate(-50%, -50%) scale(1);
  letter-spacing: initial;
}

#header .nav-list ul li:hover a {
  color: #fab415;
}

#header .hamburger {
  height: 60px;
  width: 60px;
  display: inline-block;
  border: 3px solid white;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  transform: scale(0.8);
  margin-right: 20px;
}

#header .hamburger:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 3px solid white;
  animation: hamburger_puls 1s ease infinite;
}

#header .hamburger .bar {
  height: 2px;
  width: 30px;
  position: relative;
  background-color: white;
  z-index: -1;
}

#header .hamburger .bar::after,
#header .hamburger .bar::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  background-color: white;
  transition: 0.3s ease;
  transition-property: top, bottom;
}

#header .hamburger .bar::after {
  top: 8px;
}

#header .hamburger .bar::before {
  bottom: 8px;
}

#header .hamburger.active .bar::before {
  bottom: 0;
}

#header .hamburger.active .bar::after {
  top: 0;
}

/* End Header section */
/* Inicio Section */
#inicio {
  background-image: url(../img/inicio.jpg);
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 1;
}

#inicio::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.7;
  z-index: -1;
}

#inicio .inicio {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  justify-content: flex-start;
}

#inicio h1 {
  display: block;
  width: fit-content;
  font-size: 4rem;
  position: relative;
  color: transparent;
  animation: text_reveal 0.5s ease forwards;
  animation-delay: 1s;
}

#inicio h1:nth-child(1) {
  animation-delay: 1s;
}

#inicio h1:nth-child(2) {
  animation-delay: 2s;
}

#inicio h1:nth-child(3) {
  animation: text_reveal_name 0.5s ease forwards;
  animation-delay: 3s;
}

#inicio h1 span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #fab415;
  animation: text_reveal_box 1s ease;
  animation-delay: 0.5s;
}

#inicio h1:nth-child(1) span {
  animation-delay: 0.5s;
}

#inicio h1:nth-child(2) span {
  animation-delay: 1.5s;
}

#inicio h1:nth-child(3) span {
  animation-delay: 2.5s;
}

/* End Inicio Section */
/* Nosotros Section */
#nosotros .nosotros {
  flex-direction: column-reverse;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
}

#nosotros .col-left {
  width: 250px;
  height: 360px;
}

#nosotros .col-right {
  width: 100%;
}

#nosotros .col-right h2 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}

#nosotros .col-right p {
  text-align: center;
  margin-bottom: 20px;
}

#nosotros .col-right .cta {
  color: black;
  margin-bottom: 50px;
  padding: 10px 20px;
  font-size: 2rem;
}

#nosotros .col-left .nosotros-img {
  width: 100%;
  position: relative;
  border: 10px solid white;
}

/* End Nosotros Section */
/* Wide format */

.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
  height: 100vh;
  gap: 10px;
  max-width: 100%; /* Limita el ancho al 100% del viewport */
  overflow: hidden; /* Evita desbordamientos internos */
}

#wide, #other-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

#wide {
  scroll-margin-top: 80px;
  width: 100%; /* Asegura que no supere el contenedor */
  box-sizing: border-box;
}

.wide__container {
  text-align: center;
  max-width: 600px;
}

.wide__text {
  font-size: 40px;
  margin-bottom: 30px;
}

.wide__container__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wide__img, .wide__img2 {
  width: 100%; /* Contenedor ocupa todo el ancho disponible */
  max-width: 400px; /* Limita el ancho máximo */
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}


.wide__img img, .wide__img2 img {
  width: 100%; /* Imagen ocupa todo el contenedor */
  height: auto;
  object-fit: contain;
  transition: transform 0.5s;
}


.wide__img img:hover, .wide__img2 img:hover {
  transform: scale(1.1);
}

.wide__img img:focus {
  transform: scale(1); /* Restaura el tamaño original al enfocar */
}

.wide__underline {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #fab415;
}

.wide__info__container {
  width: 400px;
  font-family: "Montserrat", sans-serif;
  margin-top: 2%;
  margin-left: 20%;
}

.wide__info__container--item {
  cursor: default;
  text-align: justify;
  margin-bottom: 20px;
  padding: 5%;
  border-radius: 10px;
  box-shadow: 0px 0px 18px 0 rgba(0, 0, 0, 0.3);
  transition: 0.5s;
}

.wide__info__container--item:hover {
  transform: scale(1.02); /* Aumenta el tamaño al 110% cuando se realiza un hover */
}

.wide__info__container--item:focus {
  transform: scale(1); /* Restaura el tamaño original al enfocar */
}

.wide__info__container h2 {
  line-height: 1.5;
  font-size: 20px;
  margin-bottom: 10px;
  animation: text_reveal_2 0.5s ease forwards;
  animation: text_reveal_name 0.5s ease;
  animation-delay: 3s;
}

.wide__info__container h3 {
  margin-left: 10px;
  font-size: 15px;
  margin-bottom: 5px;
}

.wide__img::before {
  content: ""; /* Cadena vacía para que no se muestre ningún texto o contenido */
  background-image: url("../logos/HP_logo_white_PNG/HP_White_RGB_150_SM.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 1%; /* Coloca el seudoelemento en la parte inferior */
  right: 1%; /* Coloca el seudoelemento en la parte derecha */
  z-index: 1;
}

/* Oculta inicialmente el botón */
.wide__button__container {
  width: 400px;
  position: relative; /* Asegura que esté dentro de su sección */
  opacity: 0; /* Oculto inicialmente */
  pointer-events: none; /* Deshabilita la interacción mientras está oculto */
  transition: opacity 0.3s ease-in-out; /* Transición suave para la opacidad */
  margin-top: 20px; /* Añade espacio respecto al contenido superior */
  text-align: center; /* Asegura que esté alineado a la izquierda */
}

/* Muestra el botón cuando el cursor pasa sobre la sección */
#wide:hover .wide__button__container {
  opacity: 1;
  pointer-events: auto; /* Habilita la interacción cuando es visible */
}

.wide__button {
  font-size: 30px;
  width: auto; /* Ajusta el ancho según el contenido */
  padding: 10px 20px; /* Tamaño del botón */
  text-align: center;
  text-decoration: none;
  color: #333; /* Color del texto */
  background-color: transparent;
  border: 3px solid rgba(0, 0, 0, 0.442);
  box-shadow: 0px 0px 18px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out; /* Transición suave */
}



/* Línea animada detrás del texto */
/* Línea animada detrás del texto: izquierda */
.wide__button::before,
.wide__button::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%; /* Cada mitad ocupa la mitad del ancho */
  height: 100%;
  background-color: #fab415;
  transition: transform 0.3s linear;
  z-index: -1; /* Mantén la animación detrás del texto */
}

.wide__button::before {
  left: 0; /* Comienza desde el lado izquierdo */
  transform: scaleX(0); /* Oculto inicialmente */
  transform-origin: left; /* Escala desde el lado izquierdo */
}

.wide__button::after {
  right: 0; /* Comienza desde el lado derecho */
  transform: scaleX(0); /* Oculto inicialmente */
  transform-origin: right; /* Escala desde el lado derecho */
}

/* Hover: activa la animación hacia el centro */
.wide__button:hover::before,
.wide__button:hover::after {
  transform: scaleX(1); /* Llena completamente hacia el centro */
}

.wide__button:hover {
  color: white; /* Cambia el color del texto al hacer hover */
}

.wide__button:hover {
  transform: scale(1.1);
  background-color: #fab415; /* Cambia el color de fondo */
  color: white; /* Cambia el color del texto */
  border: none;
}

.wide__button:focus {
  transform: scale(1);
}

/* Adaptaciones específicas para móviles */
@media (max-width: 768px) {
  .split-screen {
    grid-template-columns: 1fr; /* Una sola columna en móviles */
    height: auto; /* Altura ajustable */
    gap: 20px; /* Más espacio entre secciones */
  }

  .wide__container {
    padding: 10px; /* Añade padding para evitar bordes pegados */
  }

  .wide__img, .wide__img2 {
    max-width: 100%; /* Asegura que no supere el ancho del contenedor */
    margin: 0 auto; /* Centra la imagen */
    padding: 10px; /* Espacio interno */
  }

  .wide__img img, .wide__img2 img {
    width: 100%; /* Imagen se adapta al contenedor */
    max-width: 100%; /* Evita desbordamientos */
    height: auto; /* Ajusta proporcionalmente */
  }

  .wide__button__container {
    margin-top: 50px;
    opacity: 1 !important; /* Muestra el botón */

    text-align: center; /* Centra el botón */
    width: 100%;
  }

  .wide__button {
    width: 90%; /* Ajusta tamaño del botón */
    margin: 0 auto; /* Centra en móviles */
    padding: 15px; /* Más espacio para botones grandes */
    font-size: 18px; /* Fuente más pequeña */
  }
}



/* END Wide format */
/* DataCenter section */
#datacenter .datacenter {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}

#datacenter .datacenter-header {
  text-align: center;
}

#datacenter .datacenter-header h1 {
  margin-bottom: 20px;
}

#datacenter .datacenter-header p {
  text-align: center;
  margin-bottom: 50px;
}

#datacenter .all-datacenter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#datacenter .datacenter-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
}

#datacenter .datacenter-info {
  padding: 30px;
  flex-basis: 50%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
  color: white;
}

#datacenter .datacenter-info h1 {
  font-size: 3rem;
  font-weight: 500;
  text-align: start;
}

#datacenter .datacenter-info h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 10px;
}

#datacenter .datacenter-info p {
  color: white;
}

#datacenter .datacenter-img {
  flex-basis: 50%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

#datacenter .datacenter-img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
  opacity: 0.7;
}

#datacenter .datacenter-img img {
  transition: 0.3s ease transform;
}

#datacenter .datacenter-item:hover .datacenter-img img {
  transform: scale(1.1);
}

/* End DataCenter section */
/* Transformacion Digital Section */
#transformacion .transformacion {
  flex-direction: column;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 0;
}

#transformacion .transformacion-top {
  max-width: 1200px;
  margin: 0 auto;
}

#transformacion .transformacion-top p {
  text-align: center;
}

#transformacion .transformacion-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

#transformacion .transformacion-item {
  max-height: 200px;
  flex-basis: 80%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  border-radius: 10px;
  background-image: url(../img/Transformacion.jpg);
  background-size: cover;
  margin: 10px 5%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#transformacion .transformacion-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
  opacity: 0.9;
  z-index: -1;
}

#transformacion .transformacion-bottom .icon {
  height: 80px;
  width: 80px;
  margin-bottom: 20px;
}

#transformacion .transformacion-item h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
}

#transformacion .transformacion-item p {
  font-size: 1.5rem;
  color: white;
  text-align: left;
}

/* End TransformacionDigital Section */
/* Nube section */
#nube .nube {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}

#nube .nube-header {
  text-align: center;
}

#nube .nube-header h1 {
  margin-bottom: 20px;
}

#nube .nube-header p {
  text-align: center;
  margin-bottom: 50px;
}

#nube .all-nube {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#nube .nube-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
}

#nube .nube-info {
  padding: 30px;
  flex-basis: 50%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
  color: white;
}

#nube .nube-info h1 {
  font-size: 3rem;
  font-weight: 500;
  text-align: start;
}

#nube .nube-info h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 10px;
}

#nube .nube-info p {
  color: white;
}

#nube .nube-img {
  flex-basis: 50%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

#nube .nube-img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
  opacity: 0.7;
}

#nube .nube-img img {
  transition: 0.3s ease transform;
}

#nube .nube-item:hover .nube-img img {
  transform: scale(1.1);
}

/* End Nube section */
/* Contacto Section */
#contacto .contacto {
  flex-direction: column;
  max-width: 1200px;
  max-height: 500px;
  margin: 0 auto;
  width: 90%;
}

#contacto .contacto-items {
  /* max-width: 400px; */
  width: 100%;
  margin-top: 50px;
}

#contacto .contacto-item {
  width: 80%;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  padding: 30px;
  margin: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 0px 18px 0 rgba(0, 0, 0, 0.1725490196);
  transition: 0.3s ease box-shadow;
}

#contacto .contacto-item:hover {
  box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.1725490196);
}

#contacto .icon {
  width: 70px;
  margin: 0 auto;
  margin-bottom: 10px;
}

#contact .contacto-info h1 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 5px;
}

#contacto .contacto-info h2 {
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 500;
}

#contacto .contacto-info a {
  color: #fab415;
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 500;
}

/*End contacto Section */
/* Footer */
#footer {
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}

#footer .footer {
  min-height: 100px;
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 10px;
}

#footer h2 {
  color: white;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  margin-top: 10px;
  margin-bottom: 10px;
}

#footer .social-icon {
  display: flex;
  margin-bottom: 30px;
}

#footer .social-item {
  height: 50px;
  width: 50px;
  margin: 0 5px;
}

#footer .social-item img {
  filter: grayscale(1);
  transition: 0.3s ease filter;
}

#footer .social-item:hover img {
  filter: grayscale(0);
}

#footer p {
  color: white;
  font-size: 1.3rem;
}

/* End Footer */
/* Keyframes */
@keyframes hamburger_puls {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}
@keyframes text_reveal_box {
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes text_reveal {
  100% {
    color: white;
  }
}
@keyframes text_reveal_name {
  100% {
    color: #fab415;
    font-weight: 500;
  }
}
@keyframes text_reveal {
  100% {
    color: white;
  }
}
@keyframes text_reveal_2 {
  100% {
    color: #fab415;
    font-weight: 500;
  }
}
/* End Keyframes */
/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
  .cta {
    font-size: 2.5rem;
    padding: 20px 60px;
  }
  h1.section-title {
    font-size: 3rem;
  }
  /* Inicio */
  #inicio h1 {
    font-size: 7rem;
  }
  /* End Inicio */
  /* Nosotoros */
  #nosotros .nosotros {
    flex-direction: row;
  }
  #nosotros .col-left {
    width: 600px;
    height: 400px;
    padding-left: 60px;
  }
  #nosotros .nosotros .col-left .nosotros-img::after {
    left: -45px;
    top: 34px;
    height: 98%;
    width: 98%;
    border: 10px solid #fab415;
  }
  #nosotros .col-right {
    text-align: left;
    padding: 30px;
  }
  #nosotros .col-right h1 {
    text-align: left;
  }
  #nosotros .col-right p {
    text-align: left;
  }
  /* End Nosotros */
  /* Datacenter */
  #datacenter .datacenter-item {
    flex-direction: row;
  }
  #datacenter .datacenter-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  #datacenter .datacenter-item {
    height: 400px;
    margin: 0;
    width: 100%;
    border-radius: 0;
  }
  #datacenter .all-datacenter .datacenter-info {
    height: 100%;
  }
  #datacenter .all-datacenter .datacenter-img {
    height: 100%;
  }
  /* End Datacenter */
  /* Transformacion Digital Section */
  #transformacion .transformacion-bottom .transformacion-item {
    flex-basis: 45%;
    margin: 2.5%;
  }
  /* End transformacion Digital Section */
  /* Nube */
  #nube .nube-item {
    flex-direction: row;
  }
  #nube .nube-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  #nube .nube-item {
    height: 400px;
    margin: 0;
    width: 100%;
    border-radius: 0;
  }
  #nube .all-nube .nube-info {
    height: 100%;
  }
  #nube .all-nube .nube-img {
    height: 100%;
  }
  /* End Nube */
  /* Contacto  */
  #contacto .contacto {
    flex-direction: column;
    padding: 100px 0;
    align-items: center;
    justify-content: center;
    min-width: 20vh;
  }
  #contacto .contacto-items {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 0;
    margin-top: 100px;
  }
  #contacto .contacto-item {
    width: 30%;
    margin: 0;
    flex-direction: row;
  }
  #contacto .contacto-item .icon {
    height: 100px;
    width: 100px;
  }
  #contacto .contacto-item .icon img {
    object-fit: contain;
  }
  #contacto .contacto-item .contacto-info {
    width: 100%;
    text-align: left;
    padding-left: 20px;
  }
  /* End contacto  */
}
/* End Media Query For Tablet */
/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
  /* header */
  #header .hamburger {
    display: none;
  }
  #header .nav-list ul {
    position: initial;
    display: block;
    height: auto;
    width: fit-content;
    background-color: transparent;
  }
  #header .nav-list ul li {
    display: inline-block;
  }
  #header .nav-list ul li a {
    font-size: 1.5rem;
  }
  #header .nav-list ul a:after {
    display: none;
  }
  /* End header */
  /* Transformacion Digital */
  #transformacion .transformacion-bottom .transformacion-item {
    flex-basis: 22%;
    margin: 1.5%;
  }
  /* End Transformacion Digital */
}



/*IMPRESION HP*/


.hero{
  padding: 10px;
  margin: 10px;
  background-color:#f9f9f9;
  border-radius: 5px;
  box-shadow: 0px 0px 18px 0 rgba(0, 0, 0, 0.3);
}


#contactForm {
   background-color: #fff;
   border-radius: 10px;
   padding: 30px;
   width: 400px;
   box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
textarea {
   width: 100%;
   padding: 12px;
   border: 1px solid #ced4da;
   border-radius: 6px;
   box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
   outline: none;
   border-color: #80bdff;
   box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.invalid-feedback {
   color: #dc3545;
   display: none;
   font-size: 14px;
}

.invalid {
   border-color: #dc3545;
}

button {
   background-color: #007bff;
   color: #fff;
   padding: 15px 20px;
   border: none;
   border-radius: 6px;
   cursor: pointer;
   width: 100%;
   font-size: 16px;
   transition: background-color 0.3s ease;
}

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

button:disabled {
   background-color: #6c757d;
   cursor: not-allowed;
}

.dropbtn {


  width: 200px;
   border: none;
   border-radius: 6px;
   cursor: pointer;
   font-size: 15px;
}

/* Dropdown content */
.dropdown-content {

margin-top: 0px;
   display: none;
   position: absolute;
   background-color: #f9f9f9;
   min-width: 350px;
   z-index: 1;
   border-radius: 6px;
   box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
   display: block;
}

@media screen and (max-width: 480px) {
   #contactForm {
       width: 90%;
   }
}


.video-container {
          position: relative;
          display: inline-block;
      }

      .video-container img {
          display: block;
          width: 100%;
          height: auto;
      }

      .play-icon {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          cursor: pointer;
          animation: pulse 1s infinite alternate;
      }

      @keyframes pulse {
          0% {
              transform: translate(-50%, -50%) scale(1);
          }
          100% {
              transform: translate(-50%, -50%) scale(1.1);
          }
      }

      .video-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.7);
          display: none;
          justify-content: center;
          align-items: center;
          z-index: 9999;
      }

      .video-overlay video {
          max-width: 80%;
          max-height: 80%;
          display: block;
      }


      .feature{
        padding: 20px;
        margin: 10px;
        margin-bottom: 25px;
        background-color:#f9f9f9;
        border-radius: 5px;
        box-shadow: 0px 0px 18px 0 rgba(0, 0, 0, 0.3);
        transition: 0.5s;
        
      }

      .feature:hover{
        transform: scale(1.02);
      }
/* End  Media Query For Desktop *//*# sourceMappingURL=home.css.map */