/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* ##========================================================================================
##                                                                                      ##
##                                         RESET                                        ##
##                                                                                      ##
##========================================================================================
 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
	background: #000;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

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

.screen-reader-text, h1 {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

/*
//--------------------------------------------------------------------------------------//
//                                                                                      //
//                                        COSMIC STYLE                                  //
//                                                                                      //
//--------------------------------------------------------------------------------------//
*/

@font-face {
	font-family: 'cartonsix';
	font-display: swap;
	src: url('../fonts/CARTON_SIX.woff2') format('woff2'),
		url('../fonts/CARTON_SIX.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'pureheart';
	font-display: swap;
	src: url('../fonts/PUREHEART-REGULAR.woff2') format('woff2'),
		url('../fonts/PUREHEART-REGULAR.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'fredoka';
	font-display: swap;
	src: url('../fonts/Fredoka-VariableFont_wdth\,wght.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'jost';	
	font-display: swap;
	src: url('../fonts/Jost-Medium.woff2') format('woff2'),
		url('../fonts/PUREHEART-REGULAR.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
html {
	font-size: 10px;
	--black-color: #000;
	--light-color: #fff;
	--deep-purple: #4A0505;
	--light-green: #a3e409;
	--deep-green: #3E5705;
	--pink: #FD936C;
	--red:#AD1116;
	--yellow: #FDEC20;
	--gray: hsla(32, 61%, 94%, 0.475);
	--shadow: #4A0505;
	--paragraph-font: Verdana, Geneva, Tahoma, sans-serif;
	--paragraph-font2: 'Fredoka', sans-serif;
	--paragraph-font3: 'jost', sans-serif;
	--h2-font:'cartonsix';
	--h3-font: 'cartonsix';
	--h4-font: 'pureheart';
	font-family: var(--paragraph-font3);
	color: var(--light-color);
}

body {
	padding: 1%;
}
.no-scroll {
    overflow: hidden;
}

.bg-radian {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: -1000;
	background: -webkit-gradient(linear, left top, left bottom, from(var(--black-color)), to(var(--deep-purple)));
	background: -o-linear-gradient(top, var(--black-color), var(--deep-purple));
	background: linear-gradient(180deg, var(--black-color), var(--deep-purple));
}

h2 {
	font-family: var(--h3-font);
	font-size: 4rem;
}
h3,
section span {
	font-family: var(--h3-font);
	font-size: 3.5rem;
	-webkit-transition:all .4s;
	-o-transition:all .4s;
	transition:all .4s;
}

h4 {
	font-family: var(--h4-font);
	font-size: 4rem;
	color:var(--yellow);
}
p {
	font-size: 1.8rem
}
a{
	color:var(--light-color);
	text-decoration: none;
}
a:hover{
	color: var(--gray);
}
h3 a {
	position: relative;
	color: var(--light-color);
	text-decoration: none;
}

h3 a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -.5rem;
	height: .2rem;
	width: 0%;
	border-bottom: solid var(--gray) .3rem;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
h3 a:hover {
	color: var(--gray);
}
h4 a {
	position: relative;
	color: var(--yellow);
	text-decoration: none;
	font-size: 5rem;
	text-shadow: .2rem .2rem var(--red);
}

h4 a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1rem;
	height: .2rem;
	width: 0%;
	border-bottom: solid var(--yellow) .3rem;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

h4 .jungle, h4:has(.jungle){
	color: var(--light-green);
}
h4 .jungle::before{
	border-bottom: solid var(--light-color) .3rem;
}
h4 .exterieur,  h4:has(.exterieur){
	color: var(--light-color);
}
h4 .exterieur::before{
	border-bottom: solid var(--light-color) .3rem;
}
h4 a:hover{
	color:var(--gray);
}

.container {
	width: 100%;
}
@media only screen and (min-width: 760px) {
    .container {
        max-width: 75%;
		margin: auto;
    }
}
/*
//--------------------------------------------------------------------------------------//
//                                     HEADER                                      		//
//--------------------------------------------------------------------------------------//
*/

.header-container {
	position: relative;
	height: 100cqw;
	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: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media only screen and (min-width: 760px) {
    .header-container {
        height: 50cqw;
    }
}

.header-container::before {
	width: 100%;
	height: 100%;
	content: '';
	background-image: url(../img/header-bg.webp);
	background-size: 100%;
	background-repeat: no-repeat;
	-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(var(--black-color)), to(transparent));
	-webkit-mask-image: linear-gradient(to bottom, var(--black-color), transparent);
	        mask-image: -webkit-gradient(linear, left top, left bottom, from(var(--black-color)), to(transparent));
	        mask-image: linear-gradient(to bottom, var(--black-color), transparent);
	z-index: -1;
}

.header-logo-container {
	position: absolute;
	z-index: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.header-logo-container a{
	width: 100%;
}
.header-logo {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
/* .header-container h1 {
	font-size: 0rem;
} */



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

*/
@media only screen and (min-width: 760px) {
	nav {
		margin: 5vh 0 0;
	}
}

.c-nav_container_menu {
    position: fixed;
    top: -5%;
    left: 0;
    right: 0;
    bottom: -2vh;
	z-index: 2000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color:var(--deep-purple);
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.c-nav_container_menu[hidden] {
    -webkit-transform: translateY(-105%);
        -ms-transform: translateY(-105%);
            transform: translateY(-105%);
}
.c-nav_container_menu li a {
	font-family: var(--h3-font);
	font-size: 3.5rem;
	color: var(--yellow);
	transition: all .4s;
}
.c-nav_container_menu li a:hover {
	color: var(--gray);
}
#menu-item-16 a {
    position: relative;
}
#menu-item-16 a:hover{
	color:transparent;
}
#menu-item-16 a::before {
    content: '';
	position: absolute;
	z-index: -10;

    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
	padding: 1rem 3rem 0rem 1rem;
    height: 40px;
    width: 40px;

    background-image: url('../img/ticket-solid-full-green.svg');

   	background-size: contain;
	background-repeat: no-repeat;
	transition:all .4s;
}
#menu-item-16 a:hover::before {
	background-image: url('../img/ticket-solid-full-yellow.svg');

}
@media only screen and (min-width: 760px) {
	.c-nav_container_menu[hidden]{
		position: static;
		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-pack: distribute;
		    justify-content: space-around;
		background: transparent;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		margin: 0 3vw;
	}
	.c-nav_container_menu{
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
	}
	.c-nav_container_menu li a {
		font-size: 2.5vw;
	}
}
/*
//--------------------------------------------------------------------------------------//
//                                        burger                                        //
//--------------------------------------------------------------------------------------//
*/

.toggle-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
	background: var(--deep-green);
    border: 50%;
    border-radius: 50%;
    position: fixed;
    z-index: 2010;
    bottom: 5vh;
    right: 3vw;
    padding: 1rem;
	-webkit-box-shadow: .1rem .2rem .5rem var(--shadow);
	        box-shadow: .1rem .2rem .5rem var(--shadow);
}
.toggle-menu {
    position: relative;
    z-index: 2010;
    font-size:2rem;
	background-color:transparent;
    cursor: pointer;
    display:block;
    width:4rem;
    height: 4rem;
	padding: 0;
    border-style:none;
    outline: none;
}
.toggle-menu span:after,
.toggle-menu span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -9px;
}
.toggle-menu span:after{
    top: 9px;
  }
.toggle-menu span {
    position: relative;
    display: block;
  }
.toggle-menu span,
.toggle-menu span:after,
.toggle-menu span:before {
    width: 100%;
    height: .3rem;
    background-color:var(--yellow);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .toggle-menu.on span {
    background-color: transparent;
  }
  .toggle-menu.on span:before {
    background-color: var(--yellow);
    -webkit-transform: rotate(45deg) translate(5px, 5px);
        -ms-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
  }
  .toggle-menu.on span:after {
    background-color: var(--yellow);
    -webkit-transform: rotate(-45deg) translate(7px, -8px);
        -ms-transform: rotate(-45deg) translate(7px, -8px);
            transform: rotate(-45deg) translate(7px, -8px);
  }
    @media (min-width: 760px) {
        .toggle-menu {
            display: none;
        } 
        .toggle-button {
			display: none;
		}
    }
/*
//--------------------------------------------------------------------------------------//
//                                      fin burger                                      //
//--------------------------------------------------------------------------------------//
*/
.c-nav-tickets {
    position: fixed;
    z-index: 1000;
    right: 3vw;
    background: var(--deep-green);
    padding: 1rem;
	border-radius: 50%;
	-webkit-box-shadow: .1rem .2rem .5rem var(--shadow);
	        box-shadow: .1rem .2rem .5rem var(--shadow);
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
.c-nav-tickets svg {
	height: auto;
	width: 4rem;
}
.c-nav-tickets path{
	fill: var(--yellow);
}
.c-nav-tickets:hover {
	background: var(--gray);
}
main {
	overflow: hidden;
}
/*
//--------------------------------------------------------------------------------------//
//                                                                                      //
//                                      ACTUALITES                                      //
//                                                                                      //
//--------------------------------------------------------------------------------------//
*/
section {
	padding:10vh 0 0;
}
.actuality {
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: repeat(1,1fr);
	background: var(--black-color);
	margin-top: 5vh;
	padding: 1rem;
}
.actuality img {
	max-width: 100%;
	height: auto;
}
.actuality a img {
	width: 100%;
	height: auto;
}

.actuality-title {
	text-align: center;
}
.actuality-description{
	text-align: start;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.actuality a{
	display: flex;
	flex-direction:column;
	justify-content: center;
}
@media only screen and (min-width: 760px){
	.actuality{
		grid-template-columns: repeat(1, 1fr 2fr);
	}
	.actuality-title {
	grid-column: 1 / 3;
	}
	.actuality-description{ 
		text-align: end;
	}
}



.teaser-container{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr;
	grid-template-columns: repeat(1,1fr);
	grid-gap:2rem;
}
.teaser-container h2{
	text-align: center;
}
@media only screen and (min-width: 760px) {
	.teaser-container{
		-ms-grid-columns: 1fr 2rem 1fr;
		grid-template-columns: repeat(2,1fr);
	}
	.teaser-container h2{
		grid-column: 1 / 3;
	}
}
.teaser-container img{
	width: 100%;
	height: auto;
	opacity: .7;
	transition:all .4s;
}
.teaser-container img:hover {
	opacity:1;
}
.teaser-container iframe{
	width: 100%;
}
/*
//--------------------------------------------------------------------------------------//
//                                                                                      //
//                                       SECTIONS                                       //
//                                                                                      //
//--------------------------------------------------------------------------------------//
*/
section {
	position:relative;
}
.bg-planet {
	position:absolute;
	z-index: -100;
	height: auto;
}
.bg-eye {
	position:absolute;
	z-index: -90;
	width: 5rem;
	height: auto;
}
#bg-planet_1 {
    width: 15rem;
    top: 3vh;
    left: -13vw;
}
#bg-planet_2 {
    width: 20rem;
    top: 50vh;
    left: 48vw;
}
#bg-planet_3 {
	width: 30rem;
    top: 70vh;
    left: -20rem;
}
#bg-planet_4 {
	width: 30rem;
    bottom: 30vh;
    right: -25rem;
}
#bg-planet_5 {
    width: 15rem;
    bottom: -8rem;
    left: 40vw;
}
#bg-eye_1 {
	top: 10vh;
    left: 65vw;
}
#bg-eye_2 {
    top: 50vh;
    left: -7vw;
}
#bg-eye_3 {
    bottom:10vh;
    left: 60vw;
}

