/**
 *
 *	Stylesheet for
 *		Souverains anonymes
 *
 *	Developer(s)
 *		Jacob St-Laurent
 *			https://jacobstl.ca
 *
 */
/**
 *
 *	Basic files
 *
 */
/**
 *
 *	Fonts
 *
 */
@import url("https://fonts.googleapis.com/css?family=Archivo:400,700");
@font-face {
  font-family: 'Noteworthy';
  src: url("../fonts/Noteworthy-Bold.ttf"); }

/**
 *
 *	Variables
 *
 */
/**
 *
 *	Sans-serif font
 *
 */
/**
 *
 *	Cursive font
 *
 */
/**
 *
 *	Font sizes & styles
 *
 */
/**
 *
 *	Section basic parameters
 *
 */
/**
 *
 *	Body when no intro
 *
 */
body.no-intro .button-down {
  content: url("../images/down-red.png") !important; }

/**
 *
 *	Global modifications
 *
 */
body, .smooth-container {
  scroll-behavior: smooth; }

body {
  font-family: 'Archivo', sans-serif;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 0.04); }
  body h1, body .h1 {
    font-size: 32px; }
  body h2, body .h2 {
    font-size: 28px; }
  body h3, body .h3 {
    font-size: 24px; }
  body h4, body .h4 {
    font-size: 20px; }
  body h5, body .h5 {
    font-size: 18px; }
  body h6, body .h6 {
    font-size: 16px; }
  body p, body .p {
    font-size: 14px; }
  body small, body .small {
    font-size: 10px; }
  @media (min-width: 768px) {
    body h1, body .h1 {
      font-size: 46px; }
    body h2, body .h2 {
      font-size: 38px; }
    body h3, body .h3 {
      font-size: 32px; }
    body h4, body .h4 {
      font-size: 28px; }
    body h5, body .h5 {
      font-size: 20px;
      line-height: 26px; }
    body h6, body .h6 {
      font-size: 18px; }
    body p, body .p {
      font-size: 16px; }
    body small, body .small {
      font-size: 12px; } }

a {
  color: #f23939; }
  a:hover {
    color: #f23939; }

/**
 *
 *	Buttons
 *
 */
.btn {
  font-size: 16px;
  background-color: black;
  border: 1px solid white;
  border-radius: 0;
  color: white;
  text-transform: uppercase;
  padding: 10px 30px;
  /* Button styles */
  /* Button sizes */ }
  .btn:hover {
    background-color: transparent;
    color: black;
    border: 1px solid black; }
  .btn.btn-normal {
    background-color: black;
    border-color: white;
    color: white; }
    .btn.btn-normal:hover {
      background-color: transparent;
      color: black;
      border-color: black; }
  .btn.btn-normal-outline {
    background-color: transparent;
    border-color: black;
    color: black; }
    .btn.btn-normal-outline:hover {
      background-color: black;
      color: white;
      border-color: black; }
  .btn.btn-red-dark-outline {
    background-color: transparent;
    border-color: #f23939;
    color: #f23939; }
    .btn.btn-red-dark-outline:hover {
      background-color: #f23939;
      color: white;
      border-color: #f23939; }
  .btn.btn-red-outline {
    background-color: transparent;
    border-color: #f23939;
    color: white; }
    .btn.btn-red-outline:hover {
      background-color: #f23939;
      color: white;
      border-color: #f23939; }
  .btn.btn-hover-light:hover {
    background-color: white;
    color: black;
    border: 1px solid black; }
  .btn.btn-lg {
    padding: 20px 40px; }
  .btn.btn-margin {
    margin: 10px 10px; }
  @media (min-width: 768px) {
    .btn.btn-margin {
      margin: 0 10px; } }

/**
 *
 *	Texture paper
 *
 */
.texture-paper {
  height: 150px;
  margin-top: -150px;
  width: 100%;
  background-image: url("../images/texture-dark.svg");
  background-size: cover;
  background-color: blue;
  z-index: 99;
  display: block;
  position: absolute;
  background-color: transparent; }
  .texture-paper.texture-light {
    background-image: url("../images/texture-light.svg"); }
  @media (min-width: 992px) {
    .texture-paper {
      height: 200px;
      margin-top: -200px; } }

/**
 *
 *	Margin related classes
 *
 */
.no-mb {
  margin-bottom: 0 !important; }

.neg-mb {
  margin-bottom: -55px !important; }

/**
 *
 *	Preloader
 *
 */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999999;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-color: #272727; }
  #preloader .animation {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    #preloader .animation .lds-dual-ring {
      position: relative;
      width: 80px !important;
      height: 80px !important;
      -webkit-transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px);
      -ms-transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px);
      transform: translate(-40px, -40px) scale(0.4) translate(40px, 40px); }
      #preloader .animation .lds-dual-ring div {
        -webkit-box-sizing: border-box;
        box-sizing: border-box; }
      #preloader .animation .lds-dual-ring > div {
        position: absolute;
        width: 168px;
        height: 168px;
        top: 16px;
        left: 16px;
        border-radius: 50%;
        border: 8px solid black;
        border-color: #f23939 transparent #f23939 transparent;
        -webkit-animation: lds-dual-ring 1s linear infinite;
        animation: lds-dual-ring 1s linear infinite; }
        #preloader .animation .lds-dual-ring > div:nth-child(2) {
          border-color: transparent; }
          #preloader .animation .lds-dual-ring > div:nth-child(2) div {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
            #preloader .animation .lds-dual-ring > div:nth-child(2) div:before, #preloader .animation .lds-dual-ring > div:nth-child(2) div:after {
              content: "";
              display: block;
              position: absolute;
              width: 8px;
              height: 8px;
              top: -8px;
              left: 72px;
              background: #f23939;
              border-radius: 50%;
              -webkit-box-shadow: 0 160px 0 0 #f23939;
              box-shadow: 0 160px 0 0 #f23939; }
            #preloader .animation .lds-dual-ring > div:nth-child(2) div:after {
              left: -8px;
              top: 72px;
              -webkit-box-shadow: 160px 0 0 0 #f23939;
              box-shadow: 160px 0 0 0 #f23939; }

@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/**
 *
 *	Components
 *
 */
/**
 *
 *	Desktop navbar
 *
 */
