@font-face {
    font-family: "Exponentiel";
    src: url("fonts/Exponentiel.otf");
}


/* Menu Accueil */

#menuContenantAccueil {
    position: relative;
    width: 50%;
    height: 160px;
    background-color: transparent;
    z-index: 4000;
}

@media only screen and (max-width: 768px) {
    #menuContenantAccueil {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background-color: #ffffff;
        z-index: 4000;
    }
}

/* Contenant du bloc icône menu au coin supérieur droit */
#menuAnim {
    display: block;
    position: relative;
    left: 40px;
    top: 40px;
    height: 66px;
    width: 66px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0);
}

@media only screen and (max-width: 768px) {
    #menuAnim {
        left: 14px;
        top: 6px;
    }
}


/* Ce style gère le filet centrale de l’icône menu */
#menuAnim .menuIcone {
    display: inline-block;
    position: absolute;
    left: 28px;
    top: 50%;
    bottom: auto;
    right: auto;
    width: 30px;
    height: 4px;
    transition-timing-function: ease-out;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-color: #0046dd;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
    border-radius: 6px;
}


/* Ce style gère les filets du bas et du haut de l’icône menu */
#menuAnim .menuIcone::before,
#menuAnim .menuIcone::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #0046dd;
    right: 0;
    transition-timing-function: ease-in-out;
    -webkit-transition: -webkit-transform 0.7s, top 0.7s, background-color 0s;
    -moz-transition: -moz-transform 0.7s, top 0.7s, background-color 0s;
    -ms-transition: -ms-transform 0.7s, top 0.7s, background-color 0s;
    -o-transition: -o-transform 0.7s, top 0.7s, background-color 0s;
    transition: transform 0.7s, top 0.7s, background-color 0s;
    border-radius: 6px;
}


/* Distance entre le filet du haut et la ligne du centre */
#menuAnim .menuIcone::before {
    top: -0.55em;
}


/* Distance entre le filet du bas et la ligne du centre */
#menuAnim .menuIcone::after {
    top: 0.55em;
}


/* Rendre invisible le filet centrale de l’icône menu */
#menuAnim .menuIcone.is-clicked {
    background-color: rgba(255, 255, 255, 0);
    text-decoration: none;
}


/* Assigner blanc aux deux barres haut et bas de l’icône menu 
#menuAnim .menuIcone.is-clicked::before,
#menuAnim .menuIcone.is-clicked::after {
    background-color: #0046dd;
}*/


/* Animation de rotation de le filet du haut sur clique */
#menuAnim .menuIcone.is-clicked::before {
    top: 0;
    transition-timing-function: ease-in-out;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}


/* Animation de rotation de le filet du bas sur clique */
#menuAnim .menuIcone.is-clicked::after {
    top: 0;
    transition-timing-function: ease-in-out;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
}

/* icone sur hover */
#menuAnim:hover {
    cursor: pointer;
}




/***** VIDÉO *****/

#video {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    position: relative;
    z-index: 10;
}

@media only screen and (max-width: 768px) {
    #video {
        margin-top: 90px;
        margin-bottom: 0px;
        padding-bottom: 0px;
        position: relative;
        z-index: 10;
    }
}

#media {
    margin-top: 0px;
    margin-bottom: -10px;
    padding-bottom: 0px;
    z-index: 5000;
}


body.degradeFond {
    margin: 0;
    background-image: url(images/blancDegrade.png), url(images/fondDegrade.jpg);
    background-position: top left, top right;
    background-repeat: repeat-y, no-repeat;
    background-size: auto, cover;
    background-attachment: fixed, fixed;
}

@media only screen and (max-width: 768px) {
    body.degradeFond {
        background-image: none;
        background-color: #ffffff;
        background-position: top right;
        background-repeat: repeat-y;
        background-size: auto;
        background-attachment: scroll;
    }
}

body.fondBlanc {
    background: #fff;
}

body.fondAccueil {
    background-image: url(images/fondprof.jpg);
    background-position: 0px 160px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


#logotypePartenaires {
    display: block;
    position: absolute;
    z-index: 4000;
    top: 30px;
    right: 160px;
    background-image: url(images/logo.png);
    background-repeat: no-repeat;
    background-size: 222px, 92px;
    opacity: 1;
    transition: opacity 0.2s;
    transition-timing-function: ease-in-out;
}

