a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none;
}

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

a {
  text-decoration: none;
  color: #fff;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger.is-active:hover,
.hamburger:hover {
  opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: #000;
}

.hamburger-box {
  width: 27px;
  height: 19px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  width: 27px;
  height: 3px;
  background-color: #000;
  /* border-radius: 99px; */
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner:after,
.hamburger-inner:before {
  content: '';
  display: block;
}

.hamburger-inner:before {
  top: -8px;
}

.hamburger-inner:after {
  bottom: -8px;
}

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner:before {
  transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner:after {
  transition: bottom 0.1s ease-in 0.25s,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
}

.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out,
    transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
}

.slick-slider {
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list,
.slick-slider {
  position: relative;
  display: block;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:after,
.slick-track:before {
  content: '';
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  display: flex;
}

.slick-dots li {
  text-indent: -999em;
  width: 7px;
  height: 7px;
  background-color: #fff;
  border: 1px solid transparent;
  /* border-radius: 50%; */
  transition: border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.slick-dots li:not(:last-child) {
  margin-right: 15px;
}

.slick-dots li.slick-active {
  border-color: #fff;
  background-color: transparent;
  transform: scale(1.5);
}

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

*,
:after,
:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
  color: #000;
}

.transition-fade {
  transition: 0.4s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

#content {
  max-width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 37px;
}

@media only screen and (max-width: 768px) {
  #content {
    padding: 0 20px;
  }
}

.main-wrapper {
  margin: 0 auto;
}

.susy-grid {
  display: none;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="url(%23susy-svg-gradient)" width="100%" %3E%3Cdefs%3E%3ClinearGradient spreadMethod="pad" id="susy-svg-gradient" x1="0%" y1="0%" x2="100%" y2="0%"%3E%3Cstop offset="0%" style="stop-color:rgba(64, 191, 64, 0.5);" /%3E%3Cstop offset="100%" style="stop-color:rgba(159, 223, 159, 0.5);" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x="0" width="7.27273%" height="100%"/%3E%3Crect x="10.30303%" width="7.27273%" height="100%"/%3E%3Crect x="20.60606%" width="7.27273%" height="100%"/%3E%3Crect x="30.90909%" width="7.27273%" height="100%"/%3E%3Crect x="41.21212%" width="7.27273%" height="100%"/%3E%3Crect x="51.51515%" width="7.27273%" height="100%"/%3E%3Crect x="61.81818%" width="7.27273%" height="100%"/%3E%3Crect x="72.12121%" width="7.27273%" height="100%"/%3E%3Crect x="82.42424%" width="7.27273%" height="100%"/%3E%3Crect x="92.72727%" width="7.27273%" height="100%"/%3E%3C/svg%3E') no-repeat scroll;
}

@media only screen and (min-width: 1020px) and (max-width: 1300px) {
  .susy-grid {
    margin: 0 30px;
  }
}

@media only screen and (max-width: 768px) {
  .susy-grid {
    margin: 0 15px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="url(%23susy-svg-gradient)" width="100%" %3E%3Cdefs%3E%3ClinearGradient spreadMethod="pad" id="susy-svg-gradient" x1="0%" y1="0%" x2="100%" y2="0%"%3E%3Cstop offset="0%" style="stop-color:rgba(64, 191, 64, 0.5);" /%3E%3Cstop offset="100%" style="stop-color:rgba(159, 223, 159, 0.5);" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x="0" width="45.7971%" height="100%"/%3E%3Crect x="54.2029%" width="45.7971%" height="100%"/%3E%3C/svg%3E') no-repeat scroll;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1020px) {
  .susy-grid {
    padding: 0 24px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="url(%23susy-svg-gradient)" width="100%" %3E%3Cdefs%3E%3ClinearGradient spreadMethod="pad" id="susy-svg-gradient" x1="0%" y1="0%" x2="100%" y2="0%"%3E%3Cstop offset="0%" style="stop-color:rgba(64, 191, 64, 0.5);" /%3E%3Cstop offset="100%" style="stop-color:rgba(159, 223, 159, 0.5);" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x="0" width="13.31484%" height="100%"/%3E%3Crect x="17.33703%" width="13.31484%" height="100%"/%3E%3Crect x="34.67406%" width="13.31484%" height="100%"/%3E%3Crect x="52.0111%" width="13.31484%" height="100%"/%3E%3Crect x="69.34813%" width="13.31484%" height="100%"/%3E%3Crect x="86.68516%" width="13.31484%" height="100%"/%3E%3C/svg%3E') no-repeat scroll;
  }
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

b,
strong {
  font-weight: 700;
}

.mobile-only {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }
}

@media only screen and (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

.flex {
  display: flex;
}

.flex>* {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }

  .flex>* {
    width: 100%;
  }
}

.social-list {
  display: flex;
  align-items: center;
}

.social-list li:not(:last-child) {
  margin-right: 25px;
}

.social-list li svg {
  width: 17px;
  height: auto;
}

.social-list li svg path {
  transition: fill 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media only screen and (max-width: 768px) {
  .social-list li svg {
    width: 25px;
  }
}

.basic-slider {
  position: relative;
}

@media only screen and (max-width: 768px) {
  .basic-slider .control {
    display: none;
  }
}

.basic-slider .control.prev {
  transform: translate(-50%, -105%);
}

.basic-slider .control.next {
  left: 0;
  transform: translate(-50%, 5%);
}

.seance {
  border: 1px solid #e4e6e5;
  text-transform: uppercase;
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: 0.85em;
  display: block;
  padding: 5px 10px;
  margin: 3px 0;
}

.control {
  position: absolute;
  top: 50%;
  width: 65px;
  height: 65px;
  background-color: #fff;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.control.prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.control.next {
  right: 0;
  transform: translate(50%, -50%);
}

.control.next svg {
  transform: rotate(180deg);
}

.control svg {
  width: 12px;
  height: auto;
}

.control svg path {
  transition: fill 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.control:hover {
  background-color: #000;
}

.control:hover path {
  fill: #fff;
}

.legend {
  font-size: 12px;
  font-size: 0.75em;
  line-height: 18px;
  letter-spacing: 0.1px;
  display: block;
  margin-top: 10px;
}

[gsap-reveal] {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
}

#site-header .cta-menu {
  padding: 0;
  position: fixed;
  z-index: 1000;
  display: block;
  right: 20px;
  top: 29px;
}

#site-header .header__top {
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  background-color: #fff;
  position: relative;
}

#site-header .header__top:after,
#site-header .header__top:before {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60vw;
  z-index: -1;
  background-color: #fff;
}

#site-header .header__top:before {
  left: 0;
  transform: translateX(-50%);
}

#site-header .header__top:after {
  right: 0;
  transform: translateX(50%);
}

@media only screen and (max-width: 768px) {
  #site-header .header__top {
    padding: 16px 0;
  }
}

#site-header .header__top .logo-container {
  width: 189px;
}

@media only screen and (max-width: 768px) {
  #site-header .header__top .logo-container {
    width: 110px;
  }
}

#site-header .header__top .header__actions {
  display: flex;
  align-items: center;
}

#site-header .header__top .header__actions .cta {
  font-size: 13px;
  font-size: 0.8125em;
}

#site-header .header__top .header__actions .link__billeterie {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  margin-right: 14px;
}

@media only screen and (max-width: 768px) {
  #site-header .header__top .header__actions .link__billeterie {
    padding: 8px 12px;
    margin-right: 40px;
  }
}

#site-header .header__top .header__actions .link__billeterie svg {
  margin-right: 7px;
  width: 25px;
  height: auto;
  display: inline-block;
}

#site-header .header__top .header__actions .link__billeterie:hover svg path {
  fill: #000;
}

@media only screen and (max-width: 768px) {
  #site-header .header__top .header__actions .link__programme {
    display: none;
  }
}

#site-header .header__top .header__actions .cta-search {
  margin-left: 39px;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  #site-header .header__top .header__actions .cta-search {
    display: none;
  }
}

#site-header .header__top .header__actions .cta-search svg {
  width: 22px;
  height: auto;
}

#site-header .header__top .header__actions .cta-search svg path {
  transition: fill 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#site-header .header__top .header__actions .cta-search:hover svg path {
  fill: #585858;
}

#site-header .header__top .header__actions .social-list {
  margin-left: 65px;
}

@media only screen and (max-width: 768px) {
  #site-header .header__top .header__actions .social-list {
    display: none;
  }
}

#site-header .header__top .header__actions .social-list li:hover svg path {
  fill: #585858;
}

#site-header .search-wrapper {
  position: absolute;
  height: 0;
  overflow: hidden;
  background-color: #fff;
  width: 100%;
  z-index: 100;
  padding: 0 20.60606%;
}

@media only screen and (max-width: 768px) {
  #site-header .search-wrapper {
    z-index: 1000;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
  }
}

#site-header .search-wrapper .search-content {
  padding: 70px 0;
}

#site-header .search-wrapper #search-form {
  position: relative;
}

#site-header .search-wrapper #search-form label {
  position: absolute;
  font-size: 18px;
  font-size: 1.125em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
  display: block;
  pointer-events: none;
}

#site-header .search-wrapper #search-form label span {
  color: #a1a1a1;
}

@media only screen and (max-width: 768px) {
  #site-header .search-wrapper #search-form label span {
    display: block;
    margin-top: 5px;
  }
}

#site-header .search-wrapper #search-form input[type='text'] {
  padding: 10px;
  border: none;
  /* font-family: 'Raleway', sans-serif; */
  font-family: 'Bebas Neue Pro', sans-serif;
  width: 100%;
  outline: none;
  font-size: 18px;
}

#site-header .search-wrapper #search-form button {
  position: absolute;
  border: none;
  background-color: transparent;
}

#site-header .search-wrapper #search-form button svg {
  width: 25px;
  height: auto;
}

#site-header .header__banner {
  background-color: #000;
  padding: 13px 0;
  text-transform: uppercase;
  font-size: 11px;
  font-size: 0.6875em;
  letter-spacing: 1px;
  font-family: 'Bebas Neue Pro', sans-serif;
  color: #fff;
  position: relative;
  z-index: 20;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
  #site-header .header__banner {
    display: none;
  }
}

#site-header .header__banner .banner__list {
  display: flex;
}

#site-header .header__banner .banner__list li {
  white-space: nowrap;
  padding: 0 12px;
  position: relative;
}

#site-header .header__banner .banner__list li:after {
  content: '-';
  position: absolute;
  bottom: 0;
  right: -1px;
}

#site-header #nav-main {
  padding: 30px 0;
  z-index: 20;
  background-color: #fff;
  position: relative;
}

#site-header #nav-main:after,
#site-header #nav-main:before {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60vw;
  z-index: -1;
  background-color: #fff;
}

#site-header #nav-main:before {
  left: 0;
  transform: translateX(-50%);
}

#site-header #nav-main:after {
  right: 0;
  transform: translateX(50%);
}

@media only screen and (max-width: 768px) {
  #site-header #nav-main {
    display: none;
  }
}

#site-header #nav-main .menu {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 50;
}

#site-header #nav-main .menu>li {
  font-size: 18px;
  font-size: 1.125em;
  line-height: 26px;
}

#site-header #nav-main .menu>li:not(:last-child) {
  margin-right: 4%;
}

#site-header #nav-main .menu>li.current-menu-item>a,
#site-header #nav-main .menu>li>a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

#site-header #nav-main .menu>li .submenu {
  z-index: 50;
  position: absolute;
  background-color: #fff;
  left: 0;
  right: 0;
  padding: 45px 10.30303%;
  columns: 100px 3;
  column-gap: 30px;
  column-fill: auto;
  height: 198px;
  opacity: 0;
  pointer-events: none;
}

#site-header #nav-main .menu>li .submenu:after,
#site-header #nav-main .menu>li .submenu:before {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60vw;
  z-index: -1;
  background-color: #fff;
}

#site-header #nav-main .menu>li .submenu:before {
  left: 0;
  transform: translateX(-50%);
}

#site-header #nav-main .menu>li .submenu:after {
  right: 0;
  transform: translateX(50%);
}

#site-header #nav-main .menu>li .submenu>li {
  font-size: 16px;
  line-height: 36px;
}

#site-header #nav-main .menu>li .submenu>li a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

#site-header #nav-main .menu>li .submenu.active {
  opacity: 1;
  pointer-events: auto;
}

#site-header .bck-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
}

#site-header .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 500;
  background-color: #fff;
  padding: 0 20px;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

#site-header .mobile-menu.active {
  transform: translateX(0);
}

#site-header .mobile-menu .wrapper {
  min-height: 100vh;
  position: relative;
}

#site-header .mobile-menu .mobile__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 90px;
}

#site-header .mobile-menu .mobile__header .logo-container {
  width: 110px;
}

#site-header .mobile-menu .mobile__header .right .cta-search {
  width: 22px;
  display: block;
  display: inline-block;
  margin-right: 65px;
  margin-top: 4px;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#site-header .mobile-menu .mobile__header .right .cta-search.active {
  opacity: 1%;
}

