/* estilos para el banner y video */
.banner-img-movil{
  display: none;
  position: absolute;
  margin-top: 0;
  z-index: -30;
}

.banner-img-movil-about{
  position: absolute;
  margin-top: 0;
  z-index: -30;
}

.bg-video{
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: 75px;  
  background-image: url(https://metforja.com/assets/img/br-1.png);
  z-index: -1;
}

.bg-video img{
  width: 100%;
}

video{
    
  position: fixed;
  min-width: 100%;
  min-height: 90%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -2;
}

.banner{
    
  width: 100%;
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  
  
}
.banner-text{
  padding-left: 10%;
  
}

.banner-text h2{
  color: white;
  text-decoration: underline orangered;   
  font-family: 'Bebas Neue', cursive;
  font-size: 8rem;
  letter-spacing: 8px;
  display: flex;
  
}





/* estilos para MAIN PROCES ---------------------------------------------------*/

.pleca{    
  background-image: url(https://metforja.com/assets/img/fondo-serv.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 200px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}


/* botones hotizontales de los procesos */


.btn-mainproces {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #f5f5f5;
}

.btn-mainproces img {
  height: 180px;
  width: 180px;
  margin: 10px;
  transition: transform 0.2s ease-in-out;
}

.btn-mainproces img:hover {
  transform: scale(0.9);
}




/* SLIDER ------------------------------------------------------------------------*/
.section-slider{
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
}

.container-all{
  position: relative;
  max-width: 1190px;
  width: 100%;
  /* overflow: hidden te sirve para que si alguna imagen sea mas grande la recorte al tamaño */
  overflow: hidden;
}

.slide{
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: all 600ms;
  animation-name: autoplay;
  animation-duration: 25s;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}

.item-slide{
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 0;
  max-width: 100%;
}

.pagination{
  position: absolute;
  bottom: 20px;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.pagination-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid white;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: rgb(255, 255, 255, 0.5);
  margin: 0 10px;
  text-align: center;
  transition: all 400ms;
}

.pagination-item:hover{
  transform: scale(2);
}

.pagination-item img{
  display: inline-block;
  max-width:  none;
  height: 100%;
  transform: scale(1);
  opacity: 0.5;
  transition: all 300ms;
}

.pagination-item:hover img{
  opacity: 1;
  transform: scale(1);
}

input [id="1"]:checked ~ .slide{
  animation: none;
  transform: translate3d(0, 0, 0);
}

input[id="1"]:checked ~ .pagination .pagination-item[for="1"]{
  background: #fff;
}

input [id="2"]:checked ~ .slide{
  animation: none;
  transform: translate3d(calc(-100% * 1), 0, 0);
}

input[id="2"]:checked ~ .pagination .pagination-item[for="2"]{
  background: #fff;
}


input [id="3"]:checked ~ .slide{
  animation: none;
  transform: translate3d(calc(-100% * 2), 0, 0);
}

input[id="3"]:checked ~ .pagination .pagination-item[for="3"]{
  background: #fff;
}

input [id="4"]:checked ~ .slide{
  animation: none;
  transform: translate3d(calc(-100% * 3), 0, 0);
}

input[id="4"]:checked ~ .pagination .pagination-item[for="4"]{
  background: #fff;
}

input [id="5"]:checked ~ .slide{
  animation: none;
  transform: translate3d(calc(-100% * 4), 0, 0);
}

input[id="5"]:checked ~ .pagination .pagination-item[for="5"]{
  background: #fff;
}

@keyframes autoplay{
  20%{
    transform: translate3d(calc(-100% * 0), 0, 0);
  }
  40%{
    transform: translate3d(calc(-100% * 1), 0, 0);
  }
  60%{
    transform: translate3d(calc(-100% * 2), 0, 0);
  }
  80%{
    transform: translate3d(calc(-100% * 3), 0, 0);
  }
  100%{
    transform: translate3d(calc(-100% * 4), 0, 0);
  }
}

    
  /*----------DEVELOPEMENT----------*/

.developement{
  background-color: #f5f5f5;
  width: 100%;
  text-align: center;
}


/*----------OUR CUSTOMERS----------*/


.clientes{
  background-color:#f5f5f5;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.clientes-int{
  padding: 35px 35px;
}

.clientes-int img{
  width: 100%;
}




/* pie de pagina -------------- */

/* Estilo del pie de página */
footer{
  background: black;
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border: none;
  
    
}
.pielogo{
  padding-top: 60px;
  padding-left: 30px;
}

.c-texto-pie{
  color: #ccc;
  padding-left: 40px;
  margin: 0 30px 0 30px;
}

