/**block-avant-propos liste-personnels horaire-contenue separation-horaire videotutoriels**/ 
@import url('./listfont.css');
:root{
	--primary-color:#003;
	--text-color:white;
	--roboto-Black:Blacks, sans-serif;
    --roboto-Light:Lights, sans-serif;
    --roboto-CondensedItalic:CondensedItalic;
}
*{
    font-family:var(--roboto-Light);
    padding:0;margin:0;
}
li:first-letter,
ul:first-letter,
ol:first-letter,
p:first-letter,
a:first-letter,
b:first-letter,
u:first-letter,
i:first-letter,
div:first-letter,
section:first-letter,
article:first-letter,
aside:first-letter,
main:first-letter,
input:first-letter,
button:first-letter,
body:first-letter,
title:first-letter,
meta:first-letter,
span:first-letter,
h1:first-letter,
h3:first-letter,
h4:first-letter,
h5:first-letter,
h6:first-letter,
h2:first-letter
{
    text-transform:capitalize;
}
body{
    background-color:#FFFFFF;
    overflow-x: hidden;
}
/**HEADER**/
header{
    background-color: rgba(253, 253, 253, 0.666);
    display: flex;
    padding: 20px;
    box-shadow: 0px 0px 24px black;
}
header > img{
    width: 50px;
    height:50px;
}
header > ul li > div{
    position: relative;
    display: flex;
    flex-direction:column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}
header > ul li > div:hover >ul{
    display: block;
}

header > ul li > div img{
    width: 50px;
    height:50px;
    border-radius: 50%;
}
header > ul li > div > ul{
    display:none;
    margin-top: 150px;
    z-index: 1000;
    position:absolute;
    background-color: white;
    list-style:none;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgb(0, 0, 0,.2);
}
header > ul li > div > ul a{
    color:black;
    margin-bottom: 10px;
}
header > ul li > div > ul a li{
    margin-bottom: 10px;
    font-weight: 900;
}
header > ul li > div > ul a li:hover{
    color:blue;
}
header > ul li > div > ul::after{
    position: absolute;
    top:-20px;
    left: 50px;
    border-left: 1px solid;
    border-top: 1px solid;
    border-right: 1px solid;
    background-color: white;
    content:"";
    padding: 5px;
    width: 2px;
    height: 2px;
    border-top-left-radius:40px;
    border-top-right-radius:40px;
}
header >ul{
    width: 100%;
    display: flex;
    align-content:space-between;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    list-style: none;
}
header >ul >a li{
    font-family: var(--roboto-Black);
    color:black;
}

header >ul li.active{
    color:skyblue
}
header >ul >a{
    color:blue;
    cursor: pointer;
}
header >ul >a >li.active:hover{
    font-size:1.5rem;
}
header >ul >a >li:hover{
    color: red;
    animation: floatTexte 1s ease-in-out infinite;
    font-size:1rem;
}

@keyframes floatTexte {
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(.5rem);
    }
    100%{
        transform: translateY(0);
    }
}
a{text-decoration:none !important;outline:none !important;}
body > header > i{
    display: none !important;
}

/***MAIN***/
/**BANNER**/
.classeBannier{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.classeBannier::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100vh;
    background-color: #000000b6;
    left:0px;
    top:0;
}
.section{
    width: 30%;
    height: 6vh;
    position: relative;
    display: flex;
    overflow: hidden; 
}
.section > div{
    position: relative;
    width: 50%;
    overflow: hidden;
}
.section div:nth-child(1) h2{
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: yellow;
    -webkit-text-fill-color:transparent;
    left: 100%;
}
.section div:nth-child(2) h2{
    color: red;
}
.section > div:nth-child(1) h2{
    
}
@keyframes ChageCouleur1 {
    0%{
        -webkit-text-stroke-color: white;
        color: white;        
    }
    100%{
        -webkit-text-stroke-color: yellow;
        color: red;
    }
}
.section > div h2{
    position: absolute;
    top: 0;
    white-space: nowrap;
    font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
    animation: animateScrollinText 6s linear infinite, ChageCouleur1 2s linear infinite;
}
@keyframes animateScrollinText  {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}

.banner1,.banner2,.banner3,.banner4,.banner5{
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.text-box{
    width: 100%;
    position: absolute;
    top: 400px;
    color: white;
    animation: textup 12s linear infinite;
    transform: translateY(100px);
    justify-content: center;
    align-items: center;
    align-content: center;
    display: flex;
    flex-direction: column;
    justify-items: center;
}
.text-box h1{
    margin-bottom: 20px;
    font-family: var(--roboto-Black);
}
.text-box p{
    font-size: 14px;
    line-height: 18px;
    margin-top: 40px;
}
.text-box span{
    height: 5px;
    width: 200px;
}
.text-box1 span{
    background-color: red;
}
.text-box2 span{
    background-color: yellow;
}
.text-box3 span{
    background-color:blue;
}
.text-box4 span{
    background-color:lightskyblue;
}
.banner1{
    animation: Slide1 12s linear infinite;
}
.banner2{
    animation: Slide2 12s linear infinite;
}
.banner3{
    animation: Slide3 12s linear infinite;
}
.banner4{
    animation: Slide4 12s linear infinite;
}

@keyframes Slide1 {
    0%{
        visibility: visible;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: hidden;
    }
}
@keyframes Slide2 {
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: visible;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: hidden;
    }
}
@keyframes Slide3 {
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: visible;
    }
    100%{
        visibility: hidden;
    }
}
@keyframes Slide4 {
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: visible;
    }
}
@keyframes textup {
    10%{
        transform: translateY(0px);
    }
}
.text-box1{
    animation-delay: 0s;
}
.text-box2{
    animation-delay: 3s;
}
.text-box3{
    animation-delay: 6s;
}
.text-box4{
    animation-delay: 9s;
}

.header-titre{
    display:flex;
    flex-direction: row;
}
.header-titre img{
    width: 100px;
    height:100px;
}

div.information-Isp{
    width: 100%;
    height:550px;
    position: absolute;
    z-index: 9999;
    left: 0px;
    top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    align-content: center;
}
div.information-Isp .header-titre{
    display: flex;
    flex-direction: row;
}
div.information-Isp .header-titre h1{
    color: var(--text-color);
    font-family:var(--roboto-Black);
    text-transform:uppercase;
    font-size: 4rem;
    margin-left: 20px;
}
div.information-Isp .header-titre h2{
    color: var(--text-color);
    font-family:var(--roboto-Black);
    text-transform:capitalize;
    font-size: 1rem;
    margin-left: 20px;
}
div.information-Isp .header-titre h2 span{
    text-transform: lowercase;
    font-family: var(--roboto-Black);
}

.box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-items:center;
    margin-top: 80px;
    width: 100%;
    height: 100vh;
    top: 0px;
    position: absolute;
    z-index: 1;

}
.box .logoIsp{
    width: 100%;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    margin-top: 50px;
}
.box .logoIsp img{
    width: 80px;
    height: 100px;
    margin-top:-40px;
    transition: .5s;
    animation: ImageChangeLogo 2s linear infinite;
}
@keyframes ImageChangeLogo {
    0%{
        background-image: none;
    }
    100%{
        background-image: url(../icons/isp.png);
        background-repeat: no-repeat;
        background-size: 80px 100px;
    }
}
.box .titreInstitut{
    margin-top: -500px;
    display: flex;
    flex-direction:column;
    justify-items:center;
    justify-content: center;

}
.box .titreInstitut h1{
    transform: translate(0%,0%);
    width: 100%;
    text-align: center;
    font-size: 4rem;
    font-family: var(--roboto-Black);
    text-transform: uppercase;
}
.box .titreInstitut h1:nth-child(1){
    /*background-color: #f3f3f3;*/
    -webkit-text-stroke-width:10px;
    -webkit-text-stroke: 2px;
    -webkit-text-stroke-color: white;
    -webkit-text-fill-color:transparent;
    overflow: hidden;
    z-index: 2;
    /*transition: 0.5s;*/
    -webkit-clip-path:polygon(0 0,100% 0,100% 0,0 0);
        clip-path:polygon(0 0,100% 0,100% 0,0 0);
    animation: ShowTextHidden2 3s linear infinite;
}
.box .titreInstitut h1:nth-child(2){
    /*background-color: #f3f3f3;*/
    color:white;
    overflow: hidden;
    z-index: 2;
    margin-top:-75px;
    /*transition: 0.5s;*/
    /*-webkit-clip-path:polygon(0 0,100% 0,100% 0,0% 100%);
    clip-path:polygon(0 0,100% 0,100% 0,0% 100%);*/
    
    -webkit-clip-path:polygon(0 0,100% 0,100% 100%,0% 100%);
    clip-path:polygon(0 0,100% 0,100% 100%,0% 100%);
    animation: ShowTextHidden 3s linear infinite;
}
@keyframes ShowTextHidden {
    
    10%{
        /*-webkit-clip-path:polygon(0 0,100% 0,100% 100%,0% 100%);
        clip-path:polygon(0 0,100% 0,100% 100,0% 100%);*/
        
        -webkit-clip-path:polygon(0 0,100% 0,100% 0,0 0);
        clip-path:polygon(0 0,100% 0,100% 0,0 0);
    }
}
@keyframes ShowTextHidden2 {
    
    10%{
        /*-webkit-clip-path:polygon(0 0,100% 0,100% 100%,0% 100%);
        clip-path:polygon(0 0,100% 0,100% 100,0% 100%);*/
        
        -webkit-clip-path:polygon(0 0,100% 0,100% 100%,0% 100%);
        clip-path:polygon(0 0,100% 0,100% 100%,0% 100%);
    }
}
.box h1:nth-child(2):hover{
    -webkit-clip-path:polygon(0 0,100% 0,100% 100%,0% 100%);
    clip-path:polygon(0 0,100% 0,100% 100,0% 100%);
}
.box h1:nth-child(1):hover ~ h1{
    -webkit-clip-path:polygon(0 0,100% 0,100% 0,0 0);
    clip-path:polygon(0 0,100% 0,100% 0,0 0);
    /*animation: ShowTextHidden 3s linear infinite;*/
}
/**FIN BANNER**/