#site-header .mobile-menu .mobile__header .right .cta-search svg {
  width: 100%;
  height: auto;
}

#site-header .mobile-menu #nav-mobile .menu>li {
  font-size: 18px;
  font-size: 1.125em;
  line-height: 48px;
  position: relative;
}

#site-header .mobile-menu #nav-mobile .menu>li.menu-item-has-children>a {
  pointer-events: none;
}

#site-header .mobile-menu #nav-mobile .menu>li.menu-item-has-children:before {
  content: ' ';
  position: absolute;
  right: 0;
  width: 0;
  top: 22px;
  height: 0;
  border-color: #000 transparent transparent;
  border-style: solid;
  border-width: 6px 3.5px 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#site-header .mobile-menu #nav-mobile .menu>li.menu-item-has-children.active:before {
  transform: rotate(180deg);
  transform-origin: center;
}

#site-header .mobile-menu #nav-mobile .menu>li .submenu-container {
  height: 0;
  overflow: hidden;
}

#site-header .mobile-menu #nav-mobile .menu>li .submenu-container .submenu {
  padding: 15px 0 35px 7vw;
}

#site-header .mobile-menu #nav-mobile .menu>li .submenu-container li {
  font-size: 16px;
  line-height: 36px;
}

#site-header .mobile-menu .mobile__socials {
  position: absolute;
  bottom: 50px;
  left: 0;
}

#site-footer {
  background-color: #000;
  color: #fff;
  position: relative;
  margin-top: 90px;
}

#site-footer:after,
#site-footer:before {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60vw;
  z-index: -1;
  background-color: #000;
}

#site-footer:before {
  left: 0;
  transform: translateX(-50%);
}

#site-footer:after {
  right: 0;
  transform: translateX(50%);
}

@media only screen and (max-width: 768px) {
  #site-footer {
    margin-top: 75px;
  }
}

#site-footer .footer-content {
  position: relative;
  padding: 32px 0 26px;
  justify-content: space-between;
}

#site-footer .footer-content:before {
  content: ' ';
  position: absolute;
  top: 0;
  width: 100vw;
  border-top: 1px solid #313131;
  left: 50%;
  transform: translateX(-50%);
}

#site-footer .footer-content .social-list li svg path {
  fill: #fff;
}

#site-footer .footer-content .social-list li:hover svg path {
  fill: #585858;
}

#site-footer .footer-content .content__right {
  width: 38.18182%;
}

@media only screen and (max-width: 768px) {
  #site-footer .footer-content .content__right {
    width: 100%;
    margin-top: 60px;
  }
}

#site-footer .footer-content .content__right .footer__logos {
  margin-bottom: 49px;
}

@media only screen and (max-width: 768px) {
  #site-footer .footer-content .content__right .footer__logos {
    display: flex;
    align-items: center;
  }

  #site-footer .footer-content .content__right .footer__logos> :not(:last-child) {
    margin-right: 28px;
  }
}

#site-footer .footer-content .content__right .footer__logos img {
  display: block;
  width: 117px;
}

#site-footer .footer-content .content__right .footer__logos img:not(:last-child) {
  margin-bottom: 18px;
}

@media only screen and (max-width: 768px) {
  #site-footer .footer-content .content__right .footer__logos img:not(:last-child) {
    margin-bottom: 0;
  }
}

#site-footer .footer-content .content__right .footer__txt {
  justify-content: space-between;
  margin-bottom: 71px;
}

#site-footer .footer-content .content__right .footer__txt>* {
  width: 46.03175%;
}

@media only screen and (max-width: 768px) {
  #site-footer .footer-content .content__right .footer__txt>* {
    width: 100%;
  }
}

#site-footer .footer-content .content__right .footer__txt .footer__desc {
  font-weight: 700;
  font-size: 16px;
  font-size: 1em;
  line-height: 20px;
  letter-spacing: 1px;
}

@media only screen and (max-width: 768px) {
  #site-footer .footer-content .content__right .footer__txt .footer__desc {
    font-size: 12px;
    font-size: 0.75em;
    line-height: 16px;
    margin-bottom: 34px;
  }
}

#site-footer .footer-content .content__right .footer__txt .footer__contact {
  font-size: 14px;
  font-size: 0.875em;
  line-height: 20px;
}

@media only screen and (max-width: 768px) {
  #site-footer .footer-content .content__right .footer__txt .footer__contact {
    font-size: 12px;
    font-size: 0.75em;
    line-height: 16px;
  }
}

#site-footer .footer-content .content__right .footer__txt .footer__contact a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

#site-footer .footer-content .content__right .footer__bottom {
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: 12px;
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #313131;
}

#site-footer .footer-content .content__right .footer__bottom .copyright {
  margin-right: 5px;
}

@media only screen and (max-width: 768px) {
  #site-footer .footer-content .content__right .footer__bottom .copyright {
    display: block;
    margin-bottom: 5px;
  }
}

#site-footer .footer-content .content__right .footer__bottom a {
  position: relative;
  padding-left: 15px;
  display: inline-block;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#site-footer .footer-content .content__right .footer__bottom a:hover {
  color: #fff;
}

#site-footer .footer-content .content__right .footer__bottom a:before {
  content: ' ';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 5px;
  height: 5px;
  /* border-radius: 50%; */
  background-color: #313131;
}

#site-footer .footer-content .content__right .footer__bottom a:not(:last-child) {
  margin-right: 5px;
}

@media only screen and (max-width: 768px) {
  #site-footer .footer-content .content__right .footer__bottom a:first-of-type {
    padding-left: 0;
  }

  #site-footer .footer-content .content__right .footer__bottom a:first-of-type:before {
    display: none;
  }
}

.title.title--1 {
  display: block;
  /* font-family: 'Raleway', sans-serif; */
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: 86px;
  font-size: 5.375em;
  line-height: 86px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .title.title--1 {
    font-size: 36px;
    font-size: 2.25em;
    line-height: 36px;
  }
}

.title.title--2 {
  display: block;
  /* font-family: 'Raleway', sans-serif; */
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: 26px;
  font-size: 1.625em;
  line-height: 26px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .title.title--2 {
    font-size: 20px;
    font-size: 1.25em;
    line-height: 20px;
  }
}

.title.title--3 {
  display: block;
  /* font-family: 'Raleway', sans-serif; */
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: 60px;
  font-size: 3.75em;
  line-height: 60px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .title.title--3 {
    font-size: 30px;
    font-size: 1.875em;
    line-height: 30px;
  }
}

.markup h1 {
  display: block;
  /* font-family: 'Raleway', sans-serif; */
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: 86px;
  font-size: 5.375em;
  line-height: 86px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .markup h1 {
    font-size: 36px;
    font-size: 2.25em;
    line-height: 36px;
  }
}

.markup h2 {
  display: block;
  /* font-family: 'Raleway', sans-serif; */
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: 26px;
  font-size: 1.625em;
  line-height: 26px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .markup h2 {
    font-size: 20px;
    font-size: 1.25em;
    line-height: 20px;
  }
}

.markup h3 {
  display: block;
  /* font-family: 'Raleway', sans-serif; */
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: 60px;
  font-size: 3.75em;
  line-height: 60px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .markup h3 {
    font-size: 30px;
    font-size: 1.875em;
    line-height: 30px;
  }
}

.markup ol,
.markup p,
.markup ul {
  font-size: 16px;
  font-size: 1em;
  line-height: 22px;
  margin: 20px 0;
}

.markup ol:first-child,
.markup p:first-child,
.markup ul:first-child {
  margin-top: 0;
}

.markup ol:last-child,
.markup p:last-child,
.markup ul:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {

  .markup ol,
  .markup p,
  .markup ul {
    font-size: 14px;
    font-size: 0.875em;
    line-height: 20px;
  }
}

.markup ul {
  list-style-type: disc;
  list-style-position: inside;
}

.markup em {
  font-style: italic;
}

.cta {
  cursor: pointer;
  display: inline-block;
  /* border-radius: 99em; */
  border: 1px solid #000;
  font-family: 'Bebas Neue Pro', sans-serif;
  text-transform: uppercase;
  padding: 14px 22px;
  font-size: 12px;
  font-size: 0.75em;
  letter-spacing: 0.5px;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: transparent;
}

