*, *::before, *::after {
  box-sizing: border-box;
}
:root {
  --white: #000000;
}
html {
    font-family: "futura-pt", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    letter-spacing: -0.4px;
    color: rgba(255,255,255,1.00);
    background-color: rgba(13,13,13,1.00);
    min-height: 100%;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
    letter-spacing: 0px;
	  background-color: rgba(7,7,7,1.00);
  }
}

html, body {
  height: 100%;
}
a {
	text-decoration: none;
	color: rgba(255,255,255,1.00);
	transition:  .2s ease-in-out;
}
a:hover {
  color: rgba(255, 0, 4, 1.0);
}






/*-----------------------season-----------------------*/
.season {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 20vh;
  font-size: 20px;
  letter-spacing: -0.3px;
}
@media screen and (max-width: 768px) {
  .season {
	  width: 95%;
    font-size: 16px;
    letter-spacing: 0px;
  }
}
.season img {
	width: 100%;
  margin-bottom: -10vh;
}
@media screen and (max-width: 768px) {
  .season img {
	  width: 90%;
  }
}
.season .text {
  width: 80%;
  text-align:center;
}
.players {
  margin-left: auto;
  margin-right: auto;
  background-color: ;
  width: 210px;
}
.season_audio_box {
  width: auto;
  display: flex;
  align-items: left;
  justify-content: left;
  padding-bottom: 10px;
  margin-right: auto;
  margin-left: auto;
}
.season a:hover {
	color:rgba(255,255,255,1.00)
}
.date {
	margin-top: 5vh;
	width: auto;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
@media screen and (max-width: 768px) {
  .date{
	  width: 100%;
	  text-align: left;
  }
}








/*----------------------cursor----------------------*/
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: transparent;
    background-color: rgba(255,255,255,1);
    border-radius: 50%;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .3s cubic-bezier( .3, 1, .2, 1), background-color 0.2s ease;
    z-index: 999;
}
@media screen and (max-width: 768px) {
  .custom-cursor{
    display: none
  }
}
.custom-cursor.hover-active {
  width: 15px;
  height: 15px;
  background-color: rgba(255,0,4,1);
}





/* ---------------------loader--------------------- */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease-in-out;
  z-index: 9999;
  opacity: 1;
}
.loader {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
circle {
  fill: none;
  stroke-width: 1px;
}
.progress {
  	stroke: white;
	stroke-width: .5;
  	stroke-dasharray: 440;
  	stroke-dashoffset: 440;
  	transition: stroke-dashoffset 0.2s linear;
}
.percentage {
  	font-family: "futura-Pt", "sans-serif";
    position: absolute;
    font-size: 25px;
    color: white;
    text-align: center;
    line-height: 1;
}



/*----------------------image hover----------------------*/
a img {
	transition: all 0.3s ease-in-out 0.2s;
}
a img:hover {
	transform: scale(1.07);
}
strong {
	font-family:"futura", "sans-serif";
	font-size: 13px;
	letter-spacing: -.5px;
	font-weight: 600;
	color: rgba(255,255,255,1.00);
	transition: all 0.2s ease-in-out 0.2s;
	text-transform: uppercase
}
@media screen and (max-width: 768px) {
  strong {
	  font-size: 10px;
	  letter-spacing: -.1px;
	  font-weight: 600;
  }
}




/*------------------------transition pages--------------------*/
.transition_pages {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background-color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease-out;
}
.transition_pages.is-active {
  pointer-events: all;
  opacity: 1;
}




/*---------------------------lines hr-------------------------*/
.vertical {
  width: 1px;
	height: 300px;
  margin: 3vh;
	background-image: linear-gradient(0deg, rgba(255,255,255,0.1) 0%, rgba(138,138,138,1) 50%, rgba(255,255,255,0.1) 100%);
}
@media screen and (max-width: 768px) {
  .vertical {
     display:none
  }
}
.horizontal {
  	margin-top: 3vh;
	  margin-bottom: 3vh;
  	margin-left: auto;
  	margin-right: auto;
    width: 400px;
    height: 1px;
	  background-image: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(138,138,138,1) 50%, rgba(255,255,255,0.1) 100%);
}
@media screen and (max-width: 768px) {
  .horizontal {
      width: 200px;
  }
}
.horizontal_2 {
	display:none
}
@media screen and (max-width: 768px) {
  .horizontal_3{
	margin-top: 3vh;
	margin-bottom: 3vh;
	margin-left: auto;
	margin-right: auto;
  width: 200px;
  height: 1px;
	background-image: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(138,138,138,1) 50%, rgba(255,255,255,0.1) 100%);
  }
}
.orchestra_page .horizontal {
	margin-bottom: 1vh;
	margin-top: .5vh;
	margin-left: auto;
	margin-right: auto;
  width: 100%;
  height: 1px;
	background-image: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(138,138,138,1) 50%, rgba(255,255,255,0.1) 100%);
}
.shop_page .horizontal {
	margin-bottom: 1vh;
	margin-top: .5vh;
	margin-left: auto;
	margin-right: auto;
  min-width: 100%;
  height: 1px;
	background-image: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(138,138,138,1) 50%, rgba(255,255,255,0.1) 100%);
}
@media screen and (max-width: 768px) {
  .shop_page .horizontal {
    width: 80%;

    }
}