/** A PROPOS***/
.block-avant-propos{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}
.block-avant-propos h2{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 10px;
    font-size: 1.6rem;
    margin-top: 50px;
}
.block-avant-propos > div.header-a-propos{
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}
.block-avant-propos > div.header-a-propos > div{
    background-color: #003;
    padding: 3px;
    width: 200px;
    border-radius:30px;
}
.block-avant-propos h1{
    display: flex;
    font-size: 1.5rem;
    font-family: var(--roboto-Black);
    margin-bottom: 50px;
}
.block-avant-propos h1 p{
    font-family: var(--roboto-Black);
    position: relative;
    margin-left: 10px;
    padding-left: 10px;
    padding-right:10px;
}
.block-avant-propos h1 p::after{
    position: absolute;
    left: 0px;
    content: attr(data-liste);
    width: 100%;
    height: 100%;
    background-color: #003;
    color: white;
    padding-left:10px;
    padding-right:10px;
    overflow:hidden;
    animation: AnimationScrollignLeft 2s ease-in-out infinite;
}
.historique-a-propos > p{
    font-style: normal;
}
div.departements-apropos{   
    width: 100%;
    background-color: white;
}
div.departements-apropos ul{
    display: grid;
	grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); 
	grid-gap:0.5rem;
	padding:5px;
    grid-column: auto;
    list-style: none;
    text-align:left;
}
div.departements-apropos > ul > li:hover{
    box-shadow:1px 4px 10px aqua;
}
div.departements-apropos ul h2{
    font-size:1.2rem;
    letter-spacing:0rem;
    margin-top:0px;
    color: blue;
    font-style: normal;
    text-align: left;
}
div.departements-apropos ul h3{
    font-size:1rem;
    padding:10px;
    color:red;
}
div.departements-apropos ul p{
    font-size:1rem;
    padding: 10px;
    text-align:left;
    font-style:normal;
}
div.departements-apropos ul li ul{
    padding-left: 25px;
    padding-bottom:20px;
}
div.departements-apropos ul li ul li{
    font-size: .8rem;
    list-style:circle;
    text-decoration: none;
    font-style: normal;
    font-weight:bold;
    padding-right:10px;
}
div.departements-apropos > ul > li{
    background-color: white;
    border:1px solid aqua;
    border-radius: 10px;
    padding-top:0px;
}
.mission-appropos{
    padding-left: 20px;
}
.mission-appropos li{
    list-style:none;
    list-style-position: inside;
    margin-bottom:10px;
    position: relative;
    padding-left: 60px;
    box-shadow: 2px 3px 5px red;
    border-radius: 20px;
    padding:20px;
    padding-top:30px;
}
.mission-appropos li:before{
    content: "";
    position: absolute;
    width: 20px;
    padding:10px;
    left: -5px;
    top:5px;
    background-color:red;
    margin-left: 10px;
    border-radius:10px;
}
.creation-evolution{
    padding: 20px
}
.creation-evolution ul{
    list-style:none;
}
.creation-evolution ul li{
    display:block !important;
    border-bottom:1px solid gray;
    margin-bottom:10px;
    padding-bottom:20px;
}
.creation-evolution ul li:last-child{
    border-bottom:none;
}
.creation-evolution ul li > b{
    font-size: 2rem;
    font-style: normal;
    width:200px !important;
    font-family: Arial, Helvetica, sans-serif;
    background-color: aqua;
    border-radius: 10px;
    padding-left:10px;
    padding-right:10px;
}
.creation-evolution ul li > span{
    font-style: normal;
}
@keyframes AnimationScrollignLeft {
    0%,100%{
        width:100%;
        
    }
    50%{
        width:0%;
    }
}
.block-avant-propos > div img{
    width: 50px;
    margin: 20px;
}
.historique-a-propos{
    font-size: 1.4rem;
    text-align: justify;
    padding: 50px;
    font-style: italic;
    padding-left: 200px;
    padding-right: 200px;
}
ul.liste-personnels{
    list-style: none;
    display: grid;
	grid-template-columns:repeat(auto-fit,minmax(450px,1fr)); 
	grid-gap:1.5rem;
	padding:5px;
}
.liste-personnels li{
}
.liste-personnels li > div{
    display:flex;
}
.liste-personnels li > div > div:nth-child(1){
    position: relative;
    width: 150px;
    height: 150px;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.liste-personnels li > div > div:nth-child(2){
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    width: 400px;
    padding-top: 20px;
    padding-left: 10px;
}
.liste-personnels li > div >div img{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:10px;
    transition: 0.5s;
    z-index:calc(1+ var(--i));
    opacity: calc(1 - (0.2_ var(--j)));
}
.liste-personnels li > div:hover >div img{
    
    transform: rotate(-30deg) skew(25deg) translateY(calc(15px * var(--i))) translateX(calc(-15px * var(--i)));
    box-shadow: -20px 20px 20px rgb(0, 0, 0,0.25);
}
.liste-personnels li > div:hover div:nth-child(2){
    background-color: white;
    border-radius: 20px;
    box-shadow: 3px 10px 40px white;
}
.liste-personnels li > div h3{
    padding-left: 20px;
    padding-top: 10px;
    text-decoration: none;
    font-size: 1rem;
    text-align: left;
    font-family:var(--roboto-CondensedItalic);
}
.liste-personnels li > div p{
    padding: 20px;
}
/***FIN***/


/**CORPS PROFESSORAL**/
.corp-professoral{
    width: 100%;
}
.corp-professoral > h1{
    text-align: center;
    font-family:var(--roboto-Black);
    text-transform: uppercase;
}
.corp-professoral > div{
    display: grid;
	grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); 
	grid-gap:0.5rem;
	padding:5px;
}
.corp-professoral > div a{
    cursor:pointer;
}
.corp-professoral > div div.corps{
    width:auto;
    cursor:pointer;
    padding: min(8%,1rem);
    box-shadow: 0px 2px lightgray;
    margin: 20px;
    background-color: white;
    background-image:url(../icons/isp.png);
    background-repeat: no-repeat;
    background-size:25% 50%;
    background-position:50%;
    position:relative;
    border-radius:10px;
}
.corp-professoral > div div.corps:after{
    background:#000000c9;
    content: "";
    width: 100%;
    height:100%;
    position:absolute;
    top:0px;
    left:0px;
    border-radius:10px;
}
.corp-professoral > div div.corps h2{
    position: relative;
    z-index:9;
    color:white;
    font-size:1rem;
    text-align:center;
}
.corp-professoral > div div.corps h1{
    position: relative;
    z-index:9;
    color:white;
    font-size:2rem;
    text-align:center;
    border-radius:50%;
    margin-top:20px;
}
/*/AFFICHAGE PDG*/
.affichage_fichier_cors{
    display:none;
    position:fixed;
    z-index:99999;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width: 100%;
    height:100%;
}
.affichage_fichier_cors > div{
    position:relative;
    background-color:black;
}
.affichage_fichier_cors > div span{
    color:white;
    font-size:3rem;
    position:absolute;
    top:15px;
    left:100px;
    cursor:pointer;
}
.affichage_fichier_cors > div span:hover{
    color:rgb(48, 45, 45);
}
.affichage_fichier_cors h1{
    padding: 20px;
    color:white;
    text-align:center;
    text-transform:uppercase;
}
.affichage_fichier_cors iframe{
    width: 100%;
    height: 100%;
    margin-top:-40px;
}

/**EVENEMENT**/
.actualisteHA{
    margin-top: 150px;
    text-align: center;
    font-family: var(--roboto-Black);
    text-transform:uppercase;
    padding-top:30px;
    padding-bottom:30px;
    border-bottom:1px solid lightgray;
}
.actualisteHA:last-child{
    border-bottom:none;
}
.evenement-block > div > h2{
    font-family: var(--roboto-Black);
    font-size:2rem;
}
.evenement-block > div > p{
    font-family: var(--roboto-CondensedItalic);
    margin-top: 20px;
    margin-bottom:20px;
}
.allvid{
    position: relative;
    overflow: hidden;
    height: auto;
    padding:0px;
    background-color: #003;
    border-radius: 20px;
}
.allvid video{
    width: 500px;
    margin-bottom:-10px;
}
.allvid .controls{
    position: absolute;
    bottom:0;
    width: 100%;
    padding-bottom:10px;
    display:flex;
    transform: translateY(100%) translateY(0px);
    transition: all 0.2s;
}
.allvid:hover .controls{
    transform: translateY(0);
}
.buttons{
    display: flex;
}
.buttons button{
    background: rgba(255, 0, 0, 0.697);
    width: 50px;
    height:50px;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    border-radius:50%;
    font-size: 1.5rem;
    border: 0;
    outline:0;
    cursor: pointer;
    color: #FFF;
    margin-left:10px;
}



/*.buttons #play-pause::before{
    content: '\f144';
    font-family: 'Font Awesome 5 free';
    width: 30px;
    height: 30px;
    display: inline-block;
    font-size: 28px;
    color: #FFF;
}*/

div.evenement-block{
    display: flex;
    padding: 50px;
}
div.evenement-block div.ligne{
    height: auto;
    background: skyblue;
    padding: 3px;
    border-radius: 20px;
    margin-left: 50px;
    margin-right: 50px;
}
.evenementAvenir{
    display: flex;
    margin-bottom: 30px;
}
.evenementAvenir .imageEvenements{
    position: relative;
    width: 250px;
    height: 170px;
    border-radius: 10px;
    overflow: hidden;
}
.evenementAvenir .imageEvenements::after{
    background: rgba(0, 0, 51, 0.607);
    position: absolute;
    z-index: 1;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    right:0;
}
.evenementAvenir .imageEvenements img{
    width: 100%;
    height: 200px;
}
.date-infos-evenements{
    display: flex;
    flex-direction:column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    top: 5px;
    left:5px;
    z-index: 2;
    border: 1px solid white;
}
.date-infos-evenements p{
    color: white;
    margin-top: 5px;
    font-family: var(--roboto-Black);
}
.date-infos-evenements h3{
    color: yellow;
    font-size: 2rem;
    font-family: var(--roboto-Black);
}
.date-infos-evenements span{
    background-color: red;
    color: white;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 2px;
    padding-bottom: 2px;
    font-family: var(--roboto-Black);
}