nav.navbar {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 20px 0 0 0;
  z-index: 999999;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8), transparent);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.8), transparent);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  /**
	 *
	 *	Solid state
	 *
	 */ }
  nav.navbar a.navbar-brand {
    color: white; }
    nav.navbar a.navbar-brand img {
      height: 70px;
      padding-top: 10px; }
    nav.navbar a.navbar-brand:hover {
      color: #f23939; }
  nav.navbar ul.navbar-nav li.nav-item a.nav-link {
    font-weight: 400;
    color: white;
    padding: 1rem 1rem 1rem;
    z-index: 9999999999; }
    nav.navbar ul.navbar-nav li.nav-item a.nav-link:hover {
      color: #f23939; }
    nav.navbar ul.navbar-nav li.nav-item a.nav-link.active:before, nav.navbar ul.navbar-nav li.nav-item a.nav-link.active:after {
      font-family: 'Noteworthy', cursive;
      font-weight: 400;
      color: #f23939;
      position: absolute;
      font-size: 20px;
      margin-top: -2px; }
    nav.navbar ul.navbar-nav li.nav-item a.nav-link.active:before {
      content: "[";
      margin-left: -8px; }
    nav.navbar ul.navbar-nav li.nav-item a.nav-link.active:after {
      content: "]";
      margin-left: 4px; }
  nav.navbar ul.navbar-nav li.nav-item .submenu {
    display: none !important;
    z-index: 999999990;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: black;
    margin-top: -5px; }
    nav.navbar ul.navbar-nav li.nav-item .submenu .item {
      margin: 20px 0; }
      nav.navbar ul.navbar-nav li.nav-item .submenu .item .link-image {
        padding-bottom: 56.25%;
        width: 100%;
        background-image: url("../images/default.png");
        background-repeat: none;
        background-size: cover;
        border: 1px solid transparent; }
      nav.navbar ul.navbar-nav li.nav-item .submenu .item .link-text {
        color: white;
        font-weight: 700;
        margin-top: 20px; }
      nav.navbar ul.navbar-nav li.nav-item .submenu .item:hover .link-image {
        border-color: white; }
      nav.navbar ul.navbar-nav li.nav-item .submenu .item:hover .link-text {
        text-decoration: underline; }
      nav.navbar ul.navbar-nav li.nav-item .submenu .item.active .link-image {
        border-color: #f23939; }
      nav.navbar ul.navbar-nav li.nav-item .submenu .item.active .link-text {
        margin-left: 8px; }
        nav.navbar ul.navbar-nav li.nav-item .submenu .item.active .link-text:before, nav.navbar ul.navbar-nav li.nav-item .submenu .item.active .link-text:after {
          font-family: 'Noteworthy', cursive;
          font-weight: 400;
          color: #f23939;
          position: absolute;
          font-size: 20px;
          margin-top: -2px; }
        nav.navbar ul.navbar-nav li.nav-item .submenu .item.active .link-text:before {
          content: "[";
          margin-left: -8px; }
        nav.navbar ul.navbar-nav li.nav-item .submenu .item.active .link-text:after {
          content: "]";
          margin-left: 4px; }
  nav.navbar ul.navbar-nav li.nav-item:hover .submenu {
    display: block !important; }
  nav.navbar .mobile-menu-button {
    position: absolute;
    top: 50px;
    left: 20px;
    height: 20px;
    width: 20px;
    background-size: cover;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
    background-image: url("../images/hamburger.svg"); }
    @media (min-width: 1200px) {
      nav.navbar .mobile-menu-button {
        display: none; } }
  nav.navbar .search-button {
    position: absolute;
    top: 50px;
    right: 20px;
    height: 20px;
    width: 20px;
    background-size: cover;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
    background-image: url("../images/search.png"); }
    nav.navbar .search-button.closed {
      background-image: url("../images/search.png"); }
    nav.navbar .search-button.opened {
      background-image: url("../images/close.png"); }
  nav.navbar.solid {
    background: black;
    padding: 5px 0; }
    nav.navbar.solid a.navbar-brand > img {
      height: 40px; }
    nav.navbar.solid a.nav-link {
      padding: .5rem 1rem; }
    nav.navbar.solid .submenu {
      top: 50px !important; }
    nav.navbar.solid .mobile-menu-button {
      top: 20px;
      left: 20px; }
    nav.navbar.solid .search-button {
      top: 20px;
      right: 20px; }
    nav.navbar.solid .search-menu {
      top: 60px; }
  @media (min-width: 576px) {
    nav.navbar a.navbar-brand img {
      padding-top: 0; } }
  @media (min-width: 1200px) {
    nav.navbar .mobile-menu-button {
      left: 60px; }
    nav.navbar .search-button {
      right: 60px; }
    nav.navbar.solid .mobile-menu-button {
      left: 60px; }
    nav.navbar.solid .search-button {
      right: 60px; } }

/**
 *
 *	Mobile menu
 *
 */
nav.navbar-mobile {
  -webkit-transition: 0.5s ease left;
  -o-transition: 0.5s ease left;
  transition: 0.5s ease left;
  background-color: black;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 9999999999999;
  min-height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /**
	 *
	 *	When open
	 *
	 */ }
  nav.navbar-mobile .navbar-brand {
    position: absolute;
    top: 5px; }
    nav.navbar-mobile .navbar-brand img {
      height: 40px; }
  nav.navbar-mobile ul.mobile-menu {
    position: absolute;
    top: 100px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    text-align: center; }
    nav.navbar-mobile ul.mobile-menu li.nav-item {
      padding: 0;
      text-align: center;
      margin-bottom: 20px; }
      nav.navbar-mobile ul.mobile-menu li.nav-item a.nav-link,
      nav.navbar-mobile ul.mobile-menu li.nav-item span.nav-link {
        color: white;
        line-height: 0;
        font-size: 18px;
        cursor: pointer; }
        nav.navbar-mobile ul.mobile-menu li.nav-item a.nav-link:hover, nav.navbar-mobile ul.mobile-menu li.nav-item a.nav-link.active,
        nav.navbar-mobile ul.mobile-menu li.nav-item span.nav-link:hover,
        nav.navbar-mobile ul.mobile-menu li.nav-item span.nav-link.active {
          color: #f23939; }
        nav.navbar-mobile ul.mobile-menu li.nav-item a.nav-link.has-children:after,
        nav.navbar-mobile ul.mobile-menu li.nav-item span.nav-link.has-children:after {
          font-family: 'Noteworthy', cursive;
          font-weight: 400;
          content: " >";
          padding-left: 5px;
          color: #f23939; }
  nav.navbar-mobile .mobile-menu-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 20px;
    width: 20px;
    background-size: cover;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
    background-image: url("../images/close.png"); }
  nav.navbar-mobile.open {
    left: 0; }

nav.navbar-mobile.submenu {
  -webkit-transition: 0.5s ease left;
  -o-transition: 0.5s ease left;
  transition: 0.5s ease left;
  background-color: black;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 9999999999999;
  overflow-y: scroll;
  min-height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /**
	 *
	 *	When open
	 *
	 */ }
  nav.navbar-mobile.submenu .navbar-brand {
    position: absolute;
    top: 5px; }
    nav.navbar-mobile.submenu .navbar-brand img {
      height: 40px; }
  nav.navbar-mobile.submenu ul.mobile-menu {
    position: absolute;
    top: 100px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    text-align: center; }
    nav.navbar-mobile.submenu ul.mobile-menu li.nav-item {
      padding: 0;
      text-align: center;
      margin-bottom: 20px; }
      nav.navbar-mobile.submenu ul.mobile-menu li.nav-item a.nav-link,
      nav.navbar-mobile.submenu ul.mobile-menu li.nav-item span.nav-link {
        color: white;
        line-height: 0;
        font-size: 18px;
        cursor: pointer; }
        nav.navbar-mobile.submenu ul.mobile-menu li.nav-item a.nav-link:hover, nav.navbar-mobile.submenu ul.mobile-menu li.nav-item a.nav-link.active,
        nav.navbar-mobile.submenu ul.mobile-menu li.nav-item span.nav-link:hover,
        nav.navbar-mobile.submenu ul.mobile-menu li.nav-item span.nav-link.active {
          color: #f23939; }
        nav.navbar-mobile.submenu ul.mobile-menu li.nav-item a.nav-link.has-children:after,
        nav.navbar-mobile.submenu ul.mobile-menu li.nav-item span.nav-link.has-children:after {
          font-family: 'Noteworthy', cursive;
          font-weight: 400;
          content: " >";
          padding-left: 5px;
          color: #f23939; }
  nav.navbar-mobile.submenu .mobile-menu-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 20px;
    width: 20px;
    background-size: cover;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
    background-image: url("../images/close.png"); }
  nav.navbar-mobile.submenu.open {
    left: 0; }

.search-menu {
  display: none !important;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  position: fixed;
  top: 120px;
  left: 0;
  z-index: 9999999999999;
  background-color: white; }
  .search-menu .zone-title {
    padding: 56px 0; }
    .search-menu .zone-title h2 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400;
      color: #f23939;
      text-align: center; }
  .search-menu form {
    padding-bottom: 110px; }
    .search-menu form input.form-control {
      border-radius: 0;
      border: none;
      border-bottom: 1px solid black;
      padding: .375rem .75rem .800rem;
      font-family: 'Noteworthy', cursive;
      font-weight: 400;
      color: black;
      letter-spacing: 0.05em; }
      .search-menu form input.form-control::-webkit-input-placeholder {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: black;
        letter-spacing: 0.05em; }
      .search-menu form input.form-control:-ms-input-placeholder {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: black;
        letter-spacing: 0.05em; }
      .search-menu form input.form-control::-ms-input-placeholder {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: black;
        letter-spacing: 0.05em; }
      .search-menu form input.form-control::placeholder {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: black;
        letter-spacing: 0.05em; }
  .search-menu.open {
    display: block !important; }

#videoModal .zone-video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden; }
  #videoModal .zone-video iframe, #videoModal .zone-video object, #videoModal .zone-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/**
 *
 *	Parameters - draggable
 *
 */
/**
 *
 *	Parameters - track
 *
 */
.audio-player {
  background-color: #272727;
  min-height: 70px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999999;
  padding: 10px 0; }
  .audio-player .zone-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .audio-player .zone-info .zone-image img {
      height: 60px;
      width: 60px;
      -o-object-fit: cover;
      object-fit: cover; }
    .audio-player .zone-info .zone-text {
      margin: 6px 0 0 8px; }
      .audio-player .zone-info .zone-text p {
        font-weight: bold;
        margin-bottom: 0;
        color: white; }
      .audio-player .zone-info .zone-text small {
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6); }
  .audio-player .zone-audio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center flex-end;
    -ms-flex-align: center flex-end;
    align-items: center flex-end;
    width: 100%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%); }
    .audio-player .zone-audio > div {
      margin: 0 10px; }
      .audio-player .zone-audio > div:first-child {
        margin-left: 0; }
      .audio-player .zone-audio > div:last-child {
        margin-right: 0; }
    .audio-player .zone-audio .zone-data p {
      margin-bottom: 0; }
    .audio-player .zone-audio .zone-data .play-pause-btn {
      height: 42px;
      width: 42px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      cursor: pointer;
      background-image: url("../images/btn-pause.svg");
      background-size: cover;
      -webkit-transform: translateY(-20%);
      -ms-transform: translateY(-20%);
      transform: translateY(-20%); }
      .audio-player .zone-audio .zone-data .play-pause-btn.paused {
        background-image: url("../images/btn-play.svg"); }
    .audio-player .zone-audio .zone-data .zone-download {
      -webkit-transform: translateY(-30%);
      -ms-transform: translateY(-30%);
      transform: translateY(-30%); }
    .audio-player .zone-audio .zone-progress {
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1; }
    .audio-player .zone-audio input[type=range] {
      -webkit-appearance: none;
      width: 100%;
      background: transparent; }
      .audio-player .zone-audio input[type=range]:focus {
        outline: none; }
      .audio-player .zone-audio input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 3px;
        cursor: pointer;
        -webkit-animation: 0.2s;
        animation: 0.2s;
        -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0), 0 0 2px rgba(13, 13, 13, 0);
        box-shadow: 2px 2px 2px rgba(0, 0, 0, 0), 0 0 2px rgba(13, 13, 13, 0);
        border: 1px solid transparent;
        border-radius: 2px;
        background: -webkit-gradient(linear, left top, right top, from(#f23939), color-stop(0), color-stop(0, #a5a5a5));
        background: -webkit-linear-gradient(left, #f23939 var(--percent, 0%), 0, #a5a5a5 0);
        background: linear-gradient(to right, #f23939 var(--percent, 0%), 0, #a5a5a5 0); }
      .audio-player .zone-audio input[type=range]::-webkit-slider-thumb {
        -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0), 0 0 0 rgba(13, 13, 13, 0);
        box-shadow: 0 0 1px rgba(0, 0, 0, 0), 0 0 0 rgba(13, 13, 13, 0);
        width: 16px;
        height: 16px;
        cursor: pointer;
        border: 0 solid #000;
        border-radius: 100%;
        background: transparent;
        -webkit-appearance: none;
        margin-top: -1px * 23px/-6px; }
      .audio-player .zone-audio input[type=range]:focus::-webkit-slider-runnable-track {
        background: -webkit-gradient(linear, left top, right top, from(#f23939), color-stop(0), color-stop(0, #a5a5a5));
        background: -webkit-linear-gradient(left, #f23939 var(--percent, 0%), 0, #a5a5a5 0);
        background: linear-gradient(to right, #f23939 var(--percent, 0%), 0, #a5a5a5 0); }
      .audio-player .zone-audio input[type=range]::-moz-range-track {
        width: 100%;
        height: 3px;
        cursor: pointer;
        animation: 0.2s;
        box-shadow: 2px 2px 2px rgba(0, 0, 0, 0), 0 0 2px rgba(13, 13, 13, 0);
        border: 1px solid transparent;
        border-radius: 2px;
        background: linear-gradient(to right, #f23939 var(--percent, 0%), 0, #a5a5a5 0); }
      .audio-player .zone-audio input[type=range]::-moz-range-thumb {
        box-shadow: 0 0 1px rgba(0, 0, 0, 0), 0 0 0 rgba(13, 13, 13, 0);
        width: 16px;
        height: 16px;
        cursor: pointer;
        border: 0 solid #000;
        border-radius: 100%;
        background: transparent; }
      .audio-player .zone-audio input[type=range]::-ms-track {
        width: 100%;
        height: 3px;
        cursor: pointer;
        animation: 0.2s;
        color: transparent;
        border-width: 16px 0;
        border-color: transparent;
        background: transparent; }
      .audio-player .zone-audio input[type=range]::-ms-fill-lower {
        box-shadow: 2px 2px 2px rgba(0, 0, 0, 0), 0 0 2px rgba(13, 13, 13, 0);
        border: 1px solid transparent;
        border-radius: 4px;
        background: linear-gradient(to right, #f23939 var(--percent, 0%), 0, #a5a5a5 0); }
      .audio-player .zone-audio input[type=range]::-ms-fill-upper {
        box-shadow: 2px 2px 2px rgba(0, 0, 0, 0), 0 0 2px rgba(13, 13, 13, 0);
        border: 1px solid transparent;
        border-radius: 4px;
        background: linear-gradient(to right, #f23939 var(--percent, 0%), 0, #a5a5a5 0); }
      .audio-player .zone-audio input[type=range]::-ms-thumb {
        box-shadow: 0 0 1px rgba(0, 0, 0, 0), 0 0 0 rgba(13, 13, 13, 0);
        width: 16px;
        height: 16px;
        cursor: pointer;
        border: 0 solid #000;
        border-radius: 100%;
        background: transparent; }
      .audio-player .zone-audio input[type=range]:focus::-ms-fill-lower {
        background: linear-gradient(to right, #f23939 var(--percent, 0%), 0, #a5a5a5 0); }
      .audio-player .zone-audio input[type=range]:focus::-ms-fill-upper {
        background: linear-gradient(to right, #f23939 var(--percent, 0%), 0, #a5a5a5 0); }
  .audio-player .close-btn {
    background-color: #272727;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    height: auto;
    width: auto;
    cursor: pointer;
    padding: 4px 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    opacity: 0.4; }
    .audio-player .close-btn .zone-close {
      opacity: 0.8;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      font-size: 10px; }
      .audio-player .close-btn .zone-close .close-img {
        background-image: url("../images/btn-close.svg");
        background-size: cover;
        background-repeat: no-repeat;
        margin-right: 10px;
        height: 12px;
        width: 12px; }

.site-footer {
  background-color: black;
  color: white;
  text-align: center; }
  .site-footer .zone-info {
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding: 60px 0; }
    .site-footer .zone-info .zone-text h6 {
      text-transform: uppercase;
      margin-bottom: 20px; }
    .site-footer .zone-info .zone-text .btn {
      margin-right: 20px;
      margin-bottom: 20px; }
      .site-footer .zone-info .zone-text .btn i {
        margin-right: 5px; }
  .site-footer .zone-newsletter {
    border-bottom: 1px solid white;
    padding: 45px 0; }
    .site-footer .zone-newsletter h4, .site-footer .zone-newsletter h5, .site-footer .zone-newsletter h6 {
      color: #f23939;
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  .site-footer .zone-copyright .zone-text {
    text-align: center;
    margin: 10px 0; }
    .site-footer .zone-copyright .zone-text p {
      margin-bottom: 0; }
    .site-footer .zone-copyright .zone-text a {
      color: #f23939; }
  @media (min-width: 768px) {
    .site-footer {
      text-align: left; }
      .site-footer .zone-newsletter {
        text-align: left; }
        .site-footer .zone-newsletter .zone-button {
          text-align: right; }
      .site-footer .zone-copyright .zone-text {
        text-align: center; } }

/**
 *
 *	Pages stylesheets
 *
 */
[data-view~='home'] .section-hero {
  height: 100vh;
  width: 100vw;
  margin: 0 0 0 0; }
  [data-view~='home'] .section-hero.has-intro {
    height: 80vh; }
  [data-view~='home'] .section-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; }
  [data-view~='home'] .section-hero .title {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    [data-view~='home'] .section-hero .title .content {
      text-align: center;
      width: 100%;
      text-shadow: 0px 1px 5px #000; }
      [data-view~='home'] .section-hero .title .content h1 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: white; }
      [data-view~='home'] .section-hero .title .content h2 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: #f23939; }
      [data-view~='home'] .section-hero .title .content p {
        margin-top: 20px;
        color: white; }
  [data-view~='home'] .section-hero .button-down {
    display: none;
    content: url("../images/down.png");
    position: absolute;
    cursor: unset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999;
    -webkit-animation: button-down-animation 1.5s infinite;
    animation: button-down-animation 1.5s infinite;
    height: 80px;
    width: 80px;
    top: calc(100vh - 130px);
    right: 40px; }

@-webkit-keyframes button-down-animation {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0; } }

@keyframes button-down-animation {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0; } }
  @media (min-width: 768px) {
    [data-view~='home'] .section-hero .button-down {
      display: block; } }

[data-view~='home'] .section-hero {
  height: 100vh; }
  [data-view~='home'] .section-hero .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  [data-view~='home'] .section-hero video {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    z-index: -1; }
  [data-view~='home'] .section-hero .button-sound {
    content: url("../images/sound-on.png");
    position: absolute;
    bottom: 40px;
    left: 40px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999; }
    [data-view~='home'] .section-hero .button-sound[data-muted~='true'] {
      content: url("../images/sound-off.png"); }
    [data-view~='home'] .section-hero .button-sound[data-muted~='false'] {
      content: url("../images/sound-on.png"); }
    @media (min-width: 992px) {
      [data-view~='home'] .section-hero .button-sound {
        bottom: 60px; } }

[data-view~='home'] .section-histoire {
  background-color: black;
  padding-bottom: 115px;
  z-index: 99999; }
  [data-view~='home'] .section-histoire a > .content-box {
    border: 1px solid #f23939;
    text-align: center;
    padding-bottom: 56.25%;
    margin-bottom: 40px;
    position: relative;
    background-repeat: none;
    background-size: cover;
    background-position: center; }
    [data-view~='home'] .section-histoire a > .content-box span {
      color: #f23939;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    [data-view~='home'] .section-histoire a > .content-box:hover {
      background-image: var(--bgimg, url("../images/default.png")); }
      [data-view~='home'] .section-histoire a > .content-box:hover span {
        display: none; }

[data-view~='home'] .section-cinema {
  background-color: black;
  padding: 115px 0; }
  [data-view~='home'] .section-cinema .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */ }
    [data-view~='home'] .section-cinema .zone-title h2, [data-view~='home'] .section-cinema .zone-title h3, [data-view~='home'] .section-cinema .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='home'] .section-cinema .content-box {
    border: 1px solid #f23939;
    text-align: center;
    padding-bottom: 56.25%;
    margin-bottom: 40px;
    cursor: pointer;
    position: relative;
    /* Temporary background image - awaiting for YT videos */
    background-image: var(--bgimg, url("../images/default.png"));
    background-repeat: none;
    background-size: cover; }
    [data-view~='home'] .section-cinema .content-box span {
      display: none;
      color: #f23939;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    [data-view~='home'] .section-cinema .content-box:hover {
      background: black; }
      [data-view~='home'] .section-cinema .content-box:hover span {
        display: unset; }

[data-view~='home'] .section-radio {
  background-color: black;
  padding: 115px 0; }
  [data-view~='home'] .section-radio .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */ }
    [data-view~='home'] .section-radio .zone-title h2, [data-view~='home'] .section-radio .zone-title h3, [data-view~='home'] .section-radio .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='home'] .section-radio .card-box {
    margin-bottom: 40px; }
    [data-view~='home'] .section-radio .card-box .zone-image {
      background-image: url("../images/default.png");
      background-repeat: none;
      background-size: cover;
      padding-bottom: 56.25%; }
    [data-view~='home'] .section-radio .card-box .zone-content {
      background-color: white;
      color: black;
      padding: 40px 20px 0;
      height: 155px; }
      [data-view~='home'] .section-radio .card-box .zone-content .zone-text {
        position: relative; }
        [data-view~='home'] .section-radio .card-box .zone-content .zone-text .button-play {
          content: url("../images/button-play.svg");
          position: relative;
          top: -60px;
          left: calc(50% - 20px);
          height: 40px;
          width: 40px;
          cursor: pointer; }
          [data-view~='home'] .section-radio .card-box .zone-content .zone-text .button-play.playing {
            content: url("../images/button-pause.svg"); }
        [data-view~='home'] .section-radio .card-box .zone-content .zone-text h6 {
          font-weight: 700;
          margin-bottom: 20px;
          position: absolute;
          top: 0;
          left: 0; }
        [data-view~='home'] .section-radio .card-box .zone-content .zone-text p {
          text-transform: uppercase;
          color: rgba(0, 0, 0, 0.5);
          margin-bottom: 0;
          position: absolute;
          top: 70px;
          left: 0; }
    [data-view~='home'] .section-radio .card-box:hover {
      cursor: pointer; }
      [data-view~='home'] .section-radio .card-box:hover .zone-content {
        background-color: #e2e2e2; }
        [data-view~='home'] .section-radio .card-box:hover .zone-content .zone-text h6 {
          text-decoration: underline; }

[data-view~='home'] .section-gallery {
  background-color: black;
  padding: 115px 0; }
  [data-view~='home'] .section-gallery .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */ }
    [data-view~='home'] .section-gallery .zone-title h2, [data-view~='home'] .section-gallery .zone-title h3, [data-view~='home'] .section-gallery .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='home'] .section-gallery a > .content-box {
    border: 1px solid #f23939;
    text-align: center;
    padding-bottom: 56.25%;
    margin-bottom: 40px;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    background-image: url("../images/default.png");
    background-repeat: none;
    background-size: cover; }

[data-view~='home'] .section-archives {
  background-color: black;
  padding: 115px 0; }
  [data-view~='home'] .section-archives .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */ }
    [data-view~='home'] .section-archives .zone-title h2, [data-view~='home'] .section-archives .zone-title h3, [data-view~='home'] .section-archives .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='home'] .section-archives a > .content-box {
    border: 1px solid #f23939;
    text-align: center;
    padding-bottom: 56.25%;
    margin-bottom: 40px;
    position: relative;
    background-repeat: none;
    background-size: cover;
    background-position: center; }
    [data-view~='home'] .section-archives a > .content-box span {
      color: #f23939;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    [data-view~='home'] .section-archives a > .content-box:hover {
      background-image: var(--bgimg, url("../images/default.png")); }
      [data-view~='home'] .section-archives a > .content-box:hover span {
        display: none; }

[data-view~='home'] .section-parallax {
  background-image: url("../images/default.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: black;
  border-top: 1px solid white;
  border-bottom: 1px solid white; }
  [data-view~='home'] .section-parallax .zone-text {
    color: #f23939;
    margin: 100px 50px;
    padding: 20px 20px;
    background-color: rgba(0, 0, 0, 0.7); }
    [data-view~='home'] .section-parallax .zone-text h3 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400;
      margin-bottom: 20px;
      text-shadow: 0px 1px 5px #000; }
    [data-view~='home'] .section-parallax .zone-text p {
      color: white; }
  [data-view~='home'] .section-parallax.parallax-left {
    background-position: right; }
  [data-view~='home'] .section-parallax.parallax-right {
    background-position: left; }
  @media (min-width: 768px) {
    [data-view~='home'] .section-parallax .zone-text {
      max-width: 50%; }
    [data-view~='home'] .section-parallax.parallax-right .zone-text {
      margin-left: 50%; } }
  @media (min-width: 992px) {
    [data-view~='home'] .section-parallax {
      background-size: 48%;
      border: unset; }
      [data-view~='home'] .section-parallax .zone-text {
        padding: 250px 15px;
        margin: unset;
        background: unset; }
      [data-view~='home'] .section-parallax.parallax-left .zone-text {
        text-align: left; }
      [data-view~='home'] .section-parallax.parallax-right .zone-text {
        text-align: right; } }

[data-view~='archives'] .section-hero {
  height: 100vh;
  width: 100vw;
  margin: 0 0 0 0;
  background-image: url("../images/hero-archives.png");
  background-repeat: none;
  background-size: cover;
  background-position: center; }
  [data-view~='archives'] .section-hero.has-intro {
    height: 80vh; }
  [data-view~='archives'] .section-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; }
  [data-view~='archives'] .section-hero .title {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    [data-view~='archives'] .section-hero .title .content {
      text-align: center;
      width: 100%;
      text-shadow: 0px 1px 5px #000; }
      [data-view~='archives'] .section-hero .title .content h1 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: white; }
      [data-view~='archives'] .section-hero .title .content h2 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: #f23939; }
      [data-view~='archives'] .section-hero .title .content p {
        margin-top: 20px;
        color: white; }
  [data-view~='archives'] .section-hero .button-down {
    display: none;
    content: url("../images/down.png");
    position: absolute;
    cursor: unset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999;
    -webkit-animation: button-down-animation 1.5s infinite;
    animation: button-down-animation 1.5s infinite;
    height: 40px;
    width: 40px;
    top: calc(100vh - 110px);
    right: 40px; }

@keyframes button-down-animation {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0; } }
  @media (min-width: 768px) {
    [data-view~='archives'] .section-hero .button-down {
      display: block; } }

[data-view~='archives'] .section-intro {
  background-color: black;
  padding-bottom: 55px;
  z-index: 99999;
  margin-bottom: 55px;
  color: white; }
  [data-view~='archives'] .section-intro .zone-meta {
    margin-bottom: 20px; }
    [data-view~='archives'] .section-intro .zone-meta p {
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      text-align: center; }
  [data-view~='archives'] .section-intro h1, [data-view~='archives'] .section-intro h2 {
    font-family: 'Noteworthy', cursive;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #f23939; }
  [data-view~='archives'] .section-intro p {
    text-align: center; }

[data-view~='archives'] .section-menu {
  background-color: rgba(0, 0, 0, 0.04); }
  [data-view~='archives'] .section-menu .menu-item {
    cursor: pointer;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    line-height: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid transparent;
    font-weight: 400; }
    [data-view~='archives'] .section-menu .menu-item:last-child {
      border-right: 1px solid rgba(0, 0, 0, 0.1); }
    [data-view~='archives'] .section-menu .menu-item:hover {
      border-bottom: 3px solid #f23939; }
    [data-view~='archives'] .section-menu .menu-item.active {
      font-weight: 700;
      border-bottom: 3px solid #f23939; }

[data-view~='archives'] .section-archives {
  padding: 55px 0; }
  [data-view~='archives'] .section-archives .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: #f23939; }
    [data-view~='archives'] .section-archives .zone-title h2, [data-view~='archives'] .section-archives .zone-title h3, [data-view~='archives'] .section-archives .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='archives'] .section-archives .card-box {
    margin-bottom: 40px; }
    [data-view~='archives'] .section-archives .card-box.type-video .zone-icon {
      background-image: url("../images/icon-video.png"); }
    [data-view~='archives'] .section-archives .card-box.type-audio .zone-icon {
      background-image: url("../images/icon-audio.png"); }
    [data-view~='archives'] .section-archives .card-box .zone-icon {
      background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      top: 0;
      right: 15px;
      height: 40px;
      width: 40px; }
    [data-view~='archives'] .section-archives .card-box .zone-image {
      background-image: url("../images/default.png");
      background-repeat: none;
      background-size: cover;
      padding-bottom: 56.25%; }
    [data-view~='archives'] .section-archives .card-box .zone-content {
      background-color: white;
      color: black;
      padding: 20px 20px 0;
      height: 135px; }
      [data-view~='archives'] .section-archives .card-box .zone-content .zone-text {
        position: relative; }
        [data-view~='archives'] .section-archives .card-box .zone-content .zone-text h6 {
          font-weight: 700;
          margin-bottom: 20px;
          position: absolute;
          top: 0;
          left: 0; }
        [data-view~='archives'] .section-archives .card-box .zone-content .zone-text p {
          text-transform: uppercase;
          color: rgba(0, 0, 0, 0.5);
          margin-bottom: 0;
          position: absolute;
          top: 70px;
          left: 0; }
    [data-view~='archives'] .section-archives .card-box:hover {
      cursor: pointer; }
      [data-view~='archives'] .section-archives .card-box:hover .zone-content {
        background-color: rgba(0, 0, 0, 0.08); }
        [data-view~='archives'] .section-archives .card-box:hover .zone-content .zone-text h6 {
          text-decoration: underline; }

[data-view~='archives'] .section-more {
  padding: 115px 0 55px;
  background-color: rgba(0, 0, 0, 0.08);
  margin-top: 55px; }
  [data-view~='archives'] .section-more .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: black; }
    [data-view~='archives'] .section-more .zone-title h2, [data-view~='archives'] .section-more .zone-title h3, [data-view~='archives'] .section-more .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='archives'] .section-more .item {
    margin-bottom: 40px; }
    [data-view~='archives'] .section-more .item .content-box {
      border-top: 1px solid black;
      border-bottom: 1px solid black;
      width: 100%;
      height: 80px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      text-align: center;
      color: black;
      font-weight: 700;
      line-height: 1rem; }
      [data-view~='archives'] .section-more .item .content-box span {
        background-image: url("../images/next.png");
        background-size: contain;
        background-repeat: no-repeat;
        height: 20px;
        width: 20px;
        position: absolute;
        top: 50%;
        right: 15px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
    [data-view~='archives'] .section-more .item:hover .content-box {
      border-color: #f23939;
      color: #f23939; }

[data-view~='article'] .section-hero {
  height: 80vh;
  width: 100vw;
  margin: 0 0 0 0;
  background-image: url("../images/hero-archives.png");
  background-repeat: none;
  background-size: cover;
  background-position: center; }
  [data-view~='article'] .section-hero.has-intro {
    height: 80vh; }
  [data-view~='article'] .section-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; }
  [data-view~='article'] .section-hero .title {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    [data-view~='article'] .section-hero .title .content {
      text-align: center;
      width: 100%;
      text-shadow: 0px 1px 5px #000; }
      [data-view~='article'] .section-hero .title .content h1 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: white; }
      [data-view~='article'] .section-hero .title .content h2 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: #f23939; }
      [data-view~='article'] .section-hero .title .content p {
        margin-top: 20px;
        color: white; }
  [data-view~='article'] .section-hero .button-down {
    display: none;
    content: url("../images/down.png");
    position: absolute;
    cursor: unset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999;
    -webkit-animation: button-down-animation 1.5s infinite;
    animation: button-down-animation 1.5s infinite;
    height: 40px;
    width: 40px;
    top: calc(80vh - 110px);
    right: 40px; }

@keyframes button-down-animation {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0; } }
  @media (min-width: 768px) {
    [data-view~='article'] .section-hero .button-down {
      display: block; } }

[data-view~='article'] .section-intro {
  background-color: black;
  padding-bottom: 55px;
  z-index: 99999;
  margin-bottom: 55px;
  color: white; }
  [data-view~='article'] .section-intro .zone-meta {
    margin-bottom: 20px; }
    [data-view~='article'] .section-intro .zone-meta p {
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      text-align: center; }
  [data-view~='article'] .section-intro h1, [data-view~='article'] .section-intro h2 {
    font-family: 'Noteworthy', cursive;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #f23939; }
  [data-view~='article'] .section-intro p {
    text-align: center; }

[data-view~='article'] .section-title {
  margin: 55px 0 0; }
  [data-view~='article'] .section-title .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: #f23939; }
    [data-view~='article'] .section-title .zone-title h2, [data-view~='article'] .section-title .zone-title h3, [data-view~='article'] .section-title .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }

[data-view~='article'] .section-audio {
  padding: 55px 0; }
  [data-view~='article'] .section-audio .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: #f23939; }
    [data-view~='article'] .section-audio .zone-title h2, [data-view~='article'] .section-audio .zone-title h3, [data-view~='article'] .section-audio .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='article'] .section-audio .card-box {
    margin-bottom: 40px; }
    [data-view~='article'] .section-audio .card-box .zone-image {
      background-image: url("../images/default.png");
      background-repeat: none;
      background-size: cover;
      padding-bottom: 56.25%; }
    [data-view~='article'] .section-audio .card-box .zone-content {
      background-color: white;
      color: black;
      padding: 40px 20px 0;
      height: 155px; }
      [data-view~='article'] .section-audio .card-box .zone-content .zone-text {
        position: relative; }
        [data-view~='article'] .section-audio .card-box .zone-content .zone-text .button-play {
          content: url("../images/button-play.png");
          position: relative;
          top: -60px;
          left: calc(50% - 20px);
          height: 40px;
          width: 40px;
          cursor: pointer;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none; }
          [data-view~='article'] .section-audio .card-box .zone-content .zone-text .button-play.playing {
            -webkit-filter: grayscale(100%);
            filter: grayscale(100%); }
        [data-view~='article'] .section-audio .card-box .zone-content .zone-text h6 {
          font-weight: 700;
          margin-bottom: 20px;
          position: absolute;
          top: 0;
          left: 0; }
        [data-view~='article'] .section-audio .card-box .zone-content .zone-text p {
          text-transform: uppercase;
          color: rgba(0, 0, 0, 0.5);
          margin-bottom: 0;
          position: absolute;
          top: 70px;
          left: 0; }

[data-view~='article'] .section-redaction {
  padding: 0 0 55px; }
  [data-view~='article'] .section-redaction .container {
    background-color: white;
    padding: 105px 95px; }
  [data-view~='article'] .section-redaction h2, [data-view~='article'] .section-redaction h3, [data-view~='article'] .section-redaction h4, [data-view~='article'] .section-redaction h5, [data-view~='article'] .section-redaction h6 {
    font-family: 'Noteworthy', cursive;
    font-weight: 400; }
  [data-view~='article'] .section-redaction h2, [data-view~='article'] .section-redaction h3, [data-view~='article'] .section-redaction h4 {
    color: #f23939;
    margin-bottom: 20px; }

[data-view~='article'] .section-more {
  padding: 115px 0 55px;
  background-color: rgba(0, 0, 0, 0.08);
  margin-top: 55px; }
  [data-view~='article'] .section-more .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: black; }
    [data-view~='article'] .section-more .zone-title h2, [data-view~='article'] .section-more .zone-title h3, [data-view~='article'] .section-more .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='article'] .section-more .item {
    margin-bottom: 40px; }
    [data-view~='article'] .section-more .item .content-box {
      border-top: 1px solid black;
      border-bottom: 1px solid black;
      width: 100%;
      height: 80px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      text-align: center;
      color: black;
      font-weight: 700;
      line-height: 1rem; }
      [data-view~='article'] .section-more .item .content-box span {
        background-image: url("../images/next.png");
        background-size: contain;
        background-repeat: no-repeat;
        height: 20px;
        width: 20px;
        position: absolute;
        top: 50%;
        right: 15px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
    [data-view~='article'] .section-more .item:hover .content-box {
      border-color: #f23939;
      color: #f23939; }

[data-view~='element'] .section-hero {
  height: 100vh;
  width: 100vw;
  margin: 0 0 0 0;
  background-image: url("../images/hero-archives.png");
  background-repeat: none;
  background-size: cover;
  background-position: center; }
  [data-view~='element'] .section-hero.has-intro {
    height: 80vh; }
  [data-view~='element'] .section-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; }
  [data-view~='element'] .section-hero .title {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    [data-view~='element'] .section-hero .title .content {
      text-align: center;
      width: 100%;
      text-shadow: 0px 1px 5px #000; }
      [data-view~='element'] .section-hero .title .content h1 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: white; }
      [data-view~='element'] .section-hero .title .content h2 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: #f23939; }
      [data-view~='element'] .section-hero .title .content p {
        margin-top: 20px;
        color: white; }
  [data-view~='element'] .section-hero .button-down {
    display: none;
    content: url("../images/down.png");
    position: absolute;
    cursor: unset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999;
    -webkit-animation: button-down-animation 1.5s infinite;
    animation: button-down-animation 1.5s infinite;
    height: 40px;
    width: 40px;
    top: calc(100vh - 110px);
    right: 40px; }

@keyframes button-down-animation {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0; } }
  @media (min-width: 768px) {
    [data-view~='element'] .section-hero .button-down {
      display: block; } }

[data-view~='element'] .section-intro {
  background-color: black;
  padding-bottom: 55px;
  z-index: 99999;
  margin-bottom: 55px;
  color: white; }
  [data-view~='element'] .section-intro .zone-meta {
    margin-bottom: 20px; }
    [data-view~='element'] .section-intro .zone-meta p {
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      text-align: center; }
  [data-view~='element'] .section-intro h1, [data-view~='element'] .section-intro h2 {
    font-family: 'Noteworthy', cursive;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #f23939; }
  [data-view~='element'] .section-intro p {
    text-align: center; }

[data-view~='element'] .section-title {
  margin: 0 0 0; }
  [data-view~='element'] .section-title .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: #f23939; }
    [data-view~='element'] .section-title .zone-title h2, [data-view~='element'] .section-title .zone-title h3, [data-view~='element'] .section-title .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }

[data-view~='element'] .section-audios {
  padding: 0 0 0; }
  [data-view~='element'] .section-audios .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: #f23939; }
    [data-view~='element'] .section-audios .zone-title h2, [data-view~='element'] .section-audios .zone-title h3, [data-view~='element'] .section-audios .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='element'] .section-audios .card-box {
    margin-bottom: 30px;
    background-color: white; }
    [data-view~='element'] .section-audios .card-box:first-child {
      margin-top: -25px; }
    [data-view~='element'] .section-audios .card-box .zone-image {
      position: absolute;
      top: 0;
      left: 0;
      height: 155px;
      width: 155px; }
    [data-view~='element'] .section-audios .card-box .zone-content {
      color: black;
      padding: 40px 20px 0;
      height: 155px; }
      [data-view~='element'] .section-audios .card-box .zone-content .zone-text {
        position: relative; }
        [data-view~='element'] .section-audios .card-box .zone-content .zone-text .button-play {
          content: url("../images/button-play.svg");
          position: absolute;
          top: 0;
          right: 0;
          height: 40px;
          width: 40px;
          cursor: pointer;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none; }
          [data-view~='element'] .section-audios .card-box .zone-content .zone-text .button-play.playing {
            content: url("../images/button-pause.svg"); }
        [data-view~='element'] .section-audios .card-box .zone-content .zone-text h6 {
          font-weight: 700;
          margin-bottom: 20px;
          position: absolute;
          top: 0;
          left: 0; }
        [data-view~='element'] .section-audios .card-box .zone-content .zone-text p.subtitle {
          margin-bottom: 0;
          text-transform: none;
          color: black;
          position: absolute;
          top: 25px;
          left: 0; }
        [data-view~='element'] .section-audios .card-box .zone-content .zone-text p {
          text-transform: uppercase;
          color: rgba(0, 0, 0, 0.5);
          margin-bottom: 0;
          position: absolute;
          top: 70px;
          left: 0; }
    [data-view~='element'] .section-audios .card-box:hover {
      background-color: #e2e2e2;
      cursor: pointer; }
      [data-view~='element'] .section-audios .card-box:hover .zone-content .zone-text h6 {
        text-decoration: underline; }

[data-view~='element'] .section-lyrics {
  padding: 0 0 55px; }
  [data-view~='element'] .section-lyrics p {
    font-weight: 700;
    letter-spacing: 0; }
  [data-view~='element'] .section-lyrics .zone-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden; }
    [data-view~='element'] .section-lyrics .zone-video iframe, [data-view~='element'] .section-lyrics .zone-video object, [data-view~='element'] .section-lyrics .zone-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  [data-view~='element'] .section-lyrics .zone-photo img {
    width: 100%; }
  @media (min-width: 576px) {
    [data-view~='element'] .section-lyrics .container {
      padding: 0 80px 0 80px; }
    [data-view~='element'] .section-lyrics .zone-video {
      margin-bottom: 0; } }

[data-view~='element'] .section-redaction {
  padding: 0 0 55px; }
  [data-view~='element'] .section-redaction .container {
    background-color: white;
    padding: 80px 40px; }
  [data-view~='element'] .section-redaction h2, [data-view~='element'] .section-redaction h3, [data-view~='element'] .section-redaction h4, [data-view~='element'] .section-redaction h5, [data-view~='element'] .section-redaction h6 {
    font-family: 'Noteworthy', cursive;
    font-weight: 400; }
  [data-view~='element'] .section-redaction h2, [data-view~='element'] .section-redaction h3, [data-view~='element'] .section-redaction h4 {
    color: #f23939;
    margin-bottom: 20px; }
  [data-view~='element'] .section-redaction p {
    min-height: 20px; }
  @media (min-width: 768px) {
    [data-view~='element'] .section-redaction .container {
      background-color: white;
      padding: 105px 95px; } }

[data-view~='element'] .section-gallery {
  padding: 0 0 55px; }
  [data-view~='element'] .section-gallery .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */ }
    [data-view~='element'] .section-gallery .zone-title h2, [data-view~='element'] .section-gallery .zone-title h3, [data-view~='element'] .section-gallery .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='element'] .section-gallery .item-image {
    margin-bottom: 20px; }
  [data-view~='element'] .section-gallery .btn {
    margin-top: 20px; }
  @media (min-width: 768px) {
    [data-view~='element'] .section-gallery .item-image:last-child {
      margin-bottom: 40px; }
    [data-view~='element'] .section-gallery .btn {
      margin-top: 0; } }

[data-view~='element'] .section-more {
  padding: 115px 0 55px;
  background-color: rgba(0, 0, 0, 0.08);
  margin-top: 55px; }
  [data-view~='element'] .section-more .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: black; }
    [data-view~='element'] .section-more .zone-title h2, [data-view~='element'] .section-more .zone-title h3, [data-view~='element'] .section-more .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='element'] .section-more .item {
    margin-bottom: 40px; }
    [data-view~='element'] .section-more .item .content-box {
      border-top: 1px solid black;
      border-bottom: 1px solid black;
      width: 100%;
      height: 80px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      text-align: center;
      color: black;
      font-weight: 700;
      line-height: 1rem; }
      [data-view~='element'] .section-more .item .content-box span {
        background-image: url("../images/next.png");
        background-size: contain;
        background-repeat: no-repeat;
        height: 20px;
        width: 20px;
        position: absolute;
        top: 50%;
        right: 15px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
    [data-view~='element'] .section-more .item:hover .content-box {
      border-color: #f23939;
      color: #f23939; }

[data-view~='creations'] .section-hero {
  height: 100vh;
  width: 100vw;
  margin: 0 0 0 0;
  background-image: url("../images/hero-archives.png");
  background-repeat: none;
  background-size: cover;
  background-position: center; }
  [data-view~='creations'] .section-hero.has-intro {
    height: 80vh; }
  [data-view~='creations'] .section-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; }
  [data-view~='creations'] .section-hero .title {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    [data-view~='creations'] .section-hero .title .content {
      text-align: center;
      width: 100%;
      text-shadow: 0px 1px 5px #000; }
      [data-view~='creations'] .section-hero .title .content h1 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: white; }
      [data-view~='creations'] .section-hero .title .content h2 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: #f23939; }
      [data-view~='creations'] .section-hero .title .content p {
        margin-top: 20px;
        color: white; }
  [data-view~='creations'] .section-hero .button-down {
    display: none;
    content: url("../images/down.png");
    position: absolute;
    cursor: unset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999;
    -webkit-animation: button-down-animation 1.5s infinite;
    animation: button-down-animation 1.5s infinite;
    height: 40px;
    width: 40px;
    top: calc(100vh - 110px);
    right: 40px; }

@keyframes button-down-animation {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0; } }
  @media (min-width: 768px) {
    [data-view~='creations'] .section-hero .button-down {
      display: block; } }

[data-view~='creations'] .section-intro {
  background-color: black;
  padding-bottom: 55px;
  z-index: 99999;
  margin-bottom: 55px;
  color: white; }
  [data-view~='creations'] .section-intro .zone-meta {
    margin-bottom: 20px; }
    [data-view~='creations'] .section-intro .zone-meta p {
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      text-align: center; }
  [data-view~='creations'] .section-intro h1, [data-view~='creations'] .section-intro h2 {
    font-family: 'Noteworthy', cursive;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #f23939; }
  [data-view~='creations'] .section-intro p {
    text-align: center; }

[data-view~='creations'] .section-grid {
  padding: 115px 0 55px; }
  [data-view~='creations'] .section-grid .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: #f23939; }
    [data-view~='creations'] .section-grid .zone-title h2, [data-view~='creations'] .section-grid .zone-title h3, [data-view~='creations'] .section-grid .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='creations'] .section-grid .grid {
    display: -ms-grid;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 200px; }
    [data-view~='creations'] .section-grid .grid .item {
      margin-bottom: 15px; }
      [data-view~='creations'] .section-grid .grid .item .content img {
        width: 100%; }

[data-view~='creations'] .section-more {
  padding: 115px 0 55px;
  background-color: rgba(0, 0, 0, 0.08);
  margin-top: 55px; }
  [data-view~='creations'] .section-more .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: black; }
    [data-view~='creations'] .section-more .zone-title h2, [data-view~='creations'] .section-more .zone-title h3, [data-view~='creations'] .section-more .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='creations'] .section-more .item {
    margin-bottom: 40px; }
    [data-view~='creations'] .section-more .item .content-box {
      border-top: 1px solid black;
      border-bottom: 1px solid black;
      width: 100%;
      height: 80px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      text-align: center;
      color: black;
      font-weight: 700;
      line-height: 1rem; }
      [data-view~='creations'] .section-more .item .content-box span {
        background-image: url("../images/next.png");
        background-size: contain;
        background-repeat: no-repeat;
        height: 20px;
        width: 20px;
        position: absolute;
        top: 50%;
        right: 15px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
    [data-view~='creations'] .section-more .item:hover .content-box {
      border-color: #f23939;
      color: #f23939; }

[data-view~='listing'] .section-hero {
  height: 100vh;
  width: 100vw;
  margin: 0 0 0 0;
  background-image: url("../images/hero-archives.png");
  background-repeat: none;
  background-size: cover;
  background-position: center; }
  [data-view~='listing'] .section-hero.has-intro {
    height: 80vh; }
  [data-view~='listing'] .section-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; }
  [data-view~='listing'] .section-hero .title {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    [data-view~='listing'] .section-hero .title .content {
      text-align: center;
      width: 100%;
      text-shadow: 0px 1px 5px #000; }
      [data-view~='listing'] .section-hero .title .content h1 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: white; }
      [data-view~='listing'] .section-hero .title .content h2 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: #f23939; }
      [data-view~='listing'] .section-hero .title .content p {
        margin-top: 20px;
        color: white; }
  [data-view~='listing'] .section-hero .button-down {
    display: none;
    content: url("../images/down.png");
    position: absolute;
    cursor: unset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999;
    -webkit-animation: button-down-animation 1.5s infinite;
    animation: button-down-animation 1.5s infinite;
    height: 40px;
    width: 40px;
    top: calc(100vh - 110px);
    right: 40px; }

@keyframes button-down-animation {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0; } }
  @media (min-width: 768px) {
    [data-view~='listing'] .section-hero .button-down {
      display: block; } }

[data-view~='listing'] .section-intro {
  background-color: black;
  padding-bottom: 55px;
  z-index: 99999;
  margin-bottom: 55px;
  color: white; }
  [data-view~='listing'] .section-intro .zone-meta {
    margin-bottom: 20px; }
    [data-view~='listing'] .section-intro .zone-meta p {
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      text-align: center; }
  [data-view~='listing'] .section-intro h1, [data-view~='listing'] .section-intro h2 {
    font-family: 'Noteworthy', cursive;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #f23939; }
  [data-view~='listing'] .section-intro p {
    text-align: center; }

[data-view~='listing'] .section-listing {
  padding: 40px 0; }
  [data-view~='listing'] .section-listing .container {
    background-color: white;
    padding: 80px 40px; }
  [data-view~='listing'] .section-listing .zone-element {
    padding: 30px 30px 30px;
    border: 1px solid red;
    border-bottom: none;
    position: relative;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left; }
    [data-view~='listing'] .section-listing .zone-element:nth-last-child(-n+2) {
      border-bottom: 1px solid red; }
    [data-view~='listing'] .section-listing .zone-element:nth-last-child(1) {
      margin-bottom: 40px; }
    [data-view~='listing'] .section-listing .zone-element a {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      color: unset;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      [data-view~='listing'] .section-listing .zone-element a:hover {
        color: #f23939; }
    [data-view~='listing'] .section-listing .zone-element .element-content {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      padding: 30px 30px 30px; }
      [data-view~='listing'] .section-listing .zone-element .element-content h5 {
        font-weight: 700; }
  @media (min-width: 768px) {
    [data-view~='listing'] .section-listing {
      padding: 115px 0; }
      [data-view~='listing'] .section-listing .container {
        padding: 105px 95px; }
      [data-view~='listing'] .section-listing .zone-element:nth-child(even) {
        border-left: none; } }

[data-view~='listing'] .section-more {
  padding: 115px 0 55px;
  background-color: rgba(0, 0, 0, 0.08);
  margin-top: 55px; }
  [data-view~='listing'] .section-more .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: black; }
    [data-view~='listing'] .section-more .zone-title h2, [data-view~='listing'] .section-more .zone-title h3, [data-view~='listing'] .section-more .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='listing'] .section-more .item {
    margin-bottom: 40px; }
    [data-view~='listing'] .section-more .item .content-box {
      border-top: 1px solid black;
      border-bottom: 1px solid black;
      width: 100%;
      height: 80px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      text-align: center;
      color: black;
      font-weight: 700;
      line-height: 1rem; }
      [data-view~='listing'] .section-more .item .content-box span {
        background-image: url("../images/next.png");
        background-size: contain;
        background-repeat: no-repeat;
        height: 20px;
        width: 20px;
        position: absolute;
        top: 50%;
        right: 15px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
    [data-view~='listing'] .section-more .item:hover .content-box {
      border-color: #f23939;
      color: #f23939; }

[data-view~='content'] .section-hero {
  height: 100vh;
  width: 100vw;
  margin: 0 0 0 0;
  background-image: url("../images/hero-archives.png");
  background-repeat: none;
  background-size: cover;
  background-position: center; }
  [data-view~='content'] .section-hero.has-intro {
    height: 80vh; }
  [data-view~='content'] .section-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; }
  [data-view~='content'] .section-hero .title {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    [data-view~='content'] .section-hero .title .content {
      text-align: center;
      width: 100%;
      text-shadow: 0px 1px 5px #000; }
      [data-view~='content'] .section-hero .title .content h1 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: white; }
      [data-view~='content'] .section-hero .title .content h2 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: #f23939; }
      [data-view~='content'] .section-hero .title .content p {
        margin-top: 20px;
        color: white; }
  [data-view~='content'] .section-hero .button-down {
    display: none;
    content: url("../images/down.png");
    position: absolute;
    cursor: unset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999;
    -webkit-animation: button-down-animation 1.5s infinite;
    animation: button-down-animation 1.5s infinite;
    height: 40px;
    width: 40px;
    top: calc(100vh - 110px);
    right: 40px; }

@keyframes button-down-animation {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0; } }
  @media (min-width: 768px) {
    [data-view~='content'] .section-hero .button-down {
      display: block; } }

[data-view~='content'] .section-intro {
  background-color: black;
  padding-bottom: 55px;
  z-index: 99999;
  margin-bottom: 55px;
  color: white; }
  [data-view~='content'] .section-intro .zone-meta {
    margin-bottom: 20px; }
    [data-view~='content'] .section-intro .zone-meta p {
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      text-align: center; }
  [data-view~='content'] .section-intro h1, [data-view~='content'] .section-intro h2 {
    font-family: 'Noteworthy', cursive;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #f23939; }
  [data-view~='content'] .section-intro p {
    text-align: center; }

[data-view~='content'] .section-title {
  margin: 0 0 0; }
  [data-view~='content'] .section-title .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: #f23939; }
    [data-view~='content'] .section-title .zone-title h2, [data-view~='content'] .section-title .zone-title h3, [data-view~='content'] .section-title .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }

[data-view~='content'] .section-audios {
  padding: 0 0 0; }
  [data-view~='content'] .section-audios .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: #f23939; }
    [data-view~='content'] .section-audios .zone-title h2, [data-view~='content'] .section-audios .zone-title h3, [data-view~='content'] .section-audios .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='content'] .section-audios .card-box {
    margin-bottom: 30px;
    background-color: white; }
    [data-view~='content'] .section-audios .card-box:first-child {
      margin-top: -25px; }
    [data-view~='content'] .section-audios .card-box .zone-image {
      position: absolute;
      top: 0;
      left: 0;
      height: 155px;
      width: 155px; }
    [data-view~='content'] .section-audios .card-box .zone-content {
      color: black;
      padding: 40px 20px 0;
      height: 155px; }
      [data-view~='content'] .section-audios .card-box .zone-content .zone-text {
        position: relative; }
        [data-view~='content'] .section-audios .card-box .zone-content .zone-text .button-play {
          content: url("../images/button-play.svg");
          position: absolute;
          top: 0;
          right: 0;
          height: 40px;
          width: 40px;
          cursor: pointer;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none; }
          [data-view~='content'] .section-audios .card-box .zone-content .zone-text .button-play.playing {
            content: url("../images/button-pause.svg"); }
        [data-view~='content'] .section-audios .card-box .zone-content .zone-text h6 {
          font-weight: 700;
          margin-bottom: 20px;
          position: absolute;
          top: 0;
          left: 0; }
        [data-view~='content'] .section-audios .card-box .zone-content .zone-text p.subtitle {
          margin-bottom: 0;
          text-transform: none;
          color: black;
          position: absolute;
          top: 25px;
          left: 0; }
        [data-view~='content'] .section-audios .card-box .zone-content .zone-text p {
          text-transform: uppercase;
          color: rgba(0, 0, 0, 0.5);
          margin-bottom: 0;
          position: absolute;
          top: 70px;
          left: 0; }
    [data-view~='content'] .section-audios .card-box:hover {
      background-color: #e2e2e2;
      cursor: pointer; }
      [data-view~='content'] .section-audios .card-box:hover .zone-content .zone-text h6 {
        text-decoration: underline; }

[data-view~='content'] .section-lyrics {
  padding: 0 0 55px; }
  [data-view~='content'] .section-lyrics p {
    font-weight: 700;
    letter-spacing: 0; }
  [data-view~='content'] .section-lyrics .zone-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden; }
    [data-view~='content'] .section-lyrics .zone-video iframe, [data-view~='content'] .section-lyrics .zone-video object, [data-view~='content'] .section-lyrics .zone-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  [data-view~='content'] .section-lyrics .zone-photo img {
    width: 100%; }
  @media (min-width: 576px) {
    [data-view~='content'] .section-lyrics .container {
      padding: 0 80px 0 80px; }
    [data-view~='content'] .section-lyrics .zone-video {
      margin-bottom: 0; } }

[data-view~='content'] .section-redaction {
  padding: 0 0 55px; }
  [data-view~='content'] .section-redaction .container {
    background-color: white;
    padding: 80px 40px; }
  [data-view~='content'] .section-redaction h2, [data-view~='content'] .section-redaction h3, [data-view~='content'] .section-redaction h4, [data-view~='content'] .section-redaction h5, [data-view~='content'] .section-redaction h6 {
    font-family: 'Noteworthy', cursive;
    font-weight: 400; }
  [data-view~='content'] .section-redaction h2, [data-view~='content'] .section-redaction h3, [data-view~='content'] .section-redaction h4 {
    color: #f23939;
    margin-bottom: 20px; }
  [data-view~='content'] .section-redaction p {
    min-height: 20px; }
  @media (min-width: 768px) {
    [data-view~='content'] .section-redaction .container {
      background-color: white;
      padding: 105px 95px; } }

[data-view~='content'] .section-gallery {
  padding: 0 0 55px; }
  [data-view~='content'] .section-gallery .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */ }
    [data-view~='content'] .section-gallery .zone-title h2, [data-view~='content'] .section-gallery .zone-title h3, [data-view~='content'] .section-gallery .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='content'] .section-gallery .item-image {
    margin-bottom: 20px; }
  [data-view~='content'] .section-gallery .btn {
    margin-top: 20px; }
  @media (min-width: 768px) {
    [data-view~='content'] .section-gallery .item-image:last-child {
      margin-bottom: 40px; }
    [data-view~='content'] .section-gallery .btn {
      margin-top: 0; } }

[data-view~='content'] .section-more {
  padding: 115px 0 55px;
  background-color: rgba(0, 0, 0, 0.08);
  margin-top: 55px; }
  [data-view~='content'] .section-more .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: black; }
    [data-view~='content'] .section-more .zone-title h2, [data-view~='content'] .section-more .zone-title h3, [data-view~='content'] .section-more .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='content'] .section-more .item {
    margin-bottom: 40px; }
    [data-view~='content'] .section-more .item .content-box {
      border-top: 1px solid black;
      border-bottom: 1px solid black;
      width: 100%;
      height: 80px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      text-align: center;
      color: black;
      font-weight: 700;
      line-height: 1rem; }
      [data-view~='content'] .section-more .item .content-box span {
        background-image: url("../images/next.png");
        background-size: contain;
        background-repeat: no-repeat;
        height: 20px;
        width: 20px;
        position: absolute;
        top: 50%;
        right: 15px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
    [data-view~='content'] .section-more .item:hover .content-box {
      border-color: #f23939;
      color: #f23939; }

[data-view~='videos'] .section-hero {
  height: 100vh;
  width: 100vw;
  margin: 0 0 0 0;
  background-image: url("../images/hero-archives.png");
  background-repeat: none;
  background-size: cover;
  background-position: center; }
  [data-view~='videos'] .section-hero.has-intro {
    height: 80vh; }
  [data-view~='videos'] .section-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; }
  [data-view~='videos'] .section-hero .title {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    [data-view~='videos'] .section-hero .title .content {
      text-align: center;
      width: 100%;
      text-shadow: 0px 1px 5px #000; }
      [data-view~='videos'] .section-hero .title .content h1 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: white; }
      [data-view~='videos'] .section-hero .title .content h2 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: #f23939; }
      [data-view~='videos'] .section-hero .title .content p {
        margin-top: 20px;
        color: white; }
  [data-view~='videos'] .section-hero .button-down {
    display: none;
    content: url("../images/down.png");
    position: absolute;
    cursor: unset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999;
    -webkit-animation: button-down-animation 1.5s infinite;
    animation: button-down-animation 1.5s infinite;
    height: 40px;
    width: 40px;
    top: calc(100vh - 110px);
    right: 40px; }

@keyframes button-down-animation {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0; } }
  @media (min-width: 768px) {
    [data-view~='videos'] .section-hero .button-down {
      display: block; } }

[data-view~='videos'] .section-intro {
  background-color: black;
  padding-bottom: 55px;
  z-index: 99999;
  color: white; }
  [data-view~='videos'] .section-intro .zone-meta {
    margin-bottom: 20px; }
    [data-view~='videos'] .section-intro .zone-meta p {
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      text-align: center; }
  [data-view~='videos'] .section-intro h1, [data-view~='videos'] .section-intro h2 {
    font-family: 'Noteworthy', cursive;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #f23939; }
  [data-view~='videos'] .section-intro p {
    text-align: center; }

[data-view~='videos'] .section-title {
  margin: 0 0 0; }
  [data-view~='videos'] .section-title .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: #f23939; }
    [data-view~='videos'] .section-title .zone-title h2, [data-view~='videos'] .section-title .zone-title h3, [data-view~='videos'] .section-title .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }

[data-view~='videos'] .section-cinema {
  background-color: black;
  padding: 115px 0; }
  [data-view~='videos'] .section-cinema .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */ }
    [data-view~='videos'] .section-cinema .zone-title h2, [data-view~='videos'] .section-cinema .zone-title h3, [data-view~='videos'] .section-cinema .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='videos'] .section-cinema .content-box {
    border: 1px solid #f23939;
    text-align: center;
    padding-bottom: 56.25%;
    margin-bottom: 40px;
    cursor: pointer;
    position: relative;
    /* Temporary background image - awaiting for YT videos */
    background-image: var(--bgimg, url("../images/default.png"));
    background-repeat: none;
    background-size: cover; }
    [data-view~='videos'] .section-cinema .content-box span {
      display: none;
      color: #f23939;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    [data-view~='videos'] .section-cinema .content-box:hover {
      background: black; }
      [data-view~='videos'] .section-cinema .content-box:hover span {
        display: unset; }