/*--------------------------text-------------------------*/
.text {
	text-align: justify;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	line-height: .95;
}
@media screen and (max-width: 768px) {
  .text {
    width: 95%;
    padding: 10px;
    }
}



/*----------------------------title-----------------------*/
.title {
    width: 95%;
	  padding-bottom: 5vh;
    font-family: "Milano Sans", sans-serif;
    font-style: normal;
    font-weight: lighter;
    font-size: 8vh;
    letter-spacing: -.5vh;
    color: rgba(255,255,255,1.00);
    text-align: left;
    line-height: .8;
}
@media screen and (max-width: 768px) {
  .title {
      font-size: 5vh;
      letter-spacing: -2px;
	    margin-left: -1vh;
	    margin-bottom: 1vh;
    }
}
.title_2 {
	font-family: "Milano Sans", sans-serif;
    font-style: normal;
    font-weight: lighter;
    font-size: 3vh;
    letter-spacing: -.1vh;
    width: 95%;
    padding-bottom: 1vh;
    color: rgba(255,255,255,1.00);
    text-align: left;
    line-height: .8;
}
@media screen and (max-width: 768px) {
  .title_2 {
      font-size: 3vh;
      letter-spacing: -.05vh;
	    padding-bottom: .5vh;
    }
}



/*---------------------pages name------------------------*/
.page_name {
    position: fixed;
    top: 45%;
    transform: translate(0, -50%) rotate(90deg);
    transform-origin: left center;
    text-align: center;
    height: auto;
    width: 180px;
    right: -160px;
    color: rgba(131,131,131,1.00);
    text-transform: uppercase;
    z-index: 1;
}
@media screen and (max-width: 768px) {
    .page_name {
		top: 40%;
		width: 180px;
    }
}
.page_name strong {
	color: rgba(131,131,131,1.00);
}



/*--------------------------container---------------------*/
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
@media (max-width: 765px) {
    .container {
        flex-direction: column;
        width: 100%;
    }
}
.left {
    flex: 5;
    text-align: left;
}
@media screen and (max-width: 768px) {
    .left {
        text-align: center;
        height: auto;
        width: 100%;
        padding: 0;
    }
}
.left .gallery img {
    display: block;
    margin-left: 25%;
    position: relative;
	align-items: center;
    max-width: 80%;
    height: auto;
}
@media screen and (max-width: 768px) {
    .left .gallery img {
   		width: 30vh;
		margin-left: auto;
		margin-right: auto
    }
}
.right {
    flex: 5;
    text-align: left;
}
@media screen and (max-width: 768px) {
    .right {
        width: 100%;
        text-align: left;
		margin-right: 0%;
    }
}
.left .text {
    width: 100%;
    margin-top: 5vh;
}






/*----------------------------home------------------------*/
.home {
  	position: relative;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	z-index: 10
}
@media screen and (max-width: 768px) {
    .home {
		margin-bottom: -30px;
    }
}
#home_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	  filter: brightness(.8);
	  padding-bottom: 10vh;
}
.home_logo {
	position: relative
}
.home_logo .text{
    font-family: "Milano Sans", sans-serif;
    font-style: normal;
    font-weight: lighter;
    font-size: 2vh;
    letter-spacing: 4vh;
    margin-bottom: 12vh;
    color: rgba(255,0,0,1.00);
    bottom: 0
}
@media screen and (max-width: 768px) {
    .home_logo .text{
		width: 100%;
    	font-size: 2vh;
		margin-bottom: 10%;
    	letter-spacing: .9vh;
    }
}
.home_logo img{
    position: relative;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 300px;
    z-index: 1;
}
@media screen and (max-width: 768px) {
    .home_logo img{
        width: 200px;
    }
}
@media screen and (max-width: 768px) {
    .home {
        height: 100vh;
    }
    #home_video {
        width: 100%;
        height: 100%;
    }
}






/*--------------------------social------------------------*/
.social_icons {
	position: relative;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	z-index: 9
}
.social_icons.visible {
  opacity: 1;
}
.social {
    display: flex;
    flex-direction: column;
    align-items: center;
  	position: fixed;
	  top: 40%;
	  gap: 20px;
	  left: 20px;
}
@media screen and (max-width: 992px) {
  .social {
	  left: 5px
    }
}
.social a {
    text-decoration: none;
}
.social img {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
	filter: grayscale(1);
}
@media screen and (max-width: 992px) {
  .social img {
	  width: 25px;
    }
}
.social img:hover {
	filter: grayscale(0);
    transform: scale(1.1);
    cursor: pointer;
}
.logo {
	position: fixed;
	right: 3vh;
	bottom: 6vh;
}
.logo img {
	width: 70px;
}









