/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/*
	Theme Name: FlorenceMinder
	Description: FlorenceMinder based on HTML5 Blank WordPress Theme
	Version: 1.0
	Author: Emmanuel Lemal & Sébastien Monnoye
	Author URI: 
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/* ----------------------------------*\

Fonts import

/* ----------------------------------*/

@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono:200,200i,400,400i,500,500i,600,600i&display=swap');
@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans:400,400i,500,500i,700,700i&display=swap');
@import url('https://fonts.googleapis.com/css?family=DM+Sans:700,700i&display=swap');

/* ----------------------------------*\

Theme variables

/* ----------------------------------*/

:root {
    --text-gray: #6C6666;
    --light-gray: #A5A5A5;
    --black: #000;
    --white: #fff;
    --colorInvert: #005cf0;
    --heightToRemove: 22em;
    --creditsHeight: 0px;
}









/*------------------------------------*\
    MAIN
\*------------------------------------*/
/* global box-sizing */

html,
body {
    height: 100%;
    margin: 0;
}


.current-menu-item a {
    font-weight: bold;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}


button:focus {
    outline: none;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
    font-size: 100%;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    color: #6C6666;
    line-height: 1.1rem;
    /*background: url(../img/halftone.png) white;*/
    background: white;
}

/* Utilities */
.hide {
    display: none !important;
}

.content-hide {
    opacity: 0.05;
    -webkit-animation: fadeInOut 0.8s ease-out forwards;
    animation: fadeInOut 0.8s ease-out forwards;
}

@-webkit-keyframes fadeInOut {
    0% {
        opacity: 0
    }

    50% {
        opacity: 0.1
    }

    100% {
        opacity: 0.05
    }


}

@keyframes fadeInOut {
    0% {
        opacity: 0
    }

    50% {
        opacity: 0.1
    }

    100% {
        opacity: 0.05
    }


}

.show {
    display: block !important;
}


.alert-banner {
    width: 100%;
    background-color: var(--link-primary-color);
    color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .7rem 2rem 1rem 2rem;
    position: fixed;
    transition: transform 0.3s ease;
    transform-origin: top;
    z-index: 10;
    top: 0;
    left: 0;
}
.alert-content {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    max-width: 80vw;
}
.alert-title {
    font-weight: bold;
    margin: 0;
    font-size: 1.2em;
}
.alert-text {
    margin: 0;
    font-size: 1em;
}
.close-btn {
    background: none;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    color: #333;
    margin-left: auto;
}

/* clear */
.clear:before,
.clear:after {
    content: ' ';
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    *zoom: 1;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

a {
    color: var(--black);
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:hover,
a:focus {
    color: yellow;
}

a:focus {
    outline: 0;

}

a:hover,
a:active {
    outline: 0;
}

input {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out
}


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
/* wrapper */
.wrapper {
    max-width: 1900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    -webkit-transition: opacity 0.1s ease;
    -o-transition: opacity 0.1s ease;
    transition: opacity 0.1s ease;

}
@media only screen and (min-width: 960px) {
    .wrapper{
        padding-inline: 2rem;
    }
    
}

.wrapper.fluid {
    max-width: 100%;
    padding: 0px;
}

/*
    header 
*/

header.page-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    position: -webkit-sticky;

    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
}

#lang-switcher {
    margin: 10px 0 0 0;
    list-style-type: none;
    padding: 0;

}

#lang-switcher li {
    display: none;
}

#lang-switcher a {
    font-family: 'IBM Plex mono', monospace;
    font-size: 0.7em;
    font-weight: 600;
    padding: 5px;
}

.lang-active,
.wpml-ls-current-language a {
    background: var(--black);
    color: var(--white);

}

/* header open cross nav */

.open-nav {
    /*margin-left: auto;*/
    position: relative;
    margin-right: 60px;
    width: 60px;
    height: 60px;
    background-image: url(../img/eye_open-icon.svg);
    background-size: 100%;
    
}

.open-nav:hover {
    /*margin-left: auto;*/
    
    background-image: url(../img/eye_open-move--icon.svg);

}

.barre {
    display: none;
    width: 25px;
    height: 3px;
    background: var(--black);
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

}

.barre:nth-child(2) {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
        transform-origin: center center;

}

#open-cross {
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 16px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    cursor: pointer;
}

#open-cross div {
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

#open-cross:hover div,
#open-cross:focus div {
    -webkit-transform: rotate(360deg) scale(1.2);
    -ms-transform: rotate(360deg) scale(1.2);
        transform: rotate(360deg) scale(1.2);
}

#open-cross::after {
    content: 'menu';
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    position: absolute;
    left: 239%;
    top: 3px;
    font-size: 0.8em;
    font-family: 'IBM Plex Mono', monospace;
}
.whatisee--link{
grid-area: 2 / 2 / 3 / 3;
}
/* logo */

.header--logo{
    margin: 2rem;
    font-size: 1rem;
}
@media only screen and (max-width: 760px) {
    .alert-banner .header--logo{
        display: none;
    }
    .alert-banner{
        padding: .7rem;
    }
    
}

/* nav */
.nav {}

nav#nav-cross {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    /*width:40em;
	height: 40em;*/
    /*background: url("../img/svg/nav-cross.svg") no-repeat center center;*/
    position: relative;
    /*      transform-style: preserve-3d;*/

}

nav#nav-cross ul {
    list-style-type: none;
    padding: 0;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, auto);
    -ms-grid-rows: auto 0px auto 0px auto;
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}



#recherche-nav-link {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1 / 2 / 2 / 3;
    position: relative;
}
.arrow-menu {
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: 23% 128%;
    width: 200px;
    height: 170px;
 
}
.arrow--recherche{
    background-image: url(../img/arrow1--icon.svg);
}
.arrow--next{
    background-image: url(../img/arrow2--icon.svg);
}
.arrow--about{
    background-image: url(../img/arrow3--icon.svg);
}
.arrow--projets{
    background-image: url(../img/arrow4--icon.svg);
}
.arrow-menu:nth-child(8){
    background-position: 33% -32%;
    width: 200px;
    height: 150px;
}

.arrow-menu:nth-child(9) {
    background-position: 13% -32%;
    width: 200px;
    height: 150px;
}
#next-nav-link {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 2 / 3 / 3 / 4;
    position: relative;
}

#about-nav-link {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3 / 2 / 4 / 3;
    position: relative;
}


#projets-nav-link {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2 / 1 / 3 / 2;
    position:relative
}


#croix {

    background:  url(../img/eye_open-icon.svg) no-repeat center center;
    background-size: 25%;
    padding: 2rem;
   /* min-height: 25vh;
    height: 37vh;*/
    width: 100%;
    margin: 14px 0 14px 0;
}
#croix:hover {
background-image: url(../img/eye_open-move--icon.svg);
}



nav#nav-cross li {
    font-family: 'IBM Plex Sans', sans-serif;
    padding-block: 5rem;
    font-weight: 900;
    font-size: 2.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-self: center;

}

/*#recherche-nav-link{
    left: 50%;
  top: -50px;
    height: 55%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
	}


#next-nav-link{
    right: -20%;
    top: 33%;
    min-width: 62%;
    height: 32%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
#next-nav-link a{margin-left: auto;
    padding-left:2rem}
#projets-nav-link{
left: 25%;
    min-width: 50%;
    top: 56%;
    height: 52%;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
     -webkit-box-align: end;
         -ms-flex-align: end;
             align-items: flex-end;
}
#about-nav-link{
	left: -25%; 
	top: 33%;
    min-width: 65%;
    height: 32%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	
}*/
.cross-link {
    outline: none;
    text-decoration: none;
    position: relative;
    z-index: 10;
    display: inline-block;
    font-weight: 900;
    overflow: hidden;
    line-height: 0.75;
    color: #b2b0a9;
}

.cross-link .letter {
    display: inline-block;
    line-height: 1em;
    -webkit-transform: translateY(-400px);
    -ms-transform: translateY(-400px);
        transform: translateY(-400px);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

a.cross-link {
    padding: 10px;
    color: var(--black);

}

/*a.cross-link:hover,
a.cross-link:focus {
    text-shadow:
        1px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
    color: var(--white);
}
*/
li:hover .letter {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
        transform: translateY(0px);
}

/* content pages nav open & animation */
.open-nav.close {
    position: relative;
    top: 0em;
    margin-left: 105px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    -webkit-animation: closemenu 0.3s ease 0.5s forwards;
    animation: closemenu 0.3s ease 0.5s forwards;
    padding: 40px 20px;
    opacity: 0;
    background-image: url(../img/eye_closed-semi--icon.svg);
  
    background-size: 100%;
}

.open-nav.close:hover {
    top: -1em;
    opacity: 1;
    background-image: url(../img/eye_closed-icon.svg);
 
}

.outnav {
    -webkit-animation: closemenu 0.3s ease 0.5s reverse forwards;
    animation: closemenu 0.3s ease 0.5s reverse forwards;
}

@-webkit-keyframes closemenu {
    from {
        opacity: 0;
   
    }

    to {
        opacity: 1;
    
    }

}

@keyframes closemenu {
    from {
        opacity: 0;
    
    }

    to {
        opacity: 1;
   
    }

}

.open-nav.close #open-cross::after {
    content: 'close';
    transform: rotate(90deg);
    top: -27px;
}
.open-nav.close:hover #open-cross::after {
    content: 'close';
    transform: rotate(90deg);
    top: -11px;
}

.open-nav.close #open-cross {
    top: 46px;
}

#menu-overlay {
    display: none;
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 5000000;
    background: rgba(255, 255, 255, 0.9);
}

#next #menu-overlay,
#about #menu-overlay,
#project-detail #menu-overlay {
    background: none;
}

#menu-overlay #menu-container {
    display: none;

}

#menu-overlay.show {

    display: -webkit-box !important;

    display: -ms-flexbox !important;

    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#menu-overlay.show #menu-container {
    display: block;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
        transform: scale(0);
    -webkit-animation: cross-scale 0.7s ease-in-out;
    animation: cross-scale 0.7s ease-in-out;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    will-change: transform;

}

@-webkit-keyframes cross-scale {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    10% {
        -webkit-transform: scale(0) rotateX(-20deg);
        transform: scale(0) rotateX(-20deg)
    }

    40% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }

    50% {
        -webkit-transform: rotateX(-20deg) rotateY(-20deg);
        transform: rotateX(-20deg) rotateY(-20deg)
    }


    80% {
        -webkit-transform: rotateX(20deg) rotateY(10deg);
        transform: rotateX(20deg) rotateY(10deg)
    }

    100% {
        -webkit-transform: scale(1) rotateX(0deg) rotateY(0deg);
        transform: scale(1) rotateX(0deg) rotateY(0deg)
    }

}

@keyframes cross-scale {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    10% {
        -webkit-transform: scale(0) rotateX(-20deg);
        transform: scale(0) rotateX(-20deg)
    }

    40% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }

    50% {
        -webkit-transform: rotateX(-20deg) rotateY(-20deg);
        transform: rotateX(-20deg) rotateY(-20deg)
    }


    80% {
        -webkit-transform: rotateX(20deg) rotateY(10deg);
        transform: rotateX(20deg) rotateY(10deg)
    }

    100% {
        -webkit-transform: scale(1) rotateX(0deg) rotateY(0deg);
        transform: scale(1) rotateX(0deg) rotateY(0deg)
    }

}

#overlay-color {
    display: none;
    background-color: white;
    mix-blend-mode: hue;
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;

}



/*
.cross-link:hover {
	color: #b2b0a9;
}

.cross-link::after {
	content: '';
	position: absolute;
	height: 16px;
	width: 100%;
	top: 50%;
	margin-top: -8px;
	right: 0;
	background: #F9F9F9;
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
	-webkit-transition: -webkit-transform 0.4s;
	transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	transition: transform 0.4s, -webkit-transform 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.cross-link:hover::after {
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

.cross-link::before {
	content: attr(data-letters);
	position: absolute;
	z-index: 2;
	overflow: hidden;
	color: #424242;
	white-space: nowrap;
	width: 0%;
	-webkit-transition: width 0.4s 0.3s;
	transition: width 0.4s 0.3s;
}

.cross-link:hover::before {
	width: 100%;
}
*/


/* sidebar */

/*
-----footer ---------
*/
footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}

.fa-2x {
    font-size: 1.8em !important;
}

.credits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: .5em;
}

#about .credits,
#project-detail .credits {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: .3em;
}
#project-detail .credits {
    margin-top: 1.3em; 
}
.homemade-credit {
    font-size: 0.8em;
    font-family: 'IBM Plex Mono', monospace;
}

.credits--mobile,
.footer--mobile {
    display: none;
}

