@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

:root {
  --color-1:white;
  --background:#FFFAE7;
  --color-2: #dbb42c;
  --color-3: #9c9c9c;
  --grey: #787878;
  --darkgrey: #0b0b0b;
  --color-input: #8c8c8c;
  --font-regular: 14px;
  --p-line-height: 1.32em;
}

.map {
  --color-2:#bed2e7;
}

@media screen and (max-width: 960px) {
  :root {
    --font-regular:14px;
  }
}
@media screen and (min-width: 1440px) {
  :root {
    --font-regular: 14px;
  }
}
@media screen and (min-width: 2800px) {
  :root {
    --font-regular: 16px;
  }
}
.container {
  display: block;
  margin: auto;
  max-width: none;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fontregular);
  line-height: 1.22em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-1);
  background-color: var(--color-5);
  height: auto;
}

body.modal-opened, body.no-overflow {
  overflow: hidden;
}

h1, h2 {
  font-size: 1em;
  font-weight: normal;
  color: var(--color-1);
}

a {
  color: var(--color-3);
  text-underline-offset: 4px;
  font-weight: 400;
}

button {
  color: var(--color-1);
}

svg {
  fill: var(--color-1);
}
svg .st0 {
  fill: var(--color-1);
}

a:visited, a:focus {
  color: inherit;
}

a.active, a:hover {
  color: var(--color-2);
  text-decoration: underline;
  font-style: normal;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a {
  text-decoration: none;
}
a:hover {
  font-style: normal;
}

.menu-list li {
  list-style: none;
}

.menu-list a {
  text-transform: uppercase;
  color: white;
}

.lozad {
  opacity: 0;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
}

.lozad.loaded {
  opacity: 1;
}

.col-1 {
  width: 10%;
}

.col-2 {
  width: 20%;
}

.col-3 {
  width: 30%;
}

.col-4 {
  width: 40%;
}

.col-5 {
  width: 50%;
}

.col-6 {
  width: 60%;
}

.col-7 {
  width: 70%;
}

.col-8 {
  width: 80%;
}

.col-9 {
  width: 90%;
}

.col-10 {
  width: 100%;
}

.col {
  padding-left: 10px;
  padding-right: 10px;
}

.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-left: -10px;
  margin-right: -10px;
}

.show-desktop {
  display: inline-block;
}

.show-mobile {
  display: none;
}

.blocks-mobile {
  display: none;
}

#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  background-color: #131313;
  background-color: #000000;
  pointer-events: none;
}
#background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
}

@media screen and (max-width: 960px) {
  .show-desktop {
    display: none;
  }

  .show-mobile {
    display: block;
  }

  .blocks-mobile {
    display: block;
  }
}
header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 10000;
  background-color: transparent;
  color: white;
  display: flex;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  padding: 0px 18px;
  top: 0;
  left: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--font-regular);
}
header a {
  color: white;
}
header ul.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header ul.menu li {
  padding: 10px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header ul.menu li a {
  color: white;
  font-weight: 600;
}
header ul.menu li a:hover, header ul.menu li a.active {
  color: var(--color-2);
}
header ul.menu li.active a {
  color: var(--color-2);
}
header ul.menu:last-of-type {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .col:first-of-type {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 0;
}
header .col:nth-of-type(2) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .col:nth-of-type(3) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  z-index: 10;
}
header .col ul {
  height: 100%;
}

.modal-open header {
  opacity: 0;
}
.modal-open .marker {
  opacity: 0;
}

.logo-menu img {
  width: 30px;
  height: auto;
}

.filmography header .logo-menu {
  width: auto;
}

.logo-menu {
  padding-top: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.logo-menu a {
  line-height: 0;
}
.logo-menu a img {
  line-height: 0;
}

.with-children {
  position: relative;
}
.with-children .submenu {
  display: none;
}
.with-children .submenu li a {
  font-weight: 300;
  line-height: 1em;
  letter-spacing: 0;
}
.with-children:hover .submenu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1000;
  width: 200px;
  padding-top: 5px;
  height: auto;
}
.with-children:hover .submenu li {
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1em;
}

.menu-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social-icon {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  height: 18px;
  max-width: 30px;
  width: auto;
  opacity: 0.5;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.social-icon:hover {
  opacity: 1;
}

header ul.menu li.social-link {
  padding: 5px;
}

header .col:first-of-type {
  padding-left: 0;
}

header .col:last-of-type {
  padding-right: 0;
}

.social-link:last-of-type .social-icon {
  height: 20px;
  max-width: 35px;
}

.go-back {
  position: fixed;
  top: 15px;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.go-back a {
  color: white;
}

.cross {
  height: 45px;
  width: 45px;
  margin-left: 15px;
}

.cross span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1px;
  background-color: white;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.cross span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.cross span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-mobile {
  display: none;
}

.menu-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 29px;
  height: 19px;
}

.menu-icon .bar {
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-mobile {
  display: none;
}

button.menu-toggle {
  background-color: transparent;
  border: 0;
  position: relative;
  z-index: 200000;
}

.menu-icon {
  position: relative;
  width: 29px;
  height: 19px;
}

.bar {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

/* Animation pour le burger */
.menu-toggle.active .bar:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
          transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background-color: #110c02ed;
  padding: 20px 0;
  position: fixed;
  top: 0;
  z-index: 100000;
  left: 0;
  text-align: center;
}
.mobile-menu a {
  color: white;
}

.menu-holder-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.menu-holder-mobile ul.social-links {
  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;
}
.menu-holder-mobile .menu-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu-holder-mobile .menu-list li {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  margin-top: 1em;
}

.mobile-menu-container {
  display: none;
}

.chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin-left: 5px;
  margin-bottom: 3px;
}

.rotate {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-bottom: 1px;
}

.menu-holder-mobile .menu-list .submenu-mobile li a {
  text-transform: capitalize;
  font-weight: 300;
  text-decoration: none;
  font-size: 1em;
  letter-spacing: 0;
}
.menu-holder-mobile .menu-list .submenu-mobile li a:hover, .menu-holder-mobile .menu-list .submenu-mobile li a:focus {
  text-decoration: none;
}

.menu-holder-mobile .menu-list .with-children a {
  text-decoration: none;
}
² .menu-holder-mobile .menu-list .with-children a:hover, .menu-holder-mobile .menu-list .with-children a:focus {
  text-decoration: none;
}

.menu-holder-mobile .menu-list .submenu-mobile li {
  margin-bottom: 0;
}

.menu-holder-mobile .menu-list .submenu-mobile li + li {
  margin-top: 1em;
  margin-bottom: 0;
}

@media screen and (orientation: portrait), (max-width: 960px) {
  header ul.menu {
    display: none !important;
  }

  .mobile-menu-container {
    display: block;
  }

  .menu-mobile {
    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;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }

  .social-link {
    margin-left: 8px;
    margin-right: 8px;
  }

  .social-icon {
    height: 20px;
    max-width: 35px;
  }

  .logo-menu {
    padding: 12px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    z-index: 1000000;
    padding-top: 13px;
    padding-bottom: 5px;
  }

  header {
    padding: 0px 10px;
  }

  header .col:first-of-type {
    display: none;
  }

  header .col:nth-of-type(2) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-start;
  }

  .filmography .col-logo img {
    width: 16%;
    position: absolute;
    left: 50%;
    -webkit-transform: scaleX(-100%) translateX(50%);
    transform: scaleX(-100%) translateX(50%);
    top: 60px;
  }
}
.agenda #background img,
.about #background img {
  opacity: 0.65;
  -webkit-filter: blur(1px);
          filter: blur(1px);
}
.agenda #background:after,
.about #background:after {
  position: absolute;
  z-index: 1;
  content: "";
  width: 150%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(51%, #000000), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #000000 51%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.70;
  top: 0;
  left: -25%;
}