.cta path {
  transition: fill 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media only screen and (max-width: 768px) {
  .cta {
    padding: 12px 14px;
  }
}

.cta:hover {
  color: #fff;
  background-color: #000;
}

.cta:hover path {
  fill: #fff;
}

.cta.red {
  border-color: #c86f42;
  background-color: #c86f42;
  color: #fff;
}

.cta.red:hover {
  background-color: transparent;
  color: #c86f42;
}

.cta.black {
  background-color: #000;
  color: #fff;
}

.cta.black:hover {
  background-color: transparent;
  color: #000;
}

.cta-arrow {
  position: relative;
  display: inline-block;
  padding-left: 21px;
  text-underline-offset: 1px;
  font-size: 14px;
  font-size: 0.875em;
}

.cta-arrow:before {
  content: ' ';
  background-image: url(icons/arrow_link.svg);
  background-position: 50%;
  background-size: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 9px;
  height: 9px;
}

.cta-arrow:hover {
  text-decoration: underline;
}

.cta-arrow.white:before {
  background-image: url(icons/arrow_link-white.svg);
}

.calendar-banner {
  background-color: #000;
  color: #fff;
  padding: 30px 17.57576%;
  display: flex;
  justify-content: space-between;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .calendar-banner {
    padding: 30px 10px;
  }
}

.calendar-banner .day {
  text-align: center;
  justify-content: space-between;
  font-family: 'Bebas Neue Pro', sans-serif;
  letter-spacing: 0.5px;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.calendar-banner .day.active,
.calendar-banner .day:hover {
  color: #c86f42;
}

.calendar-banner .day span {
  display: block;
}

.calendar-banner .day span.day__txt {
  font-size: 12px;
  font-size: 0.75em;
  text-transform: uppercase;
}

.calendar-banner .day span.day__nb {
  font-size: 28px;
  font-size: 1.75em;
}

.calendar-banner.banner--slider {
  position: relative;
  align-items: center;
  padding: 30px 20.60606%;
}

@media only screen and (max-width: 768px) {
  .calendar-banner.banner--slider {
    padding: 30px 0;
  }
}

.calendar-banner.banner--slider .day {
  width: 29.89691%;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1em;
}

@media only screen and (max-width: 768px) {
  .calendar-banner.banner--slider .day {
    width: 100%;
  }
}

.calendar-banner.banner--slider .day:hover {
  color: #fff;
}

.calendar-banner.banner--slider .day.current {
  color: #c86f42;
  font-size: 20px;
  font-size: 1.25em;
}

.calendar-banner.banner--slider .day.current:hover {
  color: #c86f42;
}

@media only screen and (max-width: 768px) {

  .calendar-banner.banner--slider .day.next,
  .calendar-banner.banner--slider .day.prev {
    display: none;
  }
}

.calendar-banner.banner--slider .control {
  background-color: transparent;
  padding: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

.calendar-banner.banner--slider .control path {
  fill: #fff;
  transition: fill 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.calendar-banner.banner--slider .control:hover path {
  fill: #c86f42;
}

.calendar-banner.banner--slider .control.prev {
  left: 38.18182%;
}

@media only screen and (max-width: 768px) {
  .calendar-banner.banner--slider .control.prev {
    left: 10px;
  }
}

.calendar-banner.banner--slider .control.next {
  right: 38.18182%;
}

@media only screen and (max-width: 768px) {
  .calendar-banner.banner--slider .control.next {
    right: 10px;
  }
}

.calendar-banner.banner--slider .disabled {
  pointer-events: none;
  opacity: 0.3;
}

.calendar-banner .banner__link {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 45px;
}

.calendar-banner .banner__link svg {
  width: 12px;
  height: auto;
}

.calendar-banner .banner__link path {
  fill: #fff;
  transition: fill 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.calendar-banner .banner__link:hover path {
  fill: #c86f42;
}

.calendar-banner .banner__link.nextWeek {
  right: 10.30303%;
}

@media only screen and (max-width: 768px) {
  .calendar-banner .banner__link.nextWeek {
    right: -10px;
  }
}

.calendar-banner .banner__link.nextWeek svg {
  transform: rotate(180deg);
  transform-origin: center center;
}

.calendar-banner .banner__link.thisWeek {
  left: 10.30303%;
}

@media only screen and (max-width: 768px) {
  .calendar-banner .banner__link.thisWeek {
    left: 5px;
  }
}

.tease-film .tease__img-container {
  position: relative;
  padding-top: 136.2%;
  display: block;
}

.tease-film .tease__img-container img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tease-film .tease__txt-container {
  min-height: 76px;
  margin: 18px 0 10px;
}

@media only screen and (max-width: 768px) {
  .tease-film .tease__txt-container {
    margin: 15px 0;
    min-height: 46px;
  }
}

.tease-film .tease__txt-container .tease__title {
  margin-bottom: 10px;
}

.tease-film .tease__txt-container .tease__author {
  color: #595959;
  font-size: 14px;
  font-size: 0.875em;
}

.tease-film .tease__seances {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.tease-film .tease__seances .seance {
  border: 1px solid #e4e6e5;
  /* border-radius: 99em; */
  text-transform: uppercase;
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: 0.85em;
  margin-right: 7px;
  margin-bottom: 22px;
  margin-top: 0;
}

.tease-film-full {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .tease-film-full {
    display: block;
  }
}

.tease-film-full .img-wrapper {
  width: 17.57576%;
}

.tease-film-full .img-wrapper img {
  display: block;
}

@media only screen and (max-width: 768px) {
  .tease-film-full .img-wrapper {
    width: 36.5%;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
  }
}

.tease-film-full .tease-content {
  width: 38.18182%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .tease-film-full .tease-content {
    width: 100%;
    display: block;
  }
}

.tease-film-full .tease-content .tease__title {
  margin-bottom: 11px;
}

.tease-film-full .tease-content .tease__infos {
  color: #595959;
  font-size: 14px;
  font-size: 0.875em;
  line-height: 18px;
  margin-bottom: 15px;
}

.tease-film-full .tease-content .tease__specialInfos {
  color: #c86f42;
  font-size: 16px;
  font-size: 1em;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  .tease-film-full .tease-content .tease__specialInfos {
    clear: both;
    font-size: 14px;
    font-size: 0.875em;
    line-height: 20px;
  }
}

.tease-film-full .tease-content .tease__tags {
  display: flex;
}

@media only screen and (max-width: 768px) {
  .tease-film-full .tease-content .tease__tags {
    clear: both;
  }
}

.tease-film-full .tease-content .tease__tags .tag {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.tease-film-full .tease-content .tease__tags .tag:not(:last-child) {
  margin-right: 20px;
}

.tease-film-full .tease-content .tease__tags .tag .tag__img {
  display: block;
  width: 18px;
  margin-right: 7px;
}

.tease-film-full .tease-content .tease__tags .tag .tag__label {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875em;
}

.tease-film-full .tease-content .tease__synopsys {
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  .tease-film-full .tease-content .tease__synopsys {
    clear: both;
  }
}

.tease-film-full .tease-content .tease__ctas {
  margin-top: 20px;
}

.tease-film-full .tease-content .tease__ctas a:not(:last-child) {
  margin-right: 46px;
}

@media only screen and (max-width: 768px) {
  .tease-film-full .tease-content .tease__ctas {
    display: flex;
    justify-content: space-between;
  }
}

.tease-film-full .tease__booking {
  width: 38.18182%;
  margin-top: 4vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .tease-film-full .tease__booking {
    margin-top: 25px;
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  .tease-film-full .tease__booking .seances-wrapper {
    height: 0;
    overflow: auto;
  }
}

.tease-event {
  display: flex;
  flex-direction: column;
}

.tease-event .tease__img-container {
  position: relative;
  padding-top: 70.4%;
  display: block;
}

@media only screen and (max-width: 768px) {
  .tease-event .tease__img-container {
    padding-top: 0;
  }
}

.tease-event .tease__img-container img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media only screen and (max-width: 768px) {
  .tease-event .tease__img-container img {
    position: relative;
  }
}

.tease-event .tease__txt {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tease-event .tease__txt .txt__bottom {
  height: 100%;
  position: relative;
  padding-bottom: 14px;
}

.tease-event .tease__txt .txt__bottom .cta-arrow {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 768px) {
  .tease-event .tease__txt .txt__bottom .cta-arrow {
    position: relative;
  }
}

.tease-event .tease__title {
  margin: 30px 0 15px;
}

@media only screen and (max-width: 768px) {
  .tease-event .tease__title {
    margin: 18px 0 15px;
  }
}

.tease-event .tease__content {
  margin-bottom: 18px;
  text-align: justify;
}

.tease-ba .tease__video-container {
  padding-top: 56.3%;
  position: relative;
}

.tease-ba .tease__video-container img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tease-ba .tease__video-container .cta-play {
  width: 87px;
  height: 87px;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsla(0, 0%, 100%, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.tease-ba .tease__video-container .cta-play .ico-play {
  width: 0;
  height: 0;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  transition: border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(10%);
}

.tease-ba .tease__video-container .cta-play:hover {
  background-color: #fff;
}

.tease-ba .tease__video-container .cta-play:hover .ico-play {
  border-left-color: #000;
}

.tease-ba .tease__title {
  margin: 10px 0;
}

.tease-ba .tease__content {
  min-height: 120px;
}

.tease-ba .cta-arrow {
  margin-top: 21px;
}

.block-newsletter {
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
}

.block-newsletter:after,
.block-newsletter:before {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60vw;
  z-index: -1;
  background-color: #000;
}

.block-newsletter:before {
  left: 0;
  transform: translateX(-50%);
}

.block-newsletter:after {
  right: 0;
  transform: translateX(50%);
}

@media only screen and (max-width: 768px) {
  .block-newsletter {
    flex-direction: column;
    padding: 40px 0;
  }
}

.block-newsletter .nl__title {
  font-size: 36px;
  font-size: 2.25em;
  line-height: 36px;
  padding: 67px 0;
  border-right: 1px solid #313131;
  text-align: center;
  width: 51.51515%;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .block-newsletter .nl__title {
    padding: 0;
    border-right: 0;
    font-size: 24px;
    font-size: 1.5em;
    line-height: 24px;
    width: 100%;
    margin-bottom: 27px;
    text-align: left;
  }
}

.block-newsletter .form-container {
  position: relative;
  width: 38.18182%;
}

@media only screen and (max-width: 768px) {
  .block-newsletter .form-container {
    width: 100%;
  }
}

.block-newsletter .nl__form {
  position: relative;
  width: 73.01587%;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .block-newsletter .nl__form {
    margin: 0;
    width: 100%;
  }
}

.block-newsletter .nl__form input {
  /* border-radius: 99em; */
  border: 1px solid #313131;
  padding: 17px 21px;
  display: block;
  margin: auto;
  width: 100%;
  background-color: transparent;
  color: #fff;
}

.block-newsletter .nl__form .input--hidden {
  display: none;
}

.block-newsletter .nl__form button {
  position: absolute;
  top: 20%;
  -webkit-transform: translateY(-20%);
  transform: translateY(-50%);
  right: 9px;
  width: 33px;
  height: 33px;
  background-color: #fff;
  /* border-radius: 50%; */
  border: 1px solid #fff;
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.block-newsletter .nl__form button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 13px;
  height: auto;
}

.block-newsletter .nl__form button svg path {
  transition: fill 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.block-newsletter .nl__form button:hover {
  background-color: #000;
}

.block-newsletter .nl__form button:hover svg path {
  fill: #fff;
}

.nlConfirm-wrapper {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nlConfirm-wrapper .nlConfirm-content {
  background-color: #fff;
  width: 40%;
  max-width: 500px;
  padding: 30px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .nlConfirm-wrapper .nlConfirm-content {
    width: 100%;
  }
}

.nlConfirm-wrapper .nlConfirm-content p {
  font-size: 36px;
  font-size: 2.25em;
  line-height: 36px;
  margin-bottom: 35px;
}

@media only screen and (max-width: 768px) {
  .nlConfirm-wrapper .nlConfirm-content p {
    font-size: 20px;
    font-size: 1.25em;
    line-height: 20px;
  }
}

.nlConfirm-wrapper .nlConfirm-content .cta-arrow {
  cursor: pointer;
}

.nlConfirm-wrapper .nlConfirm-content .cta-close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.nlConfirm-wrapper .nlConfirm-content .cta-close:hover:after,
.nlConfirm-wrapper .nlConfirm-content .cta-close:hover:before {
  background-color: #c86f42;
}

.nlConfirm-wrapper .nlConfirm-content .cta-close:after,
.nlConfirm-wrapper .nlConfirm-content .cta-close:before {
  content: ' ';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #000;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.nlConfirm-wrapper .nlConfirm-content .cta-close:before {
  transform: rotate(45deg) translateY(-50%);
}

.nlConfirm-wrapper .nlConfirm-content .cta-close:after {
  transform: rotate(-45deg) translateY(-50%);
}

.block-booking .booking__title {
  padding: 13px 0;
  position: relative;
  font-size: 14px;
  font-size: 0.875em;
  line-height: 20px;
}

.block-booking .booking__title:before {
  content: ' ';
  position: absolute;
  right: 5px;
  width: 0;
  top: 19px;
  height: 0;
  border-color: #000 transparent transparent;
  border-style: solid;
  border-width: 6px 3.5px 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.block-booking.active .booking__title:before {
  transform: rotate(180deg);
  transform-origin: center;
}

.block-booking .booking__header {
  margin-bottom: 22px;
}

.block-booking .booking__seances {
  margin-bottom: 33px;
}

@media only screen and (max-width: 768px) {
  .block-booking .booking__seances {
    margin-bottom: 25px;
  }
}

.block-booking .booking__seances .day {
  display: flex;
  align-items: center;
  min-height: 30px;
}

@media only screen and (max-width: 768px) {
  .block-booking .booking__seances .day {
    min-height: none;
  }
}

.block-booking .booking__seances .day .day__label {
  font-size: 14px;
  font-size: 0.875em;
  line-height: 28px;
  font-weight: 700;
  width: 46.03175%;
}

.block-booking .booking__seances .day .day__seances {
  display: flex;
}

.block-booking .booking__seances .day .day__seances li:not(:last-child) {
  margin-right: 10px;
}

.block-booking .booking__actions {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .block-booking .booking__actions {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 22px;
  }
}

.block-booking .booking__actions .cta-container {
  width: 46.03175%;
}

@media only screen and (max-width: 768px) {
  .block-booking .booking__actions .cta-container {
    width: 100%;
    margin-top: 22px;
  }
}

.block-booking .booking__actions .tags-legend {
  column-count: 2;
}

.block-booking .booking__actions .tags-legend .tag-legend {
  position: relative;
  font-size: 12px;
  font-size: 0.75em;
  padding-left: 17px;
}

.block-booking .booking__actions .tags-legend .tag-legend:not(:last-child) {
  margin-bottom: 5px;
}

.block-booking .booking__actions .tags-legend .tag-legend .bullet {
  position: absolute;
  left: 0;
  top: 2px;
  width: 9px;
  height: 9px;
  /* border-radius: 50%; */
}

.tabs .tabs-header {
  margin-bottom: 22px;
}

@media only screen and (max-width: 768px) {
  .tabs .tabs-header {
    margin-bottom: 16px;
  }
}

.tabs .cta-tab {
  font-size: 26px;
  font-size: 1.625em;
  line-height: 26px;
  font-weight: 700;
  color: #e8e8e8;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tabs .cta-tab:not(:last-child) {
  margin-right: 35px;
}

.tabs .cta-tab.active,
.tabs .cta-tab:hover {
  color: #000;
}

@media only screen and (max-width: 768px) {
  .tabs .cta-tab {
    font-size: 20px;
    font-size: 1.25em;
    line-height: 20px;
    display: block;
  }

  .tabs .cta-tab:not(:last-child) {
    margin-bottom: 15px;
  }
}

.tabs .tab {
  display: none;
}

.tabs .tab.active {
  display: block;
}

.video-overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 500;
  display: flex;
  opacity: 0;
}

.video-overlay .cta-close {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 60px;
  right: 40px;
  cursor: pointer;
}

.video-overlay .cta-close:hover:after,
.video-overlay .cta-close:hover:before {
  background-color: #c86f42;
}

.video-overlay .cta-close:after,
.video-overlay .cta-close:before {
  content: ' ';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #fff;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.video-overlay .cta-close:before {
  transform: rotate(45deg) translateY(-50%);
}

.video-overlay .cta-close:after {
  transform: rotate(-45deg) translateY(-50%);
}

.video-overlay .overlay-content {
  display: flex;
  justify-content: center;
  margin: auto;
  width: 80%;
}

@media only screen and (max-width: 768px) {
  .video-overlay .overlay-content {
    width: 100%;
  }
}

.video-overlay .overlay-content video {
  outline: none;
  width: 100%;
}

.event-infos {
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: 12px;
  font-size: 0.75em;
  letter-spacing: 0.5px;
  color: #c86f42;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .event-infos {
    flex-direction: column;
    align-items: flex-start;
  }
}

.event-infos .tease__date {
  margin-right: 30px;
  line-height: 20px;
}

@media only screen and (max-width: 768px) {
  .event-infos .tease__date {
    margin-bottom: 5px;
  }
}

.event-infos .tease__tags {
  display: flex;
  flex-wrap: wrap;
}

.event-infos .tease__tags .tag {
  padding-left: 16px;
  position: relative;
  margin: 4px 0;
}

.event-infos .tease__tags .tag:not(:last-child) {
  margin-right: 20px;
}

.event-infos .tease__tags .tag:before {
  content: ' ';
  width: 9px;
  height: 9px;
  /* border-radius: 50%; */
  position: absolute;
  top: 1.5px;
  background-color: #000;
  left: 0;
}

.section-a-laffiche {
  padding-bottom: 40px;
}

.section-a-laffiche .affiche__list {
  position: relative;
}

.section-a-laffiche .affiche__list .slick-dots {
  position: absolute;
  right: 70px;
  bottom: 70px;
}

@media only screen and (max-width: 768px) {
  .section-a-laffiche .affiche__list .slick-dots {
    right: 17px;
    bottom: 29px;
  }
}

.section-a-laffiche .affiche__list .slide {
  padding-top: 38%;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .section-a-laffiche .affiche__list .slide {
    padding-top: 60vh;
  }
}

.section-a-laffiche .affiche__list .slide .slide__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-a-laffiche .affiche__list .slide .slide__content {
  position: absolute;
  bottom: 80px;
  left: 49px;
  z-index: 10;
  color: #fff;
  width: 48.48485%;
}

@media only screen and (max-width: 768px) {
  .section-a-laffiche .affiche__list .slide .slide__content {
    left: 17px;
    right: 17px;
    bottom: 29px;
    width: auto;
  }
}

.section-a-laffiche .affiche__list .slide .slide__content .slide__eyebrow {
  font-family: 'Bebas Neue Pro', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875em;
  display: block;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.section-a-laffiche .affiche__list .slide .slide__content .slide__title {
  font-size: 60px;
  font-size: 3.75em;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 21px;
}

@media only screen and (max-width: 768px) {
  .section-a-laffiche .affiche__list .slide .slide__content .slide__title {
    font-size: 36px;
    font-size: 2.25em;
    line-height: 36px;
  }
}

.section-a-laffiche .affiche__list .slide .slide__content .slide__subtitle {
  font-size: 26px;
  font-size: 1.625em;
  line-height: 26px;
  text-transform: none;
  display: block;
}

@media only screen and (max-width: 768px) {
  .section-a-laffiche .affiche__list .slide .slide__content .slide__subtitle {
    font-size: 20px;
    font-size: 1.25em;
    line-height: 24px;
  }
}

.section-a-laffiche .affiche__list .slide .slide__content .slide__link {
  margin-top: 21px;
}

.section-programmation {
  padding: 40px 0;
}

.section-programmation .prog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 21px;
}

@media only screen and (max-width: 768px) {
  .section-programmation .prog__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.section-programmation .prog__header .ctas {
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  .section-programmation .prog__header .ctas {
    margin-bottom: 0;
    margin-top: 18px;
  }
}

.section-programmation .prog__header .ctas a:not(:last-child) {
  margin-right: 10px;
}

.section-programmation .prog__calendar {
  margin-bottom: 35px;
}

.section-programmation .prog__calendar .banner__week {
  display: none;
}

.section-programmation .prog__films {
  position: relative;
}

.section-programmation .prog__films .films__list {
  margin-right: -2.9vw;
}

@media only screen and (max-width: 768px) {
  .section-programmation .prog__films .films__list {
    margin-right: -20px;
    margin-left: -20px;
  }

  .section-programmation .prog__films .films__list:not(.slick-slider)>li {
    width: 100%;
    padding: 0 20px;
  }
}

@media only screen and (max-width: 768px) {
  .section-programmation .prog__films .films__list .slick-list {
    padding-right: 25%;
  }
}

.section-programmation .prog__films.noSlick .films__list:not(.slick-slider) {
  margin-right: 0;
  width: 100%;
  display: flex;
}

.section-programmation .prog__films.noSlick .films__list:not(.slick-slider)>li {
  width: 17.57576%;
}

.section-programmation .prog__films.noSlick .films__list:not(.slick-slider)>li:not(:last-child) {
  margin-right: 3.0303%;
}

.section-programmation .prog__films.noSlick .control {
  display: none;
}

.section-programmation .prog__films .slick-slide {
  padding-right: 2.9vw;
}

@media only screen and (max-width: 768px) {
  .section-programmation .prog__films .slick-slide {
    padding-right: 0;
    padding-left: 20px;
  }
}

.section-programmation .prog__films .control {
  top: 35%;
}

@media only screen and (max-width: 768px) {
  .section-programmation .prog__films .control {
    display: none;
  }
}

.section-programmation .txt-empty {
  padding-left: 10.30303%;
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-size: 1.625em;
  line-height: 26px;
  font-weight: 700;
  margin: 50px 0;
}

@media only screen and (max-width: 768px) {
  .section-programmation .txt-empty {
    font-size: 20px;
    font-size: 1.25em;
    line-height: 20px;
  }
}

.section-programmation .txt-empty a {
  color: #c86f42;
}

.section-programmation .txt-empty a:hover {
  text-decoration: underline;
}

.section-evenements {
  padding: 40px 0;
}

.section-evenements .evenements__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}

@media only screen and (max-width: 768px) {
  .section-evenements .evenements__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 17px;
  }
}

.section-evenements .evenements__header .ctas {
  display: flex;
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  .section-evenements .evenements__header .ctas {
    display: none;
  }

  .section-bandes-annonces .bandes-annonces__header .ctas {
    display: none;
  }
}

.section-evenements .evenements__header .ctas .arrows-wrapper {
  margin-right: 25px;
}

.section-evenements .evenements__header .ctas .arrows-wrapper .cta {
  padding: 0;
  width: 41px;
  height: 41px;
  position: relative;
}

.section-evenements .evenements__header .ctas .arrows-wrapper .cta:not(:last-child) {
  margin-right: 3px;
}

.section-evenements .evenements__header .ctas .arrows-wrapper .cta svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 9px;
  height: auto;
}

.section-evenements .evenements__header .ctas .arrows-wrapper .cta.next svg {
  transform: translate(-30%, -50%) rotate(180deg);
}

.section-evenements .evenements__list {
  margin-right: -37px;
}

.section-evenements .evenements__list .slick-list {
  padding-right: 19%;
}

.section-evenements .evenements__list .slick-list .slick-track {
  margin: 0;
}

.section-evenements .evenements__list .slick-slide {
  padding-right: 2.9vw;
}

@media only screen and (max-width: 768px) {
  .section-evenements .evenements__list .slick-slide {
    padding-right: 20px;
  }
}

.section-evenements .evenements__list .slick-slide .tease-event,
.section-evenements .evenements__list .slick-slide>div,
.section-evenements .evenements__list .slick-slide>div>li {
  height: 100%;
}

.section-evenements .evenements__list .slick-slide .tease__title {
  min-height: 52px;
}

@media only screen and (max-width: 768px) {
  .section-evenements .evenements__list .slick-slide .tease__title {
    min-height: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .section-evenements .evenements__list .tease-event .tease__img-container {
    padding-top: 70.4%;
  }

  .section-evenements .evenements__list .tease-event .tease__img-container img {
    position: absolute;
  }
}

.section-evenements .cta-container {
  text-align: center;
  margin-top: 48px;
}

.section-bandes-annonces {
  padding: 40px 0;
}

.section-bandes-annonces .bandes-annonces__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}

@media only screen and (max-width: 768px) {
  .section-bandes-annonces .bandes-annonces__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 17px;
  }
}

.section-bandes-annonces .bandes-annonces__header .ctas {
  display: flex;
  margin-bottom: 15px;
}

.section-bandes-annonces .ba__title {
  margin-bottom: 26px;
}

.section-bandes-annonces .bandes-annonces__header .ctas .arrows-wrapper {
  margin-right: 25px;
}

.section-bandes-annonces .bandes-annonces__header .ctas .arrows-wrapper .cta {
  padding: 0;
  width: 41px;
  height: 41px;
  position: relative;
}

.section-bandes-annonces .bandes-annonces__header .ctas .arrows-wrapper .cta:not(:last-child) {
  margin-right: 3px;
}

.section-bandes-annonces .bandes-annonces__header .ctas .arrows-wrapper .cta svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 9px;
  height: auto;
}

.section-bandes-annonces .bandes-annonces__header .ctas .arrows-wrapper .cta.next svg {
  transform: translate(-30%, -50%) rotate(180deg);
}

.section-bandes-annonces .ba__list {
  margin-right: -37px;
}

.section-bandes-annonces .ba__list .slick-list {
  padding-right: 19%;
}

.section-bandes-annonces .ba__list .slick-list .slick-track {
  margin: 0;
}

.section-bandes-annonces .ba__list .slick-slide {
  padding-right: 2.9vw;
}

.section-bandes-annonces .bandes-annonces__header .ctas .arrows-wrapper .cta {
  padding: 0;
  width: 41px;
  height: 41px;
  position: relative;
}

.section-bandes-annonces .bandes-annonces__header .ctas .arrows-wrapper .cta:not(:last-child) {
  margin-right: 3px;
}

.section-bandes-annonces .bandes-annonces__header .ctas .arrows-wrapper .cta svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 9px;
  height: auto;
}

.section-bandes-annonces .bandes-annonces__header .ctas .arrows-wrapper .cta.next svg {
  transform: translate(-30%, -50%) rotate(180deg);
}

.section-bandes-annonces .ba__list .ba__others {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
}

.section-bandes-annonces .ba__list .ba__others .tease-ba {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-width: 300px;
}

/* .section-bandes-annonces .ba__list .ba__others .tease-ba:not(:last-child) {
  margin-bottom: 1.63vw;
} */
.section-bandes-annonces .ba__list .ba__others .tease-ba .tease__video-container .cta-play {
  width: 42px;
  height: 42px;
}

.section-bandes-annonces .ba__list .ba__others .tease-ba .tease__video-container .cta-play .ico-play {
  border-width: 4px 0 4px 8px;
}

.section-bandes-annonces .ba__slider {
  margin: 0 -20px;
}

.section-bandes-annonces .ba__slider .slick-list {
  padding-right: 25%;
}

.section-bandes-annonces .ba__slider .slick-list .slick-slide {
  padding-left: 20px;
}

.section-bandes-annonces .ba__slider .tease-ba .tease__video-container {
  margin-bottom: 13px;
}

.section-bandes-annonces .ba__slider .tease-ba .tease__video-container .cta-play {
  width: 42px;
  height: 42px;
}

.section-bandes-annonces .ba__slider .tease-ba .tease__video-container .cta-play .ico-play {
  border-width: 4px 0 4px 8px;
}

.section-bandes-annonces .ba__slider .tease-ba .tease__title {
  min-height: 46px;
  margin-bottom: 0;
}

#content[data-template='programmation'] .prog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='programmation'] .prog__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

#content[data-template='programmation'] .prog__header .header__title {
  margin-top: 15px;
}

#content[data-template='programmation'] .prog__header .header__title span {
  color: #c86f42;
  display: block;
}

#content[data-template='programmation'] .prog__header .header__right {
  text-align: right;
  margin-bottom: 12px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='programmation'] .prog__header .header__right {
    display: none;
  }
}

#content[data-template='programmation'] .prog__header .header__right .header__period {
  font-family: 'Bebas Neue Pro', sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25em;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  display: block;
}

#content[data-template='programmation'] .prog__header .header__right .filters-prog {
  margin-top: 25px;
  display: flex;
}

@media only screen and (max-width: 768px) {
  #content[data-template='programmation'] .prog__header .header__right .filters-prog {
    display: none;
  }
}