@media only screen and (max-width: 768px) {
    #logotypePartenaires {
        display: block;
        width: auto;
        position: fixed;
        top: 5px;
        right: 20px;
        background-image: url(images/logo.png);
        background-repeat: no-repeat;
        background-size: 148px, 63px;
        z-index: 5000;
    }
}

#logotypePartenaires.logotypeVisible {
    opacity: 0;
}

#logotypePartenaires img {
    width: 222px;
    height: 92px;
}

@media only screen and (max-width: 768px) {
    #logotypePartenaires img {
        width: 148px;
        height: 63px;
    }
}




#logotype {
    display: block;
    position: fixed;
    z-index: 4004;
    top: 30px;
    right: 160px;
    background-image: url(images/logoBlanc.png);
    background-repeat: no-repeat;
    background-size: 222px, 92px;
    opacity: 1;
    transition: opacity 0.2s;
    transition-timing-function: ease-in-out;
}

@media only screen and (max-width: 768px) {
    #logotype {
        display: block;
        width: auto;
        position: fixed;
        top: 5px;
        right: 20px;
        background-image: url(images/logo.png);
        background-repeat: no-repeat;
        background-size: 148px, 63px;
        z-index: 5000;
    }
}


#logotype.logotypeVisible {
    opacity: 0;
}

#logotype img {
    width: 222px;
    height: 92px;
}

@media only screen and (max-width: 768px) {
    #logotype img {
        width: 148px;
        height: 63px;
    }
}


/* Filet tester cercle étudiant actif */
#bandHaut {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.0);
    position: fixed;
    top: 300px;
    z-index: 100;
}

/* Filet tester cercle étudiant actif */
#bandBas {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.0);
    position: fixed;
    top: 600px;
    z-index: 100;
}


/******* MENU *******/

#xcontainer {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 34px;
    z-index: 1000;

}

#fondGrosX {
    position: fixed;
    display: block;
    width: 100%;
    height: 60px;
    background-color: rgba(0, 68, 221, 0);
    background-image: url(images/x.svg);
    background-repeat: no-repeat;
    background-position: center 10px;
    background-size: 20px 20px;
    transition: all 0.6s;
    transition-timing-function: ease-in-out;
    z-index: 999;
}

#fondGrosX.grosX {
    height: 100vh;
    background-color: #0044dd;
    background-position: center -1000px;
    background-size: 3000px 3000px;
}

.container {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
}

.menu-container {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    top: 0;
    transition: all 0.3s;
}

.menu-container.full-menu {
    border-radius: 0;
    padding: 0 !important;
    position: aboslute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all 0.3s;
}

.full-menu .menu {
    top: 0px;
    left: 0px;
}

.menu {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 100;
    transition: all 0.3s;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

#xBlack {
    opacity: 0;
    position: fixed;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 34px;
    height: 34px;
    background-color: rgba(255, 211, 72, 0);
    background-image: url(images/xBlack.svg);
    background-repeat: no-repeat;
    background-position: center 10px;
    background-size: 20px 20px;
    transition: all 0.6s;
    transition-timing-function: ease-in-out;
}

#xBlack.xBlackShow {
    opacity: 1;
    top: 6px;
    left: 50%;
    transform: translateX(-50%) rotate(-180deg);
    transform-origin: 50% 50%;
}

/******* FIN MENU *******/





.portrait {
    display: block;
    width: 400px;
    height: 400px;
    border-radius: 100%;
}







.exponentielle-wrapper {
    position: relative;
    padding-top: 200px;
    padding-left: 100px;
    width: 630px;
    height: 100vh;
    margin-left: 0px;
}

@media only screen and (max-width: 768px) {
    .exponentielle-wrapper {
        padding-left: 0;
        width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

#bandeGauche {
    padding-bottom: 300px;
    padding-top: 300px;
    display: block;
    position: fixed;
    bottom: 0;
    width: 310px;
    transition: bottom 1s;
    transition-timing-function: ease-in-out;
}

@media only screen and (max-width: 768px) {
    #bandeGauche {
        display: none;
    }
}

#bandeDroite {
    position: relative;
    padding-bottom: 300px;
    padding-top: 300px;
    display: block;
    width: 310px;
    margin-left: 310px;
    transition: top 1s;
    transition-timing-function: ease-in-out;
}

@media only screen and (max-width: 768px) {
    #bandeDroite {
        margin-left: 0px;
    }
}

