/*
Theme Name: Misschiefs
Author: Bonconseil
Author URI:
Description:
Version: 2.0
*/

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Work Sans', sans-serif;
	font-weight: 600;
	font-size: 1rem;
}

.body--black {
	background-color: black;
}

.body--green {
	background-color: #00ffb8;
}

p {
	margin: 0;
	padding: 0;
}

ul, li {
  list-style-type: none;
  padding : 0;
  margin: 0;
}

a {
	text-decoration: none;
}

a:link, a:visited {
	color: inherit;
}

h1, h2, h3 {
	margin: 0;
	padding: 0;
  font-style: normal;
}

figcaption {
	font-size: 0.8rem;
	font-weight: 400;
}

.none {
	display: none;
}

/* Header */

.marquee-rtl {
	width: calc( 100% - 142px );
	position: fixed;
	top: 0;
	overflow: hidden;
	padding: 12px 0;
	text-transform: uppercase;
	font-size: 0.9rem;
	font-weight: 400;
	transition: 0.2s;
	z-index: 10;
}

.marquee-rtl span {
	color: white;
	background-color: black;
	margin-left: 10px;
	padding: 0 8px;
	display: inline-block;
}

.marquee-rtl--black {
	color: white;
}

.marquee-rtl--black span {
	color: black;
	background-color: white;
}

.marquee-rtl--green span {
	color: #00ffb8;
}

.marquee-rtl div {
  display: inline-block;                /* modèle de boîte en ligne */
  padding-right: 2em;                   /* un peu d'espace pour la transition */
  padding-left: 100%;                   /* placement à droite du conteneur */
  white-space: nowrap;                  /* pas de passage à la ligne */
  animation: defilement-rtl 15s infinite linear;
  pointer-events: none;
}

.marquee-rtl .marquee-pointer {
	pointer-events: visible;
}

.marquee-rtl a:hover div {
	animation-play-state: paused;
	color: #00ffb8;
}

.marquee-rtl a:hover span {
	background-color: #00ffb8;
}

.marquee-rtl--green a:hover {
	color: white;
}

.marquee-rtl--green a:hover span {
	background-color: white;
}

@keyframes defilement-rtl {
  0% {
    transform: translate3d(0,0,0);      /* position initiale à droite */
  }
  100% {
    transform: translate3d(-100%,0,0);  /* position finale à gauche */
  }
}

header .social {
	position: fixed;
	top: 0;
	right: 0;
	padding: 3px 7px 0 0;
	display: flex;
	align-items: center;
	z-index: 11;
}

header .social a {
	display: block;
	padding: 7px;
}

header .social img {
	height: 20px;
}

header .youtube img {
	height: 16px;
}

header .email img {
	height: 14px;
}

header .social a .img-hover {
	display: none !important;
}

header .social a:hover img {
	display: none;
}

header .social a:hover .img-hover {
	display: inline !important;
}