.about #background:after {
  left: 0;
}

.container-text h1 {
  font-size: 3.57em;
  position: fixed;
  left: 0px;
  top: 180px;
  width: 33.3333%;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.container-text .content-holder {
  max-width: 700px;
  margin: 0 auto;
  width: 33.3333%;
  padding-bottom: 5.5em;
}

.container-text#agenda .content-holder {
  max-width: 850px;
}

.container-text .content-holder {
  padding-top: 5.5em;
}
.container-text .content-holder h3,
.container-text .content-holder p {
  font-size: var(--font-regular);
  margin-bottom: 1em;
}
.container-text .content-holder h3 {
  text-transform: uppercase;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
  font-weight: 700;
}
.container-text .content-holder h3 strong {
  font-weight: 700;
}
.container-text .content-holder p + h3,
.container-text .content-holder ul + h3 {
  margin-top: 3em;
}
.container-text .content-holder p {
  font-weight: 300;
  line-height: var(--p-lineheight);
}
.container-text .content-holder h2 {
  font-size: 1.42em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3em;
}
.container-text .content-holder ul {
  margin-left: 1.2em;
  font-size: var(--font-regular);
}
.container-text .content-holder ul li {
  list-style: none;
  position: relative;
  font-size: var(--font-regular);
}
.container-text .content-holder ul li:before {
  content: "·";
  font-size: 30px;
  vertical-align: middle;
  line-height: 0px;
  position: absolute;
  top: 9px;
  left: -14px;
}

.portrait {
  position: fixed;
  top: 245px;
  width: 33.3333%;
  padding: 5%;
  z-index: 1;
  padding-top: 13px;
  height: calc(100vh - 245px);
}
.portrait .cover-image {
  margin-left: auto;
  margin-right: auto;
  max-width: 661px;
  display: block;
}
.portrait img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}

.container-text#agenda .content-holder p {
  margin-bottom: 0;
  margin-left: 0;
  font-weight: 400;
  line-height: 1.25em;
  color: var(--color-3);
}
.container-text#agenda .content-holder p a {
  color: var(--color-3);
  font-weight: 400;
}
.container-text#agenda .content-holder p:hover {
  color: white;
}
.container-text#agenda .content-holder p:hover a {
  color: white;
  text-decoration: underline;
}
.container-text#agenda .content-holder p + p {
  margin-top: 0;
  margin-bottom: 0;
}
.container-text#agenda .content-holder h3 {
  font-size: 1em;
  margin-bottom: 0.5em;
  font-weight: 600;
}
.container-text#agenda .content-holder p + h3,
.container-text#agenda .content-holder ul + h3 {
  margin-top: 2em;
}
.container-text#agenda .content-holder .day {
  color: white;
  font-weight: 600;
  margin-right: 5px;
  margin-left: 0px;
  text-decoration: none !important;
  display: inline-block;
}
.container-text#agenda .content-holder .dot {
  margin-right: 5px;
  text-decoration: none !important;
  display: inline-block;
}