/* newsletter */
.email-box {
    position: relative;
    width: 20rem;
    font-family: 'IBM Plex Mono', monospace;
}

.email-box_input {
    display: block;
    width: 100%;
    height: 3.4rem;
    border-radius: 8px;
    border: 2px solid #000;
    font-size: 0.8rem;
    padding: 0rem 1rem 1rem;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    color: var(--black);

}

.email-box_input::-webkit-input-placeholder {
    color: var(--black);
}

.email-box_input:-ms-input-placeholder {
    color: var(--black);
}

.email-box_input::-moz-placeholder {
    color: var(--black);
}

.email-box_input::-ms-input-placeholder {
    color: var(--black);
}

.email-box_input::-webkit-input-placeholder {
    color: var(--black);
}

.email-box_input:-ms-input-placeholder {
    color: var(--black);
}

.email-box_input::placeholder {
    color: var(--black);
}

.email-box_input:focus {
    outline: 0;
    background: var(--black);
    color: var(--white);
    font-size: 0.9rem;
    padding: 1rem 1rem 1rem;

}

.email-box_button {
    background-color: rgba(223, 34, 37, 0.1);
    width: 50px;
    z-index: 100;
    opacity: 0;
}

.email-box_button + i,
.fa-paper-plane {
    position: absolute;
    bottom: 16px;
    right: 15px;
    color: black;
    z-index: 1;
    font-size: 24px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.email-box_input:focus + label + .email-box_button {
    color: var(--white);
}

.email-box_button:focus + i,
.email-box_button:hover + i,
.email-box_input:focus + .email-box_button + i {
    color: var(--white);
}

.email-box_button:hover + i,
.email-box_button:focus + i {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
        transform: scale(1.2);
}

.email-box_input + .email-box_button + i,
.email-box_input + .email-box_button + i {
    color: var(--black);
}

.email-box_input:focus + label {
    top: 110%;

}

.email-box label {
    position: absolute;
    left: 1rem;
    top: 50%;
    font-size: 0.7rem;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    color: var(--text-gray);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.email-box_button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: transparent;
    font-size: 2rem;
    position: absolute;
    color: var(--black);
    right: 1.2rem;
    top: 0.3rem;
    padding: 0;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.email-box_input:focus + label + .email-box_button:hover,
.email-box_input:focus + label + .email-box_button:focus {
    color: var(--link-primary-color);
    cursor: pointer;
    top: 0.2rem;
    right: 1rem;
}

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

    .email-box {
        margin-left: -12.5rem;
        width: 25rem;
    }
}

#social-network {
    width: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0 0 0 3rem;

}

#social-network a {
    color: var(--black);
}

#social-network a:hover,
#social-network a:focus {
    color: var(--link-primary-color);
}

#mc_embed_signup div.mce_inline_error {

    margin: 0 0 1em 0;
    padding: 5px 10px;
    background-color: #fff !important;
    font-weight: bold;
    z-index: 1;
    color: var(--link-primary-color) !important;
}

#mc_embed_signup input.mce_inline_error {
    border-color: var(--link-primary-color) !important;
}


#mce-success-response {
    color: #59af10 !important;
    margin: 5px;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

/* -------- HOME ---------------------*/


#home main#menu-container {

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    will-change: transform;
    margin: auto;
    min-height: 75vh;
}

#home .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100vh;
    padding-bottom: 0;

}

/* -------- PROJECTS ---------------------*/
body#projects::before {
    content: "";
    background: white;
    opacity: 0.2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;

}

#projects-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 1rem;

}

#projects-filters::before {
    content: '';
    display: block;
    border-top: .15em solid var(--black);
    height: 1px;
    width: 30px;
    position: absolute;
    top: -10px;

}

#projects-filters {
    position: relative;
    margin: 4em 0 3em 0;
}

#projects-filters,
#projects-filters ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#projects-filters ul {
    list-style-type: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding-left: 10px;
}

#projects-filters ul li {
    margin-right: 1.3em;
}

#projects-filters li .control {
    border: 0;
    border-radius: 0.25rem;
    background: none;
    color: var(--black);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

}

#projects-filters li:hover .control,
#projects-filters li:focus .control,
#projects-filters li .mixitup-control-active {
    border: 0;
    border-radius: 0rem;
    background: var(--black);
    color: var(--white);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    padding: 2px 10px;

}

#projects footer,
#next footer {
    margin-top: auto;
}

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

#projects #page-content {
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

#projects #page-content.loaded {
    opacity: 1;
}

.grid {
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    /* justify-content: space-between;*/
    /* max-width: 85%; */
    min-width: 1200px;


}

.grid.mixitup-ready {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

}

.grid-col {
    width: calc(25% - 2em);
    margin: 0px 2em 2em 0;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    /*width: 24%;
    margin: 0 0 3em 0;*/


}


.grid::after {
    content: "";
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}


.tilter__deco--lines {
    stroke: var(--black);

}

/* -------- PROJECT-DETAIL ---------------------*/
#project-detail {
    background-image: none;
}

#project-detail-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

#project-detail-container header.page-head {
    margin-left: -2em;
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    min-height: 50px;
    z-index: 5;
    background: var(--white);
    width: 100%
}

#project-detail-container header.page-head::before {
    border: none;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 100%);
    height: 80px;
    width: 120%;
    display: block;
    content: '';
    position: absolute;
    top: 45px;
    mix-blend-mode: hue;

    left: -20%;



}

.project-content {
    height: 100vh;

}

.left-col {
    max-height: 100vh;
    padding-left: 3em;
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.right-col {
    background: var(--black);
    width: 55%;
    position: relative;
}

.project-content.right-col {
    position: fixed;
    right: 0;
    z-index: 10;
}

.project-content.right-col.staticPos {
    position: static;
}

.txt-content {
    padding-right: 7em;
    position: relative;
    bottom: 1em;
    top: 0;
    /*left: 1em;*/
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.txt-content li{
   
        line-height: 1.4em;
        font-size: 1.1em;
        margin-bottom: .3rem;
}
hr.shadow {
    border: none;
    position: relative;
    top: -22px;
}

.shadow::after {
    border: none;
    background-image: url(../img/halftone.png);
    height: 90px;
    width: 150%;
    display: block;
    content: '';
    position: absolute;
    top: -57px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    z-index: 0;
    left: -20%;



}

.shadow::before {
    border: none;
    background-image: url(../img/halftone.png);
    -webkit-box-shadow: inset 0px 0px 0px rgba(255, 255, 255, 1), 0 -20px 40px -20px rgba(255, 255, 255, 1), 0 -52px 20px 30px rgba(255, 255, 255, 1);
    box-shadow: inset 0px 0px 0px rgba(255, 255, 255, 1), 0 -20px 40px -20px rgba(255, 255, 255, 1), 0 -52px 20px 30px rgba(255, 255, 255, 1);
    height: 30px;
    width: 100%;
    display: block;
    content: '';
    position: absolute;
    top: -62px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    z-index: 0;

}



.scroll-text {
    /*position: relative*/
    /* height: calc(100vh - var(--heightToRemove));*/
    /*overflow-y: scroll;*/
    padding-top: 35px;
    /*
    min-height: 75vh;
    min-height: calc(80vh - 150px);
    min-height: -webkit-calc(80vh - 150px);
    */
    /* margin-bottom: 1em;*/


}

#project-detail footer {

    /* position: fixed;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* bottom: 0px;
    left: 4em;*/
    width: calc (45% - 4em);
    padding: 0;
    background: var(--white);
    margin-top: 2em;
}

#project-detail .footer--mobile {
    display: none;
}

.footer-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 570px;

}

/*#project-detail footer::before {

    background-position: -80px 1400px;
    -webkit-box-shadow: inset 0px 10px 12px rgba(255, 255, 255, 1), 0 -12px 40px 20px rgba(255, 255, 255, 1), 0 -42px 80px 10px rgba(255, 255, 255, 1);
    box-shadow: inset 0px 10px 12px rgba(255, 255, 255, 1), 0 -12px 40px 20px rgba(255, 255, 255, 1), 0 -42px 80px 10px rgba(255, 255, 255, 1);
    height: 100px;
    width: 150%;
    display: block;
    content: '';
    position: absolute;

}*/

/* Box Crédits */
.credits-box {
    background: var(--black);
    border-bottom: 0;
    height: 100vh;
    width: 56%;
    position: absolute;
    left: 44%;

    padding: 7.8em 4em 2em 4.7em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    color: var(--white);
    z-index: 10001;
    -webkit-transition: height 0.3s ease, top 0.3s ease, width 0.3s 0.3s ease;
    -o-transition: height 0.3s ease, top 0.3s ease, width 0.3s 0.3s ease;
    transition: height 0.3s ease, top 0.3s ease, width 0.3s 0.3s ease;
    top: calc(100% - 18em);

}

.autoHeight {
    height: var(--creditsHeight);
    top: 0;
}

#about .credits-box.hidden {
    top: calc(100% - 18em);
    -webkit-transition: top .3s ease, height 0.4s ease, width 0.3s 0.3s ease;
    -o-transition: top .3s ease, height 0.4s ease, width 0.3s 0.3s ease;
    transition: top .3s ease, height 0.4s ease, width 0.3s 0.3s ease;
}

#about .credits-box {
    top: 0;
    background: var(--link-primary-color);
    -webkit-transition: top .4s ease, height 0.2s ease, width 0.3s 0.3s ease;
    -o-transition: top .4s ease, height 0.2s ease, width 0.3s 0.3s ease;
    transition: top .4s ease, height 0.2s ease, width 0.3s 0.3s ease;
}

.credits-trigger {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    position: absolute;
    top: 11em;
    left: -2em;
    padding: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    cursor: pointer;

}

.credits-trigger svg {
    height: 1.8em;
    fill: black;
    stroke: black;
    margin: -0.3em 0 0 2em;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
        transform: rotate(90deg)
}

#arrow .st0,
#arrow .st1 {
    stroke: black !important;
}

.open-credits #closeCross {
    stroke: white;
}

.credits-box:not(.hidden) .credits-trigger svg {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
        transform: rotate(-90deg)
}

.credits-box:not(.hidden):hover h2,
.credits-box:not(.hidden):focus h2 {

    color: rgba(255, 255, 255, 1);

}

.credits-box.hidden:hover svg.svg-cell,
.credits-box.hidden:hover svg.svg-cell1,
.credits-box.hidden:focus svg.svg-cell,
.credits-box.hidden:hover svg.svg-cell1 {
    -webkit-animation: shake-vertical 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite;
    animation: shake-vertical 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite;

}

.credits-box.hidden {
    background: var(--white);
    border: 2px solid var(--black);
    border-bottom: 0;
    width: 1rem;
    height: 18em;
    left: -3em;
    padding: 4em 3em;
    -webkit-transition: height 0.3s 0.4s ease, top 0.3s 0.4s ease, width 0.4s ease, background 0.7s ease, left .2s ease;
    -o-transition: height 0.3s 0.4s ease, top 0.3s 0.4s ease, width 0.4s ease, background 0.7s ease, left .2s ease;
    transition: height 0.3s 0.4s ease, top 0.3s 0.4s ease, width 0.4s ease, background 0.7s ease, left .2s ease;

}

#about .credits-box.hidden {
    background: var(--link-primary-color);
}

.credits-box.hidden.anim {
    -webkit-animation: slideUp 0.6s 0.7s ease forwards;
    animation: slideUp 0.6s 0.7s ease forwards;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
        transform: translateY(100%)
}

.credits-box.hidden .credits-trigger {
    top: 8em;
    cursor: pointer;
}

.credits-box.hidden .credits-content {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
        transform: scale(0);
    position: absolute;
    opacity: 0;
    top: -10rem;
    -webkit-transition: opacity 0.1s ease, top 0.1s ease-in-out, transform 0s 0.1s;
    -webkit-transition: opacity 0.1s ease, top 0.1s ease-in-out, -webkit-transform 0s 0.1s;
    transition: opacity 0.1s ease, top 0.1s ease-in-out, -webkit-transform 0s 0.1s;
    -o-transition: opacity 0.1s ease, top 0.1s ease-in-out, transform 0s 0.1s;
    transition: opacity 0.1s ease, top 0.1s ease-in-out, transform 0s 0.1s;
    transition: opacity 0.1s ease, top 0.1s ease-in-out, transform 0s 0.1s, -webkit-transform 0s 0.1s;
    left: 5.5em
}

.credits-box:not(.hidden) .credits-content {

    opacity: 1;
    top: 0;
    -webkit-transition: top 0.4s 0.4s ease-in-out, opacity 0.8s 0.4s ease-in-out;
    -o-transition: top 0.4s 0.4s ease-in-out, opacity 0.8s 0.4s ease-in-out;
    transition: top 0.4s 0.4s ease-in-out, opacity 0.8s 0.4s ease-in-out;
    position: relative;
    margin: 0 0 0 1em;
    max-width: 70%;

}

