@import url("main.css");/*Import de la page de référence (header, nav, footer,...)*/

body{
    background:white;
}
#bg{
    width:100%;
    margin: auto;
}
#imgBackground{
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    margin: auto;
}

.jumbotron{
    width: 80%;
    background-color: rgba(51,51,51,0.8);
    color:white;
    border-radius: 20px;
    
    margin:auto;
    margin-bottom: -100px;
    position: relative;
    top: -200px;
    padding:10px 0 10px 0;
    
    animation-name: animationBlocTxt;
    animation-duration: 3s;
}
@keyframes animationBlocTxt{
    0%{
        top:200px;
    }
    100%{
        top:-200px;
    }
}
    
.jumbotron h1{
    text-align: center;
    margin:20px;
}
.jumbotron hr{
    height: 1px;
    width:70%;
    background-color:white;
}

#accesDirect{
    margin:50px 0 50px 0;
    padding:0;
    display: block;
    width: 100%;
    text-align: center;  
}


#accesDirect .card{
    border:0;
    background-color: rgba(51,51,51,0);
    display: inline-block;
    margin: 20px 2% 0 2%;
}
#accesDirect .card-title{
    color:white;
}
.modal-title{
    color:black;
}

#accesDirect .card img{
    /*Images identiques en taille*/
    border-radius: 50%;
    border:5px gray solid;
    height:150px;
    width: 150px;
    margin-bottom: 20px;
}

#accesDirect #card1, #accesDirect #card3{
    /*Couleur de bordure d'images*/
    border-color: rgb(90,160,100);
}
#accesDirect #card2{
    border-color: rgb(60,146,190);
}
.accesDirectPlus{
    position: absolute;
    left:45px;
    opacity: 0;
    transition:0.5s;
}
.accesDirectPlus:hover{
    opacity:0.8;
}

@media screen and (max-width : 700px)
{
    .jumbotron{
        top:-50px;
        width: 100%;
        padding-left:0;
        padding-right: 0;
        text-align:justify;
    }
    @keyframes animationBlocTxt{
        0%{
            top:200px;
        }
        100%{
            top:-50px;
        }
    }   
}

.loadingEvent .jumbotron{
    animation:0;
}