.contenus-evenements{
    padding: 10px;
    width: 400px;
}
.contenus-evenements h2{
    font-family: Condensed;
}
.contenus-evenements p{
    text-align: justify;
    margin-bottom: 20px;
    margin-top: 10px;
    font-family: var(--roboto-CondensedItalic);
    color: #777;
    font-size: 1rem;
}
.contenus-evenements article{
    background-color: white;
    border-radius: 10px;
    padding:5px;
    width:auto;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: -10px;
}
.contenus-evenements article span{
    margin-left: 10px;
    border-left: 5px solid skyblue;
    width: 100%;
    padding: 5px;
    background-color: red;
    color: white;
    font-weight: bold;
}
.contenus-evenements .voirePlusShare{
    display: flex;
    flex-direction: column-reverse;
}
.contenus-evenements .voirePlusShare ul{
    list-style: none;
    display: flex;
    margin-left: 20px;
}
.contenus-evenements .voirePlusShare ul li{
    margin-left: 10px;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    background-color: lightgray;
    padding: 3px;
    border-radius:50%;
    font-size: 1rem;
    justify-content: center;
    justify-items:center;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.contenus-evenements .voirePlusShare ul li:nth-child(1):hover{
    background-color: blue;
    color:white;
}
.contenus-evenements .voirePlusShare ul li:nth-child(2):hover{
    background-color: rgb(230, 77, 92);
    color:white;
}
.contenus-evenements .voirePlusShare ul li:nth-child(3):hover{
    background-color: rgb(40, 124, 40);
    color:white;
}
.contenus-evenements .voirePlusShare ul li:nth-child(4):hover{
    background-color: skyblue;
    color:white;
}
.contenus-evenements .voirePlusShare ul li:nth-child(5):hover{
    background-color:rgb(51, 51, 238);
    color:white;
}
.contenus-evenements .voirePlusShare ul li:nth-child(6):hover{
    background-color: red;
    color:white;
}
.contenus-evenements .voirePlusShare ul li:nth-child(7):hover{
    background-color: red;
    color:white;
}
.voirePlusShare > a {
    border: 1px solid red;
    width: 100px;
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    display: flex;
    color:red;
}
.voirePlusShare > a:hover{
    color:blue;
    border-color: blue;
}
.voirePlusShare > a span{
    margin-right: 10px;
}






/**DEPARTEMENT**/
.departements{
    padding:0 150px;
}
.departements > h2{
    font-family: var(--roboto-Black);
    margin-top: 50px;
    font-size: 2rem;
}
.departements > div {
    display:grid;
	grid-template-columns:repeat(auto-fit,minmax(25rem,1fr)); 
	grid-gap:0.5rem;
	padding:10px;
}
.departements > div > a div{
    background:#fff;
	margin:2px;
	height:200px;
	width:auto;
	padding:20px;
	box-shadow:0 0 5px lightgray;
	border-radius:15px;
    overflow: hidden;
    position: relative;
}
.departements > div > a div::after{
    position: absolute;
    top:0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 0.736);

}
.departements > div > a div:hover{
    box-shadow: 0 5px 5px #03a9f4;
}
.departements > div > a div:hover img{
    width: 120%;
    height: 120%;
    transition: .4s;
}
.departements > div > a div img{
    position: absolute;
    inset-block-start:0;
    transition: .4s;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    block-size: 100%;
}
.departements > div > a div h2{
    color: var(--text-color);
    z-index: 10;
    position: relative;
    display: block;
    font-family:var(--roboto-CondensedItalic);
    font-size: 2rem;
}
.departements > div > a div h2 i{
    color:yellow;
    display: flex;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    margin: 10px;
}
.departements > div > a div h3{
    position: relative;
    margin-top:10px;
    z-index: 10;
    color:white;
    background-color: rgba(255, 255, 255, 0.181);
    padding: 8px;
}
/** FIN DEPARTEMENTS**/
/***DEPARTEMENT BLOCK***/
.headerDepartementBloc{
    width:100%;
    height:250px;
    position:relative;
}
.headerDepartementBloc::before{
    width:100%;
    height:250px;
    position:absolute;
    padding:0px;
    content:"";
    z-index:9;
    left:0;
    top:0;
    background-color: rgba(0, 0, 0, 0.705); 
}
.headerDepartementBloc > div{
    width:100%;
    height:250px;
    z-index: 999;
    position:absolute;
    top:0;
    left:0;
    display:flex;
    flex-direction:column;
    justify-content: center;
    justify-items:center;
    align-content: center;
    align-items: center;
}
.headerDepartementBloc > div h2{
    color:white;
    font-family: var(--roboto-Black);
    font-size:2rem;
}
.headerDepartementBloc > div h2 i{
    color:yellow;
    margin-right:20px;
}
.headerDepartementBloc > div h3{
    color:white;
    font-family: var(--roboto-Black);
    font-size:1.4rem;
    margin-top: 20px;
    border-top:5px solid white;
    padding-top: 20px;
}
.headerDepartementBloc img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
/*//*AFFICHAGE DEPARTEMENT**/
.departemt-sous{
    display:grid;
	grid-template-columns:repeat(auto-fit,minmax(25rem,1fr)); 
	grid-gap:1rem;
	padding:10px;
}
.headerDepartements{
    text-align: center;
    padding:50px 0;
    font-family: var(--roboto-Black);
    text-transform: uppercase;
}
.card-departement{
    display:flex;
    height: auto;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 1px 5px 15px lightgray;
    position: relative;
}
.imageProfil{
    position: relative;
    width:100%;
    height:200px;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items:center;
    align-content: center;
    background-image: url(../image/images-335.jpeg);
    background-size: cover;
    background-color: #000;
}
.technique .imageProfil{
    background-image: url(../image/IMG-20250308-WA0041.jpg);
}
.imageProfil::after{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:200px;
    background-color: #000000e4;
    content: "";
}
.imageProfil h2{
    position: relative;
    z-index: 2;
    color:white;
    text-align: center;
    font-family: var(--roboto-Black);
    padding:10px;
}
.carde-texte{
    grid-area: text;
    margin-bottom:70px;
}
.statistique-depart{
    display: flex;
    width: 100%;
    background-color:skyblue;
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right:0;
}
.statistique-depart > div{
    display: flex;
    width: 33.33%;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    border-right: 2px solid white;
}
.statistique-depart > div:last-child{
    border-right: none;
}
.statistique-depart > div h3{
    color:white;
    font-family: var(--roboto-Black);
}
.statistique-depart > div  span{
    color:black;
    font-weight: 900;
}
.carde-texte p{
    font-size: 1rem;
    color:black;
    font-style: bolder;
    font-weight:600;
    text-align: justify;
    padding: 20px;
}
.carde-texte ul a{
    color: blue;
}
.carde-texte ul{
    list-style:none;
}
.carde-texte ul a li{
    color: blue;
    font-size: .8rem;
    font-family: var(--roboto-Black);
    background: rgba(211, 211, 211, 0.509);
    padding: 5px;
    margin: 10px;
}
.carde-texte ul > div > h3{
    color:red;
    padding: 10px;
}
.carde-texte ul > div > ul:nth-child(2){
    padding:10px 40px 10px 40px !important;
}
.carde-texte ul > div > ul:nth-child(2) li{
    border-bottom: 1px solid lightgray !important;
    padding:5px 0;
}
.carde-texte ul > div > ul:nth-child(3){
    border:1px solid lightgray;
    margin: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.carde-texte ul > div > ul:nth-child(3) h3{
    background-color:black;
    color:white;
    padding: 10px;
}
.carde-texte ul > div > ul:nth-child(3) li{
    padding:5px;
    position: relative;
    width: 100%;
}
.carde-texte ul > div > ul:nth-child(3) li:before{
    content:"";
    position:absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0);
    transition: 1s;
}
.carde-texte ul > div > ul:nth-child(3) li:hover:before{
    background: rgba(0, 0, 0, 1);
    width:0px;
    height:0px;
    transition: 0s;
}
/***QUELQUES MOTS****/
.actualisteHA2{
    margin-top: -80px;
    text-align: center;
    font-family: var(--roboto-Black);
    text-transform:uppercase;
    padding-top:30px;
    padding-bottom:30px;
}
.informationUsers{
    padding-bottom: 100px;
}
.informationUsers > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    margin-left: 30px;
    margin-right: 30px;
}
.informationUsers > div  img{
    width: 200px;
    height: 200px;
    border-radius: 100%;
}
.informationUsers > div h3{
    margin-bottom: 30px;
    margin-top: 10px;
    font-family: var(--roboto-Black);
}
.informationUsers > div p{
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    background-color: #f8f7f7;
    border-radius: 50px;
    font-family: var(--roboto-Light);
    font-style: italic;
    font-size: 1rem;
    text-align: center;
}
.informationUsers > div p i:first-child{
    color: red;
    margin: 10px;
}
.informationUsers > div p span:last-child{
    color: blue;
    margin-left: 20px;
}
/***FIN***/


/** REBOURS*/
.rebours-historique{
    display:grid;
	grid-template-columns:repeat(auto-fit,minmax(25rem,1fr)); 
	grid-gap:0.5rem;
	padding-left:80px;
    padding-right: 80px;
    padding-bottom:50px;
    background-color: yellow;
    padding-top: 80px;
}
.rebours-historique > div{
    display: flex;
    flex-direction:column-reverse;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-right: 8px solid;
}
.rebours-historique > div:last-child{
    border-right: 0px solid;
}
.rebours-historique > div h2{
    color: blue;
    font-size: 1rem;
}
.rebours-historique > div  span{
    font-size: 2rem;
    font-weight:bold;
    font-family: var(--roboto-Black);
}

