/*
* ANIMATION CHARGEMENT 
*/
.chargement {
    font-size: 30px;
    font-family: 'Archivo Narrow',Helvetica,Arial,Lucida,sans-serif;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}
.chargement span {
    display: inline-block;
    margin: 0 -0.075em;
    -webkit-animation: animation-chargement 0.9s infinite alternate;
    animation: animation-chargement 0.9s infinite alternate;
}
.chargement span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.chargement span:nth-child(3) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.chargement span:nth-child(4) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.chargement span:nth-child(5) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.chargement span:nth-child(6) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.chargement span:nth-child(7) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
.chargement span:nth-child(8) {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}
.chargement span:nth-child(9) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
.chargement span:nth-child(10) {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

@-webkit-keyframes animation-chargement {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@keyframes animation-chargement {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}


/*
* CORRIGER LE BACK-DROP DES MODAL BOOTSTRAP
*/
.modal.show.modal-vue .modal-dialog .modal-content{
    -webkit-box-shadow: 0 0 150px rgba(0,0,0,0.25);
    box-shadow: 0 0 150px rgba(0,0,0,0.25);
}
.modal.modal-vue .modal-dialog:before{
    content:'';
    background: rgba(0, 0, 0, 0.35);
    position: fixed;
    width: 100vw;
    height: 100vh;
    top:0;
    left:0;
    opacity: 0;
}
.modal.show.modal-vue .modal-dialog:before{
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.modal-backdrop{
    z-index: 1;
    opacity: 0;
}
.et_builder_inner_content{
    z-index: inherit;
}
.modal-title{
    font-size: 1.5rem;
}

.modal-profil .liste-autres-infos li{
    padding-left: 15px;
    font-size: 19px;
    font-weight: 400;
    padding-bottom: 3px;;
}
.modal-profil .liste-autres-infos li::marker{
    content:"\f058";
    font-family: "Font Awesome 5 Pro";
    font-size: 18px;
    font-weight: lighter;
    color:#5b790f;
}
.modal-footer button{
    border-radius: 10px;
    background-color: #5b790f;
    color: #fff;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.modal-footer button:hover{
    background-color: #00187e;
    color: #fff;
}

/*
* LISTE ÉQUIPE
*/
.liste-equipe{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 80px;
}

.liste-equipe .profil-equipe{
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    padding: 10px;
    min-width: 200px;
}
.liste-equipe .profil-equipe .profil-apercu{
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 200px;
    -webkit-transition: 0.2s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.liste-equipe .profil-equipe .profil-apercu:hover .photo img{
    -webkit-filter: blur(3px);
    filter: blur(3px);
}
.liste-equipe .profil-equipe .profil-apercu:hover:before{
    content:"\f055";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 30px;
    z-index: 10;
    color:#fff;
    margin-left: 75px;
    margin-top: 75px;
}
.photo img{
    border-radius: 10px;
    -webkit-box-shadow: 0px 12px 15px -17px rgba(0,0,0,0.3);
    box-shadow: 0px 12px 15px -17px rgba(0,0,0,0.3);
}
.nom{
    margin-top: 5px;
    margin-bottom: 0px;
    padding-bottom: 1px;
    font-weight: bold;
    color: #00187E;
}
.poste{
    font-style: italic;
}

.liste-equipe p.nom{
    margin-top: 5px;
    margin-bottom: 0px;
    padding-bottom: 1px;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.3em;
}
.liste-equipe h3.nom{
    font-weight: 600;
    font-size: 33px;
    padding-bottom: 0px;
}

.liste-equipe .biographie{
    color: #666;
    font-size: 18px;
    font-weight: 300;
    text-align: justify;
}



@media screen and (max-width: 992px){

.liste-equipe{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
    
  .liste-equipe .profil-equipe{
    min-width: 250px;
}
.liste-equipe .profil-equipe .profil-apercu{
    min-width: 250px;
}
.liste-equipe .profil-equipe .profil-apercu:hover:before{
    margin-left: 100px;
    margin-top: 100px;
}
}






/*
* SERVICE > PROFIL ÉQUIPE
*/

.liste-services .profil-equipe > a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.liste-services .profil-equipe .profil-apercu .photo{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
    margin-right: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.liste-services .card{
    border-radius: 10px;
}
.liste-services .card-header:first-child {
     border-radius: 10px;
}
.onglet-service:hover .card-header{
    background-color: #fff;
    color:#00187e;
    font-weight: bold;
}
.onglet-service .card-header{
    padding: 1rem 1rem;
    border-radius: 10px;
}

#profil_apercu_503{
    display:none!important;
} 