.credits-box.hidden h2 {

    background: -webkit-gradient(linear, left top, right top, color-stop(20%, #000), color-stop(40%, var(--link-primary-color)), color-stop(60%, var(--link-primary-color)), color-stop(80%, #000));

    background: -o-linear-gradient(left, #000 20%, var(--link-primary-color) 40%, var(--link-primary-color) 60%, #000 80%);

    background: linear-gradient(to right, #000 20%, var(--link-primary-color) 40%, var(--link-primary-color) 60%, #000 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: text;
    -webkit-animation: shine 4s linear infinite;
    animation: shine 4s linear infinite;
    color: rgba(0, 0, 0, 1);
    background-size: 200% 200%;
}

.credits-box:hover h2,
.credits-box:focus h2 {

    color: rgba(255, 255, 255, 0);

}

.credits-trigger h2 span,
.close-modal h2 span,
.readMore span {
    display: block;
    -webkit-transition: margin-top 0.2s ease;
    -o-transition: margin-top 0.2s ease;
    transition: margin-top 0.2s ease;
}

.credits-box.hidden h2 span.closeTxt,
.credits-box.hidden .readMore span.closeTxt {
    display: none;

}

.credits-trigger h2 span.closeTxt,
.close-modal h2 span.closeTxt {
    display: block;
    margin-top: 10px;
    text-align: right;


}

.hidden .st1,
.hidden .st0 {
    stroke: var(--black) !important;
}

#arrow2 .st1 {
    -webkit-animation: fermer 0.3s ease reverse forwards;
    animation: fermer 0.3s ease reverse forwards;

}

#arrow2 .st1.rArrow {

    -webkit-animation: fermer2 0.3s ease reverse forwards;

    animation: fermer2 0.3s ease reverse forwards;
}

#arrow2 .st0.hideline {
    -webkit-animation: fermer3 0.2s 0.8s ease forwards;
    animation: fermer3 0.2s 0.8s ease forwards;

}

.st0.hideline.none {
    display: none;
}

#arrow2 .close {
    -webkit-transform: scale(2) translate(0em, 0.02em);
        -ms-transform: scale(2) translate(0em, 0.02em);
            transform: scale(2) translate(0em, 0.02em);
    stroke-width: 1px;
}

#arrow2 .rArrow.close {
    -webkit-transform: scale(2) translate(-0.82em, 0.02em);
        -ms-transform: scale(2) translate(-0.82em, 0.02em);
            transform: scale(2) translate(-0.82em, 0.02em);
}


#arrow2 .close-cross-anim {
    -webkit-animation: fermer 0.3s ease forwards;
    animation: fermer 0.3s ease forwards;
    stroke-width: 2px;
}


#arrow2 .close-cross-anim.rArrow {

    -webkit-animation: fermer2 0.3s ease forwards;

    animation: fermer2 0.3s ease forwards;
}

/*.credits-box:not(.hidden):hover svg{
        -webkit-animation: none;
                animation: none;
        
      
}*/


@-webkit-keyframes fermer {
    to {
        -webkit-transform: scale(2);
        transform: scale(2);
        stroke-width: 1px;
    }

}

@keyframes fermer {
    to {
        -webkit-transform: scale(2);
        transform: scale(2);
        stroke-width: 1px;
    }

}

@-webkit-keyframes fermer2 {
    to {
        -webkit-transform: scale(2) translate(-0.82em, 0.02em);
        transform: scale(2) translate(-0.82em, 0.02em);
        stroke-width: 1px;
    }

}

@keyframes fermer2 {
    to {
        -webkit-transform: scale(2) translate(-0.82em, 0.02em);
        transform: scale(2) translate(-0.82em, 0.02em);
        stroke-width: 1px;
    }

}

@-webkit-keyframes fermer3 {
    to {
        opacity: 0;
    }

}

@keyframes fermer3 {
    to {
        opacity: 0;
    }

}

@-webkit-keyframes reverseArrow {
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes reverseArrow {
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Box Downloads */

aside#downloads {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10000;
    background: var(--white);
    padding: 1.5em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}

aside#downloads,
aside#downloads ul,
aside#downloads li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

}

aside#downloads ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    font-family: 'IBM Plex Mono', sans-serif;
    font-weight: 100;
}

aside#downloads li {
    width: 10em;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;

}

aside#downloads li img {
    min-height: 0;
    min-width: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 36px;
}

aside#downloads li a {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-left: 1em;
    font-size: 0.9em
}

/* -------- AGENDA - NEXT -------------*/
#agenda #menu-overlay {
    background: rgba(255, 255, 255, 0.3)
}

.calendar-entry {
    margin: 4em 0;


}

.calendar.past .calendar-entry {
    opacity: .3!important;
}

.entry-infos{
    display: grid;
    grid-template-columns: 0.3fr .7fr;
    align-items: center;
    }
    .calendar h5.date {
        font-family: 'IBM Plex Sans', monospace;
        font-size: 1.2em;
        margin: 0;
        color: var(--link-primary-color);
        font-weight: 100;
        margin-right: 1.5rem;
        line-height: 1.25em;
    }
    
    .calendar h2.entry-title,
    .calendar h2.entry-title a {
        font-family: 'DM Sans', sans-serif;
        font-size: 1.3em;
        line-height: 1.25em;
        margin: 0;
        font-weight: 900;
    }


.venue-link {
    margin-top: 0;
}

.venue-link a {
    color: var(--text-gray);
    font-size: .95em;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
}

.venue-link a:before {
    content: '\21E5';
    position: absolute;
    left: 115%;
    top: 0;
    -webkit-transition: left 0.2s ease-out;
    -o-transition: left 0.2s ease-out;
    transition: left 0.2s ease-out
}

.venue-link a:hover:before,
.venue-link a:focus:before {
    content: '\21E5';
    position: absolute;
    left: 105%;
}


#next-P {
    position: absolute;
    width: 12em;
    height: 12em;
    right: 3em;

}

.next-P-Z {
    z-index: 20000;
}

.newP-container {
    position: relative;
    padding: 1px;
    width: 85%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}

.coverOut .newP-container,
.openProject .newP-container {
    opacity: 0;
}

.new-project {
    background-color: var(--link-primary-color);
    color: rgba(255, 255, 255, 1);
    background-size: 1000% 200%;
    width: 12em;
    height: 12em;
    font-family: 'DM Sans', sans-serif;
    position: fixed;
    right: 10em;
    border-radius: 6em;
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;


}

.new-project::before {
    display: block;
    content: '';
    background: yellow;
    width: 12em;
    height: 12em;
    position: absolute;
    right: 0em;
    top: 4em;
    border-radius: 180vh;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
        transform: scale(0);
}

.new-project:hover,
.new-project:focus {
    cursor: pointer;
    background: black !important;

}

.new-project.coverOut:hover,
.new-project.coverOut:focus {
    cursor: default;
    background: yellow !important;

}

.new-project svg {
    width: 10%;
    stroke-width: 2px;
    position: absolute;
    bottom: 0.3em;
    left: 4.7em;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    stroke: var(--black);
}

.new-project h3,
.new-project h4 {
    /*transform: rotate(180deg);*/
    color: var(--black);
    text-align: center;
    /*padding: 1.4em 0;*/
}

.new-project h3 {
    text-transform: uppercase;
    position: relative;
    /*margin:0 0.3em 0 5em;*/

}

.new-project h3::after {
    content: '';
    display: block;
    width: 30%;
    height: 2px;
    background: var(--black);
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
    position: absolute;
    left: 35%;
    bottom: -0.6em;

}

.new-project h4 {
    margin: 0;
    font-weight: 300;

}

.new-project:hover h3,
.new-project:hover h4,
.new-project:focus h3,
.new-project:focus h4 {
    color: var(--white);
}

.new-project:hover svg,
.new-project:focus svg {
    stroke: var(--white);
}

#next-project {
    background: var(--white);
    position: absolute;
    top: -3000%;
    height: 0;
    z-index: 10000;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in;
    -o-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in;


}

#next-project.yellowCover::before {
    content: '';
    background: yellow;
    width: 100%;
    height: 100;
    display: block;
    -webkit-animation: fadeColorIn 0.3s ease forwards;
    animation: fadeColorIn 0.3s ease forwards;
    opacity: 0;
}

@-webkit-keyframes fadeColorIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeColorIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/*
#next-project .left-col, #next-project .right-col, .nextP-close, .open-credits, #downloads {
    transition: all ease 0.5s;
    transform: translateY(300%)
}*/
#next-project .left-col,
#next-project .right-col,
.nextP-close,
#next-project #downloads {
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    -webkit-transform: translateY(300%);
    -ms-transform: translateY(300%);
        transform: translateY(300%)
}

#next-project.in {
    height: 100vh;
    top: 0;
    overflow-y: scroll;
    opacity: 1;
}

#next-project .left-col {
    -webkit-transition-delay: -0.2s;
    -o-transition-delay: -0.2s;
       transition-delay: -0.2s
}

#next-project .right-col {
    -webkit-transition-delay: -0.1s;
    -o-transition-delay: -0.1s;
       transition-delay: -0.1s
}

#next-project .nextP-close {
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
       transition-delay: 0.4s;
    -webkit-transform: translateX(300%) rotate(-90deg);
    -ms-transform: translateX(300%) rotate(-90deg);
        transform: translateX(300%) rotate(-90deg)
}

#next-project .open-credits {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
       transition-delay: 0.3s;
    -webkit-transform: translateY(300%) rotate(-90deg);
    -ms-transform: translateY(300%) rotate(-90deg);
        transform: translateY(300%) rotate(-90deg)
}

#next-project #downloads {
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
       transition-delay: 0.1s;
    -webkit-transform: translateX(-300%);
    -ms-transform: translateX(-300%);
        transform: translateX(-300%)
}

#next-project.in .left-col {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0)
}

#next-project.in .right-col {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0)
}

#next-project.in .nextP-close {
    -webkit-transform: translateX(0) rotate(-90deg);
    -ms-transform: translateX(0) rotate(-90deg);
        transform: translateX(0) rotate(-90deg)
}

#next-project.in .nextP-close h2 {
    display: none;
}

#next-project.in .open-credits {
    -webkit-transform: translateY(0) rotate(-90deg);
    -ms-transform: translateY(0) rotate(-90deg);
        transform: translateY(0) rotate(-90deg)
}

#next-project.in #downloads {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
        transform: translateX(0)
}


#next-project.out .left-col {
    -webkit-animation: outY 0.3s ease forwards;
    animation: outY 0.3s ease forwards;

}

#next-project.out .right-col {
    -webkit-animation: outY 0.3s ease forwards;
    animation: outY 0.3s ease forwards;

}

#next-project.out .nextP-close {
    -webkit-animation: outXR 0.2s ease forwards;
    animation: outXR 0.2s ease forwards;

}

#next-project.out .open-credits {
    -webkit-animation: outXY 0.3s 0.15s ease forwards;
    animation: outXY 0.3s 0.15s ease forwards;

}

#next-project.out #downloads {
    -webkit-animation: outX 0.3s 0.1s ease forwards;
    animation: outX 0.3s 0.1s ease forwards;

}

@-webkit-keyframes outY {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        -webkit-transform: translateY(300%);
        transform: translateY(300%)
    }

}

@keyframes outY {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        -webkit-transform: translateY(300%);
        transform: translateY(300%)
    }

}

@-webkit-keyframes outXR {
    from {
        -webkit-transform: translateX(0) rotate(-90deg);
        transform: translateX(0) rotate(-90deg)
    }

    to {
        -webkit-transform: translateY(300%) rotate(-90deg);
        transform: translateY(300%) rotate(-90deg)
    }
}

@keyframes outXR {
    from {
        -webkit-transform: translateX(0) rotate(-90deg);
        transform: translateX(0) rotate(-90deg)
    }

    to {
        -webkit-transform: translateY(300%) rotate(-90deg);
        transform: translateY(300%) rotate(-90deg)
    }
}

@-webkit-keyframes outXY {
    from {
        -webkit-transform: translateY(0) rotate(-90deg);
        transform: translateY(0) rotate(-90deg)
    }

    to {
        -webkit-transform: translateY(300%) rotate(-90deg);
        transform: translateY(300%) rotate(-90deg)
    }

}

@keyframes outXY {
    from {
        -webkit-transform: translateY(0) rotate(-90deg);
        transform: translateY(0) rotate(-90deg)
    }

    to {
        -webkit-transform: translateY(300%) rotate(-90deg);
        transform: translateY(300%) rotate(-90deg)
    }

}

