/*Cabecera*/
/* Estilos generales */
/* Estilos generales */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

header{
  height: 150px;
  background: white;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


#btn-menu{
  display: none;
}

header label{
  font-size: 18px;  
  cursor: pointer;
  display: none;

}

.menu ul{
  background: white;
  display: flex;
  list-style: none;
}

.menu ul li{
  font-size: 14px; 
  font-weight: bold;
}


.menu ul ul{
  display: none;
}

.menu a{
 display: block;
 padding: 15px 20px;
 color: black;
 text-decoration: none; 
}

.menu a:hover{
  color: #EC6D18;
  
}

.menu a:hover::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  background-color: #EC6D18;
  position: absolute;
  bottom: -3px; 
  left: 0;
}

.menu a span{
  margin-left: 10px;
}

.menu ul li:hover ul{
  display: block;
  position: absolute;
}

nav ul li a:hover {
  position: relative;
  color: #EC6D18;
}


@media(max-width:768px){
  header label{
    display: block;
  }

  .menu{
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    background: #555;
    transform: translate(-100%);
    transition: all 0.3s;
  }

  .menu ul{
    display: block;
    
  }

  .menu ul li:hover ul{
    display: none;
    position: static;
  }

  .menu a span{
    position: absolute;
    right: 5px;
  }

  #btn-menu:checked ~ .menu{
    transform: translate(0%);

  }
  .menu ul ul{
    background: rgba(0,0,0,0.4);
  }
  .menu ul ul a{
    padding: 15px 40px;
  }

}

/*Cuerpo de la web*/
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 100px;
    height: 100vh;
    background-image: url('DZT6PUGVLRH4TNXZU43ZRJPENE.jpeg'); /* Reemplaza 'ruta/de/la/imagen.jpg' por la ruta de tu imagen */
    background-size: cover;
    background-position: center;

  }


  
  .content {
    max-width: 800px; /* Ancho mÃ¡ximo del contenido */
    margin: 0 auto;
  }
  
  .orange-box {
    background-color: #EC6D18;
    padding: 20px;
    text-align: center;
    height: 150px;
margin-top:100px;
  }
  
  .orange-box h1 {
    color: white;
    font-size: 2em; /* TamaÃ±o del tÃ­tulo */
    margin-top:20px;
  }

  @media screen and (max-width: 768px) {
    .container {
      padding-left: 20px;
    }
    .orange-box {
      height: auto;
      padding: 10px;
    }
    .orange-box h1 {
      font-size: 1.5em;
    }
  }

  /*2da seccion del cuerpo de la web*/

  .container2 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 80px;
  }
  
  .text-box {
    flex: 1 0 50%;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .video-box {
    flex: 1 0 50%;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .text-box p {
    text-align: justify;
    padding-left: 150px;
    font-size: 25px;
    color: grey;
    margin-top: 20px;
  }
  
  @media (max-width: 768px) {
    .text-box, .video-box {      
      flex: 1 0 100%;
    }
    

    .text-box p{
      padding-left: 0px;
    }
  }
  
  
  
/*Estilo de carrucel*/

.Bloqueclientes {
  background: #F7F7F7;
  display: flex;
  justify-content: center;
}

.slider {
  width: 75vw;
  height: 196px;
  overflow: hidden;
  background: #F7F7F7;
  margin: 0 100px; /* Margen entre el bloque y las imÃ¡genes */
}

.slider .slide-track {
  display: flex;
  gap: 100px; /* Espacio entre las imÃ¡genes */
  animation: scroll 20s linear infinite;
  width: calc(100% * 14); /* Ancho total de todas las imÃ¡genes */
  align-items: center; /* Centrado vertical */
}

.slider .slide {
  flex: 0 0 auto; /* Para que las imÃ¡genes mantengan su tamaÃ±o */
}

.slider .slide img {
  width: 100%;
  display: block; /* Eliminar espacios entre imÃ¡genes */
}

@keyframes scroll {
  0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
  100% {
      -webkit-transform: translateX(calc(-200px * 7));
      transform: translateX(calc(-200px * 7));
  }
}


/*Banner 2*/
.container3, html{
    margin: 0;
    padding: 0;
}
.container3 {
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 100px;
    height: 100vh;
    background-image: url('unnamed-4.png'); /* Reemplaza 'ruta/de/la/imagen.jpg' por la ruta de tu imagen */
    background-size: cover;
    background-position: center;
  }

/*Seccion contactenos*/


/* .contactenos{
    padding: 50px;
    background: #000000;
    color: #FFF;
    text-align: center;    
}

.contactenos input{
    background: #050505;
    width: 180px;
    height: 70px;
    color: #FFF;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
} */




/*Seccion Container 4*/

.container4{
    height: 196px;
    padding: 50px;
    text-align: center;
}
/*Estilo Nuestro Trabajo*/

.container_banner_nuestro_trabajo {
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 100px;
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.404),rgba(0, 0, 0, 0.288)),url('doctor-looking-for-information-in-the-database.jpg'); /* Reemplaza 'ruta/de/la/imagen.jpg' por la ruta de tu imagen */
  background-size: cover;
  background-color: rgba(0,0,0,0.8);
  background-position: center;
  color: white;
  font-size: 24px;
}

