@charset "UTF-8";
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: #fff;
  background-color: black;
  font-family: "Lato", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
  height: 100%;
}

main {
  position: relative;
}

.is-show {
  opacity: 1 !important;
}

.is-hide {
  opacity: 0 !important;
}

.is-retina img {
  display: block;
  transform: scale(0.5);
  transform-origin: left top;
}

.container,
.container-fluid {
  position: relative;
  z-index: 100;
}

#logo {
  margin-left: 20px;
  margin-top: 30px;
  margin-bottom: 50px;
  transition: all 550ms cubic-bezier(0.7, 1.51, 0.36, 0.98);
}

#logo-small {
  width: 50px;
  position: absolute;
  right: -45px;
  top: 30px;
  opacity: 0;
  transition: all 550ms cubic-bezier(0.7, 1.51, 0.36, 0.98);
}
#logo-small.is-show {
  top: 30px;
  right: 5px;
}

.titre {
  font-weight: 500;
  font-size: 20px;
  color: #CE2139;
  letter-spacing: 0;
  line-height: 22px;
  margin-left: 31px;
  margin-bottom: 10px;
  margin-top: 50px;
}

button, .button {
  background-color: #CE2139;
  border: none;
  padding: 0.66em 1em;
  color: #fff;
  font-size: 0.95em;
  display: inline-block;
  margin: auto;
  width: auto;
  transition: all 550ms cubic-bezier(0.7, 1.51, 0.36, 0.98);
}
button:hover, .button:hover {
  color: #fff;
  text-decoration: none;
  background-color: #a21a2d;
}
button img, .button img {
  margin-left: 1em;
}

.navigation {
  position: fixed;
  z-index: 10000;
  height: 100vh;
  overflow: hidden;
  background-color: #141414;
  width: 260px;
  transition: all 550ms cubic-bezier(0.7, 1.51, 0.36, 0.98);
  left: 0;
}
.navigation button {
  display: block;
  color: #fff;
  font-size: 0.95em;
  width: calc(100% - 60px);
}
.navigation button img {
  margin-left: 1em;
}
.navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.navigation ul li {
  position: relative;
  margin-left: 0;
  padding: 10px 30px;
  margin-bottom: 10px;
  opacity: 0.35;
  transition: all 550ms cubic-bezier(0.42, 0, 0.39, 1);
  cursor: pointer;
  overflow: hidden;
  min-height: 3rem;
}
.navigation ul li:hover h2 {
  top: -1em;
  opacity: 0;
}
.navigation ul li:hover p {
  top: 50%;
  opacity: 1;
}
.navigation ul li h2 {
  transition: all 400ms cubic-bezier(0.42, 0, 0.39, 1);
  font-weight: 300;
  font-size: 29px;
  color: #FFFFFF;
  letter-spacing: 0;
  margin-bottom: 0;
  display: block;
  position: relative;
  top: 0;
  opacity: 1;
}
.navigation ul li p {
  transition: all 400ms cubic-bezier(0.42, 0, 0.39, 1);
  font-weight: 300;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 1.1em;
  opacity: 0;
  display: block;
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
}
.navigation ul li::before {
  content: "";
  height: 0%;
  width: 6px;
  background-color: #CE2139;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  transition: all 550ms cubic-bezier(0.7, 1.51, 0.36, 0.98);
}
.navigation ul li.is-active {
  opacity: 1;
}
.navigation ul li.is-active::before {
  height: 100%;
}
.navigation ul li:not(.is-active):hover {
  opacity: 1;
}
.navigation ul li:not(.is-active):hover::before {
  transition-duration: 250ms;
  height: 100%;
  background-color: #fff;
  opacity: 0.55;
}
.navigation.is-open {
  left: -200px;
}
.navigation.is-open ul {
  opacity: 0;
}
.navigation.is-open button {
  padding: 4em 5px;
  display: block;
  position: absolute;
  width: 60px;
  right: 0;
}
.navigation.is-open button span {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
}
.navigation.is-open button img {
  margin-left: 0;
}
.video-play .navigation {
  left: -260px;
}