@-webkit-keyframes outX {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        -webkit-transform: translateX(-300%);
        transform: translateX(-300%)
    }
}

@keyframes outX {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        -webkit-transform: translateX(-300%);
        transform: translateX(-300%)
    }
}

@-webkit-keyframes scaleCover {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        position: absolute;
        -webkit-transform-origin: top right;
        transform-origin: top right;
    }

    50% {
        right: -40em;
        top: -30em;
        position: absolute;
    }

    80% {
        -webkit-transform: scale(12);
        transform: scale(12);
        background: yellow;
        position: absolute;
    }

    100% {
        -webkit-transform: scale(15);
        transform: scale(15);
        /*background:white;*/

        position: absolute;
        right: -50em;
        top: -40em;
    }

}

@keyframes scaleCover {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        position: absolute;
        -webkit-transform-origin: top right;
        transform-origin: top right;
    }

    50% {
        right: -40em;
        top: -30em;
        position: absolute;
    }

    80% {
        -webkit-transform: scale(12);
        transform: scale(12);
        background: yellow;
        position: absolute;
    }

    100% {
        -webkit-transform: scale(15);
        transform: scale(15);
        /*background:white;*/

        position: absolute;
        right: -50em;
        top: -40em;
    }

}

@-webkit-keyframes scaleCoverOut {
    0% {
        opacity: 0;
        background: white;
        width: 100vh;
        height: 240vh;
        position: absolute;
        left: -80vw;
        top: -50vh;
        z-index: 10000000000;
        -webkit-transform: scale(13);
        transform: scale(13);
        border-radius: 0
    }

    10% {
        background: white;
        -webkit-transform: scale(13);
        transform: scale(13);
        width: 150vw;
        height: 240vh;
        right: 0em;
        top: -70vh;
        position: absolute;
        border-radius: 0;
        z-index: 10000000000;
    }

    30% {
        background: yellow;
        opacity: 1;
    }

    40% {
        background: yellow;
        -webkit-transform: scale(2);
        transform: scale(2);
        width: 100vw;
        height: 100vh;
        right: 0em;
        top: -100vh;
        position: absolute;
        border-radius: 0;
        z-index: 10000000000;
    }

    90% {
        -webkit-transform: scale(1);
        transform: scale(1);
        position: absolute;
        background: yellow;
        border-radius: 12em;
        z-index: 10000000000;

    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        background: yellow;
        z-index: 10000000000;

    }

}

@keyframes scaleCoverOut {
    0% {
        opacity: 0;
        background: white;
        width: 100vh;
        height: 240vh;
        position: absolute;
        left: -80vw;
        top: -50vh;
        z-index: 10000000000;
        -webkit-transform: scale(13);
        transform: scale(13);
        border-radius: 0
    }

    10% {
        background: white;
        -webkit-transform: scale(13);
        transform: scale(13);
        width: 150vw;
        height: 240vh;
        right: 0em;
        top: -70vh;
        position: absolute;
        border-radius: 0;
        z-index: 10000000000;
    }

    30% {
        background: yellow;
        opacity: 1;
    }

    40% {
        background: yellow;
        -webkit-transform: scale(5);
        transform: scale(5);
        width: 100vw;
        height: 200vh;
        right: 0em;
        top: -100vh;
        position: absolute;
        border-radius: 0;
        z-index: 10000000000;
        border-radius: 50em;
    }

    90% {
        -webkit-transform: scale(1);
        transform: scale(1);
        position: absolute;
        background: yellow;

        z-index: 10000000000;

    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        background: yellow;
        z-index: 10000000000;

    }

}


/*#next-project #project-detail-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

#next-project .project-content.right-col {
    left: 0;
}

#next-project .left-col {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
*/

#next-project .txt-content {
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}

#next-project .txt-content,
#next-project .txt-content .lead-text,
#next-project .txt-content h1 {
    color: var(--black)
}

/*
#next-project .credits-box {
    left: auto;
    right: -5%
}

#next-project aside#downloads {
    left: 0;
    right: auto;
}

#next-project .credits-trigger {
    left: auto;
    right: -2em;
}

#next-project .nextP-close {
    position: fixed;
    right: -19px;
    top: 1em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#next-project .bx-controls {
    left: 2%;
}

#next-project .slider div,
#next-project .cover-img div {
    width: 100% !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
*/
.bx-wrapper .bx-controls-direction a {
    text-indent: 0;
    color: transparent;
}

.openProject {
    top: 0 !important;

    z-index: 10;
    -webkit-animation: next-project-anim 1s forwards ease;
    animation: next-project-anim 1s forwards ease;


}

.openProject::before {
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
        transform-origin: top right;
    -webkit-animation: scaleCover 0.4s ease forwards;
    animation: scaleCover 0.4s ease forwards
}

.coverOut {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
        transform-origin: top left;
    -webkit-animation: scaleCoverOut 0.7s ease forwards;
    animation: scaleCoverOut 0.7s ease forwards
}

.closedProject {
    top: 0 !important;
    z-index: 10;
    -webkit-animation: next-project-anim 5s reverse forwards ease;
    animation: next-project-anim 5s reverse forwards ease;


}

.modal-open {
    height: 100%;
    overflow-y: hidden;

}

.credits-box:not(.hidden) .credits-trigger h2 span.distribTitle,
    {
    margin-top: -25px;
}

.credits-box:not(.hidden) .credits-trigger:hover h2 span.distribTitle,
.credits-box:not(.hidden) .credits-trigger:focus h2 span.distribTitle,
    {
    margin-top: 0px;
}

.nextP-close:hover h2 span.distribTitle,
.close-modal:hover h2 span.distribTitle,
.nextP-close:focus h2 span.distribTitle,
.close-modal:focus h2 span.distribTitle {
    margin-top: -25px;
}

#next-project .nextP-close h2 {
    color: var(--white);
    margin-right: 2em;
}

.nextP-close h2 span.distribTitle,
.close-modal h2 span.distribTitle {
    color: var(--link-primary-color);
}

.nextP-close:hover svg#close-cross,
.nextP-close:focus svg#close-cross {
    -webkit-transform: translateY(27px);
    -ms-transform: translateY(27px);
        transform: translateY(27px);
}

.open-credits:hover svg#close-cross,
.open-credits:focus svg#close-cross {
    -webkit-transform: translateY(-27px);
    -ms-transform: translateY(-27px);
        transform: translateY(-27px);
}

.nextP-close svg {
    height: 2.8em;
}

/* -------- RECHERCHE -------------*/
#recherche .inner-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3em;
}



.recherche-intro {
    padding: 0.5em 0 0 0;

}

.recherche-intro p {
    line-height: 1.3em
}

.recherche-intro br {
    margin-bottom: 0.6em;
    content: " ";
    display: block;
}

.recherche-grid {
    position: relative;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: minmax(10em, 17em);
}

.grid-item {
    width: auto;
    height: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;
    /* prevents flicker in chrome */
    will-change: transform, opacity;
    /* prevents flicker in safari */

}

.recherche-intro {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    overflow: hidden;
    max-width: 810px;
}

.recherche-intro li {
    margin-bottom: 1em;
    line-height: 1.3em;
    font-size: 1.1rem;
}

.recherche-intro ul {
    list-style-type: circle;
}

.item-expand {

    position: relative;
    grid-column: auto;
    grid-row: auto;
    z-index: 1000000;
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: 1 / 1;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
}

.intro-open {
    position: absolute;
    width: 100vw;
    height: 100vh !important;

}

/*.grid-item.intro-open{
grid-column: span 4;
  grid-row: span 4;
}*/

/* grid element span classes */
.grid-spanW2 {
    -ms-grid-column-span: 2;
    grid-column: span 2;
}

.grid-spanH2 {
    -ms-grid-row-span: 2;
    grid-row: span 2;
}

.grid-spanW2H2 {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-row-span: 2;
    grid-row: span 2;
}

.filter-grid {
    background: var(--light-gray)
}

.recherche-grid .grid-link {
    background-blend-mode: overlay;
    width: 100%;
    height: auto;
    padding: 50% 3.5em;

}

.recherche-grid .grid-link a {
    display: block;
    height: 100%;

}

.grid-txt-intro .body-text {
    color: var(--black)
}

.recherche-grid a:hover::after,
.recherche-grid a:focus:after {
    display: none
}

.grid-link h3,
.grid-link .link-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    color: var(--black);
    font-size: 2em;
    line-height: 1em;
    mix-blend-mode: overlay;
    display: block;
    margin: 0 0 0.8em 0
}

.recherche-intro .item-content {
    -webkit-transition: width 0.5s 2s ease-in, height 0.5s 5s ease-in;
    -o-transition: width 0.5s 2s ease-in, height 0.5s 5s ease-in;
    transition: width 0.5s 2s ease-in, height 0.5s 5s ease-in;

}


.grid-item .item-content {
    -webkit-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    background: var(--link-primary-color);
    border-right: 2px solid white;
    border-bottom: 2px solid white;
}

.grid-item .item-content:hover,
.grid-item .item-content:focus {
    -webkit-filter: contrast(155%);
    filter: contrast(155%);
}

.grid-item .item-content img {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.grid-item .item-content:hover img,
.grid-item .item-content:focus img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
        transform: scale(1.2);
}

.imgFilterEffect {
    -webkit-filter: hue-rotate(150deg) saturate(50%) !important;
    filter: hue-rotate(150deg) saturate(50%) !important;
}

.grid-txt-intro {
    overflow: hidden;
    padding: 2em;
}

.grid-item article,
.video-cover {
    height: 100%;
    width: 100%;
    position: relative;

}

.fluid-width-video-wrapper iframe {
    left: 1.2em !important;
}

.grid-item article img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    max-height: 100%;
    height: 100%;
    -o-object-position: top center;
    object-position: top center;
}

.author {
    color: var(--white);
    mix-blend-mode: overlay;
    margin: 0.4em 0;
    position: relative
}

.open-content::after {
    content: '';
    position: absolute;
    display: block;
    background-image: url(../img/svg/arrow-right-white.svg);
    background-repeat: no-repeat;
    width: 100px;
    height: 18px;
    top: 110%;
    left: 0%;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.open-content:hover::after {
    content: '';
    position: absolute;
    display: block;
    background-image: url(../img/svg/arrow-right-white.svg);
    background-repeat: no-repeat;
    width: 100px;
    height: 18px;
    top: 110%;
    left: 0%;
}

.grid-item article::after {
    content: '';
    position: absolute;
    top: 31%;
    left: 38%;
    width: 35%;
    height: 35%;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.grid-item article:hover::after,
.grid-item article:focus::after,
.bg-pic:hover::before {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
        transform: scale(0.7);

}

.grid-item article.grid-img:after {
    background: url(../img/svg/eye_white.svg) no-repeat;
    width: 47%;
    left: 28%;
    top: 33%;
}

.grid-item article.grid-video::after,
.bg-pic::before {
    background: url(../img/svg/play_white.svg) no-repeat;
    top: 33%;
}

.grid-item article.grid-sound:after {
    background: url(../img/svg/ear_white.svg) no-repeat;
    left: 40%;
    width: 37%;
    height: 37%
}

.bg-pic::before {
    content: '';
    position: absolute;
    top: calc(50% - 7em);
    left: auto;
    width: 7em;
    height: 7em;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}


.modal {

    -webkit-transform: scale(0);

    -ms-transform: scale(0);

        transform: scale(0);
    width: 0;
    height: 0;
    -webkit-transition: top 0.3s ease, left 0.2s ease, width 0.4s 0.1s ease, height 0.4s 0.1s ease, background 0.1s, -webkit-transform 0.5s 0.3s;
    transition: top 0.3s ease, left 0.2s ease, width 0.4s 0.1s ease, height 0.4s 0.1s ease, background 0.1s, -webkit-transform 0.5s 0.3s;
    -o-transition: top 0.3s ease, left 0.2s ease, width 0.4s 0.1s ease, height 0.4s 0.1s ease, background 0.1s, transform 0.5s 0.3s;
    transition: top 0.3s ease, left 0.2s ease, width 0.4s 0.1s ease, height 0.4s 0.1s ease, background 0.1s, transform 0.5s 0.3s;
    transition: top 0.3s ease, left 0.2s ease, width 0.4s 0.1s ease, height 0.4s 0.1s ease, background 0.1s, transform 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
    position: absolute;


}

.modal-open {
    background: rgb(255, 255, 255) !important;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
        transform: scale(1);
    position: fixed;
    top: 0 !important;
    /* enlever le important pour une position relative */
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    -webkit-filter: invert(0%) !important;
    filter: invert(0%) !important;
    -webkit-transition: top 0.2s 0.3s ease, left .5s 0.3s ease, width .5s 0.2s ease, height 0.5s 0.2s ease, background 0.3s 0.2s ease-in-out, -webkit-transform 0.8s;
    transition: top 0.2s 0.3s ease, left .5s 0.3s ease, width .5s 0.2s ease, height 0.5s 0.2s ease, background 0.3s 0.2s ease-in-out, -webkit-transform 0.8s;
    -o-transition: top 0.2s 0.3s ease, left .5s 0.3s ease, width .5s 0.2s ease, height 0.5s 0.2s ease, background 0.3s 0.2s ease-in-out, transform 0.8s;
    transition: top 0.2s 0.3s ease, left .5s 0.3s ease, width .5s 0.2s ease, height 0.5s 0.2s ease, background 0.3s 0.2s ease-in-out, transform 0.8s;
    transition: top 0.2s 0.3s ease, left .5s 0.3s ease, width .5s 0.2s ease, height 0.5s 0.2s ease, background 0.3s 0.2s ease-in-out, transform 0.8s, -webkit-transform 0.8s;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 10;
}

#recherche .modal .close-modal {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
        transform: scale(0);
    -webkit-transition: all 0.s;
    -o-transition: all 0.s;
    transition: all 0.s;
}

#recherche .modal-open .close-modal {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
        transform: scale(1);
    position: absolute;
    top: 40px;
    right: 200px;
    cursor: pointer;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    width: 2em;
}