/*-----------------------?-----------------------*/
.program2 {
	width: 100%;
	height: auto;
	color: rgba(72,72,72,1.00);
	margin-bottom: 1vh;
}
@media screen and (max-width: 768px) {
  .program2 {
	  padding: 12px;
  }
}
.date2 {
	margin-top: 5vh;
	width: auto;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
@media screen and (max-width: 768px) {
  .date2{
	  width: 100%;
	  text-align: left;
  }
}


/*-----------------------past seasons-----------------------*/
.past_seasons {
	position: relative;
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
	z-index: 1
}
@media screen and (max-width: 768px) {
 .past_seasons {
	 width: 95%;
    }
}
.past_seasons img {
  	width: 150px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
  	box-shadow: 10px 10px 26px -1px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
 .past_seasons img {
	  width: 80px;
    }
}
.past_seasons a {
    position: relative;
    margin: 10px;
    box-shadow: 10px 10px 26px -1px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .past_seasons a {
	  margin: 5px;
    }
}
.past_seasons a:hover img {
    transform: scale(1.05);
    filter: brightness(0.2);
    z-index: 2;
    position: relative;
}
.past_seasons .hover-text {
    font-family: "Milano Sans", sans-serif;
    font-size: 5vh;
  	letter-spacing: -1px;
    color: rgba(255,255,255,1.00);
    margin-top: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}
@media screen and (max-width: 768px) {
  .past_seasons .hover-text  {
	  font-size: 18px;
	  margin-top: 20px;
    }
}
.past_seasons a:hover .hover-text {
    opacity: 1;
    z-index: 3;
}


/*-------------------season 2025 orchestra---------------------*/
.orchestra {
	position: relative;
	text-align: center;
	width: 80%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
  .orchestra {
	  width: 95%;
  }
}
.video_orchestra {
    width: 90%;
    height: auto;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
  .video_orchestra {
	  width: 100%;
  }
}

/*-----------------------button link--------------------------*/
.tickets_btn {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2vh;
}
.tickets_btn a{
	font-family: "Milano Sans", sans-serif;
	color: rgba(255,0,0,1.00) !important;
	background-color: rgba(255,255,255,0.00);
	font-size: 25px;
	letter-spacing: 10px;
	height: auto;
	width: auto;
	text-align: center;
	padding: 20px;
	margin-top: 2vh;
	margin-bottom: 2vh;
	border: 0.5px solid rgba(255,0,0,1.00) !important;
	transition: all 0.2s ease-in-out 0.2s;
	display: inline-block;
}
@media screen and (max-width: 768px) {
  .tickets_btn a{
	  font-size: 13px;
	  letter-spacing: 6px;
	  padding: 7px;
  }
}

.tickets_btn a:hover {
	transform: scale(1.05);
	color: rgba(255,255,255,1.00) !important;
	border-color: rgba(255,255,255,1.00) !important;
}
.tickets_image img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10vh;
	width: 200px;
	margin-top: 1vh;
}
@media screen and (max-width: 768px) {
  .tickets_image img{
	  width: 150px;
	  padding-bottom: 20vh;
  }
}



/*------------------------button link-------------------------*/
.orchestra_btn {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 20vh;
}
.orchestra_btn a{
	font-family: "Milano Sans", sans-serif;
	color: rgba(255,0,0,1.00) !important;
	background-color: rgba(255,255,255,0.00);
	font-size: 25px;
	letter-spacing: 10px;
	height: auto;
	width: auto;
	text-align: center;
	padding: 20px;
	margin-top: 2vh;
	margin-bottom: 2vh;
	border: 0.5px solid rgba(255,0,0,1.00) !important;
	transition: all 0.2s ease-in-out 0.2s;
	display: inline-block;
}
@media screen and (max-width: 768px) {
  .orchestra_btn a{
	  font-size: 13px;
	  letter-spacing: 6px;
	  padding: 7px;
  }
}
.orchestra_btn a:hover {
	transform: scale(1.05);
	color: rgba(255,255,255,1.00) !important;
	border-color: rgba(255,255,255,1.00) !important;
}