#burgerMenu {
  height: 100vh;
  background-color: #fff;
  position: fixed;
  z-index: 10000;
  left: 260px;
  width: 0vw;
  transition: all 550ms cubic-bezier(0.7, 1.51, 0.36, 0.98);
  opacity: 0;
  color: #444;
  font-weight: 300;
  font-size: 35px;
  color: #000000;
}
#burgerMenu.is-open {
  left: 60px;
  opacity: 1;
  width: 50vw;
}
#burgerMenu .onglet {
  display: flex;
}
#burgerMenu .onglet > div {
  padding: 48px;
  flex-grow: 1;
  transition: all 550ms cubic-bezier(0.42, 0, 0.39, 1);
  position: relative;
  cursor: pointer;
}
#burgerMenu .onglet #search {
  padding-right: 80px;
  background-color: #F2F2F2;
}
#burgerMenu .onglet #search span {
  display: block;
  position: relative;
  transition: all 550ms cubic-bezier(0.7, 1.51, 0.36, 0.98);
}
#burgerMenu .onglet #search span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 550ms cubic-bezier(0.7, 1.51, 0.36, 0.98);
}
#burgerMenu .onglet .icon-search {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
#burgerMenu .onglet .is-active {
  background-color: #F2F2F2;
  flex-grow: 1;
}
#burgerMenu .onglet .is-active span {
  text-indent: -100%;
  white-space: nowrap;
  overflow: hidden;
}
#burgerMenu .onglet .is-active span::after {
  content: "";
  width: 40px !important;
  background-color: #CE2139 !important;
}
#burgerMenu .arbo ul {
  list-style: none;
  padding: 60px;
}
#burgerMenu .arbo ul li {
  cursor: pointer;
  margin-bottom: 20px;
}
#burgerMenu .arbo ul li.link, #burgerMenu .arbo ul li:hover {
  color: #CE2139;
}
#burgerMenu .footer {
  font-size: 13px;
  font-weight: 500;
}
#burgerMenu .footer ul {
  display: flex;
}
#burgerMenu .footer ul li {
  line-height: 29px;
}
#burgerMenu .footer ul li::after {
  content: "|";
  margin: 0 16px;
}
#burgerMenu .footer ul li:last-child::after {
  content: "";
}

#slide0 .bg {
  background-image: url("../img/oss117/hero-oss117-v2.jpg");
}

#slide1 .bg {
  background-image: url("../img/lead1b.png");
}

#slide2 .bg {
  background-image: url("../img/barbarian.png");
}

#slide3 .bg {
  background-image: url("../img/lead2.png");
}

#slide4 .bg {
  background-image: url("../img/lead3.png");
}

#slide5 .bg {
  background-image: url("../img/lead2.png");
}

#ssg-container {
  transition-duration: 1000ms !important;
}
#ssg-container.is-open {
  opacity: 0.3;
}
#ssg-container.is-open .bg {
  transition: all 550ms cubic-bezier(0.7, 1.51, 0.36, 0.98);
  left: auto;
  width: 50%;
  left: 50%;
}
#ssg-container.is-open:hover {
  opacity: 1;
}
#ssg-container.is-open:hover .bg {
  width: 60%;
  left: 40%;
}

.ssg-page {
  transition-duration: 1000ms !important;
}
.ssg-page .bg {
  transition: all 1000ms ease-in-out;
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: calc(100vw - 260px);
  transform-origin: bottom left;
  transform: scale(1.15);
  opacity: 0;
  z-index: 1;
  position: absolute;
  left: 260px;
  right: auto;
}
.ssg-page.is-active .bg {
  transform: scale(1);
  opacity: 1;
}

#cta-close {
  position: absolute;
  z-index: 1500;
  top: 30px;
  right: 30px;
  opacity: 0;
  cursor: pointer;
}
.video-play #cta-close {
  opacity: 1;
}

.BaVideo {
  position: absolute;
  width: calc(100vw - 260px);
  height: 140vh;
  top: -20vh;
  z-index: 800;
  background-color: #000;
  margin-left: 260px;
  object-fit: cover;
  opacity: 0;
  transition: all 550ms cubic-bezier(0.42, 0, 0.39, 1);
}
.BaVideo.is-reveal {
  opacity: 1;
}
.video-play .BaVideo {
  width: 100vw;
  height: 100vh;
  top: 0;
  margin-left: 0;
  left: 0;
  object-fit: contain;
}

#slide0 {
  overflow: hidden;
}

#slide0 .container-teaser {
  position: relative;
  z-index: 1000;
}