#recherche .modal-open .close-modal h2 {
    display: none
}



.modal-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100vh;
    padding: 5em 0;
}

.modal-content-container {
    width: 80%;
    max-width: 800px;
    font-size: 120%;
}

.modal-content-container iframe {
    max-width: 100%;
    width: 100%;
}

#close-Cross {
    stroke: black
}

.pdf-recherche {
    list-style-type: none;
}

.modal-content aside#downloads {
    position: static;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

/* -------- about -------------*/
#about .left-col {
    width: 58%;

}

#about .right-col {
    width: 42%;
    background: var(--white)
}

.left-col .wrapper {
    max-width: 730px;
}

.footer-mobile {
    display: none;
}

.left-col .body-text {
    max-width: 100%
}

.left-col div.body-text {
    margin-bottom: 2em;
}

#about .bx-controls {
    display: none;
}

#about .credits-box {
    width: calc(100% + 2em);
    left: -2em;
    -webkit-transition: top 0.3s ease, height 0.3s ease, width 0.3s ease 0.3s, left 0.6s ease 0.3s;
    -o-transition: top 0.3s ease, height 0.3s ease, width 0.3s ease 0.3s, left 0.6s ease 0.3s;
    transition: top 0.3s ease, height 0.3s ease, width 0.3s ease 0.3s, left 0.6s ease 0.3s;
    background: var(--link-primary-color);
    color: var(--black)
}

#about .credits-box.hidden {
    width: 24rem;
    padding: 1em 2em 2em 2em;
    left: -7em
}

#about .credits-trigger {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
        transform: rotate(0);
    bottom: auto;
    right: 10%;
    left: auto;
    top: 80%;
    font-family: 'IBM Plex Mono';
    font-size: 0.8em;
    text-transform: uppercase;
    z-index: 10;
}

#about .credits-box:not(.hidden) .credits-trigger {
    top: 2%;
}

.readMore,
.closeLink {
    position: relative;
    display: block;
    color: var(--black);
    overflow: hidden;
    margin: 0;
    height: 2.8em;
    padding: 0 0 0 1.5em
}

.readMore:hover,
.readMore:focus {
    color: var(--white)
}

.readMore::before {
    content: '+';
    font-size: 1.3em;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0em;
    color: var(--white);
    -webkit-transition: all 0.3s 0.1s ease;
    -o-transition: all 0.3s 0.1s ease;
    transition: all 0.3s 0.1s ease;
    will-change: transform;

}

.readMore:hover::before,
.readMore:focus::before {
    color: var(--black);
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
        transform: scale(1.5);
    top: -1px;
    left: 2px
}

#about .credits-box:not(.hidden) .readMore {
    padding: 1em 0 1em 2em;
    will-change: transform;
}

#about .credits-box:not(.hidden) .readMore:hover::before,
#about .credits-box:not(.hidden) .readMore:focus::before {
    top: 0px
}

#about .credits-box:not(.hidden) .readMore::before {
    -webkit-transform: rotate(45deg) scale(2) translate(7px, 2px);
    -ms-transform: rotate(45deg) scale(2) translate(7px, 2px);
        transform: rotate(45deg) scale(2) translate(7px, 2px);
    font-weight: 100;

}

#about .credits-box:not(.hidden) .readMore:hover::before,
#about .credits-box:not(.hidden) .readMore:focus::before {
    -webkit-transform: rotate(45deg) scale(4) translate(4px, 0px);
    -ms-transform: rotate(45deg) scale(4) translate(4px, 0px);
        transform: rotate(45deg) scale(4) translate(4px, 0px);
    font-weight: 100;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
        transform-origin: center
}

.credits-box:not(.hidden) .credits-trigger span.distribTitle,
.credits-box:not(.hidden) .credits-trigger span.distribTitle {
    margin-top: -26px;
}

.credits-box:not(.hidden) .credits-trigger:hover span.distribTitle,
.credits-box:not(.hidden) .credits-trigger:focus span.distribTitle {
    margin-top: 0px;
}

#about .credits-box:not(.hidden) .credits-trigger:hover span.distribTitle,
#about .credits-box:not(.hidden) .credits-trigger:focus span.distribTitle {
    margin-top: -26px;
}

#about .credits-box:not(.hidden) .readMore .distribTitle {
    display: none;
}

.credits-box .readMore span.closeTxt {
    margin-top: 0;
}

.readMore::after {
    border: 0
}

#about .credits-trigger svg {
    height: 1.2em;
    fill: white;
    margin: .7em 0 0 1em;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
        transform: rotate(0)
}

#about .credits-trigger:hover svg,
#about .credits-trigger:focus svg {
    -webkit-animation: none;
    animation: none;
}

#about .credits-box.hidden .links-content {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
        transform: scale(1);
    opacity: 1;
    top: 0;
    position: static;
    max-height: 15rem;
    overflow: hidden;

}

.links {
    list-style-type: none;
    padding: 0;
    line-height: 1.3em;
    font-size: 1rem;
    margin: 1em 0;

}

.links li {
    margin: 1em 0 0 0;
}

.links-column {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


.links-column li {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    width: 50%;

}

.lecture-title {
    font-family: 'IBM Plex Mono', monospace;
    font-style: italic;
    font-weight: 600;
    font-size: 1em;
    margin: 1em 0 0 0;
}

.link-list-container {}

.links a {
    color: var(--black);
    background: -webkit-gradient(linear, left top, left bottom, from(var(--white)), to(var(--white)));
    background: -o-linear-gradient(top, var(--white) 0%, var(--white) 100%);
    background: linear-gradient(to bottom, var(--white) 0%, var(--white) 100%);
    background-position: -1000px 50%;
    background-repeat: no-repeat;
    background-size: 1px 0px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    font-size: 0.95em;

}

.links a:hover,
.links a:focus {
    background-position: 1000% 55%;
    background-size: auto 2px;
    text-decoration: none;
    font-style: italic;
    color: var(--white)
}

.links a:after {
    content: '';
    background-image: url(../img/svg/arrow-right-white.svg);
    background-repeat: no-repeat;
    width: 20px;
    height: 10px;
    display: block;
    position: relative;
    top: 4px;
    border: none;
}

#about footer {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-left: 0;
    margin-top: 3em;
}

.links-page {
    background: var(--link-primary-color);
    width: 8em;
    height: 8em;
    position: absolute;
    top: 10%;
    left: 35%;
    padding: 1em 2em;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    border-radius: 6em;
    animation: iSeePulse 0.9s infinite alternate ease;
    filter: saturate(1);
}
@keyframes iSeePulse{
    0%{
        filter: saturate(1);
    }
    50%{filter: saturate(3);}
    100%{
        filter: saturate(9);
    }
}
.links-page:hover,
.links-page:focus {
    background: var(--link-primary-color);
    animation: none;
}

.links-page:hover svg {
    -webkit-animation: cellMove 8s infinite alternate ease-in-out;
    animation: cellMove 8s infinite alternate ease-in-out;
}

.links-page svg {
    width: 50%;
    margin: 1em auto;
    display: block;
    fill: var(--light-gray);
    -webkit-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
}

.links-page h4 {
    margin: 0;
    margin-top: 1.2em;
    font-size: 1.1em;
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    color: var(--link-primary-color)
}

.links-page:hover h4,
.links-page:focus h4 {
    color: var(--black);

}

.links-page:hover a:hover,
.links-page:focus a:focus {
    color: var(--black);
}

.links-page:hover svg,
.links-page:focus svg {
    fill: var(--black);
}

.links-page p {
    margin: 0;
    margin-top: 1em;
    position: relative;
    display: inline-block;
    font-style: italic;
    font-weight: 100;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.links-page p:after {
    content: '';
    background-image: url(../img/svg/arrow-right-lightGray.svg);
    background-repeat: no-repeat;
    width: 25px;
    height: 20px;
    display: block;
    position: absolute;
    top: 2px;
    left: 150%
}

.links-page a:after {
    border: none;
}

.links-page:hover p,
.links-page:focus p {

    -webkit-transform: scale(2) translateX(12px);

    -ms-transform: scale(2) translateX(12px);

        transform: scale(2) translateX(12px);
}


.links-page:hover h4,
.links-page:focus h4 {
    -webkit-filter: blur(0.1em);
    filter: blur(0.1em);
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
        transform: scale(1.3)
}

.links-page:hover p::after,
.links-page:focus p::after {
    left: 55%;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
        transform: scale(0.8)
}


/* What I see */

#whatisee .wrapper {
    z-index: 5001;
}

#intro-message {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    background: rgba(255, 255, 255, 0.9);
    z-index: 5000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#intro-message h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 5em;
    color: var(--black);

}

#intro-message p {
    width: 50%;
    line-height: 1.5em
}

#intro-message p.start {
    text-align: center;
    font-weight: bold;
    font-family: 'DM Sans', sans-serif;
    color: var(--black);
    font-size: 1.5em;
}

#whatisee .container {
    width: 100vw;
    height: 85vh;
    /*background-color: #EEE;*/
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

}

.controls {
    position: fixed;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    bottom: 0;
    padding: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: 'IBM Plex Mono', monospace;
}

.controls nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.controls .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.controls h2 {
    margin-right: 3em;
    font-size: 1em;

}

.controls button {
    font-size: 0.8em;
    margin-right: 1.6em;
    background: none;
    border: 0;
    position: relative;
    height: 3em;
    padding: 0 1em 0 2em;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
        transform-origin: center;
    text-align: left;

}

.controls button::before {
    content: '◆';
    font-size: 1.5em;
    position: absolute;
    top: 0.3em;
    left: 5px
}

.controls button:hover,
.controls button:focus {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
        transform: scale(1.2);
    -webkit-filter: invert(30%);
    filter: invert(30%)
}

.filterdefault {
    fill: #ccc;
}

button.active {
    color: var(--white);
    border-radius: 10px;
}

.filterbrussels {
    color: #E6C017;
}

button.filterbrussels.active {

    background-color: #E6C017
}

.filterwitchcraft,
.witchcraft {
    color: #FF5252;
}

button.filterwitchcraft.active {
    background-color: #FF5252;

}

.filter.sisterhood {
    color: #A6E617;
}

button.filtersisterhood.active {
    background-color: #A6E617;

}

.filtertraining,
.training {
    color: #E65717;
}

button.filtertraining.active {
    background-color: #E65717;
}

.filterstorytellers,
.storytellers {
    color: #1D16D3;
}

button.filterstorytellers.active {
    background-color: #1D16D3;
}

.filterresistance,
.resistance {
    color: #17A6E6;
}

button.filterresistance.active {
    background-color: #17A6E6;

}

.filterplastic-art,
.plastic-art {
    color: #E617A6;
}

button.filterplastic-art.active {
    background-color: #E617A6;

}

.filterpsychiatrist,
.psychiatrist {
    color: #E6173E;
}

button.filterpsychiatrist.active {
    background-color: #E6173E;

}

.filterthe-living,
.the-living {
    color: #17E658;
}

button.filterthe-living.active {
    background-color: #17E658;

}

.circle {
    position: absolute;
    /*  -webkit-transition: left 3s 1s ease, top 3s 1s ease-in-out, -webkit-transform 0.05s ease;*/
    /* transition: left 3s 1s ease, top 3s 1s ease-in-out, -webkit-transform 0.05s ease;
    transition: transform 0.05s ease, left 3s 1s ease, top 3s 1s ease-in-out;
    /*transition: transform 0.05s ease, left 3s 1s ease, top 3s 1s ease-in-out, -webkit-transform 0.05s ease;*/
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    left: auto;
}

