/* UNIQUEMENT POUR LA PHASE DE DÉVELOPPEMENT !!! */
#interactif {
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: fixed;
  left: 1rem;
  bottom: 3rem;
  width: 480px;
  padding: 1rem;
  background-color: rgba(168, 164, 164, 0.8);
  border: solid 1px;
  transform: translate(0, 0);
  cursor: grab;
}
.deplace-interactif {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
#interactif h2 {
  width: 100%;
  font-size: 22px;
  margin-top: 0;
}
#interactif h3 {
  width: 100%;
  margin: 0;
  font-size: 17px;
}
.boutons-interactifs, #css-interactif {
  width: 48%;
}
#css-interactif {
  font-size: 14px;
  background-color: #fff;
  border: solid 1px;
  padding: 0 4px;
}
.option-boutons {
  display: flex;
}
.option {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 15px;
}
.option div {
  font-size: 14px;
  margin-right: 3px;
}



/* GESTION DES COOKIES */
@-webkit-keyframes go {
  from {
    opacity: 1;
    z-index: 99;
  }
  to {
    opacity: 0;
    z-index: -1;
  }
}
@keyframes go {
  from {
    opacity: 1;
    z-index: 99;
  }
  to {
    opacity: 0;
    z-index: -1;
  }
}
@-webkit-keyframes gofirst {
  from {
    opacity: 1;
    z-index: 99;
  }
  to {
    opacity: 0;
    z-index: -1;
  }
}
@keyframes gofirst {
  from {
    opacity: 1;
    z-index: 99;
  }
  to {
    opacity: 0;
    z-index: -1;
  }
}
.cc-bottom {
  -webkit-transition: z-index 1s;
  transition: z-index 1s;
}
.cc-bottom.go {
  -webkit-animation: go 1s 6s forwards;
          animation: go 1s 6s forwards;
}
.cc-bottom.gofirst {
  -webkit-animation: gofirst 1s forwards;
          animation: gofirst 1s forwards;
}
.visited .cc-bottom {
  opacity: 0;
  z-index: -1;
}
.cc-revoke, .cc-window {
  font-size: 10.8pt;
}

/* Core Stuff */
@font-face {
  	font-family: "OpenSans";
  	src: url("../fonts/open-sans/opensans-regular-webfont.woff2") format("woff2"),
        url("../fonts/open-sans/opensans-regular-webfont.woff") format("woff");
    font-display: swap;
}
@font-face {
  	font-family: "OpenSansBold";
  	src: url("../fonts/open-sans/opensans-bold-webfont.woff2") format("woff2"),
        url("../fonts/open-sans/opensans-bold-webfont.woff") format("woff");
    font-display: swap;
}
@font-face {
  	font-family: "OpenSansCondensed";
  	src: url("../fonts/open-sans/opensans-condbold-webfont.woff2") format("woff2"),
        url("../fonts/open-sans/opensans-condbold-webfont.woff") format("woff");
    font-display: swap;
}
@font-face {
  	font-family: "LinuxLibertine";
  	src: url("../fonts/linux-libertine/linlibertine_rah-webfont.woff2") format("woff2"),
        url("../fonts/linux-libertine/linlibertine_rah-webfont.woff") format("woff");
    font-display: swap;
}
@font-face {
  	font-family: "LinuxLibertineBold";
  	src: url("../fonts/linux-libertine/linlibertine_rbah-webfont.woff2") format("woff2"),
        url("../fonts/linux-libertine/linlibertine_rbah-webfont.woff") format("woff");
    font-display: swap;
}

body, body .pure-g [class*="pure-u"], .pure-g {
  font-family: LinuxLibertine, sans-serif;
  font-size: 16px;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  background-color: #FFF;
  scroll-behavior: smooth;
  overscroll-behavior: none;
}
#body {
  position: relative;
  padding-top: 8rem;
  width: 100%;
  overflow: hidden;
}
#content, footer {
  width: 1500px;
  max-width: 90%;
  margin: 3rem auto;
}
#content {
  margin-bottom: 2rem;
}