/*---------------------button link----------------------------*/
.shop_btn {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.shop_btn a{
	font-family: "Milano Sans", sans-serif;
	color: rgba(255,0,0,1.00) !important;
	background-color: rgba(255,255,255,0.00);
	font-size: 25px;
	letter-spacing: 10px;
	height: auto;
	width: auto;
	text-align: center;
	padding: 20px;
	margin-top: 2vh;
	margin-bottom: 2vh;
	border: 0.5px solid rgba(255,0,0,1.00) !important;
	transition: all 0.2s ease-in-out 0.2s;
	display: inline-block;
}
@media screen and (max-width: 768px) {
  .shop_btn a{
	  font-size: 13px;
	  letter-spacing: 6px;
	  padding: 7px;
  }
}
.shop_btn a:hover {
	transform: scale(1.05);
	color: rgba(255,255,255,1.00) !important;
	border-color: rgba(255,255,255,1.00) !important;
}
.cd_box {
	margin-bottom: 5vh;
}

.shop em {
  color: red
}

/*-----------------------seasons modal box----------------------*/
.modal_btn {
	border: none;
  cursor: pointer;
  position: relative;
	font-weight: 400;
}
.modal_box {
	position: absolute;
	text-align: left;
	opacity: 0;
  visibility: hidden;
  bottom: 100%;
	left: -200px;
	margin-bottom: 20px;
  width: 400px;
	height: auto;
  padding: 60px;
	color: rgba(27,27,27,1.00);
  background-color: rgba(255,255,255,1.00);
  border: 0px solid #000;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
  z-index: 99;
  transition: opacity 0.3s ease, visibility 0.3s ease;
	transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1), opacity .3s ease, visibility .3s ease;
}
@media screen and (max-width: 768px) {
  .modal_box {
      width: 200px;
	  padding: 20px;
	  left: -120px;
	  margin-bottom: 5px;
    }
}
.modal_btn:hover .modal_box{
  	opacity: 1;
    visibility: visible;
}
.modal_box strong {
	color: rgba(27,27,27,1.00);
}



/*----------------------------contact---------------------------*/
.contact {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20vh;
}
@media screen and (max-width: 768px) {
.contact {
      width: 95%
    }
}
.contact .title {
	margin-left: 1vh
}
.contact .text {
	margin-top: 5vh;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
.contact .text {
      margin-top: 2vh;
    }
}
.contact img {
	width: 70px;
	padding: 10px;
	transition: all 0.3s ease-in-out 0.2s;

}
@media screen and (max-width: 768px) {
.contact img {
    width: 40px;
  	padding: 5px;
    }
}
.contact img:hover{
	transform: scale(1.3);
}



/*--------------------------sponsors------------------------*/
.sponsors {
	width: 100%;
	padding: 10vh;
	margin-top: 10vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
	margin-left: auto;
	margin-right: auto;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .sponsors  {
	  gap: 10px;
	  padding: 3vh;
	  padding-bottom: 5vh;
    }
}
.sponsors  div {
    display: flex;
    align-items: center;
}
.sponsors img {
	height: 50px;
}
@media screen and (max-width: 768px) {
  .sponsors img {
	  height: 25px;
    }
}
.sponsors_title {
    width: 100%;
    color: rgba(27,27,27,1.00);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vh;
    display: flex;
    justify-content: center;
    align-items: center;
  	filter: invert(1)
}




/*------------------------pages--------------------------*/
.pages {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 10vh;
}
@media screen and (max-width: 768px) {
  .pages  {
      min-width: 95%;
	  padding-top: 5vh;
    }
}
.pages img {
	width: 450px;
 	display: block;
 	margin-left: auto;
 	margin-right: auto;
	margin-bottom: 5vh;
}
@media screen and (max-width: 768px) {
  .pages img {
     max-width: 80%;
	  margin-bottom: -5vh;
    }
}
.pages .text {
	width: 80%;
	margin-bottom: 5vh
}
@media screen and (max-width: 768px) {
  .pages .text {
      width: 95%;

    }
}




/*-----------------------shop page-----------------------------*/
.shop_page {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 5vh;
	margin-bottom: 10vh;
}
@media screen and (max-width: 768px) {
  .shop_page {
      width: 95%
    }
}
.shop_page .box {
	display: flex;
	justify-content: center;
  align-items: center;
	margin-top: 50px;
}
.shop_page .text strong {
	display: block;
	margin-bottom: 10px;
}
.shop_page img {
	width: 130px;
  height: 130px;
	margin-right: 20px;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
.shop_page .box {
    flex-direction: column;
    margin-top: 50px;
    align-items: center;
}
.shop_page img {
	  margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
  	}
}
.shop em{
  font-size: 14px;
}
.shop {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
  .shop {
	  width: 95%
  }
}
.shop_page .form {
	width: 100%;
}
@media screen and (max-width: 768px) {
  .shop_page .horizontal {
	  margin-bottom: 5vh;
  }
}
.options {
	padding-bottom: 100px;
	margin-top: 100px;
	margin-left: auto;
	margin-right: auto
}
@media screen and (max-width: 768px) {
  .options{
	  width: 90%;
  }
}
.options_label {
	margin-bottom: 20px;
}
select {
    width: 43px;
    padding: 15px;
    color: rgba(255,255,255,1);
    background-color: rgba(255,255,255,.1);
    outline: none;
    appearance: none;
    cursor: pointer;
  	border: 0px solid #000000;
}
@media screen and (max-width: 768px) {
 select {
	 width: 25px;
     padding: 7px;
  }
}
select:focus {
    outline: none;
    border: 0px solid #000000;
}
#Monster\:Movies, #Contes\:Légendes, #Space\:Symphony, #Thriller\:Jazz, #Hollywood\:Sounds, #Intégrale {
    background-color: rgba(255,255,255,1.00);
}
select option {
    background-color: rgba(255,255,255,1.00);
    color: rgba(27,27,27,1.00);
}
select {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="gray"><path d="M7 10l5 5 5-5H7z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 20px;
}