.circleChild {
    opacity: .8;
    -webkit-transition: opacity 0.3s ease, height 1.3s ease, width 1.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, height 1.3s ease, width 1.3s ease, -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease, opacity 0.3s ease, height 1.3s ease, width 1.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, height 1.3s ease, width 1.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, height 1.3s ease, width 1.3s ease, -webkit-transform 0.3s ease;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}





.circle:not(.noRotate):hover,
.circle:not(.noRotate):focus {
    -webkit-transform: translate3d(30vw, 25vh, 0) scale3d(1.2, 1.2, 1) rotate(0deg) !important;
    transform: translate3d(30vw, 25vh, 0) scale3d(1.2, 1.2, 1) rotate(0deg) !important;
    -webkit-transition: -webkit-transform 15s ease;
    transition: -webkit-transform 15s ease;
    -o-transition: transform 15s ease;
    transition: transform 15s ease;
    transition: transform 15s ease, -webkit-transform 15s ease;
    overflow: visible;
}

.circle:not(.noRotate) .circleChild:hover,
.circle:not(.noRotate) .circleChild:focus {

    cursor: pointer;
    -webkit-transform: scale3d(1.2, 1.2, 1) rotate(0deg) !important;
    transform: scale3d(1.2, 1.2, 1) rotate(0deg) !important;
    opacity: 1;
}

.circleChild h2 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 1em;
}

.noRotate {
    -webkit-transform: translate3d(2%, 2%, 0) rotate(0deg) !important;
    transform: translate3d(2%, 2%, 0) rotate(0deg) !important;
    z-index: 9999999;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.noRotate .circleChild h2 {

    font-weight: 600;
    font-size: 2.3em;
    line-height: 1em;
}

.noRotate p {
    color: #6C6666;
}

/*#whatisee .cell-content p{display: none;}*/
.svg-cell1 {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


/* .noRotate .circleChild svg{fill: blue;}*/

.notActive {
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
       transition-duration: 1s;
    opacity: 1;
}

.cell-content {
    width: 25em;
    -webkit-transform: scaleX(0), translateY(-5em);
    -ms-transform: scaleX(0), translateY(-5em);
        transform: scaleX(0), translateY(-5em);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
        transform-origin: left;
    -webkit-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    opacity: 0;
    will-change: transform, opacity;
}

.hide {
    display: none;
}

.activeTag {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin: auto;
    width: 30em;
    min-height: 50em;
    max-height: 60em;
}

.activeTag .closeBox {
    display: block !important;
    -webkit-animation: showCloseBox 1s 0.5s ease forwards;
    animation: showCloseBox 1s 0.5s ease forwards;
}

@-webkit-keyframes showCloseBox {
    from {
        top: 10em
    }

    to {
        top: 1em;
        opacity: 1
    }

}

@keyframes showCloseBox {
    from {
        top: 10em
    }

    to {
        top: 1em;
        opacity: 1
    }

}

.noRotate .circleChild {
    width: 30em;
    height: auto;
    padding: 3em;
    background: white;
    opacity: 1;
    border: 3px solid #ccc;
    -webkit-box-shadow: 6px 4px 0px #eee;
    box-shadow: 6px 4px 0px #eee;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
        transform: scale(1);
    cursor: auto;
    max-height: 60vh;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

}


.noRotate .circleChild .svg-cell1 {
    width: 5em;
}

.noRotate .circleChild .cell-content {
    -webkit-transform: scaleX(1), translateY(0);
    -ms-transform: scaleX(1), translateY(0);
        transform: scaleX(1), translateY(0);
    opacity: 1;
    -webkit-transition: all 1s 1s ease;
    -o-transition: all 1s 1s ease;
    transition: all 1s 1s ease;
}

.hideIcon {
    -webkit-transition: all 2s ease-in-out;
    -o-transition: all 2s ease-in-out;
    transition: all 2s ease-in-out;
    left: -3000vw;
    top: 300vh;
}

.cell-content-imgContainer {
    max-height: 20vh;
    overflow: hidden;
}

.cell-content-imgContainer img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.closeBox {
    font-family: 'IBM Plex Mono';
    font-size: 1em;
    font-weight: 100;
    position: relative;
    top: 10em;
    left: 87%;
    opacity: 0
}

.closeLink::before {
    content: '+';
    font-size: 1.6em;
    font-weight: 100;
    position: absolute;
    left: 2px;
    -webkit-transform: scale(1.5) rotate(45deg);
    -ms-transform: scale(1.5) rotate(45deg);
        transform: scale(1.5) rotate(45deg);
    top: -2px;
    color: var(--black);
    -webkit-transition: all 0.3s 0.1s ease;
    -o-transition: all 0.3s 0.1s ease;
    transition: all 0.3s 0.1s ease;
    will-change: transform;

}

.closeLink:hover::before,
.closeLink:focus::before {
    color: var(--black);
    -webkit-transform: scale(1.8) rotate(45deg);
    -ms-transform: scale(1.8) rotate(45deg);
        transform: scale(1.8) rotate(45deg);
    top: -2px;
    left: 2px
}

.closeLink:hover::after,
.closeLink:focus::after {
    border: 0;
}

/*------------------------------------*\
    ANIMATION
\*------------------------------------*/
/* ----------------------------------------
 * animation shake-vertical
 * ----------------------------------------
 */



@-webkit-keyframes shine {

    0%,
    100% {
        background-position: left
    }

    50% {
        background-position: right;
        background-size: 500% 200%;
    }

}



@keyframes shine {

    0%,
    100% {
        background-position: left
    }

    50% {
        background-position: right;
        background-size: 500% 200%;
    }

}

@-webkit-keyframes shake-vertical {

    0%,
    100% {
        -webkit-transform: translateX(0) rotate(90deg);
        transform: translateX(0) rotate(90deg);
    }

    10%,
    30%,
    50%,
    70% {
        -webkit-transform: translateX(-8px) rotate(90deg);
        transform: translateX(-8px) rotate(90deg);
    }

    20%,
    40%,
    60% {
        -webkit-transform: translateX(8px) rotate(90deg);
        transform: translateX(8px) rotate(90deg);
    }

    80% {
        -webkit-transform: translateX(6.4px) rotate(90deg);
        transform: translateX(6.4px) rotate(90deg);
    }

    90% {
        -webkit-transform: translateX(-6.4px) rotate(90deg);
        transform: translateX(-6.4px) rotate(90deg);
    }
}

@keyframes shake-vertical {

    0%,
    100% {
        -webkit-transform: translateX(0) rotate(90deg);
        transform: translateX(0) rotate(90deg);
    }

    10%,
    30%,
    50%,
    70% {
        -webkit-transform: translateX(-8px) rotate(90deg);
        transform: translateX(-8px) rotate(90deg);
    }

    20%,
    40%,
    60% {
        -webkit-transform: translateX(8px) rotate(90deg);
        transform: translateX(8px) rotate(90deg);
    }

    80% {
        -webkit-transform: translateX(6.4px) rotate(90deg);
        transform: translateX(6.4px) rotate(90deg);
    }

    90% {
        -webkit-transform: translateX(-6.4px) rotate(90deg);
        transform: translateX(-6.4px) rotate(90deg);
    }
}

@-webkit-keyframes cellMove {
    0% {

        -webkit-transform: translate(0) rotate(0deg);

        transform: translate(0) rotate(0deg);

    }

    10% {
        fill: var(--colorInvert)
    }

    20%,
    30%,
    50%,
    80% {
        fill: var(--invertColor)
    }

    10% {

        -webkit-transform: translate(18px, -5px) rotate(20deg);

        transform: translate(18px, -5px) rotate(20deg);
    }

    30% {

        -webkit-transform: translate(-20px, -15px) rotate(40deg) scale(1.1);

        transform: translate(-20px, -15px) rotate(40deg) scale(1.1);
    }

    50% {

        -webkit-transform: translate(2px, -6px) scale(0.9) rotate(70deg);

        transform: translate(2px, -6px) scale(0.9) rotate(70deg);
    }

    70% {

        -webkit-transform: translate(-18px, 0px) scale(1) rotate(95deg);

        transform: translate(-18px, 0px) scale(1) rotate(95deg);
    }

    80% {

        -webkit-transform: translate(8px, 5px) rotate(30deg);

        transform: translate(8px, 5px) rotate(30deg);
    }

    100% {

        -webkit-transform: translate(1px, -10px) scale(0.8) rotate(80deg);

        transform: translate(1px, -10px) scale(0.8) rotate(80deg);
    }
}

@keyframes cellMove {
    0% {

        -webkit-transform: translate(0) rotate(0deg);

        transform: translate(0) rotate(0deg);

    }

    10% {
        fill: var(--colorInvert)
    }

    20%,
    30%,
    50%,
    80% {
        fill: var(--invertColor)
    }

    10% {

        -webkit-transform: translate(18px, -5px) rotate(20deg);

        transform: translate(18px, -5px) rotate(20deg);
    }

    30% {

        -webkit-transform: translate(-20px, -15px) rotate(40deg) scale(1.1);

        transform: translate(-20px, -15px) rotate(40deg) scale(1.1);
    }

    50% {

        -webkit-transform: translate(2px, -6px) scale(0.9) rotate(70deg);

        transform: translate(2px, -6px) scale(0.9) rotate(70deg);
    }

    70% {

        -webkit-transform: translate(-18px, 0px) scale(1) rotate(95deg);

        transform: translate(-18px, 0px) scale(1) rotate(95deg);
    }

    80% {

        -webkit-transform: translate(8px, 5px) rotate(30deg);

        transform: translate(8px, 5px) rotate(30deg);
    }

    100% {

        -webkit-transform: translate(1px, -10px) scale(0.8) rotate(80deg);

        transform: translate(1px, -10px) scale(0.8) rotate(80deg);
    }
}


@-webkit-keyframes next-project-anim {
    0% {
        background: var(--link-primary-color)
    }

    20% {
        width: 10em;
        height: 20em;
        background: var(--link-primary-color)
    }

    ;

    60% {
        width: 100vw;
    }

    70% {
        height: 100vh;
        background: var(--link-primary-color)
    }

    100% {
        background: var(--black);
        width: 100vw;
        height: 100vh;
    }

}


@keyframes next-project-anim {
    0% {
        background: var(--link-primary-color)
    }

    20% {
        width: 10em;
        height: 20em;
        background: var(--link-primary-color)
    }

    ;

    60% {
        width: 100vw;
    }

    70% {
        height: 100vh;
        background: var(--link-primary-color)
    }

    100% {
        background: var(--black);
        width: 100vw;
        height: 100vh;
    }

}

@-webkit-keyframes next-project-animBack {
    0% {
        background: var(--link-primary-color);
        top: 0 !important;
    }

    20% {
        top: 0 !important;
        width: 10em;
        height: 20em;
        background: var(--link-primary-color)
    }

    ;

    60% {
        top: 0 !important;
        width: 100vw;
    }

    70% {
        top: 0 !important;
        height: 100vh;
        background: var(--link-primary-color)
    }

    100% {
        top: 0 !important;
        background: var(--black);
        width: 100vw;
        height: 100vh;
    }

}

@keyframes next-project-animBack {
    0% {
        background: var(--link-primary-color);
        top: 0 !important;
    }

    20% {
        top: 0 !important;
        width: 10em;
        height: 20em;
        background: var(--link-primary-color)
    }

    ;

    60% {
        top: 0 !important;
        width: 100vw;
    }

    70% {
        top: 0 !important;
        height: 100vh;
        background: var(--link-primary-color)
    }

    100% {
        top: 0 !important;
        background: var(--black);
        width: 100vw;
        height: 100vh;
    }

}

@-webkit-keyframes slideUp {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

}

@keyframes slideUp {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/
.slider,
.cover-img {
    height: 100vh
}

.bx-viewport,
.bx-wrapper {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    position: relative;
    width: 100%;
    height: 100% !important;
    top: 0;
    left: 0;
    border: 0 !important;
    margin: 0 !important;
}

.slider,
.slider div,
.cover-img,
.cover-img div,
.cover-img div img {
    height: 100vh !important;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slider div img {
    max-width: none !important;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    /* margin-left: -20em;*/


}

.video-cover {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.video-cover .bg-pic {
    cursor: pointer;
    position: absolute;
    z-index: 10000;
}

.video-slide {
    background: var(--black);
}

.slider .video-player {
    display: none;
}

.bx-controls {
    position: relative;
    z-index: 10000;
    bottom: 10em;
    left: 75%;

}

.bx-controls-direction {
    position: fixed;
}

.bx-wrapper .bx-controls-direction a {
    margin-right: 1em;
    bottom: 1em;
    background: none;
}

.bx-wrapper .bx-controls-direction a:hover,
.bx-wrapper .bx-controls-direction a:focus {
    border-color: var(--link-primary-color);
    border-width: 4px;
}

.bx-wrapper .bx-prev {

    display: block;
    width: 20px;
    height: 20px;
    border-top: 1px solid #ebe3e3;
    border-right: 1px solid #ebe3e3;
    border-width: 2px;

    -webkit-transform: rotate(225deg);

    -ms-transform: rotate(225deg);

        transform: rotate(225deg);


}

.bx-wrapper .bx-next {
    left: 100px;

    display: block;
    width: 20px;
    height: 20px;
    border-top: 1px solid #ebe3e3;
    border-right: 1px solid #ebe3e3;
    border-width: 2px;

    -webkit-transform: rotate(45deg);

    -ms-transform: rotate(45deg);

        transform: rotate(45deg);


}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

.body-text,
.scroll-text p {
    line-height: 1.4em;
    /*max-width: 550px*/
}

.body-text,
.lead-text,
.project-title {
    /*max-width: 550px*/
}

a {
    position: relative;
    text-decoration: none;
    -webkit-transition: color .25s ease-out;
    -o-transition: color .25s ease-out;
    transition: color .25s ease-out;
}

a:hover,
a:focus {
    color: var(--link-primary-color);
    right: 0;
    text-decoration: none;
}

a:hover:after,
a:focus:after {
    border-color: var(--link-primary-color);
    right: 0%;
}

/*a:after {
  border-top: .1em solid var(--link-primary-color);
  content: "";
  position: absolute;
    right: 120%;
    top: 50%;
    left: 0;
  transition: right .4s cubic-bezier(0,.5,0,1),
              border-color .4s ease-out;
}*/


/*a:hover:after {
  animation: anchor-underline 2s cubic-bezier(0,.5,0,1) infinite;
  border-color: var(--link-primary-color);
}*/

@-webkit-keyframes anchor-underline {

    0%,
    10% {
        left: 0;
        right: 100%;
    }

    40%,
    60% {
        left: 0;
        right: 0;
    }

    90%,
    100% {
        left: 100%;
        right: 0;
    }
}

@keyframes anchor-underline {

    0%,
    10% {
        left: 0;
        right: 100%;
    }

    40%,
    60% {
        left: 0;
        right: 0;
    }

    90%,
    100% {
        left: 100%;
        right: 0;
    }
}


#logo a {
    font-size: 1rem
}

.page-title::before {
    content: '–';
    font-weight: 500;
    color: var(--white);
    display: inline-block;
    position: absolute;
    left: -1em;
    margin-right: 25px;


}

.page-title {
    font-family: 'IBM Plex Sans', sans-serif;
    /*font-weight: 300;*/
    font-weight: 600;
    font-size: 3.5em;
    color: var(--black);
    /*color: var(--link-primary-color);*/
    position: relative;
    /*text-shadow: 1px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;*/
}


#about .page-title {
    margin-top: 1.2em
}

/* Projects  */
.grid-col h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: bold;
    font-size: 2em;
}

.grid-col p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7em;
    margin: 0
}

#projects-filters h6 {
    margin: 1px 0 0 0;
    font-size: inherit;
    color: var(--black);
}