.bg-eye {
	animation: eye 2s reverse infinite;
	animation-direction: alternate-reverse;
}
.programmation {
	width: 80%;
	margin: auto;
}
.programmation h4 {
	font-size: 5rem;
}
.programmation-box{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[1];
	grid-template-columns: repeat(1,1fr);
	margin: 0 0 20vh;
}
.programmation-title {
	margin-top: 10vh; 
}
.programmation-box:has(.without-taxonomy){
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: start;
}
.programmation-card span, .day-card span {
	font-family: var(--paragraph-font3)!important;
	font-size: 1.8rem!important;
}

@media only screen and (min-width: 760px){
	.programmation-box{
		-ms-grid-columns: 1fr 1rem 1fr;
		grid-template-columns: repeat(2,1fr);
		grid-template-rows: repeat(auto-fit, 1fr);
		grid-gap: 1rem;
	}
	.programmation-box:has(.without-taxonomy){
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	.programmation-card {
		padding: 0 10%;
	}
	.programmation-card:nth-of-type(1){
		text-align: end;
	} 
	.programmation-card:nth-of-type(2){
		text-align: end;
		-ms-grid-column: 1;
		grid-column: 1;
		-ms-grid-row: 2;
		    grid-row-start: 2;
		-ms-grid-row-span:2;
		grid-row-end:4;
	}
	.programmation-card:nth-of-type(1) h3, .programmation-card:nth-of-type(2) h3 {
		padding: 0 2vw 0 0;
	}
	.programmation-card:nth-of-type(3){
		text-align: start;
		-ms-grid-column: 2;
		grid-column: 2;
		-ms-grid-row: 1;
		    grid-row-start: 1;
		-ms-grid-row-span:2;
		grid-row-end:3;
	}
	.programmation-card:nth-of-type(4){
		text-align: start;
		-ms-grid-column: 2;
		grid-column: 2;
		-ms-grid-row: 3;
		    grid-row-start: 3;
	}
		.programmation-card:nth-of-type(3) h3, .programmation-card:nth-of-type(4) h3 {
		padding: 0 0 0 2vw;
	}
}
section h2,section h3,
section h4,
section span {
	margin: 1rem 0 2rem 0;
}
@media only screen and (min-width: 760px){
	.programmation h2 {
	text-align: center;
}
}

.programmation h3, .programmation-links h3, .programmation-title h2 {
	position: relative;, 
}
.programmation h3::before, .programmation-links h3::before, .programmation-title h2::before { 
	content: '';
    position: absolute;
	z-index: -1;
    background: var(--deep-green);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
	padding: 1rem 3rem 0rem 1rem;
	width: 100%;
	height: 4rem;
}
.programmation h3:hover::before, .programmation-links h3:hover::before{
	background: transparent;
	outline: solid var(--deep-green) .2rem;
}
.without-taxonomy{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
	padding: 0 2rem 0 0;

}
.band-name {
	font-family: var(--h4-font);
	font-size: 5rem;
	color:var(--yellow);
}
.without-taxonomy p{
	color:var(--yellow);
	margin: 1rem 0;
}

.without-taxonomy:nth-of-type(even) p{
	color:var(--light-color);
}
.programmation-disabled {
	grid-column: 1 / 3;
}
.programmation-disabled h4 {
	width: 100%;
	text-align: start;
}
@media only screen and (min-width: 760px){
	.programmation-disabled h4 {
	text-align: center;
}
}
/*
//--------------------------------------------------------------------------------------//
//                                  SECTIONS Collapse                                   //
//--------------------------------------------------------------------------------------//
*/
button {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	width: 100%;
	padding: 0;
	background: transparent;
	border-style: none;
}

.collapse .title-background {
	background: var(--yellow);
	padding: 1rem;
	margin-top: 1rem;
	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;
	color: var(--black-color);
	-webkit-transition: background .4s;
	-o-transition: background .4s;
	transition: background .4s;
}
.title-background h2{
	text-align: start;
}
.title-background-checked {
	background: transparent!important;
	color:var(--yellow)!important;
	border: solid .2rem var(--yellow)!important;
}
.title-background-checked .span-cont {
	color:var(--yellow)!important;
	border-color: var(--yellow)!important;
}
.span-not-visible,
.closed {
	display: none;
}
.span-visible {
	display: inline;
}
.span-cont {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 4rem;
	height: 4rem;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-radius: 50%;
	border: solid .3rem var(--deep-purple);
	color: var(--deep-purple)
}
.closed,
.opened {
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 3rem;
}
.closed {
	margin: auto;
}
.opened {
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
}

/*
//--------------------------------------------------------------------------------------//
//                                  SECTIONS expanded                                   //
//--------------------------------------------------------------------------------------//
*/

.collapse-content[hidden] {
	height: 0;
}
.collapse-content {
	background-color: var(--yellow);
	color: var(--black-color);
	padding: 2%;
	margin: 1rem 0 0 0;
	height: auto;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.collapse-content h3 a{
	color: var(--deep-purple);
}
.collapse-content h3 a::before {
	border-bottom: solid var(--deep-purple) .3rem;
}
.collapse-content h4 {
	color: var(--black-color);
}
.collapse-content h4 a {
	color:var(--black-color);
}

.collapse-content h4 a::before {
	border-bottom: solid var(--black-color) .3rem;
}
.collapse-content h4 a:hover{
	color:var(--gray);
}
/*
//--------------------------------------------------------------------------------------//
//                                     INFORMATIONS                                     //
//--------------------------------------------------------------------------------------//
*/
@media only screen and (min-width: 760px) {
	.infos-content{
		-webkit-column-count: 2;
		   -moz-column-count: 2;
		        column-count: 2;
		-webkit-column-break-inside: avoid;
		   -moz-column-break-inside: avoid;
		        break-inside: avoid;
	}
 	.infos-content h4:nth-of-type(3), .infos-box-column-lap{
		-webkit-column-break-before: column ;
		   -moz-column-break-before: column ;
		        break-before: column ;
	}	
}
.information-box {
	padding: 2rem;
	margin-top: 2rem;
	-webkit-box-shadow: .1rem .2rem .5rem var(--shadow);
	        box-shadow: .1rem .2rem .5rem var(--shadow);
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	height: 6rem;
	overflow: hidden;
	cursor:pointer;
	-webkit-transition:all .4s;
	-o-transition:all .4s;
	transition:all .4s;
}
.information-box-expanded {
	height: auto;
	overflow:visible;
}
.information-box:hover{
	-webkit-box-shadow: .1rem .2rem .1rem var(--shadow);
	        box-shadow: .1rem .2rem .1rem var(--shadow);
}
.information-box-card{
	padding: 0 0 10vh;
}
.details-expanded {
	display: block;
}
.details-collapsed {
	display: none;
}

/*
//--------------------------------------------------------------------------------------//
//                                                                                      //
//                                       ARCHIVES                                       //
//                                                                                      //
//--------------------------------------------------------------------------------------//
*/
.archives-box{
	padding: 2rem;
	margin-top: 2rem;
	-webkit-box-shadow: .1rem .2rem .5rem var(--shadow);
	        box-shadow: .1rem .2rem .5rem var(--shadow);
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}


.archives-box:hover{
	-webkit-box-shadow: .1rem .2rem .1rem var(--shadow);
	        box-shadow: .1rem .2rem .1rem var(--shadow);
}
/*
//--------------------------------------------------------------------------------------//
//                                    TAXONOMIE DAYS                                    //
//--------------------------------------------------------------------------------------//
*/
.taxo-days {
	margin-bottom: 20vh;
	position : relative;
}
.rooms-caption .place {
	margin: 1rem;
}

.days-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 20rem;
}
@media only screen and (min-width: 760px){
	.days-nav {
		flex-direction:row;
		height: auto;
	}
	.rooms-caption .place {
	margin: 2.5rem 1rem;
}
}
.days-nav h2 {
	margin: 0;
	font-size: 3rem;


}
.days-nav a, .days-nav p {
	position:relative;
	font-family: var(--h3-font);
    font-size: 2rem;
	text-decoration: none;
/* 	color: var(--yellow); */
	color:var(--deep-green);
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
.days-nav a:hover{
	font-size: 2.5rem;
	color:var(--light-color);
}

.day-box {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (fr)[1];
	grid-template-columns: repeat(1, fr);
}
.place{
	font-family: var(--h3-font);
	color:var(--yellow);
	font-size: 2.5rem;
	margin-bottom: 0;
}
.rooms-list {
    position: fixed;
    z-index: 1000;
    left: 50%;
    display: flex;
    justify-content: space-around;
    padding: 1rem 1rem 0;
    overflow: hidden;
    background-color: var(--black-color);
    border-radius: 25px;
    margin: auto;
    transform: translateX(-50%);
	}

.path-text svg #curved{
	fill:transparent;
	height: 12vh;
}
.skull{
	fill:var(--yellow);
	width: 60%;
}
.path-text svg {
/* 	height: 10vh; */
	height: 5rem;
	overflow: visible;
}
.path-text svg .place {
	fill:var(--yellow);
}
.place-jungle, .path-text svg .place-jungle{
	color:var(--light-green);
	fill:var(--light-green);
}
.place-exterieur, .path-text svg .place-exterieur{
	color:var(--light-color);
	fill:var(--light-color);
}
.path-text {
	position:relative;
	padding: 0 1rem;
}
.path-text .skull{
	height: 3rem;
	position:absolute;
	top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
@media only screen and (min-width: 760px){
	.rooms-list {
		position: fixed;
		z-index: 1000;
		left: 5vw;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		padding: 1rem;
		overflow: hidden;
		background-color: var(--black-color);
		border-radius: 25px;
	}
	.path-text {
	padding: 1rem 0;
	}
	.path-text svg {
		height: 7rem;
	}
	.path-text .skull {
		height: 5rem;
	}
}

.circle:not(:has(~ .place-exterieur)){
	padding: 0 0 10vh;
	border-bottom: solid var(--light-green) .3rem;
}
@media only screen and (min-width: 760px) {
    .day-box  {
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
	grid-gap: 2rem;
	}
	.days-nav h2 {
	font-size: 4rem;
}
.days-nav a{
	font-size: 3rem;
}
.days-nav a:hover{
	font-size: 3.5rem;
}
	.day-card{
		-ms-grid-column: 1;
		grid-column: 1;
		text-align: end;
	}
	.day-card:has(.jungle) {
		-ms-grid-column: 2;
		grid-column: 2;
		text-align: start;
	}
	.day-card:has(.exterieur) {
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-column: 1/3;
		text-align: center;
		color:var(--light-green);
	}
}
.room-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}
/*
//--------------------------------------------------------------------------------------//
//                                                                                      //
//                                    SINGLE ARTIST                                     //
//                                                                                      //
//--------------------------------------------------------------------------------------//
*/
.single-artist-name{
	font-size: 12vw;
}
.programmation-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.programmation-links h4 a{
	font-size: 3rem;
}
.artist-box{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr;
	grid-template-columns: repeat(1,1fr);
	grid-gap: 2rem;
	padding: 3rem 0;
	color:var(--yellow);
}
.artist-bio {
	line-height: 3rem;
}
.artist-box-image img{
	width: 100%;
	height: auto;
}
.artist-social-box h4{
	margin: 0 0 1rem;
}
.artist-social-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.artist-social-link {
	padding: 0 3rem 0 0;
}
.artist-social-link svg{
	width: 3rem;
	height: auto;
	fill:var(--yellow);
	transition:all .4s;
}
.artist-social-link svg:hover{
	fill:var(--deep-green);
}
.artist-video iframe {
	width: 100%;
	height: 70cqw;
}
@media only screen and (min-width: 760px){
	.artist-box {
	-ms-grid-columns: 1fr 2rem 1fr;
	grid-template-columns: repeat(2,1fr);
	margin: 0;
	}
	.artist-bio {
	margin:0;
	}
	.single-artist-name{
	font-size: 8vw;
	}
	.artist-video iframe {
		height: 40cqw;
	}
}

/*
//--------------------------------------------------------------------------------------//
//                                                                                      //
//                                       SINGLES                                        //
//                                                                                      //
//--------------------------------------------------------------------------------------//
*/
.single-container {
	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: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 10rem 0 0;
}
.single-container img {
	max-width: 100%;
	height: auto;
}
.single-container p {
	-ms-flex-item-align: start;
	    align-self: flex-start;
}
/*
Single Affiches*/
.posters-box {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[1];
	grid-template-columns: repeat(1, 1fr);
}
.porter-card {
	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: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.poster-card img, .archives-photo-card img, .actuality img {
	max-width: 100%;
	height: auto;
	opacity: .7;
	-webkit-transition:all .4s;
	-o-transition:all .4s;
	transition:all .4s;
}
.poster-card img:hover, .archives-photo-card img:hover, .actuality img:hover {
	opacity: 1;
}
@media only screen and (min-width: 760px) {
    .posters-box {
       -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
       grid-template-columns: repeat(3, 1fr);
	   grid-gap: 2rem;
	}
}
.card-caption {
	color:var(--light-color);
	text-decoration: none;
}
/* 
//--------------------------------------------------------------------------------------//
//                                   single affiches                                   //
//--------------------------------------------------------------------------------------//
*/
.single-poster-container{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr;
	grid-template-columns: repeat(1,1fr);
	grid-gap:2rem;
}
.archives-photo-box{
	display:-ms-grid;
	display:grid;
	-ms-grid-columns: (1fr)[1];
	grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 760px) {
	.single-poster-container{
		-ms-grid-columns: 1fr 2rem 1fr;
		grid-template-columns: repeat(2,1fr);
	}
    .archives-photo-box {
       -ms-grid-columns: 1fr 2rem 1fr;
       grid-template-columns: repeat(2, 1fr);
	   grid-gap: 2rem;
	}
}
.teaser iframe{
	max-width: 100%;
}
/*
//--------------------------------------------------------------------------------------//
//                                     SINGLE INFOS                                     //
//--------------------------------------------------------------------------------------//
*/
.single-infos-title {
	color:var(--yellow);
}
/*
//--------------------------------------------------------------------------------------//
//                                                                                      //
//                                        FOOTER                                        //
//                                                                                      //
//--------------------------------------------------------------------------------------//
*/
footer {
	position: relative;
	height: 60vh;
	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: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
@media only screen and (min-width: 760px) {
    footer {
        height: 30vw;
	}
}
footer::before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../img/footer-bg.webp);
	background-size: 100%;
	-webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(var(--black-color)), to(transparent));
	-webkit-mask-image: linear-gradient(to top, var(--black-color), transparent);
	        mask-image: -webkit-gradient(linear, left bottom, left top, from(var(--black-color)), to(transparent));
	        mask-image: linear-gradient(to top, var(--black-color), transparent)
}