.container100 {
  max-width: 60%;
  margin: 0 auto;
  padding: 20px;
  font-size: 20px;
}

.container100 h1 {
  font-weight: bold;
}

.container100 h3 {
  font-weight: bold;
  color: #000000;
}


.subtitle {
  font-weight: bold;
  text-align: center;
  font-size: 40px;
}

.introduction {
  text-align: justify;
  color: #7A7A7A;
  font-size: 20px;
}

.columns {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  text-align: justify;
  color: #7A7A7A;
}

.column {
  width: 48%;
  color: #7A7A7A;
}

.quote {
  font-style: italic;
  color: #7A7A7A;
}

/* Estilos para pantallas pequeñas */
@media screen and (max-width: 768px) {
  .container100 {
    max-width: 90%;
    font-size: 18px;
  }
  .subtitle {
    font-size: 30px;
  }
  .columns {
    flex-direction: column;
  }
  .three-columns .column {
    width: 100%;
  }
  .column {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Estilos para pantallas muy pequeñas */
@media screen and (max-width: 480px) {
  .container_banner_nuestro_trabajo {
    padding-left: 20px;
    height: 40vh;
  }
  .container100 {
    padding: 10px;
    font-size: 16px;
  }
  .subtitle {
    font-size: 24px;
  }
  
  .three-columns .column {
    width: 100%;
  }
}

/*Seccion nube administrada*/

.container_nube_administrada{
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 100px;
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.404),rgba(0, 0, 0, 0.288)),url('DZT6PUGVLRH4TNXZU43ZRJPENE.jpeg'); /* Reemplaza 'ruta/de/la/imagen.jpg' por la ruta de tu imagen */
  background-size: cover;
  background-color: rgba(0,0,0,0.8);
  background-position: center;
  color: white;
  font-size: 24px;
}

.three-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.three-columns .column {
  width: 30%;
  margin-bottom: 20px;
}

.container100 hr{
  width: 70%;
  height: 5px;
  color: #000000;
  background-color: #000000;
  
}

/*seccion aws */

.container_aws{
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 100px;
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.404),rgba(0, 0, 0, 0.288)),url('mejor-hosting.jpeg'); /* Reemplaza 'ruta/de/la/imagen.jpg' por la ruta de tu imagen */
  background-size: cover;
  background-color: rgba(0,0,0,0.8);
  background-position: center;
  color: white;
  font-size: 24px;
}


/*seccion viaje nube */

.container_vijae_nube{
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 100px;
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.404),rgba(0, 0, 0, 0.288)),url('Lean-Thinking-e1457431820548.jpeg'); /* Reemplaza 'ruta/de/la/imagen.jpg' por la ruta de tu imagen */
  background-size: cover;
  background-color: rgba(0,0,0,0.8);
  background-position: center;
  color: white;
  font-size: 24px;
}

/*seccion e_clinic */

.container_e_clinic{
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 100px;
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.404),rgba(0, 0, 0, 0.288)),url('historia-clinica_15_1000x564.jpeg'); /* Reemplaza 'ruta/de/la/imagen.jpg' por la ruta de tu imagen */
  background-size: cover;
  background-color: rgba(0,0,0,0.8);
  background-position: center;
  color: white;
  font-size: 24px;
}

.texto_servicios {
  margin-top: 100px;
  font-size: 24px;
}

/*seccion e_farmacia */

.container_e_farmacia{
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 100px;
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.404),rgba(0, 0, 0, 0.288)),url('Kinceb-Farmacia-Digital.jpeg'); /* Reemplaza 'ruta/de/la/imagen.jpg' por la ruta de tu imagen */
  background-size: cover;
  background-color: rgba(0,0,0,0.8);
  background-position: center;
  color: white;
  font-size: 24px;
}

/*seccion e_invoice */

.container_e_invoice{
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 100px;
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.404),rgba(0, 0, 0, 0.288)),url('e-invoicing-1.jpeg'); /* Reemplaza 'ruta/de/la/imagen.jpg' por la ruta de tu imagen */
  background-size: cover;
  background-color: rgba(0,0,0,0.8);
  background-position: center;
  color: white;
  font-size: 24px;
}

/*seccion quienes somos*/

.container_quienes_somos{
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 100px;
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.404),rgba(0, 0, 0, 0.288)),url('doctor-looking-for-information-in-the-database.jpg'); /* Reemplaza 'ruta/de/la/imagen.jpg' por la ruta de tu imagen */
  background-size: cover;
  background-color: rgba(0,0,0,0.8);
  background-position: center;
  color: white;
  font-size: 24px;
}

.container100 li{
  font-size: 20px;
  color: #7A7A7A;
}

/*seccion datacenters*/

.container_datacenters{
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 100px;
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.404),rgba(0, 0, 0, 0.288)),url('mejor-hosting.jpeg'); /* Reemplaza 'ruta/de/la/imagen.jpg' por la ruta de tu imagen */
  background-size: cover;
  background-color: rgba(0,0,0,0.8);
  background-position: center;
  color: white;
  font-size: 24px;
}