#content[data-template='programmation'] .prog__header .header__right .filters-prog .cta.active {
  background-color: #c86f42;
  border-color: #c86f42;
  color: #fff;
}

#content[data-template='programmation'] .prog__header .header__right .filters-prog .cta:not(:last-child) {
  margin-right: 13px;
}

#content[data-template='programmation'] .prog__banner .banner__period {
  font-family: 'Bebas Neue Pro', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1em;
  line-height: 18px;
  text-align: center;
  width: 100%;
  padding: 0 10px;
  letter-spacing: 0.5px;
  color: #c86f42;
}

#content[data-template='programmation'] .prog__films>li {
  padding: 40px 0;
  position: relative;
}

@media only screen and (max-width: 768px) {
  #content[data-template='programmation'] .prog__films>li {
    padding: 34px 0;
  }
}

#content[data-template='programmation'] .prog__films>li:nth-child(2n) {
  background-color: #f8f8f8;
}

#content[data-template='programmation'] .prog__films>li:nth-child(2n):after,
#content[data-template='programmation'] .prog__films>li:nth-child(2n):before {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60vw;
  z-index: -1;
  background-color: #f8f8f8;
}

#content[data-template='programmation'] .prog__films>li:nth-child(2n):before {
  left: 0;
  transform: translateX(-50%);
}

#content[data-template='programmation'] .prog__films>li:nth-child(2n):after {
  right: 0;
  transform: translateX(50%);
}

#content[data-template='programmation'] .prog__films>li:last-child {
  padding-bottom: 225px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='programmation'] .prog__films>li:last-child {
    padding-bottom: 98px;
  }
}

#content[data-template='programmation'] .txt-empty {
  margin: 90px 0 175px;
  padding-left: 10.30303%;
  font-size: 26px;
  font-size: 1.625em;
  line-height: 26px;
}

#content[data-template='programmation'] #site-footer {
  margin-top: 0;
}

