*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.toper{
    padding: 0;
    width: 100%;
    height: 70vh;
}
.nav{
  position: fixed;
  width: 100%;
  height:90px;
  background: rgba(14, 14, 14, 0.589);
  background-color: rgba(14, 14, 14, 0.589);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  z-index: 1000;
}
.logoenlace{
  position: absolute;
   top: 40%;
   left: 5%;
   transform: translate(-50%, -50%);
   width: auto;
   height: auto;
   padding-left: 10%;
   padding-top:40px;

}
.logo{
  width: 200px;
  height: 200px;
}


nav ul {
  float: right;
  display: flex;
  justify-content: center;
  list-style: none;
  }

.titulo {
  position: relative;
    height: auto;
    width: auto;
    top: -12vh;

  }
@media (max-width: 952px){
  .logoenlace{
    padding-left: 200px;
  }
  .titulo {
    height: auto;
    width: auto;
    top: -8vh;

  }
}
@media (max-width: 768px){
  .logoenlace{
  padding-left: 80px;
  margin-left: 40px;

  }
  .titulo {
    height: auto;
    width: auto;
    top: -14vh;

  }
}
.menu{
  font-family: "Segoe UI";
  float: right;
}
.menu li{
  list-style: none;
  margin: 13px;
  line-height: 70px;
}
.checkbtn{
  font-size: 30px;
  color: #fff;
  float: right;
  line-height: 100px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check{
  display: none;
}
@media(max-width:768px){
  .checkbtn{
    display: block;
  }
   .menu{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.897);
    top: 90px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }
  .menu{
    display: block;
  }
  .menu li{
    margin-top: 100px;

  }
  nav ul li a{
    font-size: 20px;
  }

  #check:checked ~ ul{
  left: 0;
  }
} 

.menu li a{
    color: #dddddd;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.5s ease;
}
.menu li a:hover{
    padding: 5px 10px;
    border-radius: 15px;
    background-image: linear-gradient(100deg, #b70808,#015188);

}
.slider{
  width: 100%;
  height: 70vh;
  margin: auto;
  overflow: hidden;
}
.slider ul{
  padding: 0;
  display: flex;
  width: 400%;

  animation: slider 20s infinite alternate;
  animation-timing-function: linear;
}
.slider li{
  width: 100%;
  list-style: none;
}
.slider li img{
  width: 100%;
  height: 70vh;
}
@media(max-width:768px) {
  .slider{
    position: relative;
  }
  .slider1{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
@keyframes slider{
  0% {margin-left: 0;}
  20% {margin-left: 0;}

  25% {margin-left: -100%;}
  45% {margin-left: -100%;}

  50% {margin-left: -200%;}
  70% {margin-left: -200%;}

  75% {margin-left: -300%;}
  100% {margin-left: -300%;}

}
.contenedor-titulo{
  width: 100%;
  position: absolute;
  align-items: center;
  justify-content: center;
  height: 15vh;
  top: 40vh;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  color: rgba(120, 4, 34, 255);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}
@media (max-width: 768px) {
    .contenedor-titulo{
      z-index: 40;
    }
  }
 
  
  
@font-face {
    font-family: "Fuentelogo";
    src: url(Fuentelogo.otf)
}
.subtitulo-titulo{
  position: relative;
    color: white;
    font-family: 'Segoe UI';
    text-align: center;
    font-weight: bold;
    font-size: x-large;
    font-size: 3vh;
}
@media (max-width: 768px) {
    .subtitulo-titulo{
      font-size: 20px;
    }
  }
.Areastrabajo{
  background-color:#015188 ;;
  height: 100%;
  height: auto;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: -1px;

}
.Tituloareastrabajo{
    text-align: center;
    width: 100%;
    color: white;
    font-family: 'Segoe UI';
    font-weight: bold;
    margin-top: 10vh;
    margin-bottom: 10vh;
    font-size: 3vh;
}
.tarjeta {
  position: relative;
  width: calc(100% / 5 - 20px); /* Divide el ancho del contenedor en 5 partes iguales, y resta 20px para el margen */
  height: 300px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.99);
  transition: box-shadow 0.3s ease-in-out;
  overflow: hidden;
  margin: 20px;
  width: calc(25% - 20px);
}
.tarjeta:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.99);
  transform: translateY(-5px);
}
.tarjeta h2 {
  color: black;
  font-size: 30px;
  font-weight: bold;
  margin: 0 0 10px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 10px;
}

.tarjeta p {
  font-size: 16px;
  margin: 0;
  color: black;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: justify;
  padding: 0 10px 20px 10px;
}
@media (max-width: 768px) {}
  .tarjeta {
    width: auto;
    height: auto;
    text-align: justify;
  }
.presentacioncompania{
  background-color: #015188 ;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.titulopresentacion {
  color: white;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  font-size: 2.5vh;
  width: 100%;
  margin-top: 10vh;
  margin-bottom: 10vh;
  font-family: "Segoe UI";
}
.container {
  width: 100%;
  padding: 100px;
  padding-top: 3px;
}

.image-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.presentacioncompania img{
    max-width: 100%;
    width: 600px;
    height: 300px;
  
}
img{
max-width: 100%;
}
.image-container {
  text-align: center;

}
.ftsalgn{
  padding-top: 40px;
}