/**FOOTER**/
footer{
    width: 100%;
    background-color: rgba(9, 6, 28);
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    color:var(--text-color);
}
footer .logofooter{
    width: auto;
    height: auto;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 20px;
    background:rgb(9, 6, 28);
    margin-top: -20px;
    border-radius:100px 100px 0 0;
}
footer img{
    width: 80px;
    height: auto;
    animation: floatImage 4s ease-in-out infinite;
}
footer  >ul.reseaux-sociaux{
    display: flex;
    list-style: none;
    margin-top: 30px;
    margin-bottom: 40px;
}
footer >ul.reseaux-sociaux li{
    width: 50px;
    height: 50px;
    background-color: yellow;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    border-radius: 50%;
    margin-left: 10px;
    margin-right: 10px;
}
footer > div.footer-informations{
    width: 100%;
    display:grid;
	grid-template-columns:repeat(auto-fit,minmax(25rem,1fr)); 
	grid-gap:0.5rem;
	padding:10px;
}
footer > div.footer-informations ul{
    list-style: none;
    color: var(--text-color);
}
footer > div.footer-informations ul a{
    color: var(--text-color);
}
footer > div.footer-informations ul  li{
    margin-bottom: 10px;
}
footer > div.footer-informations ul li i{
    color: yellow;
    margin-right: 20px;
}
footer > p{
    color: var(--text-color);
    padding: 20px;
}
footer >p span{
    color:yellow;
    margin-left: 10px;
    margin-right: 10px;
}
@keyframes floatImage {
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-.8rem);
    }
    100%{
        transform: translateY(0);
    }
}

/***PAGINATION***/
div.paginationsDivBlock{
    display: flex;
    justify-content: center;
    justify-items:center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.listePaginations{
    position: relative;
    background-color: white;
    padding: 10px 20px;
    display:flex;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgb(0, 0, 0,.2);
}
ul.listePaginations li{
    list-style: none;
    line-height: 50px;
    margin: 0 5px;
    font-family:'Poppins', sans-serif;
    cursor: pointer;
}
ul.listePaginations li.pageNumber{
    width: 50px;
    height: 50px;
    text-align: center;
}
ul.listePaginations li a{
    display: block;
    text-decoration: none;
    color: #777;
    font-weight: 600;
    border-radius: 50%;
}
ul.listePaginations li.pageNumber a{
    display: block;
    text-decoration: none;
    color: #777;
    font-weight: 600;
    border-radius: 50%;
}
ul.listePaginations li.pageNumber.active a,
ul.listePaginations li.pageNumber:hover a{
    background: #333;
    color: #FFF;
}
ul.liste-personnels li:first-child{
    margin-right: 30px;
}

/**MODAL CONNEXION**/
.modalconnexion{
    display:none;
    position: fixed;
    z-index: 9999;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow:hidden;
    background-color: rgb(0, 0, 0,0.5);
}
.content-modal{
    background-color: #F4F4F4;
    margin: 20% auto;
    padding: 20px;
    width: 50%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2),0 7px 20px 0 rgb(0, 0, 0,.17);
    animation-name: modalOpen;
    animation-duration: 1s;
    margin-top:100px;
}
.content-modal h1{
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: var(--roboto-Black);
    color: black !important;
}
.closeModal{
    color: #474343;
    float: right;
    font-size: 30px;
    margin-right:50px;
}
.closeModal:hover,
.closeModal:focus{
    color:#000;
    text-decoration: none;
    cursor: pointer;
}
@keyframes modalOpen {
    from{opacity: 0;}
    to{opacity: 1;}
}
.modalconnexion .content-modal > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content:center;
}
.modalconnexion .content-modal > div form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content:center;
    width: 70%;
}
.modalconnexion .content-modal > div form input{
    outline: none;
    border: 1px solid lightgray;
    padding: 10px;
    margin-bottom: 10px;
    margin-top:10px;
    width: 80%;
    border-radius: 10px;
}
.modalconnexion .content-modal > div form select{
    outline: none;
    border: 1px solid lightgray;
    padding: 10px;
    margin-bottom: 10px;
    margin-top:10px;
    width:71%;
    margin-left: -15px;
    border-radius: 10px;
}
.modalconnexion .content-modal > div form button{
    background-color: red;
    color: white;
    border:1px solid white;
}
form#formulaire2{
    display:none;
}
.inputParBlock{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.modalconnexion .content-modal > div form input:focus{
    box-shadow: 0 5px 15px skyblue;
}
.modalconnexion .content-modal > div form button{
    width: 60%;
    padding: 10px;
    border-radius: 10px;
    font-weight:900;
}

.modalconnexion .content-modal > div form p{
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 20px;
    color: black !important;
}
.modalconnexion .content-modal > div form p a{
    font-weight:900;
    margin-left: 10px;
    color:blue !important;
}
.modalconnexion .content-modal > div form p a:hover{
    color: red !important;
}
.modalconnexion .content-modal > div form div.profilButton{
    width: 120px;
    height:120px;
    border:2px solid black !important;
    position:relative;
    border-radius: 50%;
}
.modalconnexion .content-modal > div form div.profilButton img{
    width: 120px;
    height:120px;
    border-radius: 50%;
}
.modalconnexion .content-modal > div form div.profilButton span{
    position: absolute;
    width: 120px;
    height:120px;
    left: 0;
    right: 0;
    top: 0;
    bottom:0;
    text-align: center;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    font-size: 3rem;
    cursor: pointer;
    color: black !important;
}
/****SWIPER***/
.swiper-container{
    width: 100%;
    top: 50px;
    padding-bottom: 50px;
}
.swiper-container > h1{
    text-align: center;
    font-family: var(--roboto-Black);
    text-transform: uppercase;
}
.swiper-slide{
    width: 250px !important;
    height: 300px !important;
    background-color: yellow;
    margin: 50px;
    position: relative;
}
.swiper-slide > div{
    width: 100%;
    height: 100%;
}
.swiper-slide > div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 10px;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  }
  .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  .swiper-slide > div.containt{
    position: absolute;
    padding: 10px;
    bottom: 0;
    left: 0;
    height: auto;
    background-color:rgb(255, 255, 255,0.7);
  }
  .swiper-slide > div.containt h1{
    font-size: 1rem;
    text-align: center;
    font-family: var(--roboto-Black);
  }
  .swiper-slide > div.containt p{
    text-align: center;
    font-family: var(--roboto-CondensedItalic);
  }


  /**PREINSCRIPTIN*/
  .preinscription{
    width:100%;
    position: relative;
    display:flex;
    justify-content: center;
    align-items: center;
    align-content:center;
    flex-wrap: wrap;
    transition: 0.5s;
  }
  .preinscription .card{
    position:relative;
    width: 250px;
    height: 300px;
    background: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
  }
  .preinscription:hover .card{
    filter: blur(5px);
    transform: scale(.7);
  }
  .preinscription .card:hover{
    filter: blur(0px);
    transform: scale(.8);
  }
  .preinscription .card::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    left:0;
    top:0;
    z-index:0;
    transition: 0.5s;
  }
  .preinscription .card:nth-child(1):hover::before{
    background: red;
    transform: scaleY(1.15);
    box-shadow: 0 5px 15px rgb(0, 0, 0,.2);
  }
  .preinscription .card:nth-child(2):hover::before{
    background: skyblue;
    transform: scaleY(1.15);
    box-shadow: 0 5px 15px rgb(0, 0, 0,.2);
  }
  .preinscription .card:nth-child(3):hover::before{
    background: yellow;
    transform: scaleY(1.15);
    box-shadow: 0 5px 15px rgb(0, 0, 0,.2);
  }
  /*.preinscription .card:hover::before{
        background: #000;
        transform: scaleY(1.15);
        box-shadow: 0 5px 15px rgb(0, 0, 0,.2);
  }*/
  .preinscription .card .content{
    text-align: center;
    z-index: 99;
    padding: 0 20px;
    transition: 0.5s;
  }
  .preinscription .card:nth-child(1):hover .content{
    color:#FFF;
  }
  .preinscription .card:nth-child(2):hover .content{
    color:#000;
  }
  .preinscription .card:nth-child(3):hover .content{
    color:#2196f3;
  }
  .preinscription .card .content h1{
    font-size: 3rem;
    font-family:var(--roboto-Black);
  }
  .preinscription .card:hover .content h1{
    font-size: 5rem;
    font-family:var(--roboto-Black);
  }
  
  .preinscription .card .content p{
    font-size: 0.9rem;
    font-family:Mediums;
  }
  .preinscription .card:hover .content p{
    font-size: 1.4rem;
  }
  .preinscription .card .content a{
    display: inline-block;
    margin-top: 15px;
    padding: 5px 10px;
    background: #262626;
    color: #FFF;
    text-decoration: none;
    cursor: pointer;
  }
  .preinscription .card:hover .content a{
    background:#2196f3;
  }
  .preinscription .card:hover .content a{
    font-size: 1.6rem;
    box-shadow: 0 5px 10px white;
  }
  .preinscription .card:hover .content a:hover{
    background-color: #000;
    color:white;
  }

/****HORAIRES DE COURES***/
.horaire-container{
    width: 100%;
    padding:0 5%;
}
.block1-horaire ul{
    list-style: none;
}
.block1-horaire >ul >li{
    margin-bottom: 10px;
}
.listeDepartement{
    width: 90%;
    border-bottom: 20px solid #25bcf4;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.listeDepartement > h1{
    color:var(--text-color);
    background-color: #03a9f4;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 700;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 90%;
}
.listeDepartement  ul li{
    list-style: none;
    padding: 10px;
    width: 96%;
    cursor: pointer;
    background-color: white;
    box-shadow: 0 5px 25px rgb(0, 0, 0,.1);
    transition: transform 0.5s;
}
.listeDepartement  ul li:hover{
    transform:scale(1.1);
    z-index: 100;
    background-color: #25bcff;
    box-shadow: 0 5px 25px rgb(0, 0, 0,.2);
    color: white;
}
.listeDepartement  ul li span{
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background-color:#25bcff;
    color:white;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 600;
    transform: translateY(-2px);
}
.listeDepartement  ul li:hover span{
    background-color: white;
    color: #25bcff;
}