#content[data-template='archive-programme'] .programme__header {
  margin-bottom: 58px;
}

#content[data-template='archive-programme'] .programme__header .header__title span {
  color: #c86f42;
  display: block;
}

#content[data-template='archive-programme'] .programme__header .header__tags {
  margin-top: 17px;
  display: flex;
}

#content[data-template='archive-programme'] .programme__header .header__tags li:not(:last-child) {
  margin-right: 15px;
}

#content[data-template='archive-programme'] .programme__header .header__tags .cta.active {
  background-color: #c86f42;
  border-color: #c86f42;
  color: #fff;
}

#content[data-template='archive-programme'] .programme__header .header__tags .cta:not(:last-child) {
  margin-right: 13px;
}

#content[data-template='archive-programme'] .programme__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

#content[data-template='archive-programme'] .programme__list li:nth-child(odd) {
  background-color: #f8f8f8;
}

#content[data-template='archive-programme'] .programme__list li .prog__txt {
  font-weight: 700;
  font-size: 16px;
  font-size: 1em;
}

#content[data-template='telecharger-programmes'] .page__header .header__title {
  margin-top: 15px;
  margin-bottom: 75px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='telecharger-programmes'] .page__header .header__title {
    margin: 35px 0;
  }
}

#content[data-template='telecharger-programmes'] .page__header .header__title span {
  display: block;
  color: #c86f42;
}

#content[data-template='telecharger-programmes'] .dl__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#content[data-template='telecharger-programmes'] .dl__list .prog {
  width: 48.48485%;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  #content[data-template='telecharger-programmes'] .dl__list .prog {
    width: 100%;
    display: block;
  }
}

#content[data-template='telecharger-programmes'] .dl__list .prog .prog__img-container {
  width: 36.25%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='telecharger-programmes'] .dl__list .prog .prog__img-container {
    width: 46%;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
  }
}

#content[data-template='telecharger-programmes'] .dl__list .prog .prog__img-container img {
  width: 100%;
}

#content[data-template='telecharger-programmes'] .dl__list .prog .prog__txt {
  width: 57.5%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='telecharger-programmes'] .dl__list .prog .prog__txt {
    width: 100%;
  }
}

#content[data-template='telecharger-programmes'] .dl__list .prog .prog__txt .prog__title {
  margin-bottom: 9px;
}

#content[data-template='telecharger-programmes'] .dl__list .prog .prog__txt .prog__date {
  display: block;
  color: #c86f42;
  font-weight: 700;
  font-size: 16px;
  font-size: 1em;
  line-height: 22px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='telecharger-programmes'] .dl__list .prog .prog__txt .prog__date {
    clear: both;
  }
}

#content[data-template='telecharger-programmes'] .dl__list .prog .prog__txt .prog__desc {
  margin-top: 20px;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  #content[data-template='telecharger-programmes'] .dl__list .prog .prog__txt .prog__desc {
    clear: both;
  }
}

#content[data-template='telecharger-programmes'] .cta-container {
  text-align: center;
  margin-top: 75px;
  margin-bottom: 125px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='telecharger-programmes'] .cta-container {
    margin: 20px 0 50px;
  }
}

#content[data-template='single-film'] .film {
  margin-top: 25px;
  margin-bottom: 200px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-film'] .film {
    margin-bottom: 95px;
  }
}

#content[data-template='single-film'] .film .film__desc {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-film'] .film .film__desc {
    display: block;
  }
}

#content[data-template='single-film'] .film .film__img-container {
  width: 17.57576%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-film'] .film .film__img-container {
    float: left;
    width: 36.5%;
    margin-right: 20px;
    margin-bottom: 20px;
  }

  #content[data-template='single-film'] .film .film__img-container .cta-arrow {
    display: none;
  }
}

#content[data-template='single-film'] .film .film__img-container img {
  display: block;
  width: 100%;
  margin-bottom: 21px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-film'] .film .film__img-container img {
    margin-bottom: 0;
  }
}

#content[data-template='single-film'] .film .film__txt {
  width: 38.18182%;
  position: relative;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-film'] .film .film__txt {
    width: 100%;
  }
}

#content[data-template='single-film'] .film .film__txt .film__title {
  text-transform: none;
  font-size: 48px;
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-film'] .film .film__txt .film__title {
    font-size: 20px;
    font-size: 1.25em;
    line-height: 20px;
  }
}

#content[data-template='single-film'] .film .film__txt .film__infos {
  color: #595959;
  font-size: 14px;
  font-size: 0.875em;
  line-height: 18px;
  margin-bottom: 25px;
}

#content[data-template='single-film'] .film .film__txt .film__tags {
  display: flex;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-film'] .film .film__txt .film__tags {
    clear: both;
  }
}

#content[data-template='single-film'] .film .film__txt .film__tags .tag {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

#content[data-template='single-film'] .film .film__txt .film__tags .tag:not(:last-child) {
  margin-right: 20px;
}

#content[data-template='single-film'] .film .film__txt .film__tags .tag .tag__img {
  display: block;
  width: 18px;
  margin-right: 7px;
}

#content[data-template='single-film'] .film .film__txt .film__tags .tag .tag__label {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875em;
}

#content[data-template='single-film'] .film .film__txt .film__specialInfos {
  color: #c86f42;
  font-size: 16px;
  font-size: 1em;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-film'] .film .film__txt .film__specialInfos {
    clear: both;
    font-size: 14px;
    font-size: 0.875em;
    line-height: 20px;
  }
}

#content[data-template='single-film'] .film .film__txt .film__festivals {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-film'] .film .film__txt .film__festivals {
    clear: both;
    margin-bottom: 40px;
  }
}

#content[data-template='single-film'] .film .film__txt .film__festivals li {
  max-width: 125px;
}

#content[data-template='single-film'] .film .film__txt .film__festivals li:not(:last-child) {
  margin-right: 20px;
}

#content[data-template='single-film'] .film .film__txt .film__tabs {
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-film'] .film .film__txt .film__tabs {
    margin-top: 0;
    clear: both;
  }
}

#content[data-template='single-film'] .film .film__txt .film__tabs .tabs__header {
  margin-bottom: 22px;
}

#content[data-template='single-film'] .film .film__txt .film__tabs .tabs__content {
  text-align: justify;
}

#content[data-template='single-film'] .film .film__txt .film__tabs .tabs__content .tab {
  position: absolute;
  opacity: 0;
}

#content[data-template='single-film'] .film .film__txt .film__tabs .tabs__content .tab.active {
  position: relative;
  opacity: 1;
}

#content[data-template='single-film'] .film .film__booking {
  margin-top: 100px;
  width: 38.18182%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-film'] .film .film__booking {
    width: 100%;
    margin-top: 45px;
    clear: both;
  }
}

#content[data-template='single-film'] .film .film__booking .cta-tab {
  cursor: default;
  pointer-events: none;
}

#content[data-template='single-film'] .film .film__medias {
  margin-top: 111px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-film'] .film .film__medias {
    margin-top: 35px;
  }
}

#content[data-template='single-film'] .film .film__medias .noImg {
  display: none;
}

#content[data-template='single-film'] .film .film__medias .tabs__header {
  margin-bottom: 25px;
}

#content[data-template='archive-evenement'] .evts__header {
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='archive-evenement'] .evts__header {
    margin-bottom: 21px;
  }
}

#content[data-template='archive-evenement'] .evts__header .header__tags {
  margin-top: 43px;
  margin-bottom: 22px;
  display: flex;
}

@media only screen and (max-width: 768px) {
  #content[data-template='archive-evenement'] .evts__header .header__tags {
    display: none;
  }
}

#content[data-template='archive-evenement'] .evts__header .header__tags li:not(:last-child) {
  margin-right: 13px;
}

#content[data-template='archive-evenement'] .evts__header .header__tags .cta.active,
#content[data-template='archive-evenement'] .evts__header .header__tags .cta:hover {
  border-color: #c86f42;
  background-color: #c86f42;
  color: #fff;
}

#content[data-template='archive-evenement'] .evts__header #evts__filters {
  margin-top: 20px;
  border: 1px solid #000;
  /* border-radius: 99em; */
  padding: 0 20px;
}

#content[data-template='archive-evenement'] .evts__header #evts__filters select {
  width: 100%;
  padding: 10px 0;
  font-size: 12px;
  background-color: transparent;
  text-transform: uppercase;
  font-family: 'Bebas Neue Pro', sans-serif;
  border: none;
}

#content[data-template='archive-evenement'] .evts__empty {
  margin: 90px 175px;
  padding-left: 10.30303%;
  font-size: 26px;
  font-size: 1.625em;
  line-height: 26px;
}

#content[data-template='archive-evenement'] .evts__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#content[data-template='archive-evenement'] .evts__list>li {
  width: 17.57576%;
  margin-bottom: 70px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='archive-evenement'] .evts__list>li {
    width: 100%;
    margin-bottom: 54px;
  }
}

#content[data-template='archive-evenement'] .evts__list>li.empty {
  margin-bottom: 0;
}

#content[data-template='archive-evenement'] .evts__list>li .tease-event {
  height: 100%;
}

#content[data-template='archive-evenement'] .evts__list>li .tease-event .tease__img-container {
  padding-top: 142.5%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='archive-evenement'] .evts__list>li .tease-event .tease__img-container {
    padding-top: 0;
  }
}

#content[data-template='archive-evenement'] .evts__list>li .tease-event .tease__title {
  font-size: 20px;
  font-size: 1.25em;
  line-height: 20px;
}

#content[data-template='archive-evenement'] .evts__list>li .tease-event .event-infos {
  flex-direction: column;
  align-items: flex-start;
}

#content[data-template='archive-evenement'] .evts__list>li .tease-event .event-infos .tease__date {
  margin-bottom: 8px;
}

#content[data-template='archive-evenement'] .evts__list>li .tease-event .tease__content {
  display: none;
}

@media only screen and (max-width: 768px) {
  #content[data-template='archive-evenement'] .evts__list>li .tease-event .tease__content {
    display: block;
  }
}

#content[data-template='archive-evenement'] .evts__list.big>li:first-child {
  width: 100%;
}

#content[data-template='archive-evenement'] .evts__list.big>li:first-child .tease-event {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

@media only screen and (max-width: 768px) {
  #content[data-template='archive-evenement'] .evts__list.big>li:first-child .tease-event {
    flex-direction: column;
  }
}

#content[data-template='archive-evenement'] .evts__list.big>li:first-child .tease-event>* {
  width: 48.48485%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='archive-evenement'] .evts__list.big>li:first-child .tease-event>* {
    width: 100%;
  }
}

#content[data-template='archive-evenement'] .evts__list.big>li:first-child .tease-event .tease__img-container {
  padding-top: 70.4%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='archive-evenement'] .evts__list.big>li:first-child .tease-event .tease__img-container {
    padding-top: 0;
  }
}

#content[data-template='archive-evenement'] .evts__list.big>li:first-child .tease-event .tease__title {
  font-size: 26px;
  font-size: 1.625em;
  line-height: 26px;
}

#content[data-template='archive-evenement'] .evts__list.big>li:first-child .tease-event .event-infos {
  flex-direction: row;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  #content[data-template='archive-evenement'] .evts__list.big>li:first-child .tease-event .event-infos {
    flex-direction: column;
    align-items: flex-start;
  }
}

#content[data-template='archive-evenement'] .evts__list.big>li:first-child .tease-event .event-infos .tease__date {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  #content[data-template='archive-evenement'] .evts__list.big>li:first-child .tease-event .event-infos .tease__date {
    margin-bottom: 8px;
  }
}

#content[data-template='archive-evenement'] .evts__list.big>li:first-child .tease-event .tease__content {
  display: block;
}

#content[data-template='archive-evenement'] .evts__list.big>li:first-child .tease-event .tease__txt {
  display: flex;
}

#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(2),
#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(3),
#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(4) {
  width: 30.90909%;
}

@media only screen and (max-width: 768px) {

  #content[data-template='archive-evenement'] .evts__list.big>li:nth-child(2),
  #content[data-template='archive-evenement'] .evts__list.big>li:nth-child(3),
  #content[data-template='archive-evenement'] .evts__list.big>li:nth-child(4) {
    width: 100%;
  }
}

#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(2) .tease__title,
#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(3) .tease__title,
#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(4) .tease__title {
  font-size: 26px;
  font-size: 1.625em;
  line-height: 26px;
}

#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(2) .event-infos,
#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(3) .event-infos,
#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(4) .event-infos {
  flex-direction: row;
  align-items: center;
}

#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(2) .event-infos .tease__date,
#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(3) .event-infos .tease__date,
#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(4) .event-infos .tease__date {
  margin-bottom: 0;
}

#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(2) .tease__content,
#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(3) .tease__content,
#content[data-template='archive-evenement'] .evts__list.big>li:nth-child(4) .tease__content {
  display: block;
}

#content[data-template='single-evenement'] .event {
  display: flex;
  justify-content: space-between;
  margin-top: 75px;
  margin-bottom: 225px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-evenement'] .event {
    margin-top: 15px;
    display: block;
    margin-bottom: 108px;
  }
}