#blocInfoFinissant {
    width: 700px;
    height: 220px;
    display: inline;
    position: fixed;
    z-index: 10;
    left: 700px;
    top: 70%;
    transform: translateY(-70%);
    -webkit-transition: opacity linear 0.2s;
    -moz-transition: opacity linear 0.2s;
    -o-transition: opacity linear 0.2s;
    transition: opacity linear 0.2s;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    #blocInfoFinissant {
        width: 100%;
        height: 176px;
        left: 0px;
        top: auto;
        bottom: 0;
        background-color: #999999;
        background-image: url(images/fondNomEtudiants);
        background-size: cover;
        background-repeat: no-repeat;
        margin: 0;
        padding: 0;
        transform: translateY(0%);
    }
}

#contenantBlocsNoms {
    position: absolute;
    width: 700px;
    display: block;
    transition: top 0.5s;
    transition-timing-function: ease-in-out;
}

@media only screen and (max-width: 768px) {
    #contenantBlocsNoms {
        position: absolute;
        width: 100%;
        display: block;
        transition: top 0.5s;
        transition-timing-function: ease-in-out;
    }
}

#contenantNbr {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    display: block;
    transition: top 0.5s;
    transition-timing-function: ease-in-out;
    padding-top: 4px;
}

#contenantNbrTotal {
    position: absolute;
    top: 0;
    left: 50px;
    width: 80px;
    text-align: right;
}

#contenantExposant {
    position: absolute;
    display: block;
    transition: top 0.5s;
    transition-timing-function: ease-in-out;
}


#ContenantPrenomNom01,
#ContenantPrenomNom02,
#ContenantPrenomNom03,
#ContenantPrenomNom04,
#ContenantPrenomNom05,
#ContenantPrenomNom06,
#ContenantPrenomNom07,
#ContenantPrenomNom08,
#ContenantPrenomNom09,
#ContenantPrenomNom10,
#ContenantPrenomNom11,
#ContenantPrenomNom12,
#ContenantPrenomNom13,
#ContenantPrenomNom14,
#ContenantPrenomNom15,
#ContenantPrenomNom16,
#ContenantPrenomNom17,
#ContenantPrenomNom18,
#ContenantPrenomNom19,
#ContenantPrenomNom20,
#ContenantPrenomNom21,
#ContenantPrenomNom22,
#ContenantPrenomNom23,
#ContenantPrenomNom24,
#ContenantPrenomNom25,
#ContenantPrenomNom26,
#ContenantPrenomNom27,
#ContenantPrenomNom28,
#ContenantPrenomNom29,
#ContenantPrenomNom30,
#ContenantPrenomNom31,
#ContenantPrenomNom32,
#ContenantPrenomNom33,
#ContenantPrenomNom34,
#ContenantPrenomNom35,
#ContenantPrenomNom36,
#ContenantPrenomNom37,
#ContenantPrenomNom38,
#ContenantPrenomNom39 {
    display: block;
    width: 700px;
    height: 220px;
    position: relative;
    left: 0;
    top: 0px;
    transition: top 0.2s;
    transition-timing-function: linear;
    opacity: 1;
}

@media only screen and (max-width: 768px) {

    #ContenantPrenomNom01,
    #ContenantPrenomNom02,
    #ContenantPrenomNom03,
    #ContenantPrenomNom04,
    #ContenantPrenomNom05,
    #ContenantPrenomNom06,
    #ContenantPrenomNom07,
    #ContenantPrenomNom08,
    #ContenantPrenomNom09,
    #ContenantPrenomNom10,
    #ContenantPrenomNom11,
    #ContenantPrenomNom12,
    #ContenantPrenomNom13,
    #ContenantPrenomNom14,
    #ContenantPrenomNom15,
    #ContenantPrenomNom16,
    #ContenantPrenomNom17,
    #ContenantPrenomNom18,
    #ContenantPrenomNom19,
    #ContenantPrenomNom20,
    #ContenantPrenomNom21,
    #ContenantPrenomNom22,
    #ContenantPrenomNom23,
    #ContenantPrenomNom24,
    #ContenantPrenomNom25,
    #ContenantPrenomNom26,
    #ContenantPrenomNom27,
    #ContenantPrenomNom28,
    #ContenantPrenomNom29,
    #ContenantPrenomNom30,
    #ContenantPrenomNom31,
    #ContenantPrenomNom32,
    #ContenantPrenomNom33,
    #ContenantPrenomNom34,
    #ContenantPrenomNom35,
    #ContenantPrenomNom36,
    #ContenantPrenomNom37,
    #ContenantPrenomNom38,
    #ContenantPrenomNom39 {
        display: block;
        width: 100%;
        height: 220px;
        position: relative;
        left: 0;
        top: 0px;
        transition: top 0.2s;
        transition-timing-function: linear;
        opacity: 1;
    }
}