.horaire-container > h1{
    text-align: center;
    font-family: var(--roboto-Black);
    padding: 20px;
}
.separation-horaire{
    display: flex;
    width: 90%;
    padding-right: 50px;
}
.block1-horaire{
    width: 25%;
}
.horaire-contenue{
    width: 75%;
    margin-top: 10px;
}
.horaire-contenue .videotutoriels{
    width: 100%;
    display: grid;
	grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); 
	grid-gap:1rem;
	padding:5px;
}
.horaire-contenue .allvid video{
    width: 100%;
    margin-bottom:-10px;
}
.blockVideoInformation{
    padding: 10px 10px 20px 10px;
    border-bottom:1px solid gray;
    margin: 10px;
    border-radius:10px;
}
.blockVideoInformation h3{
    margin-top: 10px;
    margin-bottom: 20px;
}
.blockVideoInformation > div{
    display: flex;
    justify-content:space-between;
    justify-items: center;
    align-items: center;
}
.blockVideoInformation > div a{
    padding: 10px;
    border-radius: 5px;
    border:1px solid;
    width: 170px;
}
.blockVideoInformation > div > div:nth-child(2){
    width: 100%;
    display: flex;
    justify-content:space-between;
    justify-items: center;
    align-items: center;
}
.blockVideoInformation > div a i{
    margin-right: 10px;
}
.profilsProfesseur{
    display: flex;
    justify-items: start;
    justify-content: start;
    align-items: center;
    width: 400px;
}
.profilsProfesseur img{
    width:50px;
    height:50px;
    border-radius: 100%;
}
.profilsProfesseur div{
    margin-left: 10px;
}
.profilsProfesseur h2{
    font-size:1rem;
}
.profilsProfesseur p{
    font-size:.8rem;
}
.blockVideoInformation > div span{
    border-left:1px solid;
    text-align: center;
    width: 100%;
}
.blockVideoInformation > div span i{
    margin-right:10px;
}
.bottomClass{
    padding: 30px;
}
.buttonVoirHoraire{
    padding:10px;
    border:1px solid;
    border-radius: 10px;
}
.buttonVoirHoraire:hover{
    background-color: #03a9f4;
    color:white;
}
/*
.horaire-contenue ul{
    list-style:none;
}
.horaire-contenue ul li{
    position: relative;
    background-color: lightgray;
    margin-bottom: 10px;

}
.horaire-contenue ul li label{
    position: absolute;
    right:10px;
    top: 10px;
    background-color: #000;
    padding: 5px;
    border-radius:5px;
    color:var(--text-color);
    cursor: pointer;
}

.horaire-contenue ul li label:hover{
    background-color: white;
    border:1px solid black;
    color: black;
}
.horaire-contenue ul li input{
    visibility: hidden;
    position: absolute;
}
.horaire-contenue input:checked ~ .blockHoraire > div{
    display: block;
    transition: 2s;
    animation: closePage 2s linear ease;
}*/
@keyframes closePage {
    0%{
        display: block;
    }
    100%{
        display: block;
    }
}
.blockHoraire{
    display: block;
    width: 100%;
    background-color: var(--text-color);
    border-bottom:20px solid #25bcf4;
    border-bottom-left-radius:10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 10px;
}
.blockHoraire > h1{
    background-color:#25bcf4;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-family: var(--roboto-Black);
    font-size:1.5rem;
    padding: 10px;
    width: auto;
}
.inforsHeaderHoraire{
    margin-left: 50px;
    border-left: 5px solid;
    padding-left: 10px;
}
.inforsHeaderHoraire h1{
    font-size: 1rem;
    font-family: var(--roboto-CondensedItalic);
    padding-top:10px;
}
.inforsHeaderHoraire h1 span{
    color:red;
    margin-left: 5px;
}
.inforsHeaderHoraire h2{
    font-size: .9rem;
    font-family: var(--roboto-CondensedItalic);
    padding-top:10px;
}
.inforsHeaderHoraire h2 span{
    color:red;
    margin-left: 5px;
}
.inforsHeaderHoraire h3{
    font-size: .9rem;
    font-family: var(--roboto-CondensedItalic);
    padding-top:10px;
    padding-bottom:10px;
}
.inforsHeaderHoraire h3 span{
    color:red;
    margin-left: 5px;
}
.blockHoraire > div{
    display: none;
}
.blockHoraire > div table{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    margin-left: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}
.blockHoraire > div table thead{
    background-color: #25bcf4;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.blockHoraire > div table thead tr th:first-child{
    border-top-left-radius: 10px;
}

.blockHoraire > div table thead tr th{
    padding: 10px;
    font-size:.9rem;
}
.blockHoraire > div table tbody tr th{
    padding: 10px;
    text-align: center;
    background:lightgray;
    width: 100px;
}
.blockHoraire > div table tbody th:first-child{
    background-color: yellow;
}
.blockHoraire > div table tbody tr th h2{
    font-size:.8rem;
    font-family:var(--roboto-Light);
}
.blockHoraire > div table tbody tr th p{
    color:red;
    font-size: .6rem;
}
.blockHoraire > div table tfoot{
    background-color: rgba(255, 0, 0, 0.504);
    text-align: end;
}
.blockHoraire > div table tfoot tr th{
    padding: 10px;
}
.blockHoraire > div table tfoot tr th a{
    background: var(--text-color);
    padding: 5px;
    border-radius: 5px;
}
.blockHoraire > div table tbody th:not(:empty):not(:first-child):hover{
    background-color: red;
    color: white;
    transition: 0.5s;
}
.blockHoraire > div table tbody th:not(:empty):not(:first-child):hover p{
    color:black;
}
.blockHoraire > div table tbody th:not(:empty):not(:first-child){
    background-color: #fff;
}

.blockHoraire > div table tfoot tr th a:hover{
    background-color: greenyellow;
    color: black;
}




/**
ARTICLE EVENEMENT
**/
.affichage_evenement{
    display:flex;
    width: 100%;
    padding: 0px 5%;
}
.evenements_sous1{
    width: 50%;
}
.evenements_sous1 .headerTitreEvenement{
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.evenements_sous1 .headerTitreEvenement > div{
    display:flex;
    flex-direction: column;
}
.evenements_sous1 .headerTitreEvenement > div div{
    width:5px;
    height:10px;
}
.evenements_sous1 .headerTitreEvenement > div  div:nth-child(1){
    background-color: red;
}
.evenements_sous1 .headerTitreEvenement > div div:nth-child(2){
    background-color: yellow;
}
.evenements_sous1 .headerTitreEvenement >div  div:nth-child(3){
    background-color: skyblue;
}
.evenements_sous1 h1{
    font-size: 1.2rem;
    font-family:var(--roboto-Black);
    padding: 10px;
    margin-top: 30px;
}
.evenements_sous1 .texteDescription{
    font-size: 1rem;
    color:black;
    width: 90%;
    height:unset;
    resize:none;
    border: none;
    text-align: justify;
    padding-left: 20px;
    outline:none !important;
}
.evenements_sous1 p{
    padding: 20px;
    font-size:.8rem;
    font-family: var(--roboto-Light);
}
.evenements_sous1 .blockLieuShare > div ul{
    list-style: none;
    display: flex;
    margin-left: 20px;
    margin-right:30px;
    border: 1px solid lightgray;
    border-radius: 10px;
    padding:0px 10px;
}
.evenements_sous1  .blockLieuShare > div  ul li{
    margin-left:5px;
    width:40px;
    height:40px;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}
.evenements_sous1  .blockLieuShare > div  ul li i{
    font-size: 1.3rem;
}
.evenements_sous1  .blockLieuShare > div  ul a:hover li{
    width:40px;
    height:40px;
    background-color: red;
    border-radius: 50%;
    transition: .5s;
}
.evenements_sous1  .blockLieuShare > div  ul a:hover li i{
    font-size:1.5rem;
    transition: .5s;
    color:white;
}
.evenements_sous1 .blockLieuShare{
    display: flex;
    justify-content: space-between;
    align-items:center;
    margin-left: 10px;
    margin-right:10px;
    margin-top: 10px;
    justify-items: start;
}
.evenements_sous1 .lieuSalle{
    width:auto;
}
.evenements_sous1  .lieuSalle .dates{
    background-color: lightgray;
    padding: 10px;
    text-align: center;
}
.lieuSalle .lieu{
    background-color: yellow;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom:10px;
    font-family: var(--roboto-CondensedItalic);
}
.lieuSalle .lieu span{
    font-weight: 900;
    font-size: 1rem;
    background-color: red;
    padding: 10px;
    padding-right: 20px;
    margin-right:0px;
    color: white;
}
.lieuSalle .lieu span:nth-child(2){
    background-color:skyblue;
    color: black;
}
.lieuSalle .lieu span:nth-child(2) i{
    margin-right: 10px;
}
.evenements_sous1  .blockLieuShare > div  ul a:nth-child(2):hover li{
    background-color: #2196f3;
}
.evenements_sous1  .blockLieuShare > div  ul a:nth-child(3):hover li{
    background-color: #ea377f;
}
.evenements_sous1  .blockLieuShare > div  ul a:nth-child(4):hover li{
    background-color: #3a9c29;
}
.evenements_sous1   .blockLieuShare > div  ul a:nth-child(5):hover li{
    background-color:#03a9f4;
}
.image_videos{
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0, 0, 0,.2);
    overflow: hidden;
    width:90%;
    height: auto;
}
.image_videos img{
    width: 100%;
}
.evenements_sous2{
    width: 40%;
    padding:0 0 0 5%;
}
.evenements_sous2 > h1{
    font-family:var(--roboto-Black);
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 20px;
    border-bottom: 1px solid lightgray;
}
/**COMMENTAIRE*/
.blockdeCommantaires{
    width: 100%;
    padding: 20px;
}
.blockdeCommantaires div form {
    display: flex;
}
.blockdeCommantaires div form button{
    height: 50px;
    width: 50px;
    font-size: 2rem;
    background-color: transparent;
    outline: none;
    border: none;
    cursor:pointer;
}
.blockdeCommantaires div form button:hover i{
    color:red;
}
.blockdeCommantaires div form textarea{
    outline: none;
    height: 50px;
    border: 0px solid rgb(0, 0, 0,.2);
    padding: 10px;
    width: 80%;
    margin-top: 10px;
    margin-bottom:10px;
    resize: none;
}
.blockdeCommantaires div form textarea:focus{
    /*box-shadow:0 1px 5px rgb(0, 0, 0,0.5);*/
    border-bottom: 1px solid rgb(0, 0, 0,.2);
}