a {
  color: #000;
  position: relative;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  word-wrap: break-word;
}
a:hover {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
}
.ext {
  margin-right: 5px;
}
a.ext::after {
  content: url('../images/external-link-alt.svg');
  display: inline-block;
  width: 9px;
  position: relative;
  left: 3px;
}

/*h1 {font-size: 15pt; font-weight: bold;}
h2 {font-size: 13.8pt; font-weight: bold;}
h3 {font-size: 12.5pt; font-weight: bold;}
h4 {font-size: 10.8pt; font-weight: bold;}*/

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Utility Classes */

.wrapper {
    margin: 0 3rem;
}

.left {
    float: left;
}

.right {
    float: right;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}


/***********/
/* DÉFAULT */
/***********/
#defaut .texte {
  width: 850px;
  text-align: left;
  line-height: 15pt;
}
.texte h2 {
  font-size: 18px;
}
#defaut p:nth-of-type(1) {
  margin-top: 0;
}

/* CONTACT */

/*.contact #defaut.pure-g {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}*/
.contact p, .contact p * {
  font-family: 'LinuxLibertine' !important;
  font-size: 16px !important;
}
.contact #defaut .texte {
  width: 650px;
  margin-bottom: 4rem;
}
.contact #defaut .illustration {
  text-align: right;
  width: 300px;
  line-height: 27.8px;
  margin-bottom: 2rem;
  margin-left: 5rem;
}
.illustration img {
  width: 80%;
}
.contact #defaut .info p {
  margin: 0;
  line-height: 14px;
}
.info > p:nth-child(1) > span:nth-child(1) {
  font-size: 14px !important;
}
.info > p:nth-child(2) > span:nth-child(1) {
  font-size: 14px !important;
  line-height: 0px;
}

.contact #defaut .formulaire {
  margin-top: 3rem;
}
.pure-form, .pure-button {
  background-color: rgb(216, 216, 216);
  padding-left: 1rem;
  border: none;
}
.pure-form:focus, .pure-form:active, .pure-form:hover,.pure-button:focus, .pure-button:active, .pure-button:hover {
  background-color: #fff;
  border: 0.864px solid #000;
}

.pure-button {
  text-align: left;
  text-transform: uppercase;
}
.pure-form, .pure-button {
  font-size: 9.2pt;
  width: 100%;
  height: 35px;
}
.form-display-wrapper {
  font-size: 9.2pt;
  line-height: 1.5;
}
.form-field {
  width: 100%;
  margin-bottom: 25px;
}
.buttons {
  width: 60%;
  margin-left: auto;
}
#contact {
  width: 300px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#contact .form-field:nth-of-type(5) {
  width: 100%;
}
#contact .pure-form.long {
  height: 150px;
  max-width: 100%;
  padding-top: 1rem;
}
form .buttons .button {
  opacity: .3;
  pointer-events: none;
}
form .buttons .button.show {
  opacity: 1;
  pointer-events: auto;
}



/* CAPTCHA */
.captcha {
  font-size: 9.2pt;
  height: 0;
  overflow: hidden;
}
.captcha.show {
  height: 100%;
}
.captcha .form-data {
  display: flex;
  justify-content: flex-end;
}
.captcha .radio {
  display: flex;
  margin-left: 0.3rem;
}
.captcha input[type="radio"] {
  margin-right: 2px;
}

.notices {
  width: 300px;
  margin-left: auto;
}

/***********/
/* ACCUEIL */
/***********/
.body_accueil #body {
  height: 100vh;
}
.body_accueil #content {
  height: 100%;
  margin: auto;
  padding: 1rem 0;
  opacity: 0;
}
.grav-lightslider, .lSSlideOuter , .lSSlideWrapper, .lslide {
  height: 100%;
}
.lightSlider {
  min-height: 100%;
}
.lslide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lightSlider img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 10rem);
  height: auto;
}