#content[data-template='single-evenement'] .event .cta-back {
  display: inline-block;
  padding-left: 15px;
  position: relative;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: 12px;
  font-size: 0.75em;
  letter-spacing: 0.5px;
}

#content[data-template='single-evenement'] .event .cta-back:before {
  content: '<';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#content[data-template='single-evenement'] .event .event__img-wrapper {
  width: 17.57576%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-evenement'] .event .event__img-wrapper {
    width: 100%;
    margin-bottom: 25px;
  }

  #content[data-template='single-evenement'] .event .event__img-wrapper .cta-back {
    display: none;
  }
}

#content[data-template='single-evenement'] .event .event__txt {
  width: 79.39394%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-evenement'] .event .event__txt {
    width: 100%;
  }
}

#content[data-template='single-evenement'] .event .event__cta-container {
  position: absolute;
  right: 0;
  width: 17.57576%;
  top: 25vh;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-evenement'] .event .event__cta-container {
    display: none;
  }
}

#content[data-template='single-evenement'] .event .event__title {
  margin-bottom: 24px;
  padding-right: 25.9542%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-evenement'] .event .event__title {
    padding-right: 0;
  }
}

#content[data-template='single-evenement'] .event .event-infos {
  justify-content: flex-start;
  padding-right: 25.9542%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-evenement'] .event .event-infos {
    padding-right: 0;
  }
}

#content[data-template='single-evenement'] .event .event-infos .tease__date {
  margin-right: 30px;
}

#content[data-template='single-evenement'] .event .event__intro {
  margin-top: 30px;
  font-weight: 700;
  padding-right: 25.9542%;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-evenement'] .event .event__intro {
    padding-right: 0;
  }
}

#content[data-template='single-evenement'] .event .event__sections .section {
  margin: 60px 0;
  padding-right: 25.9542%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-evenement'] .event .event__sections .section {
    padding-right: 0;
    margin: 40px 0;
  }
}

#content[data-template='single-evenement'] .event .event__sections .section:last-child {
  margin-bottom: 0;
}

#content[data-template='single-evenement'] .event .event__sections .section--titreTexte .title {
  margin-bottom: 26px;
}

#content[data-template='single-evenement'] .event .event__sections .section--titreTexte iframe {
  display: block;
  margin: 35px auto;
  max-width: 100%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-evenement'] .event .event__sections .section--titreTexte iframe {
    height: 200px;
  }
}

#content[data-template='single-evenement'] .event .event__sections .section--titreTexte video {
  width: 100%;
  height: auto;
}

#content[data-template='single-evenement'] .event .event__sections .section--titreTexte .markup {
  text-align: justify;
}

#content[data-template='single-evenement'] .event .event__sections .section--blocFilm .cta-container {
  margin-top: 18px;
}

#content[data-template='single-evenement'] .event .event__sections .section--blocFilm .tease-film-full .img-wrapper {
  width: 29.89691%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-evenement'] .event .event__sections .section--blocFilm .tease-film-full .img-wrapper {
    width: 36.5%;
  }
}

#content[data-template='single-evenement'] .event .event__sections .section--blocFilm .tease-film-full .tease-content {
  width: 64.94845%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-evenement'] .event .event__sections .section--blocFilm .tease-film-full .tease-content {
    width: 100%;
  }
}

#content[data-template='single-evenement'] .event .event__sections .section--blocFilm .tease-film-full .tease__booking,
#content[data-template='single-evenement'] .event .event__sections .section--blocFilm .tease-film-full .tease__ctas .cta-arrow:not(:first-child) {
  display: none;
}

#content[data-template='single-evenement'] .event .event__sections .section--galerie {
  padding-right: 0;
  margin-right: -37px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-evenement'] .event .event__sections .section--galerie {
    margin-left: -20px;
    margin-right: -20px;
  }
}

#content[data-template='single-evenement'] .event .event__sections .section--galerie .slick-slide img {
  width: auto;
  height: 30vh;
  display: block;
  padding-right: 39px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='single-evenement'] .event .event__sections .section--galerie .slick-slide img {
    padding-right: 0;
    padding-left: 20px;
  }
}

#content[data-template='single-evenement'] .event .event__sections .section--galerie .control.prev {
  transform: translate(-50%, -105%);
}

#content[data-template='single-evenement'] .event .event__sections .section--galerie .control.next {
  left: 0;
  transform: translate(-50%, 5%);
}

#content[data-template='single-evenement'] .event .cta-container.mobile-only {
  margin-top: 49px;
}

#content[data-template='education'] .page__title {
  margin-top: 15px;
  margin-bottom: 31px;
  width: 69.09091%;
}

#content[data-template='education'] .page__title span {
  color: #c86f42;
}

#content[data-template='education'] .actions__list {
  display: flex;
  margin-bottom: 40px;
}

#content[data-template='education'] .actions__list li:not(:last-child) {
  margin-right: 15px;
}

#content[data-template='education'] .actions__list li .cta:hover {
  background-color: #c86f42;
  border-color: #c86f42;
}

#content[data-template='education'] .edu__img-container {
  position: relative;
}

#content[data-template='education'] .edu__img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#content[data-template='education'] .edu__img-container.mobile-only {
  padding-top: 35%;
  margin-bottom: 17px;
}

#content[data-template='education'] .page__header {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 96px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .page__header {
    flex-direction: column-reverse;
    margin-bottom: 60px;
  }
}

#content[data-template='education'] .page__header .left {
  width: 69.09091%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .page__header .left {
    width: 100%;
  }
}

#content[data-template='education'] .page__header .left .edu__img-container {
  position: relative;
  padding-top: 24%;
  margin-bottom: 32px;
}

#content[data-template='education'] .page__header .left .edu__img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#content[data-template='education'] .page__header .left .edu__desc {
  padding-left: 29.82456%;
  text-align: justify;
}

#content[data-template='education'] .page__header .left .edu__desc a {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .page__header .left .edu__desc {
    padding-left: 0;
  }
}

#content[data-template='education'] .page__header .right {
  width: 27.87879%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .page__header .right {
    width: 100%;
    margin-bottom: 50px;
  }
}

#content[data-template='education'] .page__header .right .edu__infos-wrapper {
  font-weight: 700;
}

#content[data-template='education'] .page__header .right .edu__infos-wrapper strong {
  color: #c86f42;
  text-decoration-color: #c86f42;
}

#content[data-template='education'] .page__header .right .edu__infos-wrapper a:not(.cta),
#content[data-template='education'] .page__header .right .edu__infos-wrapper a strong {
  text-decoration: underline;
}

#content[data-template='education'] .page__header .right .edu__infos-wrapper .cta:last-child {
  margin-top: 10px;
}

#content[data-template='education'] .edu__sections .edu__section {
  padding-bottom: 75px;
}

#content[data-template='education'] .edu__sections .edu__section .title {
  margin-bottom: 32px;
}

#content[data-template='education'] .edu__sections .edu__section.programmation .title {
  padding-left: 20.60606%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.programmation .title {
    padding-left: 0;
  }
}

#content[data-template='education'] .edu__sections .edu__section.programmation .prog__list>li {
  padding: 45px 0;
  position: relative;
}

#content[data-template='education'] .edu__sections .edu__section.programmation .prog__list>li:nth-child(odd) {
  background-color: #f8f8f8;
}

#content[data-template='education'] .edu__sections .edu__section.programmation .prog__list>li:nth-child(odd):after,
#content[data-template='education'] .edu__sections .edu__section.programmation .prog__list>li:nth-child(odd):before {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60vw;
  z-index: -1;
  background-color: #f8f8f8;
}

#content[data-template='education'] .edu__sections .edu__section.programmation .prog__list>li:nth-child(odd):before {
  left: 0;
  transform: translateX(-50%);
}

#content[data-template='education'] .edu__sections .edu__section.programmation .prog__list>li:nth-child(odd):after {
  right: 0;
  transform: translateX(50%);
}

#content[data-template='education'] .edu__sections .edu__section.programmation .tease-film-full {
  width: 69.09091%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.programmation .tease-film-full {
    width: 100%;
  }
}

#content[data-template='education'] .edu__sections .edu__section.programmation .tease-film-full .img-wrapper {
  width: 25.4386%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.programmation .tease-film-full .img-wrapper {
    width: 36.5%;
  }
}

#content[data-template='education'] .edu__sections .edu__section.programmation .tease-film-full .tease-content {
  width: 70.17544%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.programmation .tease-film-full .tease-content {
    width: 100%;
  }
}

#content[data-template='education'] .edu__sections .edu__section.programmation .tease-film-full .tease-content .tease__title {
  padding-left: 0;
  margin-bottom: 16px;
}

#content[data-template='education'] .edu__sections .edu__section.programmation .tease-film-full .tease-content .moreInfos {
  color: #c86f42;
}

#content[data-template='education'] .edu__sections .edu__section.programmation .tease-film-full .tease__booking,
#content[data-template='education'] .edu__sections .edu__section.programmation .tease-film-full .tease__ctas {
  display: none;
}

#content[data-template='education'] .edu__sections .edu__section.videos {
  padding-left: 20.60606%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.videos {
    padding-left: 0;
  }
}

#content[data-template='education'] .edu__sections .edu__section.videos .videos__list {
  margin-right: -37px;
}

#content[data-template='education'] .edu__sections .edu__section.videos .videos__list .slick-list {
  padding-right: 20%;
}

#content[data-template='education'] .edu__sections .edu__section.videos .control {
  top: 35%;
}

#content[data-template='education'] .edu__sections .edu__section.videos .vid {
  padding-right: 30px;
}

#content[data-template='education'] .edu__sections .edu__section.videos .vid .vid__container {
  position: relative;
  padding-top: 56.37%;
  margin-bottom: 18px;
}

#content[data-template='education'] .edu__sections .edu__section.videos .vid .vid__container img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

#content[data-template='education'] .edu__sections .edu__section.videos .vid .vid__container .cta-play {
  width: 77px;
  height: 77px;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsla(0, 0%, 100%, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

#content[data-template='education'] .edu__sections .edu__section.videos .vid .vid__container .cta-play .ico-play {
  width: 0;
  height: 0;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  transition: border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(10%);
}

#content[data-template='education'] .edu__sections .edu__section.videos .vid .vid__container .cta-play:hover {
  background-color: #fff;
}

#content[data-template='education'] .edu__sections .edu__section.videos .vid .vid__container .cta-play:hover .ico-play {
  border-left-color: #000;
}

#content[data-template='education'] .edu__sections .edu__section.videos .vid .vid__title {
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25em;
  line-height: 20px;
  margin-bottom: 14px;
  min-height: 40px;
}

#content[data-template='education'] .edu__sections .edu__section.videos .vid .vid__date {
  color: #c86f42;
  text-transform: uppercase;
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: 12px;
  font-size: 0.75em;
  letter-spacing: 0.5px;
}

#content[data-template='education'] .edu__sections .edu__section.videos .vid .vid__tags {
  display: flex;
  margin-top: 8px;
}

#content[data-template='education'] .edu__sections .edu__section.videos .vid .vid__tags .tag {
  padding-left: 16px;
  position: relative;
  margin: 4px 0;
  font-family: 'Bebas Neue Pro', sans-serif;
  font-size: 12px;
  font-size: 0.75em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #c86f42;
}

#content[data-template='education'] .edu__sections .edu__section.videos .vid .vid__tags .tag:not(:last-child) {
  margin-right: 20px;
}

#content[data-template='education'] .edu__sections .edu__section.videos .vid .vid__tags .tag:before {
  content: ' ';
  width: 9px;
  height: 9px;
  /* border-radius: 50%; */
  position: absolute;
  top: 1.5px;
  background-color: #000;
  left: 0;
}

#content[data-template='education'] .edu__sections .edu__section.sons {
  padding-left: 20.60606%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.sons {
    padding-left: 0;
  }
}

#content[data-template='education'] .edu__sections .edu__section.sons .sons__list {
  width: 61.0687%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.sons .sons__list {
    width: 100%;
  }
}

#content[data-template='education'] .edu__sections .edu__section.sons .sons__list li:not(:last-child) {
  margin-bottom: 15px;
}

#content[data-template='education'] .edu__sections .edu__section.partenaires {
  display: flex;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.partenaires {
    display: block;
  }
}

#content[data-template='education'] .edu__sections .edu__section.partenaires .title {
  width: 17.57576%;
  margin-right: 3.0303%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.partenaires .title {
    margin-right: 0;
    width: 100%;
  }
}

#content[data-template='education'] .edu__sections .edu__section.partenaires .partenaires__content {
  width: 79.39394%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.partenaires .partenaires__content {
    width: 100%;
  }
}

#content[data-template='education'] .edu__sections .edu__section.partenaires .partenaires__content .partenaires__logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.partenaires .partenaires__content .partenaires__logos {
    justify-content: space-between;
  }
}