.teaser {
  max-width: 25%;
  position: absolute;
  bottom: 50px;
  right: 50px;
  transition: all 550ms cubic-bezier(0.7, 1.51, 0.36, 0.98);
  display: flex;
  flex-direction: column;
}
.teaser h1 {
  font-weight: 800;
  margin: 0;
}
.teaser h2 {
  font-size: 16px;
  opacity: 0.66;
}
.teaser p {
  line-height: 1.2em;
  text-shadow: 0px 0px 4px #000;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 550ms cubic-bezier(0.7, 1.51, 0.36, 0.98);
}
.teaser button  {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.teaser #cta-ba {
  margin-left: -130px;
  position: relative;
  z-index: 10;
  opacity: 0;
}
.video-play .teaser {
  bottom: -400px;
}
.teaser.is-reveal p {
  height: 120px;
  opacity: 1;
}
.teaser.is-reveal #cta-ba {
  margin-left: 0;
  opacity: 1;
}

#slide3 .teaser {
  bottom: 0;
  right: 0;
  padding-bottom: 50px;
  padding-right: 50px;
}
#slide3 .teaser img {
  align-self: flex-end;
  margin-right: -50px;
}

.container {
  height: 80vh;
  overflow: scroll;
}

.noise {
  position: absolute;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  opacity: 0.18;
  filter: blur(1px);
}

.news {
  overflow-y: scroll;
  height: 100vh;
  background-image: url("../img/noise.png");
  padding: 80px 80px 80px 320px;
}

body.fiche-film {
  background-color: #fff;
}
body.fiche-film .overlay {
  width: 10vw;
  height: 100vh;
  left: -10vw;
  position: fixed;
  background-color: #000;
  opacity: 0.7;
  z-index: 1000;
  transition: all 550ms cubic-bezier(0.7, 1.51, 0.36, 0.98);
}
body.fiche-film .overlay.is-active {
  width: 100vw;
  left: 0vw;
}
body.fiche-film #topNav {
  background-color: #CE2139;
  position: fixed;
  width: 100%;
  z-index: 500;
  top: -60px;
  transition: all 550ms cubic-bezier(0.7, 1.51, 0.36, 0.98);
}
body.fiche-film #topNav.is-sticky {
  top: 0;
}
body.fiche-film .container-jumbo {
  background-image: url("../img/oss117/hero-oss117.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-origin: top center;
}
body.fiche-film .titre-fiche {
  position: absolute;
  bottom: 20px;
}
body.fiche-film .rangee {
  background-color: #fff;
  padding: 80px 0;
}
body.fiche-film .galerie .slider {
  height: 790px;
  width: 100%;
  background-color: #ccc;
  background-image: url("../img/oss117/visuel-big.jpg");
  background-size: cover;
  background-position: center;
  z-index: 110;
}
body.fiche-film .galerie .row {
  position: relative;
}
body.fiche-film #visuel1 {
  position: absolute;
  z-index: 1000;
  top: -70px;
}
body.fiche-film #visuel1 img {
  box-shadow: 0 0 30px 0 #0000005e;
  width: 100%;
}
body.fiche-film #visuel2 {
  position: absolute;
  z-index: 1200;
  top: 360px;
}
body.fiche-film #visuel2 img {
  box-shadow: 0 0 30px 0 #0000005e;
  width: 100%;
  margin-left: 120px;
}
body.fiche-film #visuel3 {
  position: absolute;
  z-index: 1300;
  top: 460px;
}
body.fiche-film #visuel3 img {
  box-shadow: 0 0 30px 0 #0000005e;
  width: 100%;
}
body.fiche-film #visuel4 {
  position: absolute;
  z-index: 100;
  top: 660px;
  background-size: cover;
  background-position: center;
  background-image: url("../img/oss117/visuel-4.jpg");
}
body.fiche-film #visuel4 img {
  width: 100%;
}
body.fiche-film #visuel4 .overlayImage {
  position: absolute;
  background-color: #000;
  opacity: 1;
  width: 100%;
  height: 100%;
}
body.fiche-film #visuel5 {
  position: absolute;
  z-index: 1000;
  top: 1328px;
}
body.fiche-film .distribution {
  margin-top: 820px;
  padding-left: 80px;
}
body.fiche-film .plusLoin {
  background-color: #2A2A2A;
}

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