/**********/
/* CINÉMA */
/**********/
.cinema #intro {
  font-size: 12pt;
  line-height: 125%;
  margin-bottom: 3rem;
  width: 1000px;
}
.video {
  margin: 1.5rem 0;
}
.video .description {
  position: relative;
  width: 600px;
  height: 150px;
}
.video .description header, .video .description .resume {
  position: relative;
  left: calc(200px + 3rem);
}
.video .description header > * {
  margin: 0;
  line-height: 100%;
  font-weight: normal;
}
.video .description h2 {
  font-size: 13pt;
}
.video .description h2 span, .video .description h3, .video .description .date {
  font-size: 10.8pt;
}
.video .description .resume {
  line-height: 13.23px;
}
.video .description .resume p:nth-of-type(1) {
  margin-top: 0;
}
.video .image {
  position: absolute;
  top: 0;
  margin: 0 1.5rem 0 0;
  width: 200px;
}
.video .image .conteneur {
  width: 100%;
  /*text-align: center;*/
}
.video .image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 150px;
}
.visio {
  z-index: -1;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
}
.visio.visible {
  z-index: 99;
  opacity: 1;
}
.visio .box {
  position: relative;
  width: 50%;
  width: 700px;
}
.visio .croix {
  position: relative;
  left: 100%;
  top: 0;
  width: 25px;
  cursor: pointer;
}
.visio video {
  width: 100%;
}


/**********/
/* PHOTOS */
/**********/
.galerie-wrapper.pure-g {
  --largeur-list-: 150px;
  justify-content: space-between;
}
.galerie-list {
  width: var(--largeur-list-);
}
.galerie-show {
  width: calc(100% - var(--largeur-list-));
}

.galerie-list ul {
  /*position: fixed;*/
  list-style: none;
  margin: 0;
  padding: 0;
}
.galerie-title {
  cursor: pointer;
  margin-bottom: 8px;
  line-height: 1.2;
}
.galerie-title span {
  padding: 0 5px;
}
.galerie-title.active span {
  background: rgb(227,222,219);
}

.galerie-description {
  display: none;
  margin-bottom: 10px;
  padding-left: 1rem;
  font-size: 90%;
  font-style: italic;
}
.galerie-description.active {
  display: inline-block;
}

.photos .galerie-conteneur {
  display: none;
}
.photos .galerie-conteneur.active {
  display: flex;
}
/*.galerie.container {
  justify-content: center;
}
.active .image-container {
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-container img.portrait {
  width: 100%;
}
.image-container img.paysage {
  height: 100%;
  max-width: unset;
  width: unset;
}*/




/* LIGHTBOX */
/*#plein-ecran {
  top: 100%;
  z-index: -1;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#plein-ecran.show {
  z-index: 9999;
  opacity: 1;
  top: 0;
}
#croix-photo {
  z-index: 2;
  width: 25px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#plein-ecran .bar {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3.5px;
  background: rgb(120,120,120);
  border-radius: 1.5px;
}
#plein-ecran .bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
#plein-ecran .bar:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#croix-photo:hover .bar {
  background: rgb(200,200,200);
}*/