.container-text#agenda .content-holder .old-content {
  margin-top: 5em;
  font-size: 14px;
}
.container-text#agenda .content-holder .old-content p {
  font-size: 14px;
  margin-bottom: 0em;
}
.container-text#agenda .content-holder .old-content .day {
  color: var(--color-3);
  font-weight: 600;
  margin-right: 3px;
  margin-left: 0px;
}
.container-text#agenda .content-holder .old-content .dot {
  margin-right: 0px;
}

.container-text .content-holder {
  width: 66.666%;
  margin-left: 33.3333%;
  padding-left: 25px;
}

.container-text#agenda .content-holder {
  max-width: 600px;
}

#about h3 {
  font-size: 1em;
  letter-spacing: 0.12em;
}
#about p + h3,
#about ul + h3 {
  margin-top: 4em;
}
#about .portrait {
  position: fixed;
  top: 245px;
  width: 50%;
  padding: 3% 2%;
  z-index: 1;
  height: calc(100vh - 245px);
  z-index: 1;
  padding-top: 13px;
}
#about .portrait .cover-img {
  margin-left: auto;
  margin-right: auto;
  max-width: 661px;
  display: block;
}

#about.container-text .content-holder {
  max-width: 700px;
  margin: 0 auto;
  width: 50%;
  margin-left: 50%;
}
#about.container-text .content-holder .main-content {
  padding-right: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#about.container-text h1 {
  font-size: 50px;
  position: fixed;
  left: 0px;
  top: 180px;
  width: 50%;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
  max-width: 100%;
}

.newsletter-page #about.container-text h1,
.contact-page #about.container-text h1 {
  position: static;
  margin-top: 155px;
}
.newsletter-page #about.container-text .content-holder,
.contact-page #about.container-text .content-holder {
  max-width: 700px;
  margin: 0 auto;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-top: 0;
  padding-bottom: 5em;
}
.newsletter-page #about.container-text .content-holder .main-content,
.contact-page #about.container-text .content-holder .main-content {
  padding-right: 0;
  text-align: center;
}
.newsletter-page #about.container-text .text .content-holder,
.contact-page #about.container-text .text .content-holder {
  padding-top: 0px;
}
.newsletter-page #about .portrait,
.contact-page #about .portrait {
  position: static;
  width: auto;
  height: auto;
  padding-bottom: 20px;
}
.newsletter-page #about .portrait .cover-img,
.contact-page #about .portrait .cover-img {
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
  display: block;
}

@media screen and (orientation: portrait), (max-width: 960px) {
  .container-text h1 {
    font-size: 40px;
    position: static;
    width: 100%;
    text-align: left;
    padding-left: 20px;
  }

  .container-text .content-holder {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }

  #about.container-text h1 {
    font-size: 40px;
    position: static;
    width: 100%;
    text-align: left;
    padding-left: 20px;
  }

  #about.container-text .content-holder {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }
  #about.container-text .content-holder .main-content {
    padding-right: 0;
  }

  #about .portrait {
    position: static;
    top: 245px;
    width: 80%;
    padding: 20px;
    z-index: 1;
    height: auto;
  }
  #about .portrait img {
    width: 100%;
    height: auto;
  }

  .newsletter-page #about.container-text h1,
  .contact-page #about.container-text h1 {
    text-align: center;
    margin-bottom: 1em;
  }

  .newsletter-page #about.container-text .content-holder,
  .contact-page #about.container-text .content-holder {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media screen and (orientation: portrait) and (min-width: 720px) {
  #about.container-text .content-holder .main-content {
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }

  #about.container-text .content-holder {
    max-width: none;
    margin: 0 auto;
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }

  #about .portrait {
    position: static;
    top: 245px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    z-index: 1;
    height: auto;
    margin-top: 5.5em;
  }

  .container-text h1 {
    font-size: 40px;
    position: static;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  #about.container-text h1 {
    text-align: center;
  }
}
.home-template .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100dvh;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0;
}
.home-template .container .holder {
  width: 100%;
  max-width: 29em;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.home-template #background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #131313;
}
.home-template #background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
  -webkit-filter: blur(1px);
          filter: blur(1px);
}

.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.5;
  background-image: url("../images/noise.svg");
  background-size: 200px 200px;
  background-repeat: repeat;
}