#content[data-template='education'] .edu__sections .edu__section.partenaires .partenaires__content .partenaires__logos li {
  width: 18.47328%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.partenaires .partenaires__content .partenaires__logos li {
    width: 45%;
  }
}

#content[data-template='education'] .edu__sections .edu__section.partenaires .partenaires__content .partenaires__logos li img {
  width: 80%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.partenaires .partenaires__content .partenaires__logos li img {
    width: 100%;
  }
}

#content[data-template='education'] .edu__sections .edu__section.partenaires .partenaires__content .partenaires__desc {
  margin-top: 35px;
  padding-right: 38.9313%;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.partenaires .partenaires__content .partenaires__desc {
    padding-right: 0;
  }
}

#content[data-template='education'] .edu__sections .edu__section.actions {
  padding-bottom: 35px;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__header {
  margin-bottom: 60px;
  width: 69.09091%;
  padding-left: 20.60606%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.actions .actions__header {
    width: 100%;
    padding-left: 0;
  }
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__header .actions__title {
  margin-bottom: 32px;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action {
  position: relative;
  padding: 40px 0;
  display: flex;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action:first-child {
  padding-top: 0;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action:nth-child(2n) {
  background-color: #f8f8f8;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action:nth-child(2n):after,
#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action:nth-child(2n):before {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60vw;
  z-index: -1;
  background-color: #f8f8f8;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action:nth-child(2n):before {
  left: 0;
  transform: translateX(-50%);
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action:nth-child(2n):after {
  right: 0;
  transform: translateX(50%);
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__img-container {
  width: 17.57576%;
  margin-right: 3.0303%;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content {
  width: 79.39394%;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__title {
  margin-bottom: 17px;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__intro {
  color: #c86f42;
  font-weight: 700;
  margin-bottom: 21px;
  width: 61.0687%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__intro {
    width: 100%;
  }
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__desc {
  margin-bottom: 21px;
  width: 61.0687%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__desc {
    width: 100%;
  }
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__partenaires {
  display: flex;
  align-items: center;
  margin-bottom: 21px;
  width: 61.0687%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__partenaires {
    width: 100%;
  }
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__partenaires .partenaires__title {
  margin-right: 5px;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__partenaires .partenaires__list {
  display: flex;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__partenaires .partenaires__list li {
  position: relative;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__partenaires .partenaires__list li:not(:last-child) {
  margin-right: 4px;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__partenaires .partenaires__list li:not(:last-child):after {
  content: ' / ';
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__partenaires .partenaires__list li a {
  text-decoration: underline;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__gallery {
  margin: 40px -37px 40px 0;
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__gallery li {
  padding-right: 37px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__gallery li {
    padding-right: 0;
    padding-left: 20px;
  }
}

#content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__gallery li img {
  height: 330px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.actions .actions__blocs .action .action__content .action__gallery {
    margin-right: -20px;
  }
}

#content[data-template='education'] .edu__sections .edu__section.galerie {
  padding-left: 20.60606%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.galerie {
    padding-left: 0;
  }
}

#content[data-template='education'] .edu__sections .edu__section.galerie .galerie__list {
  margin-right: -37px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.galerie .galerie__list {
    margin-right: -20px;
    margin-left: -20px;
  }
}

#content[data-template='education'] .edu__sections .edu__section.galerie .galerie__list li {
  padding-right: 39px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.galerie .galerie__list li {
    padding-right: 0;
    padding-left: 20px;
  }
}

#content[data-template='education'] .edu__sections .edu__section.galerie .galerie__list li img {
  display: block;
  height: 330px;
}

#content[data-template='education'] .edu__sections .edu__section.liens {
  padding-left: 20.60606%;
  margin-top: -70px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.liens {
    padding-left: 0;
  }
}

#content[data-template='education'] .edu__sections .edu__section.liens .liens__links-container {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.liens .liens__links-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

#content[data-template='education'] .edu__sections .edu__section.liens .liens__links-container .liens__links {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.liens .liens__links-container .liens__links {
    margin-bottom: 30px;
    display: block;
  }
}

#content[data-template='education'] .edu__sections .edu__section.liens .liens__links-container .liens__links li {
  margin-right: 38px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='education'] .edu__sections .edu__section.liens .liens__links-container .liens__links li {
    margin-bottom: 10px;
  }
}

#content[data-template='partenaires'] .page-title {
  margin-top: 15px;
  margin-bottom: 125px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='partenaires'] .page-title {
    margin: 35px 0;
  }
}

#content[data-template='partenaires'] .intro__title.mobile-only {
  margin-bottom: 15px;
}

#content[data-template='partenaires'] .partenaires__intro {
  justify-content: space-between;
  margin-bottom: 86px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='partenaires'] .partenaires__intro {
    flex-direction: column-reverse;
  }
}

#content[data-template='partenaires'] .partenaires__intro .intro__title {
  width: 17.57576%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='partenaires'] .partenaires__intro .intro__title {
    width: 100%;
  }
}

#content[data-template='partenaires'] .partenaires__intro .intro__desc {
  width: 48.48485%;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  #content[data-template='partenaires'] .partenaires__intro .intro__desc {
    width: 100%;
  }
}

#content[data-template='partenaires'] .partenaires__intro .intro__infos {
  width: 27.87879%;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  #content[data-template='partenaires'] .partenaires__intro .intro__infos {
    width: 100%;
    margin-bottom: 46px;
  }
}

#content[data-template='partenaires'] .partenaires__intro .intro__infos strong {
  color: #c86f42;
}

#content[data-template='partenaires'] .partenaires__intro .intro__infos a {
  text-decoration: underline;
}

#content[data-template='partenaires'] .partenaires__block:not(:last-child) {
  margin-bottom: 110px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='partenaires'] .partenaires__block {
    margin-bottom: 110px !important;
  }
}

#content[data-template='partenaires'] .partenaires__block .block__title {
  margin-bottom: 40px;
  padding-left: 20.60606%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='partenaires'] .partenaires__block .block__title {
    padding-left: 0;
  }
}

#content[data-template='partenaires'] .partenaires__block .block__list {
  width: 69.09091%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='partenaires'] .partenaires__block .block__list {
    width: 100%;
  }
}

#content[data-template='partenaires'] .partenaires__block .block__list .partenaire:not(:last-child) {
  margin-bottom: 75px;
}

#content[data-template='partenaires'] .partenaires__block .block__list .partenaire .partenaire__title {
  padding-left: 29.82456%;
  margin-bottom: 21px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='partenaires'] .partenaires__block .block__list .partenaire .partenaire__title {
    padding-left: 0;
  }
}

#content[data-template='partenaires'] .partenaires__block .block__list .partenaire .flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#content[data-template='partenaires'] .partenaires__block .block__list .partenaire .partenaire__logo-container {
  width: 25.4386%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='partenaires'] .partenaires__block .block__list .partenaire .partenaire__logo-container {
    width: 50%;
    margin-bottom: 21px;
  }
}

#content[data-template='partenaires'] .partenaires__block .block__list .partenaire .partenaire__logo-container img {
  width: 80%;
  display: block;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  #content[data-template='partenaires'] .partenaires__block .block__list .partenaire .partenaire__logo-container img {
    width: 100%;
  }
}

#content[data-template='partenaires'] .partenaires__block .block__list .partenaire .partenaire__txt {
  width: 70.17544%;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  #content[data-template='partenaires'] .partenaires__block .block__list .partenaire .partenaire__txt {
    width: 100%;
  }
}

#content[data-template='partenaires'] .partenaires__block .block__list .partenaire .partenaire__links {
  margin-top: 21px;
  display: flex;
  align-items: center;
}

#content[data-template='partenaires'] .partenaires__block .block__list .partenaire .partenaire__links .partenaire__website {
  margin-right: 30px;
}

#content[data-template='partenaires'] .partenaires__block .block__list .partenaire .partenaire__links .partenaire__socials li {
  margin-right: 20px;
}

#content[data-template='festival'] .page-title {
  margin-top: 15px;
  margin-bottom: 33px;
}

#content[data-template='festival'] .page-title strong {
  font-weight: 400;
  color: #c86f42;
  display: block;
}

@media only screen and (max-width: 768px) {
  #content[data-template='festival'] .page-title {
    margin: 35px 0;
  }
}

#content[data-template='festival'] .festival__content {
  margin-bottom: 160px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  #content[data-template='festival'] .festival__content {
    flex-direction: column;
    margin-bottom: 68px;
  }
}

#content[data-template='festival'] .festival__content .festival__sections {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='festival'] .festival__content .festival__sections {
    width: 100%;
  }
}

#content[data-template='festival'] .festival__content .festival__sections .section {
  padding: 70px 0;
}

@media only screen and (max-width: 768px) {
  #content[data-template='festival'] .festival__content .festival__sections .section {
    padding: 50px 0;
  }
}

#content[data-template='festival'] .festival__content .festival__sections .section:first-child {
  padding-top: 0;
}

#content[data-template='festival'] .festival__content .festival__sections .section.section--slider {
  width: 79.39394%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='festival'] .festival__content .festival__sections .section.section--slider {
    width: 100%;
  }
}

#content[data-template='festival'] .festival__content .festival__sections .section.section--liensRs {
  width: 79.39394%;
  padding: 20px 0 20px 20.60606%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='festival'] .festival__content .festival__sections .section.section--liensRs {
    width: 100%;
    padding-left: 0;
  }
}

#content[data-template='festival'] .festival__content .festival__sections .section.section--liensRs .title {
  margin-bottom: 22px;
}

#content[data-template='festival'] .festival__content .festival__sections .section.section--liensRs .markup {
  margin: 15px 0;
}

#content[data-template='festival'] .festival__content .festival__sections .section.section--liensRs .liens__wrapper {
  display: flex;
  margin: 50px 0;
}

@media only screen and (max-width: 768px) {
  #content[data-template='festival'] .festival__content .festival__sections .section.section--liensRs .liens__wrapper {
    flex-direction: column;
  }
}

#content[data-template='festival'] .festival__content .festival__sections .section.section--liensRs .liens__wrapper .liens__links {
  display: flex;
  margin-right: 75px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='festival'] .festival__content .festival__sections .section.section--liensRs .liens__wrapper .liens__links {
    flex-direction: column;
    margin-right: 0;
    margin-bottom: 50px;
  }
}

#content[data-template='festival'] .festival__content .festival__sections .section.section--liensRs .liens__wrapper .liens__links li:not(:last-child) {
  margin-right: 25px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='festival'] .festival__content .festival__sections .section.section--liensRs .liens__wrapper .liens__links li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

#content[data-template='festival'] .festival__content .festival__sections .section.section--gallery {
  padding-left: 20.60606%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='festival'] .festival__content .festival__sections .section.section--gallery {
    padding-left: 0;
  }
}

#content[data-template='festival'] .festival__content .festival__sections .section.section--gallery .gallery__title {
  margin-bottom: 22px;
}

#content[data-template='festival'] .festival__content .festival__sections .section.section--gallery .gallery__list {
  position: relative;
  z-index: 10;
  margin-right: -37px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='festival'] .festival__content .festival__sections .section.section--gallery .gallery__list {
    margin-right: -20px;
    margin-left: -20px;
  }
}

#content[data-template='festival'] .festival__content .festival__sections .section.section--gallery .gallery__list li {
  padding-right: 39px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='festival'] .festival__content .festival__sections .section.section--gallery .gallery__list li {
    padding-right: 0;
    padding-left: 20px;
  }
}

#content[data-template='festival'] .festival__content .festival__sections .section.section--gallery .gallery__list li img {
  display: block;
  height: 330px;
}

#content[data-template='festival'] .festival__content .side__infos {
  position: absolute;
  top: 0;
  right: 0;
  width: 17.57576%;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  #content[data-template='festival'] .festival__content .side__infos {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
  }
}

#content[data-template='festival'] .festival__content .side__infos strong {
  color: #c86f42;
  text-decoration-color: #c86f42;
}

#content[data-template='festival'] .festival__content .side__infos a:not(.cta),
#content[data-template='festival'] .festival__content .side__infos a strong {
  text-decoration: underline;
}

#content[data-template='infos'] .page-title {
  margin-top: 15px;
  margin-bottom: 80px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .page-title {
    margin: 35px 0;
  }
}

#content[data-template='infos'] .infos-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos-wrapper {
    display: block;
  }
}

#content[data-template='infos'] .infos__nav {
  width: 17.57576%;
  padding-top: 45px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__nav {
    display: none;
  }
}

#content[data-template='infos'] .infos__nav li {
  font-size: 20px;
  font-size: 1.25em;
  font-weight: 700;
}

#content[data-template='infos'] .infos__nav li:not(:last-child) {
  margin-bottom: 15px;
}

#content[data-template='infos'] .infos__nav li a {
  color: #e4e6e5;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#content[data-template='infos'] .infos__nav li a.active,
#content[data-template='infos'] .infos__nav li a:hover {
  color: #000;
}

#content[data-template='infos'] .infos__sections {
  width: 79.39394%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections {
    width: 100%;
  }
}

#content[data-template='infos'] .infos__sections section {
  padding: 45px 0;
  position: relative;
}