/* NOUVEAU LIGHTBOX PERSO */
/*.swipable {
  width: 80%;
  height: 80%;
  z-index: 1;
}
.clicable {
  position: absolute;
  width: 100%;
  height: 100%;
}
.chevron {
  z-index: 1;
  position: absolute;
  height: 100px;
  width: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.grand .chevron {
  display: none;
}
.chevron .fleche {
  position: absolute;
  height: 25px;
  width: 25px;
  border-top: solid 4px rgb(120, 120, 120);
  border-radius: 2px;
}
.chevron.left {
  left: 5px;
}
.chevron.left .fleche {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-left: solid 4px rgb(120, 120, 120);
}
.chevron.right {
  right: 5px;
}
.chevron.right .fleche {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  border-right: solid 4px rgb(120, 120, 120);
}
.chevron:hover .fleche {
  border-color: rgb(200,200,200);
}

#plein-ecran .wrapper {
  position: absolute;
  pointer-events: auto;
  color: #fff;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#plein-ecran .wrapper.hide {
  opacity: 0;
}
#plein-ecran .wrapper.show {
  opacity: 1;
}
#plein-ecran .wrapper .gauche {
  width: 66.66%;
  padding-left: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#plein-ecran .wrapper.portrait .gauche {
  width: 50%;
}
#plein-ecran .wrapper .gauche.seule {
  width: 100%;
  height: 100%;
  justify-content: center;
}
#plein-ecran .wrapper .gauche picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
#plein-ecran .wrapper .droite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 33.33%;
  padding: 5% 3rem 5% 2rem;
}
#plein-ecran .wrapper .droite.seule {
  width: 0;
  padding-left: 0;
}
#plein-ecran .wrapper .droite h3, #plein-ecran .wrapper .droite .legende {
  max-width: 530px;
}
#plein-ecran .wrapper .droite .legende {
  overflow: auto;
  scrollbar-width: thin;
  z-index: 2;
  padding-right: 1rem;
}
#plein-ecran .wrapper .droite .legende::-webkit-scrollbar {
  width: 5px;
}
#plein-ecran .wrapper.portrait .droite {
  width: 50%;
}
#plein-ecran .wrapper.portrait .droite.seule {
  width: 0;
}
#plein-ecran img {
  max-width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 64em) and (min-height: 450px) {
  #plein-ecran .wrapper.paysage {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  #plein-ecran .wrapper.paysage .gauche {
    width: 100%;
    max-height: 66.66%;
    padding: 5px 3rem 0;
  }
  #plein-ecran .wrapper.paysage .gauche.seule {
    max-height: unset;
  }
  #plein-ecran .wrapper.paysage .gauche picture {
    width: 620px;
  }
  #plein-ecran .wrapper.paysage .gauche.seule picture {
    width: 100%;
  }
  #plein-ecran .wrapper.paysage .droite {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0 3rem 10px;
  }
  #plein-ecran .wrapper.paysage .droite h3, #plein-ecran .wrapper.paysage .droite .legende {
    width: 620px;
    max-width: 100%;
  }
  #plein-ecran .wrapper.paysage .droite h3 {
    margin: 10px 0 0;
  }
}
@media only screen and (max-width: 64em) and (max-height: 449px) {
  #plein-ecran .wrapper.paysage .droite h3 {
    margin: 0;
  }
}

@media only screen and (max-width: 48em) and (min-height: 450px) {
  #plein-ecran .wrapper.portrait {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  #plein-ecran .wrapper.portrait .gauche {
    width: 100%;
    max-height: 66.66%;
    padding: 5px 3rem 0;
  }
  #plein-ecran .wrapper.portrait .gauche.seule {
    max-height: 100%;
  }
  #plein-ecran .wrapper.portrait .gauche picture {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #plein-ecran .wrapper.portrait .droite {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 3rem 10px;
  }
  #plein-ecran .wrapper.portrait .droite h3 {
    margin: 10px 0 0;
    width: 530px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 48em) and (max-height: 449px) {
  #plein-ecran .wrapper.portrait .droite h3 {
    margin: 0;
  }
}
.phone #plein-ecran .wrapper.paysage .gauche, .phone #plein-ecran .wrapper.portrait .gauche {
  padding: 5px 0 0;
}
*/