[data-view~='presse'] .section-hero {
  height: 100vh;
  width: 100vw;
  margin: 0 0 0 0;
  background-image: url("../images/hero-archives.png");
  background-repeat: none;
  background-size: cover;
  background-position: center; }
  [data-view~='presse'] .section-hero.has-intro {
    height: 80vh; }
  [data-view~='presse'] .section-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; }
  [data-view~='presse'] .section-hero .title {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    [data-view~='presse'] .section-hero .title .content {
      text-align: center;
      width: 100%;
      text-shadow: 0px 1px 5px #000; }
      [data-view~='presse'] .section-hero .title .content h1 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: white; }
      [data-view~='presse'] .section-hero .title .content h2 {
        font-family: 'Noteworthy', cursive;
        font-weight: 400;
        color: #f23939; }
      [data-view~='presse'] .section-hero .title .content p {
        margin-top: 20px;
        color: white; }
  [data-view~='presse'] .section-hero .button-down {
    display: none;
    content: url("../images/down.png");
    position: absolute;
    cursor: unset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999;
    -webkit-animation: button-down-animation 1.5s infinite;
    animation: button-down-animation 1.5s infinite;
    height: 40px;
    width: 40px;
    top: calc(100vh - 110px);
    right: 40px; }

@keyframes button-down-animation {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0; } }
  @media (min-width: 768px) {
    [data-view~='presse'] .section-hero .button-down {
      display: block; } }

[data-view~='presse'] .section-intro {
  background-color: black;
  padding-bottom: 55px;
  z-index: 99999;
  margin-bottom: 55px;
  color: white; }
  [data-view~='presse'] .section-intro .zone-meta {
    margin-bottom: 20px; }
    [data-view~='presse'] .section-intro .zone-meta p {
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      text-align: center; }
  [data-view~='presse'] .section-intro h1, [data-view~='presse'] .section-intro h2 {
    font-family: 'Noteworthy', cursive;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #f23939; }
  [data-view~='presse'] .section-intro p {
    text-align: center; }

[data-view~='presse'] .section-listing {
  padding: 115px 0; }
  [data-view~='presse'] .section-listing .container {
    background-color: white;
    padding: 105px 95px; }
  [data-view~='presse'] .section-listing .zone-element {
    padding: 30px 30px 30px;
    border: 1px solid red;
    border-bottom: none;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left; }
    [data-view~='presse'] .section-listing .zone-element:nth-child(even) {
      border-left: none; }
    [data-view~='presse'] .section-listing .zone-element:nth-last-child(-n+2) {
      border-bottom: 1px solid red; }
    [data-view~='presse'] .section-listing .zone-element:nth-last-child(1) {
      margin-bottom: 40px; }
    [data-view~='presse'] .section-listing .zone-element .element-content h5 {
      font-weight: 700; }

[data-view~='presse'] .section-more {
  padding: 115px 0 55px;
  background-color: rgba(0, 0, 0, 0.08);
  margin-top: 55px; }
  [data-view~='presse'] .section-more .zone-title {
    text-align: center;
    color: white;
    margin-bottom: 55px;
    /* Light mode */
    color: black; }
    [data-view~='presse'] .section-more .zone-title h2, [data-view~='presse'] .section-more .zone-title h3, [data-view~='presse'] .section-more .zone-title h4 {
      font-family: 'Noteworthy', cursive;
      font-weight: 400; }
  [data-view~='presse'] .section-more .item {
    margin-bottom: 40px; }
    [data-view~='presse'] .section-more .item .content-box {
      border-top: 1px solid black;
      border-bottom: 1px solid black;
      width: 100%;
      height: 80px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      text-align: center;
      color: black;
      font-weight: 700;
      line-height: 1rem; }
      [data-view~='presse'] .section-more .item .content-box span {
        background-image: url("../images/next.png");
        background-size: contain;
        background-repeat: no-repeat;
        height: 20px;
        width: 20px;
        position: absolute;
        top: 50%;
        right: 15px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
    [data-view~='presse'] .section-more .item:hover .content-box {
      border-color: #f23939;
      color: #f23939; }