.logo-home {
  width: 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;
}
.logo-home svg {
  width: 100px;
  height: auto;
  -webkit-transform: scaleX(-100%);
  transform: scaleX(-100%);
  margin-top: 4px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.logo-home svg path {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.home-links-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.logo-home {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.logo-home:hover {
  cursor: pointer;
  text-decoration: none;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.logo-home:hover svg path {
  fill: var(--color-2) !important;
}

.home-template .introduction {
  font-size: 1em;
  text-align: center;
  line-height: 1.4em;
  display: block;
  visibility: visible;
  font-weight: 300;
}
.home-template .introduction p + p {
  margin-top: 1em;
}

ul.home-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none;
  padding-left: 0;
  margin-top: 80px;
}
ul.home-links li {
  font-size: 1.5em;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-left: 30px;
  margin-right: 30px;
  position: relative;
  letter-spacing: 0.12em;
}
ul.home-links li a {
  color: white;
}
ul.home-links li a:hover {
  text-decoration: none;
  color: var(--color-2);
}

ul.home-links li::before {
  content: "●";
  /* Symbole disque */
  color: white;
  /* Couleur du disque */
  font-size: 0.8em;
  /* Taille du disque, ajustez selon vos besoins */
  position: absolute;
  left: -30px;
  /* Ajuste cette valeur pour positionner correctement le disque */
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

ul.home-links li:first-child::before {
  content: "";
  /* Retire le disque pour le premier élément */
}

.home-links-holder {
  width: 100%;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  position: fixed;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.home-link {
  font-size: 1.5em;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-left: 10px;
  margin-right: 10px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.home-link:hover {
  text-decoration: none;
  color: var(--color-2);
}

.background-image {
  height: 100%;
}

.home-link {
  font-size: 7em;
  text-transform: uppercase;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-left: 10px;
  margin-right: 10px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.home-template .container .holder {
  width: 50%;
  max-width: 100%;
  min-width: 300px;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  overflow: visible;
}

.home-links-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.logo-home {
  width: auto;
}

.logo-home img {
  width: 130px;
  margin-top: 6px;
}

.home-link:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.home-link:first-of-type img {
  height: 3.6vh;
}

.home-link img {
  height: 4vh;
  mix-blend-mode: lighten;
  width: auto;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.logo-home .home-link img {
  height: 12vh;
}

@media screen and (orientation: portrait), (max-width: 960px) {
  .home-template .container .holder {
    width: 100%;
    padding: 5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .logo-home svg {
    width: 70px;
  }

  .home-link {
    margin-left: 8px;
    margin-right: 8px;
    font-size: 1.2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .home-link:first-of-type {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .home-link:last-of-type {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .home-link img {
    height: auto;
    width: 50%;
    margin-left: 0;
  }

  .home-link:first-of-type img {
    height: auto;
    margin-right: 0;
    width: 45%;
  }

  .home-link {
    width: 30%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .logo-home {
    width: 40%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .logo-home .home-link {
    width: 100%;
  }

  .logo-home .home-link img {
    height: auto;
    width: 100%;
    margin-left: 0%;
  }

  .home-link:last-of-type picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
#map {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
#map .mapboxgl-canvas {
  mix-blend-mode: screen;
  -webkit-filter: brightness(1) contrast(1.1);
          filter: brightness(1) contrast(1.1);
}

.map #background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  -webkit-filter: none;
          filter: none;
  -webkit-transition: opacity 1s ease-in-out, -webkit-filter 1s ease-in-out;
  transition: opacity 1s ease-in-out, -webkit-filter 1s ease-in-out;
  transition: filter 1s ease-in-out, opacity 1s ease-in-out;
  transition: filter 1s ease-in-out, opacity 1s ease-in-out, -webkit-filter 1s ease-in-out;
}

/* Dégradé radial initialement masqué */
.mapboxgl-map {
  position: relative;
}
.mapboxgl-map:before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 50%;
  /* Étendre au-delà du conteneur */
  left: 50%;
  width: 200%;
  /* Augmenter la largeur et la hauteur */
  height: 200%;
  background: radial-gradient(circle, #000000 15%, transparent 85%);
  opacity: 0.75;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: rotate-around-point 30s infinite ease-in-out;
          animation: rotate-around-point 30s infinite ease-in-out;
}

@-webkit-keyframes rotate-around-point {
  25% {
    top: 55%;
    left: 45%;
  }
  50% {
    top: 60%;
    left: 50%;
  }
  75% {
    top: 55%;
    left: 60%;
  }
  100% {
    top: 50%;
    left: 50%;
  }
}

@keyframes rotate-around-point {
  25% {
    top: 55%;
    left: 45%;
  }
  50% {
    top: 60%;
    left: 50%;
  }
  75% {
    top: 55%;
    left: 60%;
  }
  100% {
    top: 50%;
    left: 50%;
  }
}
/* État final après la transition */
.map.transition #background img {
  opacity: 0.8;
  -webkit-filter: blur(1px) brightness(0.9) saturate(0.1);
          filter: blur(1px) brightness(0.9) saturate(0.1);
  /* Effet final */
}

.mapboxgl-map.transition {
  opacity: 1;
}
.mapboxgl-map.transition:before {
  opacity: 0.9;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 100001;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.close-modal.close-button {
  position: fixed;
  top: 15px;
  right: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.11em;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.close-modal.close-button span {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.close-modal.close-button:hover, .close-modal.close-button:focus {
  text-decoration: none;
}
.close-modal.close-button:hover span, .close-modal.close-button:focus span {
  background-color: var(--color-2);
}

.modal-content {
  background-color: transparent;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  position: relative;
}
.modal-content .video {
  width: 100%;
}
.modal-content h1 {
  font-size: 21px;
  font-weight: 500;
}

#modal-content {
  display: block;
  height: 100%;
  width: 100%;
  overflow: auto;
}
#modal-content .text-content {
  padding-bottom: 150px;
}

.text-content,
h1 {
  max-width: 800px;
  line-height: 1.2em;
  font-weight: 300;
  margin: 0 auto;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.presentation.hide {
  display: none;
}

.custom-marker {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
}

.marker-title {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  color: white;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1em;
  margin-top: 5px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  padding: 7px 15px;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0.8);
}

.marker-image {
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center;
  background-image: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.marker-image-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background-color: white;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2);
}
.marker-image-container.no-image {
  width: 10px;
  height: 10px;
}

.custom-marker:hover {
  z-index: 100000;
}
.custom-marker:hover .marker-image {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.custom-marker:hover .marker-title {
  opacity: 1;
}

@media screen and (orientation: portrait) and (orientation: portrait), screen and (max-width: 960px) and (orientation: portrait), screen and (orientation: portrait) and (max-width: 960px), (max-width: 960px) and (max-width: 960px) {
  .modal {
    padding: 15px;
  }

  #modal-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: auto;
  }

  #modal-content .video-content {
    height: auto;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-top: 35px;
    background-color: black;
  }

  #modal-content .text-content {
    padding: 20px 0;
    overflow-y: auto;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: auto;
  }

  .modal-content {
    background-color: #191616;
    margin: 0;
    padding: 0;
    width: 100%;
    border-radius: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    overflow: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .modal-content .content-hold {
    padding-bottom: 30px;
  }

  .modal-content .title {
    margin-top: 0;
  }

  .modal-content .text-content {
    width: 100%;
    margin-top: 30px;
  }

  .modal-content .text-content a {
    color: var(--color-3);
  }

  .modal-content .text-content .introduction {
    max-width: 500px;
  }

  .menu-list .active a {
    color: var(--color-2);
  }

  .close-modal.close-button {
    position: fixed;
    top: 20px;
    right: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.11em;
  }

  #modal-content {
    display: block;
    height: 100%;
    width: 100%;
    overflow: auto;
  }

  #modal-content {
    display: block;
    height: 100%;
    width: 100%;
    overflow: auto;
  }

  .text-content .main-content {
    width: 100%;
    padding: 0 0px;
    margin-top: 50px;
  }

  .text-content .info-flex {
    padding: 0;
  }
}
.filmography #background {
  pointer-events: none;
  will-change: auto;
  -webkit-transform: none !important;
          transform: none !important;
}
.filmography #background img {
  opacity: 0.25;
  pointer-events: none;
  will-change: auto;
  -webkit-transform: none !important;
          transform: none !important;
}

.filmography .col-logo {
  position: relative;
}
.filmography .col-logo img {
  width: 16%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 60px;
}

.filmography header {
  padding: 9px 18px;
}

.filmography #background img {
  opacity: 0.4;
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -webkit-transition: opacity 0.5s ease, -webkit-filter 0.5s ease;
  transition: opacity 0.5s ease, -webkit-filter 0.5s ease;
  transition: opacity 0.5s ease, filter 0.5s ease;
  transition: opacity 0.5s ease, filter 0.5s ease, -webkit-filter 0.5s ease;
  pointer-events: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: hidden;
}

.modal-body {
  z-index: 3;
  position: relative;
  height: 100%;
  width: 100%;
}
.modal-body .close-filmo {
  display: none;
}

.film-body {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  z-index: 10;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 2px;
  padding-left: 2px;
  padding-right: 2px;
  width: 100%;
  padding-bottom: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.filmography header {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.filmography header ul a {
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.018);
}

.filmography header.active::before, .filmography header:hover::before {
  height: 20vh;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.filmography header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgba(8, 8, 8, 0.84)), to(transparent));
  background-image: linear-gradient(to bottom, rgba(8, 8, 8, 0.84) 30%, transparent 100%);
  z-index: 10;
}

.grid-item {
  position: relative;
  aspect-ratio: 10/4;
  display: block;
  max-width: 50vw;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.grid-item .informations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.grid-item:hover .informations {
  opacity: 1;
}

.filmography .container-default {
  margin-top: 55px;
}

#filmography-grid {
  padding-left: 5%;
  padding-right: 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 150px;
}

.grid-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.cover {
  width: 100%;
  overflow: hidden;
}
.cover picture {
  line-height: 0;
  display: block;
  width: 100%;
}

.cover picture,
.cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 10/4;
  line-height: 0;
  background-color: transparent;
}

.location {
  display: none;
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
}

.grid-item:hover .location {
  display: block;
}

.informations {
  height: 100%;
  width: 100%;
  opacity: 0;
  background-color: #FFFAE7;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.informations h3 {
  color: var(--darkgrey);
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 0.85em;
  font-style: normal;
  font-weight: 600;
  line-height: 1em;
}

.date {
  color: var(--grey);
  text-align: center;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.71em;
}

.container-default {
  margin-top: 100px;
}

.filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 0;
  position: relative;
  top: 0;
  z-index: 100;
  margin-top: 220px;
  justify-content: center;
  margin-left: 0px;
}
.filters .select {
  position: relative;
  padding: 16px 10px;
  padding-left: 0;
}
.filters label {
  color: white;
  font-size: var(--font-regular);
  line-height: 1.3em;
  display: none;
  font-weight: 600;
  text-transform: uppercase;
}
.filters select {
  padding: 2px 0px;
  border: none;
  border-bottom: 1px solid white;
  font-size: var(--font-regular);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
  color: white;
  margin-left: 10px;
  padding-right: 20px;
  position: relative;
  text-transform: uppercase;
}
.filters .select {
  position: relative;
  padding: 16px 10px;
}
.filters .select .choices__list--single::after {
  content: '↓';
  color: var(--color-input);
  font-size: var(--font-regular);
  font-family: serif;
  position: absolute;
  right: 0;
  top: 3px;
  width: 9px;
  height: 9px;
  background-repeat: no-repeat;
  pointer-events: none;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.filters .select .is-open .choices__list--single::after {
  content: '↑';
}

.search-results.hidden {
  display: none;
}

.choices[data-type*=select-one] .choices__inner {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.active .choices[data-type*=select-one] .choices__inner,
.select:hover .choices[data-type*=select-one] .choices__inner,
.select:focus .choices[data-type*=select-one] .choices__inner {
  color: white;
  border-color: white;
}

.filters .select:hover .choices__list--single::after, .filters .select:focus .choices__list--single::after, .filters .select.active .choices__list--single::after {
  color: white;
}

.search-message,
.search-results {
  padding-left: 5%;
  padding-bottom: 50px;
  padding-top: 50px;
  text-align: center;
  padding-right: 5%;
  color: white;
  font-size: 1em;
  text-align: center;
  text-transform: uppercase;
}

.search-container {
  position: relative;
}

.search-bar {
  overflow: hidden;
  padding: 16px 10px;
}

.search-input {
  border: none;
  border-bottom: 1px solid var(--color-input);
  font-size: 0.85em;
  background: transparent;
  color: white;
  outline: none;
  padding: 5px 0px;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
.search-input::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 0.85em;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: white;
}
.search-input:-ms-input-placeholder {
  font-weight: 300;
  font-size: 0.85em;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: white;
}
.search-input::-ms-input-placeholder {
  font-weight: 300;
  font-size: 0.85em;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: white;
}
.search-input::placeholder {
  font-weight: 300;
  font-size: 0.85em;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: white;
}

.submit-button {
  background: transparent;
  border: 1px solid var(--color-3);
  color: var(--color-3);
  padding: 8px 10px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #FFFAE7;
}

.search-button {
  cursor: pointer;
}

.search-bar.active {
  display: block;
}

.search-container .active .search-input, .search-container:hover .search-input {
  color: white;
  border-color: white;
}

.choices__inner {
  font-family: "Space Grotesk", sans-serif;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: transparent;
  padding: inherit;
  border: none;
  border-bottom: 1px solid var(--color-input);
  color: var(--color-input);
  min-height: auto;
  overflow: hidden;
  text-transform: uppercase;
  caret-color: white;
  border-radius: 0;
  padding: 2px 0px;
  font-style: normal;
  font-weight: 400;
  font-size: 0.85em;
  line-height: normal;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
  margin-left: 10px;
  padding-right: 20px;
}

.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 0;
}

.year-select .choices__inner {
  width: 50px;
}

.grid-item {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.3s ease-out, transform 0.6s ease-out;
  transition: opacity 0.3s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.grid-item.fade-in {
  opacity: 1;
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable[data-select-text],
  .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
    padding-right: 11px;
    padding: 7px 12px;
  }

  .choices__list--dropdown .choices__item--selectable[data-select-text]::after,
  .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
    display: none;
  }
}
.choices__list--dropdown,
.choices__list[aria-expanded] {
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: var(--darkgrey);
  border: none;
  top: 100%;
  margin-top: 0px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
  word-break: break-all;
  width: 200px;
}

.choices {
  width: auto;
}

.choices__list--single {
  padding: 4px 5px 3px 0px;
}

.choices__placeholder {
  opacity: 1;
}

.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 0;
  margin-left: 0;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #000000;
}

.choices[data-type*=select-one]::after {
  display: none;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: transparent;
  padding: inherit;
  border: none;
  border-bottom: 1px solid var(--color-input);
  min-height: auto;
  overflow: hidden;
  text-transform: uppercase;
  width: 175px;
}

.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid var(--color-input);
  background-color: var(--darkgrey);
  margin: 0;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  width: 200px;
}

.year-select .choices__list--dropdown {
  width: 80px;
}

.container-creations {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 100px;
  padding-bottom: 80px;
  padding-right: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 200px;
}

.grid-creations {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 0.5fr));
  grid-gap: 10px;
  padding-top: 95px;
  margin-left: 33.333%;
  padding-left: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 40px;
}