/**********/
/* CINEMA */
/**********/
@keyframes apparition {
  to {
    opacity: 1;
  }
}
body:not(.phone) #blog {
  opacity: 0;
  animation: apparition .1s .2s forwards linear;
}
.collection {
  --taille-img-: 300px;
  --marge-img-: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: calc(calc(3 * var(--taille-img-)) + calc(3 * var(--marge-img-)));
  /*flex-flow: row wrap;
  justify-content: space-around;*/
  /*margin: 3rem 0 100px;*/
}
.phone .collection {
  flex-flow: wrap;
}
.conteneur-film {
  height: calc(var(--taille-img-) + 50px);
  width: var(--taille-img-);
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;*/
  top: 0;
  left: 0;
  margin-right: var(--marge-img-);
  position: relative;
}
body:not(.wait) .conteneur-film {
  -webkit-transition: margin 0.5s,left 0.5s,top 0.5s;
  -o-transition: margin 0.5s,left 0.5s,top 0.5s;
  transition: margin 0.5s,left 0.5s,top 0.5s;
}
.conteneur-film img {
  width: var(--taille-img-);
  height: var(--taille-img-);
  max-width: unset;
  transition: opacity .5s;
}
.conteneur-film img:hover {
  opacity: .9;
}
.film-titre {
  display: inline-block;
  line-height: 1.2;
  text-decoration: none;
}
.film-titre:hover {
  color: #000;
  text-decoration: underline;
}

/********/
/* FILM */
/********/
.contenu-film {
  max-width: 620px;
}

/* Fiche technique */
.fiche-technique {
  margin: 1rem 0;
}
.fiche-technique-titre {
  font-weight: bold;
}

/* IFRAME */
.film .iframe {
  position: relative;
  display: flex;
  /*height: 158px;*/
  background-size: cover;
  background-repeat: no-repeat;
}
.confirmation {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  /*background-color: rgba(202, 204, 204, .5);*/
  background-size: cover;
  border-radius: 10px;
  /*padding: 0.5rem;*/
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.confirmation svg {
  height: auto;
  width: 620px;
}
.confirmation .rgpd {
  position: absolute;
  width: 75%;
  color: #fff !important;
  font-size: .75em;
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
  word-spacing: -0.024;
}
/*.confirmation:hover {
  background-color: rgba(120, 122, 122, .8);
}*/
.confirmation .rgpd p {
  display: inline;
  background-color: #000;
}
.confirmation.disparait {
  z-index: -1;
  opacity: 0;
}
.film iframe {
  position: absolute;
  border: none;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 880px) {
  .film .iframe {
    /*height: calc(17vw + 2rem);*/
  }
}


/******************/
/* GALERIES FILMS */
/******************/
.galerie-conteneur {
  display: flex;
  flex-flow: wrap;
}
.galerie-conteneur .image-wrapper {
  margin-right: 6.66px;
  cursor: pointer;
}
.galerie-conteneur figure {
  margin: 0;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .95);
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox.appear {
  width: 100%;
  height: 100%;
  z-index: 100;
}
.lightbox .image-wrapper, .lightbox figure, .lightbox picture {
  display: flex;
  justify-content: center;
}
.lightbox .image-wrapper {
  position: absolute;
  width: 90%;
  height: 90%;
  opacity: 0;
  transition: opacity 1s;
}
.lightbox .image-wrapper.en-avant {
  opacity: 1;
  z-index: 1;
}
.lightbox figure, .lightbox picture {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: 100%;
  max-width: 100%;
  width: 100% !important;
  height: 100%;
}
.lightbox picture {
  /*max-width: 700px;*/
}
.lightbox img {
  max-height: 85%;
  max-width: 100%;
  width: unset;
}
/*.photos .lightbox img {
  width: unset;
  max-width: 700px;
}*/
.lightbox figcaption {
  width: 100%;
  color: #fff;
}
.lightbox figcaption span {
  display: inline-block;
  width: 100%;
  margin-top: 1rem;
  font-family: sans-serif;
}
.light-title {
  font-size: 16px;
}
.lightbox figcaption span.light-subtitle {
  font-size: 12px;
  margin: 0;
}


.lightbox .swipable {
  z-index: 1;
  position: absolute;
  width: 90%;
  height: 90%;
}
.lightbox .fleches, .lightbox .croix {
  z-index: 5;
}
.lightbox .fleche {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  opacity: 1;
  background: none;
  cursor: pointer;
}
.lightbox .fleche .bars {
  width: 15px;
  height: 15px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.croix {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.croix .bars {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1.5px;
}
.croix .bars:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.croix .bars:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.fleches {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.fleche {
  position: relative;
  opacity: 0;
  width: 40px;
  height: 40px;
  transition: opacity .5s;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  opacity: .5;
}
.fleche .bars {
  width: 10px;
  height: 10px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
}
.gauche .bars {
  transform: translateX(2.5px) rotate(-135deg);
}
.droite .bars {
  transform: translateX(-2.5px) rotate(45deg);
}
.fleche:hover {
  opacity: .8;
}



/********/
/* MENU */
/********/
.pure-menu-fixed {
  background-color: rgba(255, 255, 255, .9);
  z-index: 99;
  width: 100%;
  font-size: 12pt;
}
#menu a {
  color: #000;
  text-decoration: none;
}
#menu a:hover {
  text-decoration: none;
  color: #000;
}
#bloclogo, .main-nav {
  width: 1500px;
  max-width: 90%;
}
#bloclogo {
  margin: 1rem auto 0.5rem;
}
#bloclogo a {
  display: inline-block;
  padding: .3rem;
  background-color: #fff;
  border: solid 2px;
}
#nom, #metier {
  margin: 0;
  line-height: 1.25;
}
#nom {
  font-size: 20pt;
  font-weight: bold;
  letter-spacing: 3.067px;
  padding-left: 0.2rem;
}
#metier {
  letter-spacing: 0.272px;
}
.main-nav {
  height: 100%;
  margin: auto;
}