header .nav-scroll {
	overflow-x: auto;
	width: 100vw;
	position: fixed;
	top: 0;
	white-space: nowrap;
	z-index: 8;
	-ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

header .nav-scroll::-webkit-scrollbar {
	display: none; /* Chrome, Safari and Opera */
}

header nav {
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.2rem;
	margin: 50px 35px 20px 35px;
}

header .nav--black {
	color: white;
}

header ul {
	display: flex;
}

header li {
	padding: 0 15px;
	margin-bottom: 7px;
}

header li a:hover {
	color: #00ffb8 !important;
}

header .curent {
	background-color: black;
	color: white;
	padding: 3px 4px 3px 7px;
}

header .curent:hover {
	background-color: #00ffb8;
	color: white !important;
}

header .nav--black .curent {
	background-color: white;
	color: black;
}

header .nav--black .curent:hover {
	background-color: #00ffb8;
	color: black !important;
}

header .nav--green .curent {
	color: #00ffb8;
}

header .nav--green .curent:hover {
	background-color: white;
	color: #00ffb8 !important;
}

header .nav--green li a:hover {
	color: white !important;
}

.logo-header {
	max-width: 1400px;
	max-height: 35vh;
	position: fixed;
	top: 110px;
	padding: 0 200px 0 30px;
	width: 100%;
	z-index: 1;
	pointer-events: none;
	mix-blend-mode: normal;
}

.logo-header--black {
	mix-blend-mode: normal;
}

.logo-header--green {
	mix-blend-mode: normal;
}

.header-title {
	position: fixed;
	top: 90px;
	width: 100%;
	text-align: center;
	z-index: 4;
	padding: 0 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header-title--black {
	color: white;
}

.header-title h1 {
	font-size: 3.2rem;
	letter-spacing: 0.8rem;
	line-height: 3rem;
	text-transform: uppercase;
	pointer-events: none;
	word-break: break-word;
}

.header-title-nav {
	font-size: 2rem;
	letter-spacing: 0;
	padding: 5px;
}

.header-title-nav:hover {
	color: #00ffb8;
}

.header-title-nav--left {
 margin-right: 37px;
}

.header-title-nav--right {
	margin-left: 25px;
}

.header-title-nav--blank {
	width: 70px;
}

@media all and (max-width: 800px) {
	.logo-header {
		padding: 0 100px 0 30px;;
	}
	.header-title h1 {
		font-size: 2.5rem;
		letter-spacing: 0.5rem;
		line-height: 2.2rem;
	}
}
@media all and (max-width: 750px) {
	.logo-header {
		padding: 0 30px;
		top: 100px;
	}
	.header-title {
		top: 80px;
	}
}
@media all and (max-width: 500px) {
	.logo-header {
		padding: 0 5px;
	}
	.header-title h1 {
		font-size: 1.7rem;
		letter-spacing: 0.35rem;
		line-height: 1.6rem;
	}
	.header-title-nav--left {
	 margin-right: 17px;
	}
	.header-title-nav--right {
		margin-left: 5px;
	}
}
@media all and (max-width: 414px) {
	header nav {
		margin: 50px 5px 20px 5px;
	}
	header li {
		padding: 0 12px;
	}
	.logo-header {
		padding: 0 0;
	}
	.header-title {
		padding: 0 20px;
	}
}

/* Footer */

.secondary-footer {
	padding: 30px;
	font-size: 0.9rem;
	font-weight: 400;
	text-transform: uppercase;
	text-align: right;
}

.secondary-footer a:hover {
	color: #00ffb8;
}

.secondary-footer--black {
	color: white;
}

.secondary-footer--green a:hover {
	color: white;
}


/* Template 1 */

.template-1 {
	width: 100%;
	display: flex;
	justify-content: center;
	padding-bottom: 50px;
}

.template-1 > div {
	display: flex;
	width: 100%;
	position: relative;
}

.template-1 .left {
	padding: 270px 50px 50px 50px;
	z-index: 10;
	font-size: 3.2rem;
	letter-spacing: 0.8rem;
	line-height: 4.2rem;
	text-transform: uppercase;
	overflow-y: scroll;
	height: 100vh;
	position: absolute;
	z-index: 1;
	-ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.template-1--takeover .left {
	padding-top: 400px;
	color: white;
}

.template-1 .left::-webkit-scrollbar {
	display: none; /* Chrome, Safari and Opera */
}

.template-1 .left ul {
  padding-bottom: 15px;
}

.template-1 .left li {
	padding: 3px 0;
}

.template-1 .left a:hover {
	color: #00ffb8;
	transition: 0.1s;
}

.template-1--exhibitions .left a:hover {
	color: white;
}

.template-1 .right {
	position: relative;
	display: flex;
	width: 100%;
}

.template-1 .right > div {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
	padding: 40px 0 0 150px;
	overflow: auto;
	height: 100vh;
	position: absolute;
	-ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.template-1 .right > div::-webkit-scrollbar {
	display: none; /* Chrome, Safari and Opera */
}

.template-1 .right-item {
	display: block;
	margin-bottom: 20px;
	max-width: 100%;
	position: relative;
}

.template-1 .right img {
	display: block;
	max-width: 100%;
}

.template-1 .right-item div,
.template-1 .video-title {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	text-transform: uppercase;
	font-size: 2.5rem;
	line-height: 2.8rem;
	letter-spacing: 0.6rem;
	color: #00ffb8;
	text-align: center;
	word-break: break-word;
	padding: 10px;
}

.template-1 .right-item p,
.template-1 .video-title p {
	opacity: 0;
	transition: 0.1s;
}

.template-1 .right-item:hover p,
.template-1 .right-video:hover p {
	opacity: 1;
}

.template-1 .right-item--small img {
	max-height: 300px;
}

.template-1 .right-item--medium img {
	max-height: 500px;
}

.template-1 .right-item--large img {
	max-height: 700px;
}

.template-1 .right-video {
	margin-bottom: 20px;
	width: 100%;
}

.template-1 .right-video--small {
	max-width: 400px;
}

.template-1 .right-video--medium {
	max-width: 700px;
}

.template-1 .right-video--large {
	max-width: 1000px;
}

.template-1 .video-title {
	color: white;
}

@media all and (max-width: 1100px) {
	.template-1 .left {
		padding-top: 230px;
	}
	.template-1 .right > div {
		padding-top: 80px;
	}
}
@media all and (max-width: 850px) {
	.template-1 .left {
		padding-top: 200px;
	}
	.template-1 .right > div {
		padding-top: ;
	}
}
@media all and (max-width: 750px) {
	.template-1 .left {
		font-size: 2.5rem;
		letter-spacing: 0.5rem;
		line-height: 3.2rem;
	}
	.template-1 .right > div {
		padding-right: 20px;
	}
	.template-1 .right-item div,
	.template-1 .video-title {
		font-size: 2rem;
		letter-spacing: 0.4rem;
		line-height: 2.3rem;
	}
}
@media all and (max-width: 600px) {
	.template-1 .left {
		padding-top: 170px;
	}
}
@media all and (max-width: 500px) {
	.template-1 .left {
		padding-left: 20px;
	}
}
@media all and (max-width: 414px) {
	.template-1 .left {
		padding: 160px 10px 50px 10px;
		font-size: 1.8rem;
		letter-spacing: 0.35rem;
		line-height: 2.4rem;
	}
	.template-1 .right > div {
		padding: 80px 10px 0 100px;
	}
	.template-1 .right-item div,
	.template-1 .video-title {
		font-size: 1.5rem;
		letter-spacing: 0.3rem;
		line-height: 2rem;
	}
}

/* Template 2 */

.template-2 {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 260px;
	padding-bottom: 50px;
}

.template-2--black {
	color: white;
}

.template-2 > div {
	max-width: 1200px;
	width: 100%;
	margin: 0 50px;
}

.template-2 .image-top {
	width: 100%;
	margin-bottom: 30px;
	display: flex;
	justify-content: flex-end;
	position: relative;
}

.template-2 .image-top h2 {
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 150px;
	z-index: 2;
}

.template-2 .image-top img {
	max-width: 100%;
	max-height: 70vh;
	padding-left: 250px;
}

.template-2 .grid {
	padding-bottom: 20px;
}

.template-2 .grid-item {
	width: calc( 50% - 15px );
	margin-bottom: 30px !important;
}

.template-2 .grid-item--first {
	margin-bottom: 0 !important;
}

.template-2 .grid-item--space {
	height: 150px;
}

.template-2 .grid p {
	text-align: justify;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5rem;
	z-index: 3;
}

.template-2 .grid .title,
.template-2 .image-top h2 {
	text-transform: uppercase;
	font-size: 3.2rem;
	line-height: 3.5rem;
	letter-spacing: 0.8rem;
	font-weight: 600;
	text-align: left;
}

.template-2 .image-top h2 {
	max-width: 600px;
}

.template-2 .grid .title--large {
	width: 100%;
	text-align: center;
}

.template-2 .grid figure {
	margin: 0;
}

.template-2 .grid figure img {
	width: 100%;
}

.youtube-1 {
	padding-bottom:56.25%; 
	position:relative; 
	height:0;
	background-color: black;
}

.youtube-2 {
  background-color: black;
  background: no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  overflow:hidden;
  position: relative;
	padding-bottom:56.25%; 
	position:relative; 
	height:0;
}

.btn-play {
	display : inline-block;
 	height : 0;
 	width : 0;
 	border-top : 45px solid transparent;
 	border-bottom : 45px solid transparent;
 	border-left : 78px solid #ffffff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-left: 8px;
	transition: 0.2s;
}

.youtube-1:hover .btn-play {
	border-left: 78px solid #00ffb8;
}

.youtube-1 iframe {
	left:0; 
	top:0; 
	height:100%;
	width:100%;
	position:absolute;
}

.template-2 .website {
	z-index: 3;
}

.template-2 .website a {
	text-transform: uppercase;
	font-size: 1.3rem;
	letter-spacing: 0.15rem;
}

.template-2 .website a:hover {
	color: #00ffb8;
}

@media all and (max-width: 1400px) {
	.template-2 {
		margin-top: 20vw;
	}
	.template-2 .image-top h2 {
		padding-top: 10vw;
	}

}
@media all and (max-width: 950px) {
	.template-2 {
		margin-top: 25vw;
	}
}
@media all and (max-width: 750px) {
	.template-2 {
		margin-top: 35vw;
	}
	.template-2 .image-top img {
		padding-left: 200px;
	}
	.template-2 .grid .title,
	.template-2 .image-top h2 {
		font-size: 2.5rem;
		letter-spacing: 0.5rem;
		line-height: 2.5rem;
	}
}
@media all and (max-width: 680px) {
	.template-2 .grid-item {
		width: 100%;
	}
	.template-2 .image-top {
		margin-bottom: 20px;
		display: block;
	}
	.template-2 .image-top h2 {
		position: unset;
		padding-top: 20px;
	}
	.template-2 .image-top img {
		max-width: 100%;
		padding-left: 0;
	}
	.template-2 .grid-item--space {
		display: none;
	}
}
@media all and (max-width: 600px) {
	.btn-play {
	 	border-top : 30px solid transparent;
	 	border-bottom : 30px solid transparent;
	 	border-left : 52px solid #ffffff;
	}
	.youtube-1:hover .btn-play {
		border-left: 52px solid #00ffb8;
	}
}
@media all and (max-width: 500px) {
	.template-2 > div {
		margin: 0 20px;
	}
}
@media all and (max-width: 414px) {
	.template-2 > div {
		margin: 0 10px;
	}
	.template-2 .grid .title,
	.template-2 .image-top h2 {
		font-size: 2rem;
		letter-spacing: 0.35rem;
		line-height: 2rem;
	}
}

/* Fine dying paris */

.header-title--finedying {
	top: 40px;
}

.logo-header--finedying {
	top: 60px;
}

.fine-dying {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 100%;
	padding-top: 180px;
}

.fine-dying section {
	padding: 0 50px 50px 50px;
	width: 800px;
}

.fine-dying h2 {
	font-size: 2.5rem;
	letter-spacing: 0.5rem;
	text-transform: uppercase;
	padding: 0 0 40px 0;
	margin: 0;
}

.fine-dying h3 {
	text-transform: uppercase;
	padding: 0;
	margin: 0;
	font-size: 1.5rem;
}

.fine-dying h4 {
	padding: 0 0 0 0;
	margin: 0;
}

.fine-dying p {
	font-weight: 400;
	max-width: 650px;
}

.fine-dying .object {
	display: flex;
	justify-content: space-between;
	padding-bottom: 50px;
}

.fine-dying .object > div:first-child {
	padding-right: 40px;
}

.fine-dying .image {
	height: 200px;
}

.fine-dying img {
	height: 100%;
}

.fine-dying .text {
	padding-bottom: 80px;
}

.fine-dying .text h3 {
	padding: 20px 0;
}

.fine-dying .text h4 {
	text-transform: uppercase;
}

.fine-dying .text p {
	padding-bottom: 20px;
}

.fine-dying .text a {
	text-decoration: underline;
}

.fine-dying .text a:hover {
	text-decoration: none;
}

@media all and (max-width: 800px) {
	.fine-dying section {
		width: 100%;
	}
}
@media all and (max-width: 600px) {
	.fine-dying {
		padding-top: 150px;
	}
	.fine-dying section {
		padding: 0 30px 50px 30px;
	}
	.fine-dying .object {
		display: block;
	}
	.fine-dying .object > div:first-child {
		padding-right: 0;
	}
	.fine-dying .image {
		margin-top: 20px;
	}
}
@media all and (max-width: 414px) {
	.fine-dying {
		padding-top: 110px;
	}
	.fine-dying section {
		padding: 0 15px 50px 15px;
	}
}

/* Legals */

.legals > div {
	max-width: 800px;
}

.legals p {
	position: relative;
	z-index: 2;
	padding-bottom: 20px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5rem;
}