.blockListeCommentaire{
    width: 100%;
}
.blockListeCommentaire .ListeCommentaire{
    display: block;
    padding:20px;
}
.blockListeCommentaire .ListeCommentaire .commentaire_user{
    display: flex;
    align-items: center;
}
.blockListeCommentaire .ListeCommentaire .commentaire_user img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 1;
}
.blockListeCommentaire .ListeCommentaire .commentaire_user p{
    font-size: 1.4rem;
    font-weight: bold;
}
.blockListeCommentaire .ListeCommentaire .commentaire_user p span{
    background-color: rgba(225, 223, 223, 0.747);
    margin-left: 50px;
    font-size: 1rem;
    font-family: var(--roboto-Light);
    font-weight: normal;
    padding: 10px;
    border-radius: 10px;
}
.blockListeCommentaire .ListeCommentaire .texteCommentaire{
    display: flex;
    position: relative;
}
.blockListeCommentaire .ListeCommentaire .texteCommentaire > div{
    width: 50px;
    height: 50px;
    border-left: 1px solid;
    border-bottom:1px solid;
    border-bottom-left-radius:10px;
    margin-left: 35px;
    margin-top: -20px;
    margin-right: -10px;
}
.blockListeCommentaire .ListeCommentaire .texteCommentaire p{
    width: 65%;
}
.ListeCommentaire hr{
    width: 500px;
    height: 1px;
    border: none;
    background: lightgray;
    margin-left: 100px;
}
/**evenement**/
.evenements_sous2 .evenementAvenir{
    display: flex;
    width: 85% !important;
    margin-bottom: 30px;
    border-bottom: 1px solid lightgray;
    padding-bottom:20px;
}
.evenements_sous2 .evenementAvenir:last-child{
    border-bottom:none;
}
.evenements_sous2 .evenementAvenir .imageEvenements{
    position: relative;
    width: 200px;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
}
.evenementAvenir .imageEvenements::after{
    background: rgba(0, 0, 51, 0.607);
    position: absolute;
    z-index: 1;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    right:0;
}
.evenements_sous2 .evenementAvenir .imageEvenements img{
    width: 100%;
    height: 130px;
}
.evenements_sous2  .date-infos-evenements{
    display: flex;
    flex-direction:column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    top: 5px;
    left:5px;
    z-index: 2;
    border: 1px solid white;
}
.evenements_sous2 .date-infos-evenements p{
    color: white;
    margin-top: 5px;
    font-size: .7rem;
    font-family: var(--roboto-Black);
}
.evenements_sous2 .date-infos-evenements h3{
    color: yellow;
    font-size: 1rem;
    font-family: var(--roboto-Black);
}
.evenements_sous2 .date-infos-evenements span{
    background-color: red;
    color: white;
    font-size:.8rem;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 2px;
    padding-bottom: 2px;
    font-family: var(--roboto-Black);
}

.evenements_sous2 .contenus-evenements{
    padding:0px 10px;
    width: 400px;
}
.evenements_sous2 .contenus-evenements h2{
    font-family: Condensed;
    font-size: 1rem;
}
.evenements_sous2 .contenus-evenements p{
    text-align: justify;
    margin-bottom: 20px;
    margin-top: 10px;
    font-family: var(--roboto-CondensedItalic);
    color: #111;
    font-size: .8rem;
}
.evenements_sous2 .contenus-evenements article{
    background-color: white;
    border-radius: 10px;
    padding:5px;
    width:auto;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: -10px;
    font-size: .7rem;
}
.contenus-evenements article span{
    margin-left: 10px;
    border-left: 5px solid skyblue;
    width: 100%;
    padding: 5px;
    font-size: .8rem;
    background-color: red;
    color: white;
    font-weight: bold;
}
.evenements_sous2 .contenus-evenements .voirePlusShare{
    display: flex;
    flex-direction:row;
}
.evenements_sous2 .contenus-evenements .voirePlusShare ul{
    list-style: none;
    display: flex;
    margin-left: 20px;
}
.evenements_sous2  .contenus-evenements .voirePlusShare ul li{
    margin-left: 5px;
    margin-right: 5px;
    width: 15px;
    height: 15px;
    background-color: lightgray;
    padding: 3px;
    border-radius:50%;
    font-size: .7rem;
    justify-content: center;
    justify-items:center;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.contenus-evenements .voirePlusShare ul li:nth-child(1):hover{
    background-color: blue;
    color:white;
}
.contenus-evenements .voirePlusShare ul li:nth-child(2):hover{
    background-color: rgb(230, 77, 92);
    color:white;
}
.contenus-evenements .voirePlusShare ul li:nth-child(3):hover{
    background-color: rgb(40, 124, 40);
    color:white;
}
.contenus-evenements .voirePlusShare ul li:nth-child(4):hover{
    background-color: skyblue;
    color:white;
}
.contenus-evenements .voirePlusShare ul li:nth-child(5):hover{
    background-color:rgb(51, 51, 238);
    color:white;
}
.contenus-evenements .voirePlusShare ul li:nth-child(6):hover{
    background-color: red;
    color:white;
}
.contenus-evenements .voirePlusShare ul li:nth-child(7):hover{
    background-color: red;
    color:white;
}










/****BIILBLIOTHEQUE***/
body.biblitheque{
    height: 100%;
    width:100%;
	flex-direction: column;
	background-image: url(../image/11.jpeg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	align-items:center;
	color: white;
	clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0% 100%);
}
body.biblitheque header{
    background-color: var(--text-color);
}
#backGround{
    background-color: rgba(0, 0, 0, 0.585);
    width: 100%;
    height:400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content:center;
}

#backGround div h1{
    border-top:2px solid white;
    border-bottom:2px solid white;
    padding-top:20px;
    padding-bottom:20px;
    font-weight:bold;
    font-size:50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#backGround div p{
    padding-top:20px;
    padding-bottom:20px;
    font-weight:bold;
    font-size:20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.search-block{
    position: relative;
    display:flex;
    flex-direction:row;
    align-items: center;
    align-content: center;
    border-radius: 50px;
    background-color:transparent;
    border:10px solid white;
    padding: 10px;
    width:500px;
}
.search-block input,
.search-block input:focus{
    width:100%;
    height:50px;
    outline:none;
    color:white;
    margin-right:20px;
    box-shadow: 1px 1px 10px transparent;
    border:1px solid transparent;
    font-size:30px;
    background-color: transparent;
}
.search-block input::placeholder{
    color:rgb(194, 186, 186)
}
.search-block span{
    color:white;
    margin-right:10px;
    margin-left:20px;
    font-size:30px;
}
.blockBibliotheque{
    background: white;
    width: 100%;
    color: black;
    display: flex;
    padding: 10px 5%;
}
.blockBibliotheque2{
    display:block !important;
    padding:20px;
}
.blockBibliotheque .ouvrageIspLushi{
    width: 60%;
}
.ouvrageElinges {
    width:30%;
}
.ouvrageElinges > h1{
    padding: 10px;
    text-align: justify;
    font-family: var(--roboto-Black);
    border-bottom: 5px solid red;
    margin-bottom: 20px;
}
.autreLinesLinesBibliotheque > h1{
    font-size: 1.5rem;
    margin-bottom:20px;
    margin-top: 20px;
    border-left: 10px solid skyblue;
    margin-left: 20px;
    padding-left: 10px;
}
/**BIBLIOTHEQUE EN LIGNE**/

.listebibliothequeenligne ul{
    list-style: none;
}

.listebibliothequeenligne ul li {
    border: 1px solid lightgray;
    width: 350px;
    border-radius: 10px;
    padding: 10px;
    margin-bottom:20px;
}
.listebibliothequeenligne ul li:hover{
    box-shadow:0px 5px 10px #03a9f4;
    transition: .2s;
}
.listebibliothequeenligne ul li h2{
    font-size:1rem;
    font-family:var(--roboto-CondensedItalic);
    color: black;
    margin-bottom:10px;
}
.listebibliothequeenligne ul li h2 i{
    margin-right: 5px;
    color:rebeccapurple;
}
.listebibliothequeenligne ul li p{
    color: rgb(94, 87, 87);
    text-align: justify;
}

.ouvrageIspLushi > div ul.headerFiltre{
    list-style:none;
    display: flex;
    padding: 10px;
}
.ouvrageIspLushi > div ul.headerFiltre li{
    margin:0 10px;
    font-size: 1.2rem;
    background: black;
    color: var(--text-color);
    padding: 5px;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
}
.ouvrageIspLushi > div ul.headerFiltre li.actives{
    background-color: transparent;
    color: black;
    border-bottom: 2px solid black;
}
/**OUVRAGRE ISP**/
.ouvrageListe{
    display:grid;
	grid-template-columns:repeat(auto-fit,minmax(25rem,1fr)); 
	grid-gap:1.5rem;
	padding:10px;
    width: 95%;
}
.blockBibliotheque2 .ouvrageIspLushi{
    width: 97.5%;
    padding: 0%;
}
.ouvrageListe2{
    width: 100% !important;
    padding: 0%;
    margin: 0%;
}
.ouvrageListe > div{
    border:1px solid lightgray;
    border-radius: 10px;
    height:200px;
    background-color: #03a9f4;
    display: flex;
    flex-direction:column;
    align-content: end;
    justify-content: end;
    overflow: hidden;
    box-shadow:0 5px rgb(0, 0, 0,.1);
}
.ouvrageListe > div > h1{
    font-size: 1.3rem;
    padding: 10px;
}
.ouvrageListe > div > div{
    background-color: white;
    padding: 10px;
}
.autreLinesLinesBibliotheque > ul{
    border: 2px solid lightblue;
    padding: 10px;
    border-radius: 10px;
    list-style: none;
}
.autreLinesLinesBibliotheque ul li{
    border-bottom:2px solid lightblue;
    padding-bottom:10px;
}
.autreLinesLinesBibliotheque ul a:last-child li{
    border-bottom:  none;
}
.autreLinesLinesBibliotheque ul li:hover{
    background-color: gray;
    padding:10px;
}
.autreLinesLinesBibliotheque ul li h2{
    font-size: 1.2rem;
    color: black;
    font-family: var(--roboto-CondensedItalic);
}
.autreLinesLinesBibliotheque ul li p{
    color: rgb(55, 47, 47);
    font-family: var(--roboto-Light);
    font-size: 1rem;
}


