
@font-face {
 font-family: "SourceSerif4_Regular";
 src: url("../fonts/SourceSerif4_Regular.woff2") format("woff2"),
       url("../fonts/SourceSerif4_Regular.woff") format("woff");
        font-weight: normal !important;
}

@font-face {
 font-family: "SourceSerif4_Italic";
 src: url("../fonts/SourceSerif4_Italic.woff") format("woff"),
      url("../fonts/SourceSerif4_Italic.woff2") format("woff2");
        font-weight: normal !important;
}


@font-face {
 font-family: "SourceSerif4_BlackItalic";
 src: url("../fonts/SourceSerif4_18pt-BlackItalic.woff2") format("wof2"),
      url("../fonts/SourceSerif4_18pt-BlackItalic.woff") format("woff");
        font-weight: normal !important;
}



@font-face {
 font-family: "SourceSerif4_Black";
 src: url("../fonts/SourceSerif4_36pt-Black.woff2") format("wof2"),
      url("../fonts/SourceSerif4_36pt-Black.woff") format("woff");
        font-weight: normal !important;
}

@font-face {
 font-family: "Terminal-Black";
 src: url("../fonts/Terminal-Black.woff") format("woff");
        font-weight: normal !important;
}

:root {
  --color-black: #000;
  --color-red: #FF1D00;
  --color-white: #fdf7eb;
  --font-serif: "SourceSerif4_Regular", serif;
  --font-serif-italic: "SourceSerif4_Italic", serif;
  --font-serif-black: "SourceSerif4_Black", serif;
  --font-serif-blackitalic: "SourceSerif4_BlackItalic", serif;
  --font-terminal: "Terminal-Black", sans-serif;
}


*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  min-height: 0;
  min-width: 0;
}

html, body {
  font-size: 12px;
  height: 100%; 
  font-family: var(--font-serif), serif ;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  background-color: var(--color-red);
  font-weight: normal !important;
}

body {
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  font-weight: normal !important;
  font-size: 1em;
}

.text p{
  margin-bottom: 1em;
}

img {
  width: 100%;
}

li {
  list-style: none;

}
a {
  text-decoration: none;
  opacity: 1;
  color: black;
}

strong{
  font-weight: normal !important;
}

em{
  font-family: var(--font-serif-italic);
  font-style: normal !important;
}

.main p{
	margin-bottom: 1em
}

/*----------------------------------------------- GRID */

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
}

.grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1%;
}

.col-1 {grid-column-end: span 1;}
.col-2 {grid-column-end: span 2;}
.col-3 {grid-column-end: span 3;}
.col-4 {grid-column-end: span 4;}
.col-5 {grid-column-end: span 5;}
.col-6 {grid-column-end: span 6;}
.col-7 {grid-column-end: span 7;}
.col-8 {grid-column-end: span 8;}
.col-9 {grid-column-end: span 9;}
.col-10 {grid-column-end: span 10;}
.col-11 {grid-column-end: span 11;}
.col-12 {grid-column-end: span 12;}

.off-1{grid-column-start: 2;}
.off-2{grid-column-start: 3;}
.off-3{grid-column-start: 4;}
.off-4{grid-column-start: 5;}
.off-5{grid-column-start: 6;}
.off-6{grid-column-start: 7;}
.off-7{grid-column-start: 8;}
.off-8{grid-column-start: 9;}
.off-9{grid-column-start: 10;}
.off-10{grid-column-start: 11;}
.off-11{grid-column-start: 12;}
.off-12{grid-column-start: 13;}


/*----------------------------------------------- HEADER */





.header{
  height: 4.5em;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: contrast(1.2);
}


.logo-site{
  height: 4.5em;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  width: 20%;
  padding-left: 2em;
}



.menu{
  position: fixed;
  top: 0;
  right: 0;  
  width: 50%;
  height: 4.5em;
  display: flex;
  align-items: center;
}

.menu div{
  flex: auto;
  text-align: center;
  position: relative;
  transition-duration: .4s;
  height: 100%;
  display: flex;
  cursor: initial;
  align-items: center;
}

.menu div:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black; 
    transform: translateY(-100%); 
    transition: transform .5s ease; 
}

  .menu div:hover::before {
    transform: translateY(-90%); 
    transition: transform 0.5s ease; 
  }

.menu a{
  width: 100%;
  padding-right: .5em;
  padding-left: .5em;
  font-size: 2em;
  text-align: center;
  font-family: var(--font-serif-black);
}


.selected{
  background-color: black;
  
}

.selected a{
  color: white !important;
}

.member a{
  font-family: var(--font-serif);
}

/*----------------------------------------------- MAIN */

.main a{
  margin-left: 0px;
  transition-duration: .4s;
}

.main a:hover{
  margin-left: 20px;
  transition-duration: .2s; 
}

.texture{
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: contrast(1.2);
  z-index: -2;
}


.slick-slider .slick-slide{
  cursor: pointer;
}

.main{
  margin-top: 4.5em;
  min-height: 100%;
  position: relative;
}

.main h1{
  width: 100%;
  text-align: left;
  padding-left: 1em;
  font-family: var(--font-serif-black);
  font-size: 2em;
  color: black;
  background-color: var(--color-white);
  border-top: 5px solid black;
  border-bottom: 5px solid black;
  padding-top: .5em;
  padding-bottom: .5em;
  position: sticky;
  top: 0;
  z-index: 25;
}

.main section{
  font-size: 2em;
  padding-top: 2em;
  padding-bottom: 2em;
  padding-left: 1em;
  padding-right: 1em;
  background-size: cover;
  background-repeat: no-repeat;
  transition-duration: 1s;
  width: 100%;
  height: auto;
  background-color: var(--color-white) !important;
  z-index: 20;

  overflow: hidden;
  position: relative;
}

.main section:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black; 
    transform: translateY(0); 
    transition: transform 1s ease; 
}

  .main section:hover::before {
    transform: translateY(100%); 
    transition: transform 0.5s ease; 
  }

h1:hover ~ section:before {
  transform: translateY(100%);
}


  .header:hover ~ .main section:before {
    transform: translateY(100%); 
  }

.main h2{
  text-transform: uppercase;
  font-family: var(--font-terminal);
  margin-right: .2em;
}

.main h4{
  font-family: var(--font-serif-blackitalic);
}

h5{
  font-family: var(--font-serif-italic);
}

.moreinfo{
  font-size: .6em;
  margin-top: 2em;
  display: none;
  cursor: initial !important;
  padding-right: 1em;
}

.interventions div:hover{
  cursor: pointer;
}

.performers{
  font-family: var(--font-serif-italic);
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.idpic{
  width: 7vw; 
}