#content[data-template='infos'] .infos__sections section:first-child {
  padding-top: 0;
}

#content[data-template='infos'] .infos__sections section:nth-child(2n) {
  background-color: #f8f8f8;
}

#content[data-template='infos'] .infos__sections section:nth-child(2n):after,
#content[data-template='infos'] .infos__sections section:nth-child(2n):before {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60vw;
  z-index: -1;
  background-color: #f8f8f8;
}

#content[data-template='infos'] .infos__sections section:nth-child(2n):before {
  left: 0;
  transform: translateX(-50%);
}

#content[data-template='infos'] .infos__sections section:nth-child(2n):after {
  right: 0;
  transform: translateX(50%);
}

#content[data-template='infos'] .infos__sections section .title {
  margin-bottom: 38px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections section .title {
    margin-bottom: 16px;
  }
}

#content[data-template='infos'] .infos__sections section.infos__tarifs {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections section.infos__tarifs {
    flex-direction: column-reverse;
  }
}

#content[data-template='infos'] .infos__sections section.infos__tarifs .left {
  width: 74.0458%;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections section.infos__tarifs .left {
    width: 100%;
  }
}

#content[data-template='infos'] .infos__sections section.infos__tarifs .side-infos {
  width: 22.1374%;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections section.infos__tarifs .side-infos {
    width: 100%;
    margin-bottom: 60px;
  }

  #content[data-template='infos'] .infos__sections section.infos__tarifs .side-infos p,
  #content[data-template='infos'] .infos__sections section.infos__tarifs .side-infos ul {
    font-size: 16px;
    font-size: 1em;
    line-height: 22px;
  }
}

#content[data-template='infos'] .infos__sections section.infos__tarifs .side-infos strong {
  color: #c86f42;
  text-decoration-color: #c86f42;
}

#content[data-template='infos'] .infos__sections section.infos__tarifs .side-infos a:not(.cta),
#content[data-template='infos'] .infos__sections section.infos__tarifs .side-infos a strong {
  text-decoration: underline;
}

#content[data-template='infos'] .infos__sections section.infos__tarifs .markup em strong,
#content[data-template='infos'] .infos__sections section.infos__tarifs .markup ul strong {
  color: #c86f42;
  text-decoration-color: #c86f42;
}

#content[data-template='infos'] .infos__sections section.infos__tarifs .markup img {
  width: auto;
  height: 55px;
  display: inline-block;
  margin-right: 15px;
}

#content[data-template='infos'] .infos__sections section.infos__accessibilite {
  padding-bottom: 0;
}

#content[data-template='infos'] .infos__sections section.infos__accessibilite .markup {
  width: 74.0458%;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections section.infos__accessibilite .markup {
    width: 100%;
  }
}

#content[data-template='infos'] .infos__sections section.infos__accessibilite .map-container {
  margin-right: -37px;
  height: 600px;
  margin-top: 37px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections section.infos__accessibilite .map-container {
    margin-left: -20px;
    margin-right: -20px;
    height: 50vh;
  }
}

#content[data-template='infos'] .infos__sections section.infos__accessibilite .map-container #map {
  width: 100%;
  height: 100%;
}

#content[data-template='infos'] .infos__sections section.infos__prestation {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections section.infos__prestation {
    flex-direction: column;
  }
}

#content[data-template='infos'] .infos__sections section.infos__prestation .left {
  width: 74.0458%;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections section.infos__prestation .left {
    width: 100%;
  }
}

#content[data-template='infos'] .infos__sections section.infos__prestation .side-infos {
  width: 22.1374%;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections section.infos__prestation .side-infos {
    width: 100%;
    margin-top: 38px;
  }

  #content[data-template='infos'] .infos__sections section.infos__prestation .side-infos p,
  #content[data-template='infos'] .infos__sections section.infos__prestation .side-infos ul {
    font-size: 16px;
    font-size: 1em;
    line-height: 22px;
  }
}

#content[data-template='infos'] .infos__sections section.infos__prestation .side-infos strong {
  color: #c86f42;
  text-decoration-color: #c86f42;
}

#content[data-template='infos'] .infos__sections section.infos__prestation .side-infos a:not(.cta),
#content[data-template='infos'] .infos__sections section.infos__prestation .side-infos a strong {
  text-decoration: underline;
}

#content[data-template='infos'] .infos__sections section.infos__epcccy .flex {
  width: 58.78788%;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections section.infos__epcccy .flex {
    width: 100%;
    flex-direction: column;
  }
}

#content[data-template='infos'] .infos__sections section.infos__epcccy .flex .epcccy__img-container {
  width: 29.89691%;
}

#content[data-template='infos'] .infos__sections section.infos__epcccy .flex .epcccy__img-container img {
  display: block;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections section.infos__epcccy .flex .epcccy__img-container {
    width: 50%;
    margin-bottom: 15px;
  }
}

#content[data-template='infos'] .infos__sections section.infos__epcccy .flex .markup {
  width: 64.94845%;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections section.infos__epcccy .flex .markup {
    width: 100%;
  }
}

#content[data-template='infos'] .infos__sections section.infos__equipe .equipe__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 74.0458%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections section.infos__equipe .equipe__list {
    width: 100%;
  }
}

#content[data-template='infos'] .infos__sections section.infos__equipe .equipe__list li {
  width: 47.42268%;
  padding-right: 17.52577%;
  margin-bottom: 25px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  #content[data-template='infos'] .infos__sections section.infos__equipe .equipe__list li {
    width: 100%;
  }
}

#content[data-template='infos'] .infos__sections section.infos__equipe .equipe__list li strong {
  color: #c86f42;
  text-decoration-color: #c86f42;
}

#content[data-template='infos'] .infos__sections section.infos__equipe .equipe__list li a:not(.cta),
#content[data-template='infos'] .infos__sections section.infos__equipe .equipe__list li a strong {
  text-decoration: underline;
}

#content[data-template='page-simple'] .page-wrapper {
  margin-top: 35px;
  margin-bottom: 125px;
  padding: 0 20.60606%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='page-simple'] .page-wrapper {
    padding: 0;
  }
}

#content[data-template='page-mdp'] .page-mdp {
  display: flex;
}

#content[data-template='page-mdp'] .page-mdp>* {
  width: 48.48485%;
}

#content[data-template='page-mdp'] .page-mdp .mdp__img-container {
  margin-right: 3.0303%;
}

#content[data-template='page-mdp'] .page-mdp .mdp__img-container img {
  display: block;
  margin-left: -37px;
  width: calc(100% + 37px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: none;
}

#content[data-template='page-mdp'] .page-mdp .mdp__content {
  padding: 90px 7.27273%;
}

#content[data-template='page-mdp'] .page-mdp .mdp__content .mdp__title {
  margin-bottom: 40px;
}

#content[data-template='page-mdp'] .page-mdp .mdp__content .mdp__desc {
  margin: 40px 0;
}

#content[data-template='page-mdp'] .page-mdp .mdp__content .mdp__form {
  position: relative;
}

#content[data-template='page-mdp'] .page-mdp .mdp__content .mdp__form input {
  border: 1px solid #000;
  /* border-radius: 99em; */
  padding: 14px 20px;
  width: 100%;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
}

#content[data-template='page-mdp'] .page-mdp .mdp__content .mdp__form .mdp__lostPassword {
  font-size: 12px;
  font-size: 0.75em;
  font-style: italic;
  color: #595959;
  padding-left: 20px;
  margin-top: 15px;
}

#content[data-template='page-mdp'] .page-mdp .mdp__content .mdp__form .mdp__submit {
  margin-top: 35px;
}

#content[data-template='page-mdp'] #site-footer {
  margin-top: 0;
}

#content[data-template='espace-pro'] .page__title {
  margin: 15px 0 30px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='espace-pro'] .page__title {
    margin: 35px 0;
  }
}

#content[data-template='espace-pro'] .pro-wrapper {
  position: relative;
  margin-bottom: 150px;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content {
  width: 79.39394%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='espace-pro'] .pro-wrapper .pro__content {
    width: 100%;
  }
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__img-container {
  position: relative;
  margin-right: 12.9771%;
  padding-top: 24%;
  margin-bottom: 45px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__img-container {
    margin-right: 0;
  }
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  #content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section {
    flex-direction: column;
  }
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section:not(:last-child) {
  margin-bottom: 96px;
}

@media only screen and (max-width: 768px) {
  #content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section:not(:last-child) {
    margin-bottom: 45px;
  }
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .section__title {
  width: 22.1374%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .section__title {
    width: 100%;
    margin-bottom: 25px;
  }
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .section-content {
  width: 74.0458%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .section-content {
    width: 100%;
  }
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .section__txt {
  margin-bottom: 35px;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .section__txt img {
  height: 65px;
  width: auto;
  display: inline-block;
  margin-right: 20px;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .section__txt table thead tr {
  background-color: #f8f8f8;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .section__txt table thead td {
  padding: 15px 20px;
  font-weight: 700;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .section__txt table tbody td {
  padding: 20px 0;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .section__txt table tbody td:first-child {
  padding-top: 28px;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .documents__list .doc {
  padding: 20px 25px;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .documents__list .doc:nth-child(odd) {
  background-color: #f8f8f8;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .documents__list .doc .doc__title {
  font-weight: 700;
  line-height: 22px;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .documents__list .doc .cta-arrow {
  margin-top: 10px;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .projets__list .projet {
  border-bottom: 1px solid #000;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .projets__list .projet:last-child {
  border-bottom: none;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .projets__list .projet .projet__header {
  padding: 20px 17.52577% 20px 0;
  position: relative;
  cursor: pointer;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .projets__list .projet .projet__header:before {
  content: ' ';
  position: absolute;
  right: 0;
  width: 0;
  top: 31px;
  height: 0;
  border-color: #000 transparent transparent;
  border-style: solid;
  border-width: 6px 3.5px 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .projets__list .projet.active .projet__header:before {
  transform: rotate(180deg);
  transform-origin: center;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .projets__list .projet .projet__content {
  height: 0;
  overflow: hidden;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__content .pro__sections .pro__section .projets__list .projet .projet__content .projet__txt {
  padding: 25px 0;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__infos-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 17.57576%;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  #content[data-template='espace-pro'] .pro-wrapper .pro__infos-wrapper {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 35px;
  }
}

#content[data-template='espace-pro'] .pro-wrapper .pro__infos-wrapper strong {
  color: #c86f42;
  text-decoration-color: #c86f42;
}

#content[data-template='espace-pro'] .pro-wrapper .pro__infos-wrapper a:not(.cta) {
  text-decoration: underline;
}

#content[data-template='search'] .search-wrapper {
  padding: 0 10.30303%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='search'] .search-wrapper {
    padding: 0;
  }
}

#content[data-template='search'] .search__title {
  text-transform: none;
  margin: 15px 0 65px;
}

#content[data-template='search'] .search__title span {
  color: #c86f42;
}

@media only screen and (max-width: 768px) {
  #content[data-template='search'] .search__title {
    padding-left: 0;
    margin: 35px 0;
  }
}

#content[data-template='search'] .type__title {
  margin-bottom: 26px;
}

#content[data-template='search'] .search__films {
  margin-bottom: 65px;
}

#content[data-template='search'] .films__list li:not(:last-child) {
  margin-bottom: 50px;
}

#content[data-template='search'] .tease-film-full .img-wrapper {
  width: 22.1374%;
  margin-right: 3.81679%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='search'] .tease-film-full .img-wrapper {
    width: 36.5%;
    margin-right: 20px;
    margin-bottom: 20px;
  }
}

#content[data-template='search'] .tease-film-full .tease-content {
  width: 74.0458%;
  padding-right: 25.9542%;
}

@media only screen and (max-width: 768px) {
  #content[data-template='search'] .tease-film-full .tease-content {
    width: 100%;
    padding-right: 0;
  }
}

#content[data-template='search'] .tease-film-full .tease__booking {
  display: none;
}

#content[data-template='search'] .tease-event {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#content[data-template='search'] .tease-event .tease__img-wrapper {
  width: 22.1374%;
}

#content[data-template='search'] .tease-event .tease__img-wrapper .tease__img-container {
  padding-top: 0;
}

#content[data-template='search'] .tease-event .tease__img-wrapper img {
  position: relative;
}

#content[data-template='search'] .tease-event .tease__txt {
  width: 74.0458%;
  padding-right: 25.9542%;
}

#content[data-template='search'] .tease-event .tease__title {
  margin-top: 0;
}

#content[data-template='search'] .noResult p {
  margin-bottom: 35px;
}

.prog__banner.audio-description {
  margin-top: 20px;
  background-color: #c86f42;
  border-radius: 2%;
}

.prog__banner.audio-description.hidden {
  display: none;
}

.prog__banner.audio-description p {
  color: #fff;
  font-size: 14px;
  font-size: 0.875em;
  line-height: 20px;
  padding: 10px 20px;
}

.prog__banner.audio-description p a {
  color: #fff;
  text-decoration: underline;
}