footer .container {
	position: absolute;
	width: 50%;    
	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: end;
        -ms-flex-align: end;
            align-items: end;
}


.social-nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: end;
}

.social-link {
	fill: var(--yellow);
	height: 4rem;
	transition:all .4s;
}
.social-link:hover {
	fill:var(--deep-green);
}
.footer-logo {
	width: 50%;
}

.footer-logo img {
	max-width: 100%;
}

.footer-nav ul {
	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: end;
	    -ms-flex-align: end;
	        align-items: end;
}
.footer-nav li {
	text-align: end;
}
.footer-nav a {
	font-family: var(--h3-font);
	font-size: 2.5rem;
	color: var(--yellow);
	text-decoration: none;
	transition:all .4s
}
.footer-nav a:hover {
	color:var(--gray);
}

.footer-snake img {
	width: 25vh;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 0;
}
@media only screen and (min-width: 760px) {
    .footer-snake img  {
		height: 31vw;
		width: auto;
        right: 25cqw;
	}
}

/*
//--------------------------------------------------------------------------------------//
//                                                                                      //
//                                       ANIMATE                                        //
//                                                                                      //
//--------------------------------------------------------------------------------------//
*/
@-webkit-keyframes eye {
	90%{
		-webkit-clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0% 100%);
		        clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0% 100%);
	}
	100%{
		-webkit-clip-path:polygon(0 47%, 100% 47%, 100% 54%, 0% 54%);
		        clip-path:polygon(0 47%, 100% 47%, 100% 54%, 0% 54%);
	}
}
@keyframes eye {
	90%{
		-webkit-clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0% 100%);
		        clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0% 100%);
	}
	100%{
		-webkit-clip-path:polygon(0 47%, 100% 47%, 100% 54%, 0% 54%);
		        clip-path:polygon(0 47%, 100% 47%, 100% 54%, 0% 54%);
	}
}