.texto_datacenter{
  color: #000000;

}


/*seccion kaspersky*/

.container_kaspersky{
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 100px;
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.404),rgba(0, 0, 0, 0.288)),url('data.jpeg'); /* Reemplaza 'ruta/de/la/imagen.jpg' por la ruta de tu imagen */
  background-size: cover;
  background-color: rgba(0,0,0,0.8);
  background-position: center;
  color: white;
  font-size: 24px;
}

/*seccion email_corporativo*/

.container_email_corporativo{
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 100px;
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.404),rgba(0, 0, 0, 0.288)),url('unnamed-1536x968.jpg'); /* Reemplaza 'ruta/de/la/imagen.jpg' por la ruta de tu imagen */
  background-size: cover;
  background-color: rgba(0,0,0,0.8);
  background-position: center;
  color: white;
  font-size: 24px;
}

/*Pie de Pagina*/

.footer {
  background-color: #222323;
  color: white;
  padding: 20px;
  padding-top: 50px;
}

.footer .container100 .three-columns h3{
  color: #FFF;
  margin: 10px;
  font-size: 14px;
}

.footer .container100 .three-columns .column img{ 
  width: 250px;
  height: auto;
  
 
}

.social-icons img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
     
}

.separator {
  border: none;
  border-top: 1px solid white;
  margin: 20px 0;

}

@media screen and (max-width: 480px) {

  .footer {
    background-color: #222323;
    color: white;
    padding: 5% 5% 20px 5%;
  }
  footer .container100 .three-columns{
    display: flex;
    flex-direction: column;
    
         
  }

  footer .container100 .three-columns img{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    justify-content: center;
    height: auto;
  }

  .footer .container100 .three-columns h3{
    white-space: nowrap;
  }
}


/*Boton WSP*/
.btn-wsp{
    position:fixed;
    width:80px;
    height:80px;
    line-height: 83px;
    bottom:35px;
    right:35px;
    background:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    transition: all 300ms ease;
}
.btn-wsp:hover{
    background: #20ba5a;
}
@media only screen and (min-width:320px) and (max-width:768px){
    .btn-wsp{
        width:63px;
        height:63px;
        line-height: 66px;
	}
}

/*Estilo modal contactenos*/
/* Estilos para el botÃ³n */
button {
  padding: 10px 20px;
  background-color: #EC6D18;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
}

/* Estilos para la ventana modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);    
}

.modal-contenido {
  background-color: white;
  width: 60%;
  max-width: 600px;
  margin: 100px auto;
  padding: 20px;
  position: relative;
  color: #000000;
  font-size: 14px;
}

.cerrar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}



/*Nuevo estilo formulario modal*/
.contactenos {
  padding: 50px;
  background: #000000;
  color: #FFF;
  text-align: center;
}

#abrirModal{
background-color: #EC6D18;
}

#miEnviar{
background-color: #EC6D18;
color: #FFF;
font-size: 14px;
width: 100px;
height: 30px;
align-items: center;
}

.contactenos button {
  background: #555555;
  color: #FFF;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  padding: 15px 30px;
  margin-top: 20px;
}

.cerrar {
  color: #888;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

#mensaje{
  width: 400px;
  height: 100px;
  font-size: 18px;
}

.contenido-formulario input{
  width: 300px;
  height: 20px;
  font-size: 14px;
}

.contenido-formulario {
  text-align: center;
  max-height: 70vh; /* Ajusta la altura máxima del formulario */
  overflow-y: auto; /* Agrega desplazamiento vertical si el contenido es largo */
}

/*Estilo de cookies*/

/* Estilos para el velo transparente */
.cookie-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Estilos para el banner de cookies */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-width: 80%; /* Ancho máximo del banner */
  width: 500px; /* Ancho inicial del banner */
}

.cookie-banner p{
  font-size: 14px;
  white-space: nowrap;

}

.cookie-banner button {
  padding: 10px 20px;
  background-color: #fff;
  color: #333;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  font-size: 12px;
}

.content {
  padding: 20px;
  max-width: 1000px; /* Ancho máximo del contenido */
  margin: 0 auto; /* Centrar el contenido */
}

/* Media query para ajustar estilos en pantallas más pequeñas */
@media screen and (max-width: 768px) {
  .cookie-overlay {
    
    top: 0;
    left: 0;
    
  }
  
  /* Estilos para el banner de cookies */
  .cookie-banner {
    display: flex;
    position: fixed;
    justify-items: center;
    top: 50px;
    left: 200px;
    width: 50%;
    height: 20%;      
   
  }
  
  .cookie-banner p {
    margin-bottom: 10px;
    font-size: 20px;
    margin-top: 50px;
  }
  
  .cookie-banner button {
    padding: 10px 20px;
    background-color: #fff;
    color: #333;
    border: none;
    cursor: pointer;
  } 
  
  
  
}

.footerparrafo{
	white-space: nowrap;
}