.main-nav ul {
  margin: 0;
  height: 100%;
  /*overflow-y: scroll;
  overflow-x: hidden;*/
  scrollbar-width: none;
  flex-flow: row wrap;
  align-items: center;
  font-size: 1.2em;
  left: -.5rem;
}

.main-nav ul::-webkit-scrollbar {
  display: none;
}

.main-nav ul li {
    display: inline-block;
    height: auto;
    width: auto;
    left: -1rem;
    margin: 0;
    margin-bottom: 0.25rem;
    padding: 0 1rem;
    line-height: 1;
    border-right: 1px solid;
}
.main-nav ul li:last-of-type {
  border-right: none;
}
.main-nav ul li a:hover, .main-nav ul li.selected a {
  background-color: rgb(227, 222, 219);
}

.main-nav ul li a {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  letter-spacing: 0;
  line-height: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 0.1rem 0.5rem;
}

/* Selected Dropdown nav item */
.main-nav ul li.has-children.selected {
}
.main-nav ul li.selected > a, .main-nav ul li.selected > p {
}

.main-nav ul li.has-children {
}

.main-nav ul li.selected > ul {
  display: block;
}

/* Dropdown CSS */

.main-nav ul li ul {
  display: none;
  height: auto;
  text-align: left;
  margin: 0 0 0 35px;
  padding: 0;
}
.main-nav ul li ul li {
  display: block;
  margin: 0;
}
.main-nav ul li ul li a {
  padding: 0 0 0 1rem;
  font-size: 12pt;
  letter-spacing: 0.25px;
}

/* Dropdown CSS */

.main-nav ul li ul ul {
    left: 100%;
    top: 0;
}

/* Child Indicator */

.main-nav .has-children .has-children > a:after {
    content: '\f105';
}

/* Horizontal to Vertical menu */

.custom-wrapper {
  /*overflow: hidden;*/
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}

.custom-wrapper.open {
  padding-bottom: 1rem;
}

.custom-toggle {
  width: 5.8rem;
  height: 3rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: none;
}
a.custom-toggle {
  -webkit-transform-origin: center;
          transform-origin: center;
}
.custom-toggle.x {
  width: 3.5rem;
  height: 3rem;
}