.blocPrenomNom {
    width: 850px;
    display: inline;
    text-align: center;
    overflow: visible;
}

.prenomNom {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
}

.prenomNom h3 {
    font-family: sofia-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 60px;
    color: #ffffff;
    line-height: 60px;
    margin: 0;
    padding: 0;
    padding-top: 8px;
    padding-bottom: 12px;
    text-align: center;
    overflow: visible;
}

@media only screen and (max-width: 768px) {
    .prenomNom h3 {
        font-size: 32px;
        line-height: 34px;
    }
}

.transparenceIn {
    opacity: 0;
}

.finissants-img-container {
    position: relative;
    display: block;
    width: 300px;
    height: 300px;
}

.portraitCarre {
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translate(-50%, -100%);
    width: 10px;
    height: 10px;
    background-color: rgba(255, 204, 204, 0.0);
    z-index: 200;
}

#portraitPointer2 {
    /* background-color: #c964ff; */
}

.contenantImage {
    position: relative;
    display: block;
    position: relative;
}

.contenantImageGauche {
    position: relative;
    display: block;
    position: relative;
}

.finissants-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%;
    width: 250px;
    height: 250px;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    opacity: 0.3;
}

.iconeReseaux {
    text-align: center;
    width: 700px;
}

@media only screen and (max-width: 768px) {
    .iconeReseaux {
        width: 100%;
    }
}

.iconeReseaux a {
    display: inline-block;
}

.iconeReseaux a img {
    margin-right: 10px;
    transition: opacity 0.6s;
    transition-timing-function: ease-in-out;
    opacity: 1;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .iconeReseaux a img {
        width: 50px;
        margin-right: 5px;
        margin-left: 5px;
        transition: opacity 0.6s;
        transition-timing-function: ease-in-out;
        opacity: 1;
        text-align: center;
    }
}

.iconeReseaux a:hover img {
    opacity: 0.5;
}

.behance,
.linkedin {
    width: 40px;
}

.instagram {
    width: 30px;
}














/* Contenant global finissants */

.exponentielle-team-wrapper {
    position: relative;
    overflow: hidden;
    -ms-touch-action: pan-up !important;
    touch-action: pan-up !important;
}

.pt {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    top: calc(var(--vh, 1vh) * 50 - 10px);
    width: 20px;
    height: 20px;
    margin-left: -10px;
    border-radius: 50%;
    background-color: #fff;
    pointer-events: none;
    z-index: 8;
}

.exponentielle-team-imgs-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 520px;
    position: absolute;
    right: calc(50% - 180px);
    width: 680px;
    height: 100%;
}

/* contenant finissants Gauche et Droite */

.exponentielle-team-imgs-left-container,
.exponentielle-team-imgs-right-container {
    position: relative;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

.exponentielle-team-imgs-left-container .exponentielle-team-img-container {
    bottom: 0;
}

.img-lazy-container.img-loaded {
    background-color: rgba(136, 136, 136, 0);
}

.exponentielle-team-img-container {
    width: 240px;
    height: 240px;
}

.exponentielle-team-img-container {
    position: absolute;
    left: 0;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%);
    mask-image: radial-gradient(circle, #fff 100%, #000 100%);
    background-color: rgba(255, 255, 255, .1);
    overflow: hidden;
}

.exponentielle-team-img-container:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .3;
}

*,
:after,
:before {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

.img-lazy-container {
    background-color: rgba(136, 136, 136, .1);
    -webkit-transition: background .5s cubic-bezier(.455, .03, .515, .955) .5s;
    transition: background .5s cubic-bezier(.455, .03, .515, .955) .5s;
}

#exponentielleency img {
    max-width: 100%;
}

.img-lazy-container.img-loaded .img-lazy {
    opacity: 1;
}

.img-lazy {
    opacity: 0;
    -webkit-transition: opacity 1s cubic-bezier(.455, .03, .515, .955);
    transition: opacity 1s cubic-bezier(.455, .03, .515, .955);
}




/* Numéro exponantiel */