/*
//--------------------------------------------------------------------------------------//
//                                                                                      //
//                                         404                                          //
//                                                                                      //
//--------------------------------------------------------------------------------------//
*/
.skull-container {
	padding: 10vh 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: center;
	    -ms-flex-align: center;
	        align-items: center;
	color:var(--yellow);
}
.skull-box {
	margin: 4vh 0 0;
}
.skull-warning {
	height: 30vh;
	width: auto;
	fill:var(--yellow);
}.example {
    display: -ms-grid;
    display: grid;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
    background: -o-linear-gradient(top, white, black);
    background: linear-gradient(to bottom, white, black);
}
/*
//--------------------------------------------------------------------------------------//
//                                                                                      //
//                                    COOKIE NOTICE                                     //
//                                                                                      //
//--------------------------------------------------------------------------------------//
*/
#cookie-notice {
	text-align: center!important;
}
.cn-set-cookie, .cn-button {
	margin-bottom: 1rem!important;
	color: var(--deep-green)!important;
	font-weight: bold!important;
}
.cn-close-icon:before, .cn-close-icon:after {
	    background-color:var(--light-color)!important;
}
/*
//--------------------------------------------------------------------------------------//
//                                                                                      //
//                                    WEB CARBONAGE                                     //
//                                                                                      //
//--------------------------------------------------------------------------------------//
*/
#wcb.carbonbadge {
    text-align: left!important;
    color: var(--black-color)!important;
    line-height: 1.15;
    padding-left: 1rem!important;
    margin-bottom: 1rem;
}
#wcb #wcb_a, #wcb #wcb_g{
    color:var(--deep-green)!important;
    border : .13rem solid var(--first-color)!important;
}
#wcb #wcb_a{
    background: var(--yellow)!important;
}
#wcb_2 {
    color:var(--yellow)!important;
    text-align: left!important;
}
#wcb #wcb_g {
    color: var(--yellow)!important;
    background: none!important;
    outline: solid var(--yellow) .1rem;
}