/*Pour le Bandeau Latéral*/

#lateral-panel {
    z-index: 9999;
    /* pour être au dessus des autres éléments */
    position: fixed;
    /* ne suit pas le scroll de la page et sert de réfèrent */
    top: 0;
    /* position en haut */
    left: 0;
    /* à gauche */
    width: 40em;
    /* valeur de largeur pour tout le contenu */
    min-height: 100vh;
    /* occupe toute la hauteur du viewport */
    transform: translateX(-100%);
    /* on déplace à gauche pour ne pas interférer avec le document */
}

#lateral-panel-input {
    position: absolute;
    /* pour sortir l'élément du flux */
    left: -999em;
    /* position hors de la fenêtre */
}

#lateral-panel-bloc {
    /*-- positions et dimensions --*/
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    /*-- visuel --*/
    border-right: 1px solid #CCC;
    background: #474c58;
    transition: transform 1s;
    /* pour animation du panneau */
}

#lateral-panel-label {
    /*-- positions et dimensions --*/
    z-index: 1;
    /* on le met au dessus */
    position: absolute;
    /* pour sortir l'élément du flux, il va bouger */
    top: 75px;
    /* on décolle légèrement du haut */
    left: 100%;
    /* alignement sur le bord droit du parent */
    width: 3em;
    /* dimensions respectables */
    height: 5em;
    /*-- visuel --*/
    border: 1px solid #CCC;
    border-width: 3px 3px 3px 0;
    border-color: blue;
    border-radius: 0 1.5em 1.5em 0;
    font-size: inherit;
    background: #ffffff;
    transition: all 1s;
    /* pour animation éventuelle */
    cursor: pointer;
}

#lateral-panel-content {
    padding: .5em;
    /* on décolle le contenu du bord */
    overflow: auto;
    /* rien ne doit déborder */
    max-height: 100%;
    /* pas plus haut que son parent */
    box-sizing: border-box;
    /* modèle de boîte, plus simple à gérer */
}

#lateral-panel-input:checked~#lateral-panel-bloc {
    transform: translateX(100%);
    /* translation vers la droite de 100% */
}

#lateral-panel-label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    box-sizing: border-box;
    width: 1em;
    height: 1em;
    border: .5em solid currentColor;
    border-width: .5em .5em 0 0;
    color: blue;
    transition: all 1s;
    transform: translate(-50%, -50%) rotate(45deg);
}

#lateral-panel-label:hover {
    background-color: #717171;
}

#lateral-panel-input:checked~#lateral-panel-bloc #lateral-panel-label:before {
    transform: translate(-50%, -50%) rotate(-135deg);
}

/*Pour le Bandeau Latéral*/

/*Pour le Menu Fixe En Haut*/
.menufixe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    text-align: right;
    color: white;
    font-family: 'Arial Black';
    font-size: 20px;
    background-color: #474c58;
    border: 1px solid #232329;
    line-height: 2em;
    margin: 0;
}

html>body .menufixe {
    position: fixed
}

/*Pour le Menu Fixe En Haut*/

/*Pour Faire disparaitre le Menu Fixe en Haut suivant Zoom*/
@media (min-resolution: 100dpi) {
    .zoomhide {
        display: none;
    }
}

@media (min-resolution: 100dpi) and (orientation: portrait) {
    #lateral-panel-label {
        width: 6em;
        height: 10em;
    }

    #lateral-panel-label:before {
        width: 2em;
        height: 2em;
        border-width: 1em 1em 0 0;
    }
    #btnBandeauEntrée{
        width: 10em;
        height: 5em;
        bottom:5em;
    }
    #btnBandeauEntrée:before{
        width: 2em;
        height: 2em;
        border-width: 0 1em 1em 0;
    }
    #prev{
        font-size: 64px;
    }
    #next{
        font-size: 64px;
    }
}

@media (aspect-ratio< 3/2) {
  .ParallaxContainer {
        height:auto;
    }
}

@media (aspect-ratio> 3/2) {
  .ParallaxContainer {
        height:100vh;
    }
}