#etudiantsNbr {
    width: 160px;
    height: 30px;
    display: block;
    position: fixed;
    z-index: 10;
    right: 50px;
    bottom: 50px;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    #etudiantsNbr {
        width: 200px;
        height: 30px;
        display: block;
        position: fixed;
        z-index: 1000;
        right: 50%;
        transform: translateX(50%);
        bottom: 3px;
        overflow: hidden;
    }
}

#contenantNo {
    width: 160px;
    height: 30px;
    display: block;
    position: relative;
}

.list-prog-total {
    font-family: "Exponentiel", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 28px;
    line-height: 18px;
    text-align: left;
    color: #ffffff;
    width: 50px;
    height: 30px;
    position: absolute;
    left: 34px;
    top: 0;
    padding-top: 4px;
}

@media only screen and (max-width: 768px) {
    .list-prog-total {
        font-size: 24px;
        height: 26px;
    }
}

.list-prog-nb {
    font-family: "Exponentiel", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 28px;
    line-height: 18px;
    text-align: right;
    color: #ffffff;
    width: 80px;
    height: 30px;
    display: block;
    position: relative;
    left: 0;
    transition: top 0.3s;
    transition-timing-function: ease-in-out;
}

@media only screen and (max-width: 768px) {
    .list-prog-nb {
        font-size: 24px;
        width: 80px;
        left: 6px;
    }
}

.numeroEntrant {
    top: 10px;
}

.numeroSortantHaut {
    top: -30px;
}

.numeroSortantBas {
    top: 30px;
}


#exposant {
    position: fixed;
    top: 32%;
    left: 600px;
    transform: translateY(-32%);
    width: 120px;
    height: 120px;
    z-index: 20;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    #exposant {
        top: 34%;
        left: auto;
        right: 15%;
    }
}

.list-prog-nb-exposant {
    display: block;
    position: absolute;
    width: 120px;
    height: 120px;
}

.list-prog-nb-exposant h5 {
    display: inline-block;
    letter-spacing: -3px;
    position: absolute;
    width: 120px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Exponentiel", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 110px;
    text-align: center;
    background: transparent;
    background: -webkit-linear-gradient(to top, #0000E1 20%, #00E0FF 80%);
    background: -moz-linear-gradient(to top, #0000E1 20%, #00E0FF 80%);
    background: linear-gradient(to top, #0000E1 20%, #00E0FF 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 768px) {
    .list-prog-nb-exposant h5 {
        font-size: 90px;
    }
}


#exposant01,
#exposant02,
#exposant03,
#exposant04,
#exposant05,
#exposant06,
#exposant07,
#exposant08,
#exposant09,
#exposant10,
#exposant11,
#exposant12,
#exposant13,
#exposant14,
#exposant15,
#exposant16,
#exposant17,
#exposant18,
#exposant19,
#exposant20,
#exposant21,
#exposant22,
#exposant23,
#exposant24,
#exposant25,
#exposant26,
#exposant27,
#exposant28,
#exposant29,
#exposant30,
#exposant31,
#exposant32,
#exposant33,
#exposant34,
#exposant35,
#exposant36,
#exposant37,
#exposant38,
#exposant39 {
    display: block;
    width: 120px;
    height: 120px;
    position: relative;
    transition: top 0.3s;
    transition-timing-function: ease-in-out;
}







/* Section haut icone filtre */

#iconeContainer {
    position: fixed;
    top: 60px;
    right: 50px;
    display: block;
    margin-left: 160px;
    width: 80px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.0);
    border-radius: 22px;
    z-index: 1300;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #iconeContainer {
        top: 100px;
        right: 20px;
        background-color: #0000E1;
    }
}

#iconeContainer.iconeRotationFond {
    background-color: rgba(255, 255, 255, 1.0);
}

@media only screen and (max-width: 768px) {
    #iconeContainer.iconeRotationFond {
        background-color: #0000E1;
    }
}

#iconeFiltres {
    display: inline-block;
    position: relative;
    z-index: 300;
    width: 24px;
    height: 24px;
    margin-left: 26px;
    margin-top: 8px;
    background-image: url(images/filtresBlanc.png);
    background-size: 24px 24px;
    background-repeat: no-repeat;
    transform: rotate(0deg);
    transition: transform 0.5s, background-image 0.5s;
    cursor: pointer;
}

#iconeFiltres.iconeFilterRotation {
    transform: rotate(-90deg);
    transform-origin: center center;
    background-image: url(images/filtresCouleur.png);
}