/*-----------------------orchestra page-----------------------*/
.orchestra_page {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 5vh;
}
@media screen and (max-width: 768px) {
  .orchestra_page {
      width: 95%
    }
}
.orchestra_page img{
	width: 60%;
	display: block;
	margin-left: auto;
 	margin-right: auto;
}
@media screen and (max-width: 768px) {
  .orchestra_page img{
      width: 95%
    }
}
.orchestra_page .text {
	width: 60%;
	margin-bottom: 20vh
}
@media screen and (max-width: 768px) {
  .orchestra_page .text{
      width: 95%
    }
}
.orchestra_page .title{
	padding-top: 5vh;
	padding-bottom: 10vh;
}
.foundation .text_2 {
	width: 60%;
	text-align: left;
	margin-left: auto;
	margin-right: auto
}
@media screen and (max-width: 768px) {
  .foundation .text_2{
      width: 90%
    }
}




/*------------------------guest---------------------------*/
.guest {
    width: 80%;
    color: rgba(255,255,255, 1.0);
    background-color: rgba(0,0,0,1.00);
    height: auto;
    padding: 50px;
    margin-top: 10vh;
    margin-bottom: 10vh;
    gap: 30px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: justify;
}
.guest img {
    margin: 20px;
	border-radius: 5px
    }
.guest_text {
	width: 30%;
	line-height: .9
}
@media screen and (max-width: 768px) {
    .guest {
		width: 95%;
        flex-direction: column;
		padding: 10px;
		gap: 0px;
    }
    .guest img {
      	width: 200px;
    }
	.guest_text {
		width: 100%;
	}
}
.guest_title {
	width: 10%;
	text-align: right;
}
@media screen and (max-width: 768px) {
   .guest_title  {
	   width: 100%;
	   padding: 20px;
    }
}



/*--------------------------musiciens----------------------*/
.musiciens {
	height: auto;
}
@media screen and (max-width: 768px) {
	.musiciens {
		left: 0
	}
}



/*------------------------medias---------------------------*/
.medias {
	position: relative;
	text-align: center;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	border-radius: 10px;
	padding-bottom: 10vh;
}
@media screen and (max-width: 768px) {
    .medias {
		width: 100%;
		margin-left: 0;
    	padding-left: 0;
    }
}
.media_box img {
	margin-right: 5px;
}
.media_box {
	text-align: right;
	margin-left: 20px;
}
@media screen and (max-width: 768px) {
   .medias .media_box {
	   text-align: center;
	   margin-left: 20px
    }
}
.medias .text{
	margin-top: 30px;
 	display: flex;
    flex-direction: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.medias a {
    display: flex-start;
    flex-direction: row;
    align-items:baseline;
    gap: 10px;
    text-decoration: none;
}
.medias img {
    height: 50px;
    width: auto;
}
@media screen and (max-width: 768px) {
    .medias {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .medias a {
        width: 100%;
        justify-content: flex-start;
    }
}
.medias span {
	color:rgba(255,0,4,1.00);
	margin-right: 20px;
	text-transform: uppercase
}
.medias strong:hover {
	color: rgba(255,0,4,1.00)
}






/*-------------------------gallery---------------------------*/
.gallery {
  	margin-left: auto;
	  margin-right: auto;
    flex-wrap: wrap;
	  text-align: center;
  	height: auto;
  	margin-top: 10vh;
  	padding-bottom: 10vh;
}
@media screen and (max-width: 768px) {
    .gallery {
	     margin-top: 0vh;
	     margin-bottom: 0vh;
    }
}
.gallery a {
    cursor: pointer;
}
.gallery img {
	margin: 30px;
	box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 768px) {
    .gallery img{
	margin: 10px;
    }
}
.gallery img:hover {
    transform: scale(1.1);
}
.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
  	backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.fullscreen img {
    max-height: 70%;
	max-width: 90%;
	width: auto;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .fullscreen img  {
      width: 90%;
	  max-height: 1000%;
    }
}
.fullscreen.active {
    display: flex;
}
.fullscreen img:hover {
    transform: scale(1.05);
}
#gallery_2023 {
	padding-top: 10vh
}
/*-----------------gallery 2024--------------------*/
#gallery_2024 img {
	height: 25vh;
}
@media screen and (max-width: 768px) {
   #gallery_2024 img  {
	   height: 15vh;
	   width: auto
    }
}
/*-----------------gallery 2023--------------------*/
#gallery_2023 img {
	height: 20vh;
}
@media screen and (max-width: 768px) {
   #gallery_2023 img  {
	   height: 10vh;
	   width: auto
    }
}
/*-----------------gallery 2022--------------------*/
#gallery_2022 img {
	height: 25vh;
}
@media screen and (max-width: 768px) {
   #gallery_2022 img  {
	   height: 13vh;
	   width: auto
    }
}
/*-----------------gallery 2019--------------------*/
#gallery_2019 img {
	height: 28vh;
}
@media screen and (max-width: 768px) {
   #gallery_2019 img  {
	   height: 13vh;
	   width: auto
    }
}
/*-----------------gallery 2018--------------------*/
#gallery_2018 img {
	height: 20vh;
}
@media screen and (max-width: 768px) {
   #gallery_2018 img  {
	   height: 10vh;
	   width: auto
    }
}
/*-----------------gallery 2017--------------------*/
#gallery_2017 img {
	height: 20vh;
}
@media screen and (max-width: 768px) {
   #gallery_2017 img  {
	   height: 12vh;
	   width: auto
    }
}
/*-----------------gallery 2016--------------------*/
#gallery_2016 img {
	height: 20vh;
}
@media screen and (max-width: 768px) {
   #gallery_2016 img  {
	   height: 13vh;
	   width: auto
    }
}
/*-----------------gallery 2015--------------------*/
#gallery_2015 img {
	height: 20vh;
}
@media screen and (max-width: 768px) {
   #gallery_2015 img  {
	   height: 13vh;
	   width: auto
    }
}