.creation-videos {
  grid-column: 1 / -1;
}

.creation-cover img {
  aspect-ratio: 8/5;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  line-height: 0;
}

.creation-pres iframe {
  margin-top: 2em;
}

.video-item {
  position: relative;
  margin-bottom: 1em;
}
.video-item .TextformatterVideoEmbed {
  margin: 0 !important;
}

.creation-details h2 {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.01em;
}
.creation-details h3 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.creation-cover {
  overflow: hidden;
  line-height: 0;
}

.creation-item {
  margin-bottom: 1.5em;
}

.creation-details {
  padding-top: 0.5em;
}

.creation-item a:hover {
  text-decoration: none;
  color: var(--color-2);
}
.creation-item a:hover h2 {
  color: var(--color-2);
}
.creation-item a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.container-creation {
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  margin-top: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.choices {
  font-size: var(--font-regular);
}

.title-creation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.title-creation h1 {
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.title-creation h2 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  margin-top: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.title-creation .creation-presentation {
  width: 50%;
  padding-top: 14px;
}
.title-creation .creation-presentation p {
  font-size: 14px;
}

.creations-gallery-holder {
  padding-top: 5px;
  margin-left: 33.333%;
  padding-left: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.creation-gallery {
  width: 100%;
}
.creation-gallery .gallery-item {
  width: 100%;
  margin-bottom: 10px;
}
.creation-gallery .gallery-item img {
  width: 100%;
}

#creations .creation-pres h1 {
  line-height: 1.10em;
  margin-bottom: 1.2em;
}

#creation .creation-pres h1 {
  line-height: 1.10em;
}
#creation .creation-pres h2 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#creation .pres-holder {
  margin-top: 2em;
}
#creation .pres-holder a {
  font-weight: normal;
}
#creation .back-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-top: 2.5em;
  font-weight: 300;
  display: block;
}