/* Grand conteneur */

#filtresContainer {
    position: fixed;
    top: 80px;
    right: 50px;
    width: 240px;
    height: 400px;
    overflow: hidden;
    z-index: 1000;
}

@media only screen and (max-width: 768px) {
    #filtresContainer {
        top: 120px;
        right: 20px;
    }
}

#titreEtIcones {
    position: absolute;
    top: -400px;
    transition: top 0.4s;
    transition-timing-function: ease-out;
    z-index: 20;
}

#titreEtIcones.menuDescendre {
    top: 0px;
}





/* Section bas titre filtre */

#blocFiltresTitre {
    width: 240px;
    height: 400px;
    position: relative;
    right: 0px;
    overflow: hidden;
}

#blocMouvementTitre {
    width: 160px;
    position: absolute;
    z-index: 1;
    right: -50px;
    top: 50px;
    transition: right 0.3s;
    transition-timing-function: ease-out;
}

@media only screen and (max-width: 768px) {
    #blocMouvementTitre {
        display: none;
    }
}

#blocMouvementTitre.titreSortie {
    right: 100px;
}

.filtre_titre h3 {
    font-family: "Exponentiel", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 18px;
    line-height: 2em;
    letter-spacing: 0.05em;
    text-align: right;
    color: #ffffff;
    cursor: pointer;
}




/* Section bas icones filtre */

#blocFiltresIcone {
    padding-top: 20px;
    margin-top: 30px;
    position: absolute;
    right: 0;
    z-index: 10;
    width: 80px;
    height: 340px;
    border-radius: 40px;
    background-color: rgb(255, 255, 255);
}

@media only screen and (max-width: 768px) {
    #blocFiltresIcone {
        background-color: #0000E1;
    }
}


/* Photo */

#Contenant_filtre_Photo {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Photo {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Photographie.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #filtre_Photo {
        background-color: rgba(255, 255, 255, 0);
        background-image: url(images/icon_PhotographieMobile.png);
    }
}

#filtre_Photo.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

@media only screen and (max-width: 768px) {
    #filtre_Photo.onOfficone {
        background-blend-mode: luminosity;
        opacity: 0.5;
    }
}

#titre_Photo h3.titreCouleur {
    color: transparent;
}

/* Illustration */

#Contenant_filtre_Illustration {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Illustration {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Illustration.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #filtre_Illustration {
        background-color: rgba(255, 255, 255, 0);
        background-image: url(images/icon_IllustrationMobile.png);
    }
}

#filtre_Illustration.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

@media only screen and (max-width: 768px) {
    #filtre_Illustration.onOfficone {
        background-blend-mode: luminosity;
        opacity: 0.5;
    }
}

#titre_Illustration h3.titreCouleur {
    color: transparent;
}

/* Packaging */

#Contenant_filtre_Packaging {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Packaging {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Packaging.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #filtre_Packaging {
        background-color: rgba(255, 255, 255, 0);
        background-image: url(images/icon_PackagingMobile.png);
    }
}

#filtre_Packaging.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

@media only screen and (max-width: 768px) {
    #filtre_Packaging.onOfficone {
        background-blend-mode: luminosity;
        opacity: 0.5;
    }
}

#titre_Packaging h3.titreCouleur {
    color: transparent;
}

/* Edition */

#Contenant_filtre_Edition {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Edition {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Edition.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #filtre_Edition {
        background-color: rgba(255, 255, 255, 0);
        background-image: url(images/icon_EditionMobile.png);
    }
}

#filtre_Edition.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

@media only screen and (max-width: 768px) {
    #filtre_Edition.onOfficone {
        background-blend-mode: luminosity;
        opacity: 0.5;
    }
}

#titre_Edition h3.titreCouleur {
    color: transparent;
}

/* Interface */

#Contenant_filtre_Interface {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Interface {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Interface.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #filtre_Interface {
        background-color: rgba(255, 255, 255, 0);
        background-image: url(images/icon_InterfaceMobile.png);
    }
}

#filtre_Interface.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

@media only screen and (max-width: 768px) {
    #filtre_Interface.onOfficone {
        background-blend-mode: luminosity;
        opacity: 0.5;
    }
}

#titre_Interface h3.titreCouleur {
    color: transparent;
}

/* Motion */