/***REVUS DESIGN***/
.blockInformationrevus{
    position: relative;
}
.revueNumeros{
    position: absolute;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction:column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.revueNumeros span{
    width: 50px;
    height: 50px;
    background-color: red;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    color: var(--text-color);
    font-family: var(--roboto-Black);
}

/***PRINSCRIPTION**/
.formulaire{
    position: fixed;
    top: 0;
    left:0;
    bottom:0;
    right: 0;
    background: rgba(0, 0, 0, 0.688);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    align-content:center;
    justify-items: center;
    transition: 1s;
}
.formulaire > div.blockFormulaire{
    background: var(--text-color);
    display: flex;
    flex-direction:column;
    width: 50%;
    padding: 50px 100px;
    border-radius: 20px;
}
.formulaire > div.blockFormulaire h1{
    text-align: center;
    font-family:var(--roboto-Black);
    margin-bottom:20px;
}
.formulaire > div form{
    position: relative;
}
.formulaire > div form span{
    position: absolute;
    top: -70px;
    right: -50px;
    font-size: 2rem;
    cursor: pointer;
}
.formulaire > div form > div{
    display:grid;
	grid-template-columns:repeat(auto-fit,minmax(20rem,1fr)); 
	grid-gap:1.5rem;
    width: 100%;
}
.formulaire > div form input,
.formulaire > div form select{
    margin:10px 0;
    padding: 10px;
    border-radius: 8px;
    outline: none;
    resize: none;
    border: 1px solid gray;
    font-size: 1.2rem;
}
.formulaire > div form input[type="submit"]{
    background-color: red;
    width: 100%;
    color: var(--text-color);
    font-family: var(--roboto-Black);
}
.formulaire > div form input[type="submit"]:hover{
    background-color: white;
    border:2px solid red;
    color: red;
    transition: .5s;
}


/**CAROUSEL CORPS PROFESSORAL**/
.bodyCarousel{
    height: 600px;
    margin: 0;
    display: grid;
    grid-template-rows: 500px 100px;
    grid-template-columns: 1fr 30px 30px 30px 30px 1fr;
    align-items: center;
    justify-items: center;
}
.bodyCarousel .item img{
    width:300px;
    height: 250px;
    border-radius:15px;
}
.bodyCarousel input{
    visibility: hidden;
}
.bodyCarousel .name{
    margin-bottom: 2px;
    color: #8c52ff;
}
.bodyCarousel .occupation{
    font-style: italic;
    margin-top: 2px;
}
.bodyCarousel .carousel{
    grid-row: 1 / 2;
    grid-column: 1 / 8;
    width: 100vw;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 600px;
    --items:5;
    --middle:3;
    --position:1;
    pointer-events: none;
}
.carousel div.item{
    text-align: center;
    border: 3px solid lightgray;
    box-shadow:0 5px 15px rgb(0, 0, 0,0.5); 
    border-radius: 20px;
    background-color: white;
    position: absolute;
    padding: 5px;
    width: 300px;
    height: 250px;
    background-color: white;
    --r:calc(var(--position) - var(--offset));
    --abs:max(calc(var(--r) * -1),var(--r));
    transition: all 0.25s linear;
    transform: rotateY(calc(-10deg * var(--r))) translateX(calc(-300px * var(--r)));
    z-index: calc((var(--position) - var(--abs)));
}
.carousel div.item > div{
    position: relative;
    width: 300px;
    height: 250px;
}
.carousel div.item > div > div{
    position:absolute;
    top:160px;
    left: 0;
    padding: 8px;   
    border-bottom-right-radius:10px;
    border-bottom-left-radius: 10px;
    right:0;
    width: 300px;
    background-color: white;
}
div.item:nth-of-type(1){
    --offset: 1;
}
div.item:nth-of-type(2){
    --offset: 2;
}
div.item:nth-of-type(3){
    --offset: 3; 
}
div.item:nth-of-type(4){
    --offset: 4;
}
div.item:nth-of-type(5){
    --offset: 5;
}

/*.bodyCarousel input:nth-of-type(1){
    grid-column: 2 / 3;
    grid-row:2 / 3;
}*/
.bodyCarousel input:nth-of-type(1):checked ~ .carousel{
    --position:1;
}

/*.bodyCarousel input:nth-of-type(2){
    grid-column: 3 / 4;
    grid-row:2 / 3;
}*/
.bodyCarousel input:nth-of-type(2):checked ~ .carousel{
    --position:2;
}
.bodyCarousel input:nth-of-type(3):checked ~ .carousel{
    --position:3; 
}
/*
.bodyCarousel input:nth-of-type(4){
    grid-column: 5 / 6;
    grid-row:2 / 3;
}*/
.bodyCarousel input:nth-of-type(4):checked ~ .carousel{
    --position:4;
}
/*
.bodyCarousel input:nth-of-type(5){
    grid-column: 6 / 7;
    grid-row:2 / 3;
}*/
.bodyCarousel input:nth-of-type(5):checked ~ .carousel{
    --position:5;
}

/**BANIER DESIGNE**/
.bannier{
    position: relative;
    width: 100%;
    height: 600px;
}
.bannier .face{
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    display: flex;
}
.bannier .face div{
    width: 25%;
    height: 100vh;
    transition: 1s;
}

.bannier .face.face1 div{
    background: url(../image/images-343.jpeg);
    background-repeat: no-repeat;
    background-size: 500% 100vh;
    transform-origin: top;
}
.bannier.changes .face.face1 div{
    transform: rotateX(90deg) translateY(-50%);
}

.bannier .face.face2 div{
    background: url(../image/images-341.jpeg);
    background-repeat: no-repeat;
    background-size: 500% 100vh;
    transform-origin: bottom;
    transform: rotateX(90deg) translateY(50%);
}
.bannier.changes .face.face2 div{
    transform: rotateX(0deg) translateY(0%);
}

.bannier .face div:nth-child(1){
    background-position-x: 0;
    transition-delay: 0s;
}

.bannier .face div:nth-child(2){
    background-position-x: -383px;
    transition-delay: 0.2s;
}
.bannier .face div:nth-child(3){
    background-position-x: -766px;
    transition-delay: 0.4s;
}
.bannier .face div:nth-child(4){
    background-position-x: -1149px;
    transition-delay: 0.6s;
}


/****DISEGIGN RECHERCHE ETUDIANT****/
.crecherEtudiantBlock{
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    cursor:grab;
}
.crecherEtudiantBlock div{
    border: 1px solid black;
    border-radius: 50px;
    padding: 10px;
    display: flex;
    align-items: center;
    width: 500px;
}
.crecherEtudiantBlock div i{
    font-size: 2rem;
    margin-right:20px;
    color:#474343;
}
.crecherEtudiantBlock div p{
    color: #474343;
    font-weight:900;
    font-size: 1rem;
}

/***BLOCK ETUDIENT RECHERHCE****/
.affichageEtudiants{
    position: relative;
    z-index:9999;
    position: fixed;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    background-color:#fff;
}
.affichageEtudiants > span{
    width: 60px;
    height:60px;
    font-size: 3rem;
    position: absolute;
    text-align: center;
    top:50px;
    right:50px;
    cursor: pointer;
}
.affichageEtudiants > span:hover{
    color:white;
    background-color: #000000;
    border-radius: 50%;
}
.affichageEtudiants h1{
    font-size: 2rem;
    font-family: var(--roboto-Black);
    margin-top: 20px;
}
.affichageEtudiants form{
    width: 100%;
    height:auto;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
}
.affichageEtudiants form div{
    display: flex;
    align-items: center;
    width: 500px;
    border: 1px solid;
    border-radius: 20px;
    padding: 10px;
    background:#F4F4F4;
    margin-bottom:20px;
}
.affichageEtudiants form div i{
    color: gray;
    margin-right: 20px;
}
.affichageEtudiants form div input{
    width: 100%;
    font-size: 1rem;
    font-weight: 900;
    outline: none;
    border: none;
    background-color: transparent;
}
.affichageEtudiants form div input:focus ~ .affichageEtudiants  form div{
    box-shadow: 0px 20px 10px rgb(230, 77, 92);
}
.affichageEtudiants > div{

}
.container-etudient{
    width:98%;
    height: 90%;
    display: grid;
	grid-template-columns:repeat(auto-fit,minmax(14rem,1fr)); 
	grid-gap:0.5rem;
	padding:10px;
    overflow-y: scroll;
    scrollbar-width:10px;
    scrollbar-color: red;
    justify-content: space-between;
}
.container-etudient a{
    margin: 10px;
}
.box-etudient{
    position: relative;
    width: 200px;
    height: 250px;
    background-color: #000;
    box-shadow: 0 30px 30px rgb(0, 0, 0,0.5);
}
.box-etudient .imgBox-etudient{
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
}
.box-etudient .imgBox-etudient img{
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.box-etudient:hover .imgBox-etudient img{
    opacity: 0;
}
.content-etudient{
    position: absolute;
    bottom: 20px;
    left: 10%;
    width: 80%;
    height: 30px;
    background: #ffff;
    transition: 0.5s;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
}
.box-etudient:hover .content-etudient{
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
}
.content-etudient h3{
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    font-size:1rem;
    max-lines: 1;
    height: 20px;
    text-overflow: ellipsis;
    color: black;
    font-family: var(--roboto-Black);
}
.content-etudient p{
    margin-top: 10px;
    opacity: 0;
    line-height: 1.2rem;
    transition: 0.5s;
    text-align: justify;
    color: black;
}
.content-etudient p span{
    color: blue;
}
.content-etudient:hover p{
    opacity: 1;
    transition-delay:0.5s;
}



/**LISTE DE DEPARTEMENT**/
.listeSection{
    position: relative;
    display: grid;
	grid-template-columns:repeat(auto-fit,minmax(14rem,1fr)); 
	grid-gap:0.5rem;
}
.listeSection .middle{
    /*position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);*/
}
.listeSection .card{
    cursor: pointer;
    width: 340px;
    height: 220px;
    border-radius:20px;
}
.listeSection .front,.listeSection .back{
    width: 340px;
    height:220px;
    overflow: hidden;
    backface-visibility: hidden;
    position: absolute;
    transition: transform .6s linear;
    border-radius:20px;
}
.listeSection .front img{
    height:100%;
    width: 100%;
}
.listeSection .front{
    transform: perspective(600px) rotateY(0deg);
}
.listeSection .front div{
    width: 100%;
    height: 100%;
    background-color: #00000082;
    position: relative;
    content:attr(data-section);
    padding: 5px;
    top:-105%;
    left:0;
    bottom: 0;
    right: 0;
    color:white;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}
.listeSection .front div h1{
    font-family:var(--roboto-Black);
    text-shadow:1px 3px 5px black;
    width: 100%;
    font-size: 1.5rem;
    padding: 10px;
}
.listeSection .back{
    background-color: #f1f1f1;
    transform: perspective(600px) rotateY(180deg);
}
.middle{
    color:#2c3e50;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content:center;
    padding: 10px;
}
.middle h2{
    text-align: center;
    color:red !important
}
.middle ul{
    list-style: none;
}
.listeSection .card:hover {
    box-shadow:0px 5px black;
}
.listeSection .card:hover > .front{
    transform: perspective(600px) rotateY(-180deg);
}
.listeSection .card:hover > .back{
    transform: perspective(600px) rotateY(0deg);
    box-shadow:0px 10px 15px black;
}

/*********DESIGN PROFIL *******/
.bodyColors{
    background-color: #F4F4F4;
}
.profils-users{
    margin: 50px 0px;
    width: 100%;
    display: flex;
    padding:0 10%;
}
.header_profils{
    width:15%;
    margin-right:50px;
    
}
.header_profils h2{
    font-size:1rem;
    margin-top:10px;
    margin-bottom:10px;
    border-bottom: 1px solid lightgray;
    padding-bottom:10px;
}
.header_profils img{
    width: 70px;
    height:70px;
    border-radius: 50%;
}
.header_profils h3{
    font-size:.9rem;
    padding-bottom:10px;
    border-bottom:1px solid lightgray;
}
.header_profils > div ul{
    list-style: none;
}
.header_profils > div ul li{
    margin:15px 0px;
    color:#262626
}
.body_profils{
    width: 60%;
}
.body_profils > h1{
    font-family:var(--roboto-Light);
    margin:20px 0;
}
.body_profils .block_profils_informations{
    display:block;
}
.body_profils .block_profils_informations > div{
    background-color: white;
    box-shadow: 0px 0px 2px rgb(0, 0, 0,0.5);
    border-radius: 3px;
    padding: 20px;
    margin-bottom:20px;
}
.header-body-profils{
    display: flex;
    flex-direction:row;
    justify-content:space-between;
    border-bottom:1px solid lightgray;
    margin-bottom: 20px;
    padding-bottom:20px;
}
.header-body-profils h2{
    font-size:1rem;
}
.header-body-profils a{
    padding: 5px;
    border:2px solid blue;
    color:blue;
}
.header-body-profils a:hover{
    background-color: red;
    border:2px solid red;
    color:white;
}
.mes_cours_liste{
    width: 100%;
    display: grid;
	grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); 
	grid-gap:0.5rem;
	padding:10px;
    justify-content: space-between;
}
.mes_cours_liste .carte-profil{
    position: relative;
    padding:20px;
    box-shadow: 0 10px 20px rgb(0, 0, 0,0.1);
    overflow: hidden;
    margin: 10px;
}
.mes_cours_liste .carte-profil::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(-100% + 4px);
    width:100%;
    height: 100%;
    background: #000000;
    z-index: 1;
    transition: 0.5s ease-in-out;
}
.mes_cours_liste .carte-profil:hover::before{ 
    bottom:0;
}
.mes_cours_liste .carte-profil:nth-child(3n+1)::before{
    background: yellow;
}
.mes_cours_liste .carte-profil:nth-child(3n+2)::before{
    background: red;
}
.mes_cours_liste .carte-profil:nth-child(3n)::before{
    background: skyblue;
}