.search-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
}

.search-button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 5px;
}
.search-button svg {
  width: 15px;
  height: auto;
}

.search-input {
  font-size: 0.85em;
  font-family: 'Space Grotesk', sans-serif;
  padding: 3px 0;
  padding-bottom: 2px;
}
.search-input::-webkit-input-placeholder {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--color-input);
  opacity: 1;
  font-weight: 400;
}
.search-input:-ms-input-placeholder {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--color-input);
  opacity: 1;
  font-weight: 400;
}
.search-input::-ms-input-placeholder {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--color-input);
  opacity: 1;
  font-weight: 400;
}
.search-input::placeholder {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--color-input);
  opacity: 1;
  font-weight: 400;
}

.search-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-submit {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 17px;
  cursor: pointer;
  color: var(--color-input);
  padding: 0;
  font-weight: 300;
  font-family: serif;
}

.search-submit:hover {
  color: white;
}

.search-message,
.search-results {
  display: none;
}

@media screen and (orientation: portrait), (max-width: 960px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }

  .creation-pres h1 {
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1em;
    margin-bottom: 0;
  }

  .creations-gallery-holder {
    padding-top: 95px;
    margin-left: 0;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .creation-gallery .gallery-item {
    width: 100%;
    margin-bottom: 6px;
  }

  .filmography .col-logo img {
    width: 30px;
    height: auto;
    position: static;
  }

  .filters {
    margin-top: 105px;
  }

  .filmography header.active::before, .filmography header:hover::before {
    height: 5vh;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .filmography header:hover::before {
    display: none;
  }

  .filmography header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgba(8, 8, 8, 0.84)), to(transparent));
    background-image: linear-gradient(to bottom, rgba(8, 8, 8, 0.84) 30%, transparent 100%);
    z-index: 10;
  }
}
.content {
  margin: 0 auto;
  padding-bottom: 150px;
}

