
/*Pour la banniere autre que l'accueil*/
.wrapper-training{ /*banniere-inferieur*/
    width: 100%;
    height:100%;
    overflow: hidden;
    position: relative;
    background-color: rgb(10, 158, 226,0.1);
   /* border: 1px solid red;*/
}
/**/
.wrapper-training > div{
    width: 100%;
    height: 100%;
    position:absolute;
    animation: animate 25s infinite;
    opacity: 0;
    box-sizing: cover;
    -webkit-box-sizing: cover;
    background-size: cover;
    background-position: center center;
}


.wrapper-training > div:nth-child(2){
    animation-delay: 5s;
}
.wrapper-training > div:nth-child(3){
    animation-delay: 10s;
}
.wrapper-training > div:nth-child(4){
    animation-delay: 15s;
}
.wrapper-training > div:nth-child(5){
    animation-delay: 20s;
}
.wrapper-training > div:nth-child(6){
    animation-delay: 25s;
}

@keyframes animate{
    10%{
        opacity: 1;
    }
    20%{
        opacity: 1;
    }
    30%{
        opacity: 0;
    }
    40%{
        transform: scale(1.2);
    }
    
}