#projects-filters {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9em
}



/* Project detail */

h1.project-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: bold;
    font-size: 3.5em;
    color: var(--black);
    line-height: 1em;
    position: relative;
    z-index: 5;
    margin-bottom: 0
}

#next-project h1.project-title {
    margin-top: 1.2em
}

.lead-text p,
p.lead-text,
.scroll-text .lead-text p,
.scroll-text p.lead-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4em;
    font-size: 1.35em;
    margin: 0em 0 1.4em;

}

.body-text p,
.scroll-text p,
p {
    line-height: 1.4em;
    font-size: 1.1em;
    margin-bottom: 1.1em;
}

p.readMore {
    line-height: 1.1em
}

p br {
    margin-bottom: 0.03em;
}

/* distribution */
.credits-trigger h2,
.credits-trigger h2,
.close-modal h2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 100;
    text-transform: uppercase;
    font-size: 1.3em;
    margin: 0;
    height: 1.2em;
    overflow: hidden;
}

.credits-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: bold;
    color: var(--link-primary-color);
    text-transform: uppercase;
    font-size: 2em;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1em;
}

.sub-title {
    margin: 0.5em 0
}

.credits-line {
    border: none;
    width: 2em;
    margin: .7em 0 1em 0;
    border-top: 0.13em solid rgb(58, 57, 57);

}

/*.credits-txt{
    padding: 1.3em 0 0 0;
    position: relative;
}*/

.credits-content ul,
.credits-content p,
.credits-content h4 {
    list-style-type: none;
    padding: 0;
    line-height: 1.3em;
    font-size: 0.9rem;
    margin: 1em 0
}

.credits-content ul li {
    margin-bottom: 0.4em
}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
/* Mobile and Portrait Tablet */
@media screen and (min-width: 320px) and (max-width: 768px) {

    /* menu */
    #home main#menu-container {
        margin: 0
    }
    .wrapper{
        padding: 0 1rem;
    }
    #home .wrapper,
    #next .wrapper {
        height: 90dvh;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* height: calc(var(--vh, 1vh) * 100);*/
    }
    nav#nav-cross {
        width: 100%;
    }
    nav#nav-cross li {
        font-size: 1.4em;
    }
    nav#nav-cross ul {
        overflow: hidden;
        max-width: 80%;
        margin: auto;
        grid-template-columns: repeat(3, 33%);
    }
    .arrow-menu {
        background-size: 40%;
        background-position: 0% 88%;
        margin: 0;
    }
    nav#nav-cross li {
        padding-block: 3rem;
    }
    .arrow-menu:nth-child(7) {
        background-position: 6% 88%;
    }

    .arrow-menu:nth-child(8) {
        background-position: 0% 8%;
    }
    .arrow-menu:nth-child(9) {
        background-position: 8% 10%;
    }
    #croix {
       
        width: 100%;
        margin: 0;
    }

    .email-box {
        margin-left: 0;
        width: 20rem;
    }

    #social-network {
        margin: 0 0 0 1rem;
    }

    .fa-2x {
        font-size: 1.5em !important;
    }

    .email-box_input {
        height: 2.8rem;
        font-size: 0.7rem;
    }

    .email-box label {
        font-size: 0.55rem;
    }

    .bx-wrapper .bx-controls-direction a {
        text-indent: 0 !important;
    }

    #project-detail-container header.page-head::before {
        background: none;
    }

    /* Agenda */

    .new-project,
    #next-P {
        right: 0;
        top: auto !important;
        bottom: 0;
        width: 100% !important;
        height: 3em !important;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        padding: 0.2em 0;
        border-radius: 0;
        z-index: 10;
    }

    .new-project h3,
    .new-project h4 {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        padding: 0;
        margin: 0;
        text-align: left;
        line-height: 1em;
    }

    .new-project h4 {
        font-size: 0.8em;
    }

    .new-project h3::after {
        display: none;
    }

    .new-project svg {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        width: auto;
        height: 2.8em;
        bottom: 0.3em;
        left: -1.2em
    }

    .newP-container {
        padding: 4px 0 0 1em;
        font-size: 0.8em;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        opacity: 1;
    }

    .coverOut .newP-container,
    .openProject .newP-container {
        opacity: 0;
    }

    .calendar-entry {

        margin: 2em 0;

    }

    .calendar h5.date {
        font-size: 0.9em;
        font-weight: 400;

    }

    .calendar h2.entry-title,
    .calendar h2.entry-title a {
        font-size: 1.3em;
        line-height: 1em;
        margin: 0.4em 0;

    }

    .venue-link {
        font-size: 0.7rem;
        margin: 0;
    }

    #next-project {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
    }

    #next-project.in {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1)
    }


    .slider,
    .slider div {
        /* display: flex!important;*/
        height: auto;

    }

    /* #next-project .left-col {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
*/
    .credits-trigger.open-credits,
    #next-project.open-credits,
    #project-detail .credits-trigger {
        right: 0;
        display: none;
    }

    #next-project #project-detail-container,
    #project-detail #project-detail-container,
    #project-detail-container {

        -webkit-box-orient: vertical;

        -webkit-box-direction: normal;

        -ms-flex-direction: column;

        flex-direction: column;

    }

    .cover-img,
    .cover-img div,
    .cover-img div img,
    .cover-img img {
        height: 100vh !important;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100vw;
    }

    /*  #next-project .nextP-close {
        right: -8px;
        top: 2em;

    }*/

    .credits-box {
        padding: 2em 1em;
    }

    section.project-content,
    #about .left-col,
    #about .right-col {
        width: 100%;
        height: auto;
        max-height: initial;
    }

    .project-content.right-col {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cover-img {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        /* -webkit-transition: opacity 0.5s 0.5s ease;
        transition: opacity 0.5s 0.5s ease;*/
        -webkit-animation: coverFadeIn 0.5s ease forwards;
                animation: coverFadeIn 0.5s ease forwards;

    }

    @-webkit-keyframes coverFadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes coverFadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /*.cover-img-fadeIn {
        opacity: 1;
    }*/

    .slider-desktop {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .left-col {
        padding: 0
    }

    #next div.body-text,
    #project-detail div.body-text {
        margin-bottom: 0
    }

    #next-project .txt-content h1,
    #project-detail .txt-content h1 {
        color: var(--white)
    }

    #next-project h1.project-title,
    #project-detail h1.project-title {
        margin-top: 0.3em;
        height: 100vh;
        word-break: break-word;

    }

    #project-detail .txt-content,
    #about .txt-content {
        padding: 0 1.4em;
        overflow: inherit;
        -webkit-overflow-scrolling: touch;
        height: auto;
        margin-bottom: 5em;
        max-width: 100%;
        left: 0;
        display: block
    }

    #next-project .txt-content,
    #project-detail .txt-content {
        margin-bottom: 1em
    }

    .new-project::before {
        display: block;
        content: '';
        background: yellow;
        width: 100%;
        height: 2em;
        position: absolute;
        right: 0;
        top: 0;
        border-radius: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
        -webkit-transform-origin: bottom center;
        -ms-transform-origin: bottom center;
            transform-origin: bottom center;
    }

    @-webkit-keyframes scaleCover {
        0% {
            -webkit-transform: scale(0);
            transform: scale(0);
            border-radius: 0;
        }

        80% {
            background: yellow;
            border-radius: 0;
        }

        100% {
            -webkit-transform: scale(13);
            transform: scale(13);
            background: white;
            height: 200vh;
            position: absolute;
            right: -10em;
            top: -100vh;
            border-radius: 0;
        }
    }

    @keyframes scaleCover {
        0% {
            -webkit-transform: scale(0);
            transform: scale(0);
            border-radius: 0;
        }

        80% {
            background: yellow;
            border-radius: 0;
        }

        100% {
            -webkit-transform: scale(13);
            transform: scale(13);
            background: white;
            height: 200vh;
            position: absolute;
            right: -10em;
            top: -100vh;
            border-radius: 0;
        }
    }

    @-webkit-keyframes scaleCoverOut {
        0% {
            -webkit-transform: scale(13);
            transform: scale(13);
            background: white;
            height: 200vh;
            position: absolute;
            right: 0em;
            top: -100vh;
            border-radius: 0;
        }

        20% {
            -webkit-transform: scale(13);
            transform: scale(13);
            background: yellow;
            height: 100vh;
            position: absolute;
            right: 0em;
            border-radius: 0;
        }

        100% {
            -webkit-transform: scale(1);
            transform: scale(1);
            background: yellow;
            height: 2em;
            position: absolute;
            right: 0em;
            top: 0;
            border-radius: 0;
        }
    }

    @keyframes scaleCoverOut {
        0% {
            -webkit-transform: scale(13);
            transform: scale(13);
            background: white;
            height: 200vh;
            position: absolute;
            right: 0em;
            top: -100vh;
            border-radius: 0;
        }

        20% {
            -webkit-transform: scale(13);
            transform: scale(13);
            background: yellow;
            height: 100vh;
            position: absolute;
            right: 0em;
            border-radius: 0;
        }

        100% {
            -webkit-transform: scale(1);
            transform: scale(1);
            background: yellow;
            height: 2em;
            position: absolute;
            right: 0em;
            top: 0;
            border-radius: 0;
        }
    }

    #about .txt-content {
        padding: 0;
    }

    aside#downloads li {

        width: 6em;
    }

    #next-project aside#downloads,
    #next-project aside#downloads ul,
    #project-detail aside#downloads,
    #project-detail aside#downloads ul,
    #about aside#downloads,
    #about aside#downloads ul {
        width: 100vw;
        left: 0;
        right: auto;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
        position: relative;

    }

    #project-detail aside#downloads {
        margin-bottom: 0.1em;
    }

    #about aside#downloads {
        border-bottom: 2px solid black;
        margin-bottom: 0.5em;
    }

    .credits-box::before {
        content: '';
        display: none;
        background: yellow;
        width: 100%;
        height: 50px;
        padding: 1em;

    }

    #about .credits-box::before,
    #project-detail .credits-box::before {
        content: '';
        display: none;
    }

    .credits-box.hidden .credits-content {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
        position: relative;
        opacity: 1;
        top: 0;
        left: 0;
        background: black;
        padding: 1em 2em
    }

    .credits-box.hidden {
        padding: 0em;
    }

    .bx-controls,
    #next-project .bx-controls {
        left: 65%;
        position: absolute;
        z-index: 10000;
        bottom: 50px;
        /*right: 140px;*/

    }

    .bx-controls-direction {
        position: inherit;
    }

    .bx-wrapper .bx-next {

        left: 60px;
    }

    .credits-box,
    #next-project .credits-box,
    #about .credits-box,
    #about .credits-box.hidden,
    .credits-box.hidden {
        width: 100%;
        left: auto;
        right: 0;
        position: relative;
        height: auto;

    }

    .txt-content {
        left: 0;
        padding-left: 1.2em;
        padding-right: 2em;
    }

    /*About*/
    #about-slider {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    #about .page-title {
        margin-top: .5em;
    }

    .links-page {
        bottom: 41%;
        left: calc(50% - 4em);
    }

    #about .credits-box.hidden .links-content {
        max-height: 100%;
    }

    .footer-wrapper {
        min-width: auto;
        max-width: 100%;
    }

    .footer-desktop,
    #project-detail .footer-desktop {
        display: none;
    }

    .footer-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    #project-detail footer {
        position: static;
        padding-top: 1em;
    }

    #project-detail-container header.page-head {

        margin-left: 0em;
        position: -webkit-sticky;
        position: sticky;
        padding: 0 1.2em;
    }

    footer {
        padding: 0.5em 0.21em;
        margin: 0;
        width: 100%;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;


    }

    #project-detail footer,
    #about footer {
        /* position: sticky;*/
        bottom: 0;
        z-index: 1000000;
        background: white;
        left: 0;
        padding: 0.5em 0.5em 0 0.5em;
        margin: 1em 0 0 0;
        margin: 0;
        width: 100%;

    }

    .credits {
        margin-top: .1em;
    }

    .homemade-credit {
        font-size: 0.6em;
        margin-top: 2em;
    }

    #about footer,
    #project-detail footer,
    #about .credits,
    #project-detail .credits {
        display: none;
    }

    #about .credits--mobile,
    #about .footer--mobile,
    #project-detail .credits--mobile,
    #project-detail .footer--mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .scroll-text {
        padding-top: 1px;
    }

    /* Recherche */
    .recherche-grid {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }

    .recherche-grid .grid-link a {
        padding: 20% 1em;
    }

    .open-content::after {
        top: 80%;
        left: 1em;
    }

    .author::after {
        background-position: 0% 78%;
        width: 62px;
        height: 13px;
        top: 25px;
        left: 0;

    }

    .modal-content-container img {
        max-width: 100%;
        width: 100%;
    }

    #recherche footer {
        margin-top: 1em;
    }

    .modal-content-container {
        word-break: break-word;
    }

    /* Projects page */
    .grid {
        min-width: auto;
    }

    .grid-col {
        width: calc(50% - 2em);
    }

    .tilter__caption {
        padding: 1em;
    }

    /* Project detail */
    #project-detail footer::before {
        display: none;
    }

    aside#downloads {
        background: var(--link-primary-color);
    }

    .modal-content aside#downloads {
        background: transparent;
    }

    /* Ce que je vois */
    #intro-message {
        padding: 0 1em;
        top: 0;
    }

    #intro-message h1 {
        font-size: 3em;
        line-height: 1em;
        margin-bottom: 0.2em;
    }

    #intro-message h3 {
        text-align: center;
    }

    #intro-message p.start {
        margin-top: 0
    }

    .controls {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        bottom: 0;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -webkit-transform: translateY(80%);
        -ms-transform: translateY(80%);
            transform: translateY(80%)
    }

    .controls nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .controls h2 {

        margin-right: 3em;
        font-size: 1em;
        margin-bottom: 2em;

    }

    #whatisee .container {
        height: 80vh;
    }

    #whatisee .container.fullHeight {
        height: 100vh;
    }

    .openFilters {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
        background: rgba(255, 255, 255, 0.87);
        -webkit-box-shadow: 0px 2px 8px 2px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 2px 8px 2px rgba(0, 0, 0, 0.3);
    }

    .noRotate .circleChild {
        width: 95vw;
        height: auto;
        max-height: 100%;
        padding: 0 1em;
    }

    .cell-content {
        width: 100%;
        height: auto;
    }

    .activeTag {
        max-height: 100%;
        z-index: 100;
    }

    #whatisee .container {
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .closeBox {
        line-height: 2em;
        left: 75%;
    }

    .noRotate {
        -webkit-transform: translate3d(2%, 2%, 0) rotate(0deg) !important;
        transform: translate3d(2%, 2%, 0) rotate(0deg) !important;
        position: absolute;
        z-index: 9999999;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .readMore,
    .closeLink {
        height: auto;
        top: 0;
    }

    /* Agenda */
    .venue-link a {
        font-size: 1.3em;
    }


/* Menu */

#croix {
    background-size: 35%;
    width: 100%;
}

}