.mes_cours_liste .carte-profil > div{
    position: relative;
    z-index: 2;
}

.mes_cours_liste .carte-profil > div h2{
    margin-bottom: 10px;
    font-size: 18px;
    transition: 0.5s;
    color:#111;
}
.mes_cours_liste .carte-profil > div p{
    font-size: 14px;
    transition: 0.5s;
    color:#777;
}
.mes_cours_liste .carte-profil > div a{
    margin-top: 20px;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    transition: 0.5s;
    background-color: white;
    color:#777;
    padding:5px;
    border-radius:3px;
    font-weight: 600;
}
.mes_cours_liste .carte-profil:hover:nth-child(3n+2) > div h2{
    color: white;
}
.mes_cours_liste .carte-profil:hover:nth-child(3n+2) > div p{
    color: white;
}

.mes_cours_liste .carte-profil:hover:nth-child(3n+2)> div a:hover{
    color: white;
    border: 1px solid;
    background-color: red;
}
.mes_cours_liste .carte-profil:hover:nth-child(3n+1)> div h2{
    color: blue;
}
.mes_cours_liste .carte-profil:hover:nth-child(3n+1)> div p{
    color: blue;
}
.mes_cours_liste .carte-profil:hover:nth-child(3n+1)> div a:hover{
    color: blue;
    border: 1px solid;
}
.mes_cours_liste .carte-profil:hover:nth-child(3n)> div h2{
    color: black;
}
.mes_cours_liste .carte-profil:hover:nth-child(3n)> div p{
    color: black;
}
.mes_cours_liste .carte-profil:hover:nth-child(3n)> div a:hover{
    color: black;
    border: 1px solid;
}
.horaireCoursEtudiants > h1{
    padding: 10px;
    font-size: 1rem;
    padding-left:40px;
}
.horaireCoursEtudiants > div table{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    margin-left: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}
.horaireCoursEtudiants > div table thead{
    background-color: #25bcf4;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.horaireCoursEtudiants > div table thead tr th:first-child{
    border-top-left-radius: 10px;
}

.horaireCoursEtudiants > div table thead tr th{
    padding: 10px;
    font-size:.9rem;
}
.horaireCoursEtudiants > div table tbody tr th{
    padding: 10px;
    text-align: center;
    background:lightgray;
    width: 100px;
}
.horaireCoursEtudiants > div table tbody th:first-child{
    background-color: #25bcf4;
}
.horaireCoursEtudiants > div table tbody tr th h2{
    font-size:.8rem;
    font-family:var(--roboto-Light);
}
.horaireCoursEtudiants > div table tbody tr th p{
    color:red;
    font-size: .6rem;
}
.horaireCoursEtudiants > div table tfoot{
    background-color: rgba(255, 0, 0, 0.504);
    text-align: end;
}
.horaireCoursEtudiants > div table tfoot tr th{
    padding: 10px;
}
.horaireCoursEtudiants > div table tfoot tr th a{
    background: var(--text-color);
    padding: 5px;
    border-radius: 5px;
}
.horaireCoursEtudiants > div table tbody th:not(:empty):not(:first-child):hover{
    background-color: red;
    color: white;
    transition: 0.5s;
}
.horaireCoursEtudiants > div table tbody th:not(:empty):not(:first-child):hover p{
    color:black;
}
.horaireCoursEtudiants > div table tbody th:not(:empty):not(:first-child){
    background-color: #fff;
}

.horaireCoursEtudiants > div table tfoot tr th a:hover{
    background-color: greenyellow;
    color: black;
}

/**VIDEO TUTORIL**/
.videotutoriels{
    width: 100%;
    display: grid;
	grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); 
	grid-gap:0.5rem;
	padding:5px;
}
.videotutoriels a > div{
    width: 280px;
    height: 280px;
    box-shadow:0px 2px 5px rgb(0, 0, 0,0.5);
    border-radius: 8px;
    overflow: hidden;
    color:black;
}
.videotutoriels a > div video{
    width: 280px;
    height:160px;
    background-color: #000;
}
.videotutoriels a > div > div{
    width: 260px;
    padding: 10px;
}
.videotutoriels a> div > div h2{
    font-size:1rem;
    width: 260px;
    border-bottom: 1px solid lightgray;
    padding-bottom:5px;
}
.videotutoriels a > div > div div{
    width:240px;
    display: flex;
    flex-direction:row;
    justify-content: space-between;
    padding: 10px 5px;
}
.videotutoriels a > div > div div span{
    font-size: .8rem;
}
/****COURS****/
.courEtudiants{
    display: flex;
    width: 100%;
}
.courEtudiants > div{
    width: 100%;
    padding: 10px;
}
.courEtudiants > div h2{
    font-size: 1rem;
    color:red;
    border-bottom:1px solid;
    padding-bottom:10px;
}
.courEtudiants > div ul.cours{
    list-style: none;
    padding:0px 50px 0px 10px;
}
.courEtudiants > div ul.cours li{
    display: block;
    padding:5px;
    margin:5px 0px;
    background-color: lightgray;
}
.courEtudiants > div ul li h4{
    font-family:Arial, Helvetica, sans-serif;
}
.courEtudiants > div ul li span{
    font-size:.8rem;
    font-family:var(--roboto-CondensedItalic);
}
.courEtudiants > div ul li.vue{
    background-color:rgba(255, 0, 0, 0.216);
}
.courEtudiants > div ul li.encours{
    background-color:rgba(135, 207, 235, 0.284);
}

.courEtudiants >div > div > div.indications ul{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    list-style: none;
}
.courEtudiants >div > div > div.indications ul li{
    font-size:.7rem;
    justify-items: center;
    display: flex;
}
.courEtudiants >div > div > div.indications ul li span{
    width: 30px;
    height: 10px;
    background-color:red;
    padding:0px 10px 5px 0px;
    margin-right: 5px;
}
.courEtudiants >div > div > div.indications ul li:nth-child(1) span{
    background-color:rgba(255, 0, 0, 0.216);
}
.courEtudiants >div > div > div.indications ul li:nth-child(2) span{
    background-color:lightgray;
}
.courEtudiants >div > div > div.indications ul li:nth-child(3) span{
    background-color:rgba(135, 207, 235, 0.284);
}
.moyencours > div ul{
    list-style: none;
    padding:0px 20px !important;
}
.moyencours > div ul li{
    border-bottom: 1px solid lightgrey;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

#infomartionInscrioption{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height:100%;
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
    background:rgba(0, 0, 0, 0.949);
}

#infomartionInscrioption > div{
    padding:20px;
    border-radius:20px;
    background:white;
    display:flex;
    justify:center;
    align-items:center;
    flex-direction:column;
}
#infomartionInscrioption > div h1{
    text-align:center;
}
#infomartionInscrioption > div h2{
    padding:10px;
    background:green;
    color:white;
    border-radius:20px;
    margin-top:20px;
}
#infomartionInscrioption > div p{
    padding:10px;
    background:yellow;
    color:black;
    border-radius:20px;
    margin-top:20px;
}
texteDescription