/*-----------------------------menu----------------------------*/
.navToggle {
	position: fixed;
	width: 80px;
	height: 80px;
	right: 1px;
	top: 1px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 999;
}
.navToggle.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
@media (max-width: 992px) {
	.navToggle {
		width: 45px;
		height: 45px;
		right: 1px;
		top: 1px;
	}
}
.navToggle .icon {
	position: relative;
	width: 45px;
	height: 1px;
	background-color: transparent;
	transition: all 0.4s ease;
}
@media (max-width: 992px) {
	.navToggle .icon {
		width: 20px;
		height: 2px;
	}
}
.navToggle .icon:before,
.navToggle .icon:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: rgba(255,0,0, 1);
	transition: all 0.4s ease;
}
.navToggle .icon:before {
	top: -6px;
	width: 60%;
}
.navToggle .icon:after {
	top: 6px;
	width: 100%;
}
.navToggle:hover .icon:before {
	top: -10px;
}
.navToggle:hover .icon:after {
	top: 10px;
}
.navToggle.open .icon {
	background-color: transparent;
	transform: rotate(180deg);
}
.navToggle.open .icon:before {
	top: 0;
	width: 100%;
	transform: rotate(45deg);
}
.navToggle.open .icon:after {
  top: 0;
	width: 100%;
	transform: rotate(-45deg);
}

#menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    background-color: rgba(0,0,0,.7);
 	  backdrop-filter: blur(10px);
    transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
}
#menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    letter-spacing: 7px;
    text-transform: uppercase;
}
#menu.active {
    top: 0;
}

#menu.closing {
    top: -100%;
}
#menu .buttons a{
	font-family: "Milano Sans", sans-serif;
	color: rgba(255,0,0,1.00);
	font-size: 3vh;
	letter-spacing: -.08vh;
}
#menu .buttons a:hover{
color: rgba(255,255,255,1.00);
}
#menu .buttons a:hover::after {
    width: 100%;
}
#menu li:first-child {
	margin-top: 0;
}
li {
	display: block;
    position: relative;
	margin: 0;
}





/*-----------------------------form-----------------------------*/
.form {
	width: 60%;
    margin-left: auto;
    margin-right: auto;
	margin-bottom: 10vh;
}
@media screen and (max-width: 768px) {
    .form {
 		width: 80%
	}
}
.submit {
	margin-top: 10px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-transform: uppercase
}
input {
	padding: 10px;
	text-align: left;
    box-sizing: border-box;
	outline: none;
}
input[type="submit"] {
	font-family: "Milano Sans", sans-serif;
    font-size: 25px;
	letter-spacing: 10px;
	color: rgba(255,0,0,1.00);
	border: 0.5px solid rgba(255,0,0,1.00) !important;
	transition: all 0.2s ease-in-out 0.2s;
	display: inline-block;
    width: 100%;
	text-transform: uppercase;
    cursor: pointer;
	background-color: rgba(255,255,255,.00);
}
@media screen and (max-width: 768px) {
    input[type="submit"] {
		font-size: 13px;
		letter-spacing: 6px;
		padding: 7px;
	}
}
input[type="submit"]:hover {
   	transform: scale(1.05);
	color: rgba(255,255,255,1.00) !important;
	border-color: rgba(255,255,255,1.00) !important;
}
input[type=text],
input[type=message],
input[type=date],
input[type=email],
input[type=time],
textarea {
    width: 100%;
    height: 50px;
	padding: 10px;
    resize: vertical;
    font: inherit;
    border: none;
    color: rgba(255,255,255,1.00);
    background-color: rgba(78,78,78,0.2);
}
@media screen and (max-width: 768px) {
	input[type=text],
	input[type=message],
	input[type=date],
	input[type=email],
	input[type=time],
	textarea {
		width: 100%;
		height: 30px;
	}
}
#message  textarea {
	margin-top: 10px;
	background-color: rgba(0,0,0,.00);
}
.underline::after,
.underline::after {
    display: block;
    content: '';
    width: 0px;
    height: 12px;
    border-top: solid 1px rgba(255,255,255,1.0);
    transition: .2s ease-in;
}
.underline:hover::after,
.underline:focus::after,
.active .underline::after {
    width: 100%;
    border-color: rgba(255,255,255,1);
}
.options_label a{
	color: rgba(255,0,4,1.00)
}
.commander {
	color: rgba(255,0,4,1.00);
	font-weight: 800;
	text-transform: uppercase;
	margin-left: 10px;
}
.confirmation_commande {
 	display: flex;
 	justify-content: center;
 	align-items: center;
 	height: 100vh;
 	text-align: center;
}
.confirmation_commande_text {
 	max-width: 800px;
 	margin: 0 20px;
	text-align: left;
}.confirmation_commande_text img{
	width: 22%;
}