#toggle p {
  margin: 0;
  font-size: 1rem;
  -webkit-transform: translateY(2.5px);
          transform: translateY(2.5px);
}

.custom-toggle .bar {
  background-color: #000;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 100px;
  position: absolute;
  top: 1.2rem;
  right: 12px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.custom-toggle .bar:first-child {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

.custom-toggle.x .bar {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom-toggle.x .bar:first-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


/**********/
/* FOOTER */
/**********/
.footer {
  height: auto;
  margin-bottom: 0;
  margin-top: 2rem;
  padding: 0.5rem 0;
}
.footer p {
  margin: 0;
}
.footer, .footer a {
  font-size: 0.625rem;
  color: #aeaeae;
}
#mentions {
  font-size: 0.8rem;
  line-height: 150%;
  padding: 0;
  width: auto;
}
#mentions a {
  padding: 0.5rem 0;
  border-top: 1px solid #aeaeae;
  text-decoration: none;
}

/*****************/
/* Media Queries */
/*****************/
@media screen and (max-width:1250px) {
  /* CONTACT */
  .contact #defaut .texte {
    width: 520px;
  }
  /* CINÉMA */
  .body_blog #intro {
    width: 850px;
  }
  .video .description {
    width: 450px;
  }
  .visio .box {
    width: 700px;
  }
}

@media screen and (max-width:64em) {
  /* DEFAULT */
  #defaut .texte {
    width: 600px;
  }
  /* CONTACT */
  .contact #defaut .texte, .contact #defaut .illustration {
    width: 100%;
  }
  .contact #defaut .texte {
    max-width: 520px;
  }
  .contact #defaut .illustration {
    margin-left: 0;
  }
  .contact #defaut .illustration img {
    width: 300px;
  }
  /* CINÉMA */
  .body_blog #intro {
    width: 700px;
  }
  .visio .box {
    width: 700px;
  }
}


@media screen and (max-width:50em) {
  .custom-wrapper {
    overflow: hidden;
    height: 4rem;
  }
  .custom-wrapper.open {
    height: 100%;
  }
  .custom-toggle {
    display: block;
  }
  #bloclogo {
    margin: 0.3rem auto;
  }
  #nom {
    font-size: 14pt;
  }
  #metier {
    font-size: 11pt;
  }
  .main-nav {
    padding-top: 2rem;
  }
  .main-nav ul {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .main-nav ul li {
    width: 100%;
    border-right: none;
  }
  .main-nav ul li a {
    text-align: left;
    width: auto;
  }
  #body {
    padding-top: 4rem;
  }
  #content {
    margin: 4rem 5%;
  }
  /* DEFAULT */
  #defaut .texte {
    width: 100%;
    max-width: 600px;
  }
  /* CONTACT */
  .pure-form {
    padding-left: 0.5rem;
  }
  /* CINÉMA */
  .body_blog #intro {
    width: 100%;
    max-width: 700px;
  }
  .video .description {
    width: 100%;
    max-width: 450px;
    height: auto;
  }
  .video .image {
    position: relative;
    margin: 1.5rem 0;
  }
  /*.video .description header, */.video .description .resume {
    left: 0;
  }
  .video .description header { /* TEST */
    position: absolute;
    top: 0;
    left: 220px;
  }
  .visio .box {
    width: 90%;
  }
  .visio video {
    width: auto;
    max-width: 100%;
    max-height: 85vh;
  }
  .visio .croix {
    left: calc(100% - 25px);
  }
}

@media screen and (max-width:30em) {
  #nom {
    font-size: 12pt;
  }
  #metier {
    font-size: 10pt;
  }
  #toggle p {
    /*font-size: 10pt;*/
    position: relative;
    left: 0.7rem;
  }
  .pure-button {
    text-align: center;
    padding: 0;
  }
  .video .description header { /* TEST */
    left: calc(40% + 15px);
  }
  .video .image { /* TEST */
    width: 40%;
  }
}