#Contenant_filtre_Motion {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Motion {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Motion.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #filtre_Motion {
        background-color: rgba(255, 255, 255, 0);
        background-image: url(images/icon_MotionMobile.png);
    }
}

#filtre_Motion.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

@media only screen and (max-width: 768px) {
    #filtre_Motion.onOfficone {
        background-blend-mode: luminosity;
        opacity: 0.5;
    }
}

#titre_Motion h3.titreCouleur {
    color: transparent;
}

/* Matriciel */

#Contenant_filtre_Matriciel {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Matriciel {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Matricielle.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #filtre_Matriciel {
        background-color: rgba(255, 255, 255, 0);
        background-image: url(images/icon_MatricielleMobile.png);
    }
}

#filtre_Matriciel.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

@media only screen and (max-width: 768px) {
    #filtre_Matriciel.onOfficone {
        background-blend-mode: luminosity;
        opacity: 0.5;
    }
}

#titre_Matriciel h3.titreCouleur {
    color: transparent;
}

/* IdVisuelle */

#Contenant_filtre_IdVisuelle {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_IdVisuelle {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_IdVisuelle.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #filtre_IdVisuelle {
        background-color: rgba(255, 255, 255, 0);
        background-image: url(images/icon_IdVisuelleMobile.png);
    }
}

#filtre_IdVisuelle.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

@media only screen and (max-width: 768px) {
    #filtre_IdVisuelle.onOfficone {
        background-blend-mode: luminosity;
        opacity: 0.5;
    }
}

#titre_IdVisuelle h3.titreCouleur {
    color: transparent;
}

/* Publicite */

#Contenant_filtre_Publicite {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    height: 36px;
    z-index: 10;
}

#filtre_Publicite {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-image: url(images/icon_Publicite.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color: white;
    background-blend-mode: normal;
    z-index: 20;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #filtre_Publicite {
        background-color: rgba(255, 255, 255, 0);
        background-image: url(images/icon_PubliciteMobile.png);
    }
}

#filtre_Publicite.onOfficone {
    background-blend-mode: luminosity;
    opacity: 0.3;
}

@media only screen and (max-width: 768px) {
    #filtre_Publicite.onOfficone {
        background-blend-mode: luminosity;
        opacity: 0.5;
    }
}

#titre_Publicite h3.titreCouleur {
    color: transparent;
}



/* Partenaires */

#contenantsPartenaires {
    margin-top: 200px;
    max-width: 950px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#contenantsPartenaires img {
    width: 100%;
    height: auto;
}

#contenantsPartenaires h1 {
    font-family: exponentiel, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3em;
    color: #0041e0;
    line-height: 1em;
    padding-bottom: 20px;
}

#contenantsPartenaires p {
    font-family: sofia-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1em;
    color: #000000;
    line-height: 1.2em;
}

#contenantsPartenaires h2 {
    font-family: sofia-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1em;
    color: #0041e0;
    line-height: 1em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.sectionTitres {
    display: block;
    width: 100%;
    background-image: url(images/filetSousTitre.gif);
    background-repeat: repeat-x;
    background-position: center;
    text-align: center;
}

.sousTitre {
    display: inline-block;
    padding: 20px;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
}

.donateurs {
    text-align: justify;
}

@media only screen and (max-width: 768px) {
    .donateurs {
        text-align: left;
    }
}

.grandsDonateurs p {
    text-align: center;
}

#credits {
    width: 40%;
    min-height: 1000px;
    padding-left: 30%;
    padding-right: 30%;
    background-size: cover;
    background-image: url(images/fondpartenaire.jpg);
    background-repeat: no-repeat;
    background-position: top center;
}

#creditsContenu {
    margin-top: 200px;
    max-width: 950px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#creditsContenu h2 {
    padding-top: 100px;
    font-family: sofia-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.2em;
    color: #ffffff;
    line-height: 1.2em;
    text-align: center;
}

#creditsContenu h3 {
    font-family: sofia-pro, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 0.9em;
    color: #ffffff;
    line-height: 1.2em;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
}

#creditsContenu p {
    font-family: sofia-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.8em;
    color: #ffffff;
    line-height: 1.2em;
    text-align: left;
    margin-bottom: 10px;
    margin-left: 19px;
}

#creditsContenu .italique {
    font-family: sofia-pro, sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 0.9em;
    color: #ffffff;
    line-height: 1em;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: -1px;
}

#creditsContenu .creditsGrid {
    margin-top: 100px;
}