.header-film {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  padding: 0 28px;
}

body.Film {
  height: 100%;
}

.go-back {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85em;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}

.film-content {
  margin-top: 0em;
  max-width: none;
  position: relative;
}
.film-content h1 {
  color: #FFF;
  font-family: "Space Grotesk";
  font-size: 2.14em;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1em;
  text-transform: capitalize;
  margin-bottom: 1em;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.text-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  font-size: var(--font-regular);
  font-size: 1em;
  font-weight: 300;
}
.text-content p {
  max-width: 700px;
}
.text-content .info-flex {
  width: 50%;
  position: -webkit-sticky;
  position: sticky;
  top: 108px;
  padding: 0 20px;
}
.text-content .info-flex .title {
  margin-top: 0;
}
.text-content .info-flex h1 {
  text-align: center;
}

@media screen and (max-width: 1280px) {
  .text-content .info-flex h1 {
    text-align: left;
    font-size: 22px;
  }
}
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  color: white;
}

.cross {
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: -2px;
}

.cross span {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: white;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cross span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cross span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.video-content {
  position: relative;
  margin-bottom: 2em;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.video-content .video {
  position: relative;
  width: 100%;
}
.video-content .video .responsive-video {
  position: relative;
  z-index: 1;
}
.video-content .video .responsive-video object {
  margin-bottom: 1em;
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}
.video-content .video .responsive-video object iframe {
  width: 100%;
  height: 100%;
}
.video-content .video .responsive-video object embed {
  width: 100%;
  height: 100%;
}

.cover {
  position: static;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.title {
  position: -webkit-sticky;
  position: sticky;
  top: 40%;
}

.text-content p {
  line-height: var(--p-lineheight);
  font-weight: 300;
}
.text-content p + p {
  margin-top: 1em;
}

.presentation {
  margin-top: 2em;
}

.film-body .content {
  padding-bottom: 0;
}

.Film #background img {
  opacity: 0.65;
  -webkit-filter: blur(1px);
          filter: blur(1px);
}

#background.no-video-bg img {
  opacity: 0.35;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

.Film .text-content .close-button {
  display: none;
}

.video-content,
.text-content {
  z-index: 2;
  position: relative;
}

.cover-film {
  position: relative;
  display: inline-block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
}

.video-controls {
  margin-top: 10px;
  text-align: center;
}

.video-button {
  background-color: transparent;
  color: white;
  cursor: pointer;
  border: none;
  padding: 0;
  border-radius: 20px;
  text-transform: uppercase;
  font-family: "Space Grotesk";
  font-size: 0.85em;
  letter-spacing: 0.03em;
  margin-left: 15px;
  margin-right: 15px;
  position: relative;
}
.video-button:after {
  content: "●";
  color: white;
  font-size: 0.8em;
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
.video-button:first-of-type:after {
  content: "";
}
.video-button:hover, .video-button.active {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video-button + .video-button {
  position: relative;
}

.go-back {
  color: white;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.go-back div:first-of-type {
  margin-top: 5px;
}
.go-back span {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.go-back:hover {
  color: var(--colr-2);
  text-decoration: none;
}
.go-back:hover span {
  background-color: var(--color-2);
}

.subtitle {
  color: var(--color-3);
  font-size: 0.85em;
  text-transform: uppercase;
  margin-top: 0.5em;
  font-weight: 600;
}

.video-holder {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
}

.cover-film {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}
.cover-film img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cover-film picture {
  width: 100%;
  height: 100%;
}

.Film .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: black;
}

.iframe-container {
  position: absolute;
  z-index: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.iframe-container iframe {
  width: 100%;
  height: 100%;
  background-color: black;
}

.current-video {
  width: 100%;
  height: 100%;
}

.video-content {
  height: 100vh;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.video-content.no-video {
  height: auto;
}

.text-content {
  width: 100%;
}
.text-content h1 {
  font-size: 2.14em;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1em;
  width: auto;
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  width: 100%;
  line-height: 1.1em;
  text-align: left;
  letter-spacing: 0.03em;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.text-content .introduction {
  max-width: 500px;
}
.text-content .columns {
  width: 100%;
}
.text-content .main-content {
  width: 50%;
  padding: 0 20px;
}

.content-hold {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-bottom: 150px;
}
.content-hold a {
  color: var(--color-3);
}

.footer-video {
  margin-top: 10px;
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  cursor: pointer;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1000;
}

.close-text {
  padding-top: 4px;
}

.creation-pres {
  width: 33.333%;
  padding-right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  left: 0;
  padding-left: 6%;
}

.creation-pres h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
}

.creation-pres p {
  font-size: 14px;
  max-width: 500px;
  line-height: 1.15em;
}

.creation-pres p + p {
  margin-top: 1em;
}

@media screen and (max-width: 1280px) {
  .video-content {
    width: 75%;
  }
}
@media screen and (orientation: portrait), (max-width: 960px) {
  .creation-pres {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: static;
    left: 0;
  }

  .title {
    position: static;
    top: 40%;
  }

  .container-creations {
    padding-left: 0;
    padding-bottom: 80px;
    padding-right: 0px;
    margin-top: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .grid-creations {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    padding-top: 80px;
    margin-left: 0;
    padding-left: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: 20px;
  }

  .text-content h1 {
    max-width: none;
  }

  .video-content {
    height: 66vh;
    position: relative;
    margin-bottom: 0em;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .video-content.no-video {
    height: 50vh;
    margin-top: 30px;
  }

  .text-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .text-content .info-flex {
    width: 100%;
    position: -webkit-sticky;
    position: static;
    top: 108px;
    padding: 0 20px;
  }

  .text-content .main-content {
    width: 100%;
    padding: 0 20px;
    margin-top: 1em;
  }

  .text-content .info-flex h1 {
    text-align: left;
    font-size: 25px;
  }

  .film-content {
    margin-top: 0em;
    max-width: none;
    width: 100%;
    overflow: hidden;
  }

  .content-hold a {
    color: var(--color-3);
    word-wrap: break-word;
  }

  .content {
    margin: 0 auto;
    padding-bottom: 0;
  }

  .modal {
    padding: 0;
  }

  .modal-content .main-content {
    padding: 0;
    margin-top: 1em;
  }

  .modal-content .text-content {
    padding: 0 20px;
  }

  .modal-content .text-content .info-flex {
    padding: 0;
  }

  .Film #background img,
  .modal-body #background img {
    opacity: 0.15 !important;
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
}
@media screen and (orientation: portrait) and (min-width: 720px) {
  .text-content {
    margin-top: 1.5em;
  }

  .text-content .info-flex h1 {
    font-size: 40px;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 0;
    text-align: center;
  }

  .text-content .introduction {
    max-width: 600px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .text-content .main-content {
    padding: 0 5%;
    padding-top: 5.5em;
  }

  .text-content .info-flex {
    padding: 0 20px;
  }

  .social-icon {
    height: 30px;
    max-width: 35px;
  }

  .social-link {
    margin-left: 12px;
    margin-right: 12px;
  }

  .modal-content .text-content .introduction {
    max-width: none;
  }

  .text-content .main-content {
    padding: 0 20px;
    padding-top: 5.5em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*# sourceMappingURL=main.css.map */