/*-------------------------audio-------------------------------*/
.audio_box {
	max-width: 100%;
	display: flex;
    justify-content: flex-end;
    align-items: center;
	margin-bottom: 0;
	margin-right: 0;
	text-align: right;
}
.audio_box strong:hover {
	color: rgba(255,0,4,1.00)
}
.audio_player {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}
@media screen and (max-width: 768px) {
  .audio_player {
	  width: 20px;
  }
}
button {
    border: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 18px;
	margin-left: 4px;
	margin-right: 10px;
}
@media screen and (max-width: 768px) {
  button {
	  margin-right: 0px;
    }
}
.play_icon {
    width: 0;
    height: 0;
    border-left: 13px solid rgba(255,0,0,1.00);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
@media screen and (max-width: 768px) {
  .play_icon {
	  border-left: 8px solid rgba(255,0,0,1.00);
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
    }
}
.pause_icon {
    display: flex;
    justify-content: space-between;
    width: 13px;
    height: 13px;
}
@media screen and (max-width: 768px) {
  .pause_icon {
    width: 9px;
    height: 9px;
    }
}
.pause_icon div {
    background-color: rgba(255,0,0,1.00);
    width: 10px;
    height: 100%;
    margin-right: 1px;
}





/*---------------------------arrow-----------------------------*/
.arrow {
 	width: 60px;
 	height: 60px;
	margin-left: 1px;
	margin-top: 5px;
	display: inline-block;
	position: fixed;
	transition: transform 0.3s ease;
	z-index: 1
}
.arrow::before {
 	content: '';
 	display: block;
 	width: 30px;
 	height: 30px;
 	top: 50%;
  left: 45%;
 	border-style: solid;
 	border-color: rgba(255,0,0,1.00);
 	border-width: 1px 1px 0 0;
 	position: absolute;
 	transform-origin: 50% 50%;
}
.arrow.left::before {
 	transform: rotate(-135deg);
 	margin: -15px 0 0 -10px;
}
.arrow::after {
 	content: '';
 	display: block;
 	top: 50%;
 	left: 45%;
 	border-style: solid;
 	border-color: rgba(255,0,0,1.00);
 	position: absolute;
 	transform-origin: 50% 50%;
}
.arrow.left::after {
  	width: 40px;
  	height: 0;
  	border-width: 1px 0 0 0;
  	transform: translate(-14px, -1px);
}
.arrow:hover::before {
	transition: transform 0.3s ease;
}
.arrow:hover::after {
  border-color: rgba(255,0,0,1.00);
}
.arrow.square {
	background-color: rgba(255,255,255,0);
}
.square:hover {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .arrow {
   	  width: 30px;
   	  height: 30px;
	  margin-left: 0px;
	  margin-top: 0px;
  }
  .arrow::before {
  	  width: 15px;
  	  height: 15px;
  	  left: 40%;
	  top:16px;
  }
  .arrow.left::before {
  	  margin: -7px 0 0 -5px;
  }
  .arrow::after {
	  top: 16px;
   	  left: 40%;
  }
  .arrow.left::after {
   	  width: 20px;
   	  transform: translate(-7px, -1px);
  }
}


/*---------------------player video-------------------*/
.player {
    max-width:100%;
    position: relative;
    overflow: hidden;
}
.player__video {
    width: 100%;
}
.player__slider {
    width:10px;
    height:30px;
}
.player__controls {
    position: absolute;
    bottom: 0;
    width: 100%;
    transform: translateY(100%) translateY(-2px);
    transition: all .3s;
    background: rgba(0,0,0,0.1);
}
.player:hover .player__controls {
    transform: translateY(0);
}
.player:hover .progress {
    height:5px;
}
.progress {
    position: relative;
    height:2px;
    transition:height 0.3s;
    background:rgba(255,255,255,0.1);
    cursor: pointer;
}
.progress__filled {
	width:0;
    background:rgba(99,99,99,1);
    height: 100%;
}
.player__buttons{
	height: 30px;
	width: 100%;
}
.play__button,
.mute__button,
.player__slider{
	display: block;
	float: left;;
}
.mute__button, .play__button {
	background:none;
	border:0;
	line-height:1;
	color: rgba(255,255,255,1.0);
 	text-align: center;
 	outline:0;
 	cursor:pointer;
 	max-width:50px;
 	padding: 0 10px;
 	height: 30px;
}
.mute__button svg, .play__button svg{
 	height: 50%;
 	margin-top: 25%;
}
.big__play {
 	position: absolute;
    height: 50px;
    width: 50px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    pointer-events: none;
    background-color: rgba(255,0,0,.7);
}
.big__play svg{
    height: 40%;
   	position: absolute;
   	top: 0;
   	left: 10%;
   	right: 0;
   	bottom: 0;
   	margin: auto;
}
.player__buttons input[type="range"] {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    width: 60px;
    height: 2px;
    margin: 12px 0;
    border: none;
    padding: 0;
    border-radius: 0;
    background: rgba(255,255,255, .5);
    outline: none;
}
.player__buttons input[type="range"]::-moz-range-track {
    border: inherit;
    background: transparent;
}
.player__buttons input[type="range"]::-ms-track {
    border: inherit;
    color: transparent;
    background: transparent;
}
.player__buttons input[type="range"]::-ms-fill-lower,
.player__buttons input[type="range"]::-ms-fill-upper {
    background: transparent;
}
.player__buttons input[type="range"]::-ms-tooltip {
    display: none;
}
.player__buttons input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 6px;
    border: none;
    border-radius: 12px;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f1f1f1), color-stop(100%, #b1b1b1));
    background-image: -webkit-linear-gradient(top , #f1f1f1 0, #b1b1b1 100%);
    background-image: linear-gradient(to bottom, #f1f1f1 0, #b1b1b1 100%);
}
.player__buttons input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 6px;
    border: none;
    border-radius: 12px;
    background-image: linear-gradient(to bottom, #f1f1f1 0, #b1b1b1 100%);
}
.player__buttons input[type="range"]::-ms-thumb {
    width:12px;
    height: 6px;
    border-radius: 12px;
    border: 0;
    background-image: linear-gradient(to bottom, #f1f1f1 0, #b1b1b1 100%);
}
.fullscreen__button {
  	background: none;
    border: 0;
    line-height: 1;
    color: rgba(255, 255, 255, 1.0);
    text-align: center;
    outline: 0;
    cursor: pointer;
    max-width: 50px;
    padding: 0 10px;
    height: 30px;
}

.fullscreen__button svg {
  	height: 50%;
  	margin-top: 25%;
}




/*-------------------------sign------------------------*/
.sign {
 	padding-top: 10vh;
  padding-bottom: 5vh
}
.sign a{
    font-family: "lemonMilk";
    font-size: 12px;
    letter-spacing: 25px;
    color: rgba(255,104,104,1.00);
    background-color: rgba(82,0,32,1.00);
    height: auto;
    width: auto;
    text-align: center;
    padding: 10px;
    margin: 2vh;
    transition: all 0.2s ease-in-out 0.2s;
    display: inline-block;
}
@media screen and (max-width: 768px) {
  .sign a{
	  font-size: 9px;
	  letter-spacing: 10px;
	  padding: 2px;
  }
}
.sign a:hover {
	transform: scale(1.05);
	filter: invert(1)
}
.sign span {
	font-size: 15px;
	font-family: "verdana", "serif"
}
@media screen and (max-width: 768px) {
  .sign span{
	  font-size: 9px;
  }
}
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.loader {
	width: 60px;
	height: 60px;
	display: block;
	margin: 20px auto;
	position: relative;
	background: radial-gradient(ellipse at center, #FFF 69%, rgba(0, 0, 0, 0) 70%),
              linear-gradient(to right, rgba(0, 0, 0, 0) 47%, #FFF 48%, #FFF 52%, rgba(0, 0, 0, 0) 53%);
	background-size: 20px 20px , 20px auto;
	background-repeat: repeat-x;
	background-position: center bottom, center -5px;
	box-sizing: border-box;
}
.loader::before,
.loader::after {
	content: '';
	box-sizing: border-box;
	position: absolute;
	left: -20px;
	top: 0;
	width: 20px;
	height: 60px;
	background: radial-gradient(ellipse at center, #FFF 69%, rgba(0, 0, 0, 0) 70%),
              linear-gradient(to right, rgba(0, 0, 0, 0) 47%, #FFF 48%, #FFF 52%, rgba(0, 0, 0, 0) 53%);
	background-size: 20px 20px , 20px auto;
	background-repeat: no-repeat;
	background-position: center bottom, center -5px;
	transform: rotate(0deg);
	transform-origin: 50% 0%;
	animation: animPend 1s linear infinite alternate;
}
.loader::after {
 	animation: animPend2 1s linear infinite alternate;
 	left: 100%;
}
@keyframes animPend {
  0% {
    transform: rotate(22deg);
  }
  50% {
    transform: rotate(0deg);
  }
}
@keyframes animPend2 {
  0%, 55% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-22deg);
  }
}
