/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 20/04/2022, 08:44:37 AM
    Author     : FELIPE
*/
.banner{
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 70vh;
    background: transparent;
   }

   .banner img{
    width: 100%;
    height: 70vh;
    margin: 0px;  
    object-fit: cover;
    object-position: center;
   }

.banner ul{
    padding: 0px;
    display: flex;
    width: 500%;
    animation: cambio 20s infinite;
}

.banner li{
   width: 100%;
   list-style: none;
}

.conteiner__nav
{
    margin-top: -650px;
    position: absolute;
    margin-left: 100px
}

@keyframes cambio{
    
    0%{ margin-left:0;}
    10%{ margin-left:0;}
    
    15%{ margin-left:-100%;}
    25%{ margin-left:-100%;}
    
    30%{ margin-left:-200%;}
    40%{ margin-left:-200%;}
    
    45%{ margin-left:-300%;}
    55%{ margin-left:-300%;}

    60%{ margin-left:-400%;}
    70%{ margin-left:-400%;}
}