h3 {
  margin-top: 10px;
  margin-bottom: 5px;
  color: white;
  font-weight: bold;
  font-family: 'Segoe UI';
}
@media (max-width: 768px){
  .container{
    padding: 20px;
    padding-top: 1px;
  }
  img{
    width: 600px;
    height: 200px;
  }
  .image-container{
    padding-bottom: 90px;
  }
}
.marcas{
  width: 100%;
  height: auto;
  background-color:#015188 ;
  margin-top: -93px;
} 
.contenedor-titulo-clientes{
  width: 100%;
  text-align: center;
  font-size: 3vh;
  font-weight: bold;
  font-family: 'Segoe UI';
  color: white;
  padding-top: 10vh;
  padding-bottom: 10vh;
  padding-left: 0;
  padding-right: 0;
}
.contenedor-marcas{
  height: auto;
  width: 95%;
  margin: 0 auto;
}
.lista-marcas{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.marca-item{
  width: 20%;
  padding: 15px 10px;
  min-width: 100px;
}
.marca-item img{
  width: 250px;
  height: 100px;
}
@media (max-width:768px){
  .contenedor-marcas{
    height: auto;
  }
  .marca-item{
    width:30%;
  }
  .marca-item img{
  width: auto;
  height: auto;
  }
}
.contacto{
  background-color: #015188 ;;
  height:auto;
  width: 100%;
  flex-direction: column;
  text-decoration: none;
}
.contenedor-titulo-contacto{
  width: 100%;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  padding-left: 10%;
  padding-top: 10%;
  padding-right: 10%;
  padding-bottom: 80px;
  text-decoration: none;
}
.contenedor-informacion-contacto{
  width: 100%;
  height: auto;
  text-decoration: none;
  color: white;
}
.informacion-contacto{
  color: white;
  width: 100%;
  height: auto;
  text-align: center;
  text-decoration: none;
}
.contenedores-item-info-tel{
  text-decoration: none;
  color: white;
  padding-bottom: 100px;
}
.contenedores-item-info-mail{
  text-decoration: none;
  color: white;
}
.contenedores-item-info-mail p{
  padding-top: 20px;
  font-size:x-large;
  text-decoration: none;
  color: white;
  padding-bottom: 100px;
}
.contenedores-item-info-tel p{
  padding-top: 20px;
  font-size:x-large;
  text-decoration: none;
  color: white;
}
.infocon{
  text-decoration: none;
  color: white;
}

a{
  text-decoration: none;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
}
.contenedor-logo-contacto{
width: 50%;
margin-left: auto;
margin-right: auto;
}
.contenedor-logo-contacto img{
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
}
 @media (max-width:768px){
  .contenedor-logo-contacto{
    padding-top: 100px;
    margin-bottom: auto;
    width: auto;
    height: auto;
  }
  .contenedor-logo-contacto img{
    width: 400px;
    height: 360px;
  }
 }
 
 .proyectos{
  background-color: #015188;
  height:auto;
  width: 100%;
  flex-direction: column;
 }
 .contenedor-titulo-proyectos{
  width: 100%;
  padding-top: 10%;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  text-decoration: none;
 }
 .contenedor-subtitulo-proyectos{
  width: 100%;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  text-decoration: none;
  padding-bottom: 100px;
 }

 .proyecto-div{
  width: 100%;
  height: auto;
 }

 .proyecto-div{
  align-items: center;
  flex-direction: row;
  display: flex;
  padding-bottom: 15vh;
}
.images-proyectos{
  flex-basis: 50%;
  padding-top: 30px;
  display: flex;
  flex-direction:row;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
}

.images-proyectos img{
  width: auto;
  margin: 20px;
  display: block;
  height: 300px;
  max-width: 100%;
}

.content-proyectos{
  padding-top: 30px;
  margin-left: 20px;
  flex-basis: 50%;
  text-align: center;
  margin: 10px;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
}

.content-proyectos h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.content-proyectos p {
  font-size: 16px;
  line-height: 2.0;
  text-align:justify;
  margin: 40px;
}

@media (max-width:768px){
  .proyecto-div{
    display: flex;
    flex-direction: column-reverse;
  }
  .proyecto-div h1{
    font-size: 1.5rem;
  }
  .proyecto-div p{
    font-size: 14px;
    text-align: justify;
    margin-left: 6px;
    margin-right: 6px;
  }
  .images-proyectos{
    padding: 20px;
  }
.images-proyectos img{
 width: auto; 
 height: auto;
}
}
.icon-section {
  width: auto;
  padding-right: 100px;
  padding-left: 100px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
}

.icon-box {
  text-align: center;
}

.icon {
  font-size: 36px;
  color: black;
  margin-bottom: 10px;
}
.icon-section p{
  padding-top: 20px;
  font-size: 16px;
  color: white;
  margin: 0;
  font-weight: bold;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.icon-section img{
  width: 72px; 
  height: 72px;
}

@media (max-width: 952px){
  .icon-section{
    padding-left: 10px;
    padding-right: 10px;
  }
  .icon-box{
    padding-right: 10px;
  }
}
@media (max-width: 768px){
  .icon-section{
    flex-direction: column;
  }  
  .icon-box{
    padding-bottom: 20px;
  }
  .icon-section img{
    width: 70px;
    height: 70px;
  }
}