/* Mobile Only */
@media screen and (min-width: 320px) and (max-width: 750px) {
    .page-title::before {
        display: none;
    }

    nav#nav-cross li {
        font-size: 1.4em;
    }

    #croix {
        height: auto;
        width: 100%;
        -ms-grid-column-align: center;
            justify-self: center;
    }

    .cross-link {
        margin: auto;
        text-align: center;
    }

    #next-project.in .open-credits {
        -webkit-transform: translateY(0) rotate(0deg);
        -ms-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    }

    .credits-box.hidden .credits-trigger {
        top: 0;
        cursor: pointer;
    }

    .credits-box.hidden {
        border: 0;
        border-bottom: 2px solid var(--black);
    }

    aside#downloads {
        position: relative;
    }

    /* Projets */
    .grid-col {
        width: 100%;
        margin: 0px 0 1.5em 0;
    }

    #project #projects-container {
        padding: 1rem;
    }

    #projects-filters {
        margin: 4em 0 3em 0;

    }

    #projects-filters,
    #projects-filters ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #projects-filters ul {
        margin-left: -7px;
        margin-top: 1em;
        padding: 0
    }

    #projects-filters ul li {
        margin-top: 0.3em;
    }

    #projects-filters li .mixitup-control-active {
        margin-left: 6px;

    }

    .grid-col h3 {
        font-size: 2.9em;
       /* text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;*/
        word-wrap: break-word;
    }

    .recherche-grid .grid-link {
        background-blend-mode: overlay;
        width: 100%;
        height: auto;
        padding: 50% 3.5em;
        font-size: 84%;
    }

    #recherche .modal-open .close-modal {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
        position: absolute;
        top: 20px;
        right: 20px;

    }

    /* About */
    #about .page-title {
        margin-top: .5em;
    }

    /* Agenda */
    .entry-infos{
        display: block
        }

}

/* Greater than 1600px */
@media screen and (min-width: 1600px) {
    /*#croix {
        width: 27vw;
    }*/

    .recherche-grid {
        grid-auto-rows: minmax(20em, 25em);

    }

    .grid-col h3 {
        font-family: 'DM Sans', sans-serif;
        font-weight: bold;
        font-size: 3em;
    }

    /*  .txt-content {
        padding-right: 30%;
        left: 8%;
    }*/

    #project-detail footer {
        left: calc(9% - 3em);

    }

}

/* Non Mobile Only */
@media screen and (min-width: 769px) {
    .cover-img {
        display: none;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1170px) {
    .recherche-grid {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .grid {
        min-width: auto;
        max-width: 100%;
        padding: 0 20px;
    }

    .grid-col {
        width: calc(33% - 2.8em);
    }

    .right-col,
    .left-col {
        width: 50%
    }

    .credits-box {
        padding: 2em 4em 2em 4.7em;
        width: 115%;
    }

    #project-detail footer {
        width: 39vw;
    }

    h1.project-title {
        font-size: 2.5em
    }

    #project-detail-container header.page-head::before {
        display: none;
    }

    .txt-content {
        padding-right: 3em;
        left: 0;
    }

    #about .page-title {
        margin-top: 1em;
    }

    #about .credits-box.hidden {
        width: 18rem;
        left: -4em;
    }

    /* Menu */


}

@media screen and (min-width: 1024px) and (max-width: 1600px) {
    .email-box {
        width: 16rem;
    }

    .recherche-grid .grid-link {
        font-size: 84%;
    }


}

@media screen and (max-width: 1024px) and (orientation: landscape) {
    .scroll-text {

        min-height: inherit
    }
}

    /*------------------------------------*\
    MISC
\*------------------------------------*/
    ::-moz-selection {
        background: #04A4CC;
        color: #FFF;
        text-shadow: none;
    }

    ::selection {
        background: #04A4CC;
        color: #FFF;
        text-shadow: none;
    }

    ::-webkit-selection {
        background: #04A4CC;
        color: #FFF;
        text-shadow: none;
    }

    ::-moz-selection {
        background: #04A4CC;
        color: #FFF;
        text-shadow: none;
    }

    /*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
    .alignnone {
        margin: 5px 20px 20px 0;
    }

    .aligncenter,
    div.aligncenter {
        display: block;
        margin: 5px auto 5px auto;
    }

    .alignright {
        float: right;
        margin: 5px 0 20px 20px;
    }

    .alignleft {
        float: left;
        margin: 5px 20px 20px 0;
    }

    a img.alignright {
        float: right;
        margin: 5px 0 20px 20px;
    }

    a img.alignnone {
        margin: 5px 20px 20px 0;
    }

    a img.alignleft {
        float: left;
        margin: 5px 20px 20px 0;
    }

    a img.aligncenter {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .wp-caption {
        background: #FFF;
        border: 1px solid #F0F0F0;
        max-width: 96%;
        padding: 5px 3px 10px;
        text-align: center;
    }

    .wp-caption.alignnone {
        margin: 5px 20px 20px 0;
    }

    .wp-caption.alignleft {
        margin: 5px 20px 20px 0;
    }

    .wp-caption.alignright {
        margin: 5px 0 20px 20px;
    }

    .wp-caption img {
        border: 0 none;
        height: auto;
        margin: 0;
        max-width: 98.5%;
        padding: 0;
        width: auto;
    }

    .wp-caption .wp-caption-text,
    .gallery-caption {
        font-size: 11px;
        line-height: 17px;
        margin: 0;
        padding: 0 4px 5px;
    }

    /* Safari hack */
    @media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) {
        @media {
            -webkit-transition: left 3s 1s ease, top 3s 1s ease-in-out, -webkit-transform 10s ease;
            transition: left 3s 1s ease, top 3s 1s ease-in-out, -webkit-transform 10s ease;
            -o-transition: transform 10s ease, left 3s 1s ease, top 3s 1s ease-in-out;
            transition: transform 10s ease, left 3s 1s ease, top 3s 1s ease-in-out;
            transition: transform 10s ease, left 3s 1s ease, top 3s 1s ease-in-out, -webkit-transform 10s ease;
            transition: -webkit-transform 10s ease, left 3s 1s ease, top 3s 1s ease-in-out;
        }
    }

    /*------------------------------------*\
    PRINT
\*------------------------------------*/
    @media print {
        * {
            background: transparent !important;
            color: #000 !important;
            -webkit-box-shadow: none !important;
            box-shadow: none !important;
            text-shadow: none !important;
        }

        a,
        a:visited {
            text-decoration: underline;
        }

        a[href]:after {
            content: " ("attr(href) ")";
        }

        abbr[title]:after {
            content: " ("attr(title) ")";
        }

        .ir a:after,
        a[href^="javascript:"]:after,
        a[href^="#"]:after {
            content: "";
        }

        pre,
        blockquote {
            border: 1px solid #999;
            page-break-inside: avoid;
        }

        thead {
            display: table-header-group;
        }

        tr,
        img {
            page-break-inside: avoid;
        }

        img {
            max-width: 100% !important;
        }

        @page {
            margin: 0.5cm;
        }

        p,
        h2,
        h3 {
            orphans: 3;
            widows: 3;
        }

        h2,
        h3 {
            page-break-after: avoid;
        }
    }