/*Pour Faire disparaitre le Menu Fixe en Haut suivant Zoom*/


/*Pour Retrecir le bandeau Entrée avec le scroll*/
.MainContainer {
    perspective: 1px;
    transform-style: flat;
    height: 100vh;
    overflow-x: scroll;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.ParallaxContainer {
    display: block;
    position: relative;
    z-index: -2;
}

/*Pour Retrecir le bandeau Entrée avec le scroll*/

/*Pour le bouton de défilement Bandeau Entrée*/
.btnBandeauEntrée {
    position: relative;
    z-index: 10;
    bottom: 3em;
    width: 8em;
    height: 3em;
    background-color: #f1f1f1;
    color: black;
    font-size: 16px;
    padding: 16px 30px;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #CCC;
    border-width: 3px 3px 0 3px;
    border-color: blue;
    border-radius: 1.5em 1.5em 0 0;
    font-size: inherit;
    background: #ffffff;
    transition: all 1s;
    left: 50%;
    transform: translateX(-50%);
    display: block;
}

.btnBandeauEntrée:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    box-sizing: border-box;
    width: 1em;
    height: 1em;
    border: .5em solid currentColor;
    border-width: 0 0.5em 0.5em 0;
    color: blue;
    transition: all 1s;
    transform: translate(-50%, -50%) rotate(45deg);
}

.btnBandeauEntrée:hover {
    animation: none;
    background-color: #717171;
}

/*Pour le bouton de défilement Bandeau Entrée*/

/*Pour le Caroussel*/
* {
    box-sizing: border-box
}

body {
    font-family: Verdana, sans-serif;
    margin: 0
}

.mySlides {
    display: none
}

img {
    vertical-align: middle;
}

/* Slideshow*/
.slideshow {
    max-width: 950px;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 36px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    transition: all 1s;
}

/* Position the "prev button" to the left */
.prev {
    left: 0;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.mySlides:hover~.prev{
    background-color: rgba(255, 255, 255, 0.5);
}

.mySlides:hover~.next {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Caption text */
.TitreSlider {
    color: #f2f2f2;
    font-size: 15px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}

/*Pour le Caroussel*/

/*Bouton Déroulant*/
.sec-center {
    position: relative;
    max-width: 100%;
    text-align: center;
    z-index: 200;
    color: #fff;
}

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.dropdown:checked+label,
.dropdown:not(:checked)+label {
    position: relative;
    font-family: 'Times New Roman';
    font-weight: bold;
    font-size: 55px;
    transition: all 500ms linear;
    width: 925px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    cursor: pointer;
    color: #4d5f6f;
    box-shadow: 0 12px 35px 0 rgba(255, 235, 167, .15);
}

.dropdown:not(:checked)~.uil-arrow-down {
    position: relative;
    display: inline-block;
    transform: rotate(45deg);
    cursor: pointer;
    /*-- visuel --*/
    height: 20px;
    width: 20px;
    border: 1px solid blue;
    border-width: 0 3px 3px 0;
    transition: transform 500ms linear;
}

.dropdown:checked~.uil-arrow-down {
    position: relative;
    display: inline-block;
    transform: rotate(225deg);
    cursor: pointer;
    /*-- visuel --*/
    height: 20px;
    width: 20px;
    border: 1px solid blue;
    border-width: 0 3px 3px 0;
    transition: transform 500ms linear;
}

.section-dropdown {
    position: relative;
    display: block;
    left: 0;
    width: 100%;
    max-height: 0px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 500ms linear;
}

.dropdown:checked~.section-dropdown {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: all 500ms linear;
}
/*Bouton Déroulant*/


/*Pour le mode Plein Ecran des videos*/
.full-screen {
  transition: 150ms;
  position: relative;
  margin: auto;
  height: fit-content;
  width: fit-content;
  border-radius: 20px;
  padding-inline: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  cursor: pointer;
  border-color: blue;
}

.full-screen:hover {
  background-color: rgba(255, 255, 255, 1);
}
/*Pour le mode Plein Ecran des videos*/