/*Général*/
@font-face {
    font-family: "Bebas Neue";
    src:    url("../font/BebasNeue-Regular.woff") format("woff");

    font-family: "Noir Pro";
    src: url("../font/NoirPro-Regular.woff") format("woff");
}
html {
    scroll-behavior: smooth;
  }
* {
    margin: 0;
    padding: 0;
    font-family: 'Noir Pro';
}
.container {
    width: 50%;
    margin: 0 auto;
}

/*Header*/
header {
    display: flex;
    width: 100%;
    background-color: #25282a;
    padding-bottom: 40px;
}
#logost {
    display: block;
    position:absolute;
    left: 0;
    top: 0;
    width:10%;
}
#txt-logo {
    width:40%;
    padding-top: 35px;
    padding-left:140px;
}

header h2 {
    color: white;
    font-family: 'Noir Pro';
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: -20px;
    margin-left: 100px;
}

header h3 {
    color: white;
    font-family: 'Noir Pro';
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: -5px;
    margin-left: 100px;
}

#menu, #menu-titre, #choix-langues {
    display: flex;
    width: 100%;
    align-items: center;
}

#titres {
    text-align: right;
    padding-top: 20px;
}

#menu-titre {
    display: flex;
    width: 30%;
    flex-direction: column;
}
#buy {
    position: absolute;
    right: 10%;
    top: 56px;
    padding: 10px;
    background-color: white;
    color: black;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all 500ms;
}
#buy:hover {
    background-color: #472864;
    color: white;
}
#choix-langues {
    top: 10px;
    width: 4%;
    position: absolute;
    right: 0;
}
#choix-langues a, #choix-langues p {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 300ms;
}
#choix-langues a:hover {
    text-decoration: underline;
}
nav {
    width: 60%;
}
nav ul {
    list-style-type: none;
}
nav > ul li {
    float: left;
    width: 20%;
    text-align: center;
    position: relative;
}
nav ul::after {
    content: "";
    display: table;
    clear: both;
}
nav a {
    display: block;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    padding: 10px 0px;
    border-bottom: 4px solid white;
    transition: all 500ms;
}
nav a:hover {
    border-color: #472864;
}
.sous {
    opacity: 0%;
    box-shadow: 0px 1px 2px #ccc;
    background-color: white;
    position: absolute;
    width: 100%;
    z-index: 1000;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: opacity 500ms ease 0s;
}
nav > ul li:hover .sous {
    opacity: 100%;
}
.sous li {
    float: none;
    width: 100%;
}
.sous a {
    border-bottom: none;
    color: black;
}
.sous a:hover {
    background-color: rgba(200, 200, 200, 0.575);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*Banner*/
#banner {
    position: relative; 
    height: 870px; 
    overflow: hidden;
    display : flex;     
    justify-content: center;
    align-items: center;
}
#banner-video {
    position: absolute;    
    z-index: 0; 
    width: 1920px; 
    transform: translateX(-50%);
    bottom: 0; 
    left: 50%;  
}
#banner-txt {
    z-index: 10;
}
#banner-txt h1 {
    color: white;
    font-size: 5rem;
    text-align: center;
    text-shadow:#472864 7px 7px 0,
    #333 10.5px 10.5px 10px;
    z-index: 10;
}

#banner-txt h2 {
    color: white;
    font-size: 3.7rem;
    text-align: center;
    text-shadow:#472864 7px 7px 0,
    #333 10.5px 10.5px 10px;
    margin-top:-40px;
    z-index: 10;
}
#banner-over {
    position:absolute;
    width:100%;
    height:100%;
    z-index: 10;
}
#overlay {
    position:absolute;
    width:100%;
    height:100%;
    background-color:#000000;
    opacity: 30%;
    z-index: 10;
}
#backup {
    z-index: 12;
    position: fixed;
    bottom: 30px;
    right: 30px;
    border-radius: 10px;
    border: none;
    transition: all 500ms;
}
#backup:hover {
    background-color: #25282a;
}
#swipe {
    display: block;
    z-index: 12;
    position: absolute;
    width: 5%;
    bottom: 50px;
    transition: all 500ms;
}
/*Descriptions*/
#desc {
    background-repeat: no-repeat;
    width: 100%;
    background-attachment: fixed;
    background-image: url("../img/background_dossier_de_presse_1.jpg");
    background-position-y: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

#txt-logo-b {
    display: block;
    width: 70%; 
    padding-left:30px;
    padding-bottom: 10px;
}

#desc-txt {
    padding: 20px;
    display: flex;
    background-color: #070625cc;
    justify-content: space-evenly;
}
#desc-txt > div:first-child {
    width: 40%;
}
#desc-txt > div:first-child > h2 {
    color: white;
    text-align: right;
    font-size: 3rem;
}
#desc-txt > div:first-child > h3 {
    color: white;
    text-align: right;
}
#desc-txt > div:first-child > p {
    width: 80%;
    margin: 0 auto;
    text-align: justify;
    font-family: 'Noir Pro';
    margin-top: 20px;
    color: white;
}
#desc-txt > div:first-child > a {
    display: block;
    width: 47%;
    margin: 20px auto;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px;
    border: 2px white solid;
    transition: all 300ms ease-in;
    text-align:center;
}
#desc-txt > div:first-child > a:hover {
    color: #070625cc;
    background-color: white;
}
#desc-txt > div:last-child {
    width: 45%;
}
#desc-txt > div:last-child > h3 {
    padding: 5px;
    background-color: white;
    width: 25%;
    text-align: center;
    margin-top: 10px;
}
#desc-txt > div:last-child > p {
    width: 90%;
    font-family: 'Noir Pro';
    text-align: justify;
    margin-top: 10px;
    color: white;
}
/*Infos*/
#infos {
    background-color: #070625;
    padding-top: 50px;
    padding-bottom: 50px;
}
#infos > div {
    display: flex;
    justify-content: space-around;
    width: 70%;
    margin: 0 auto;
}
#infos > div > div {
    padding: 40px;
    background-color: white;
}
#infos > div > div:first-child {
    display: flex;
    flex-direction: column;
}
#infos > div > div:first-child h3 {
    text-align: center;
    text-decoration: underline;
    margin-bottom: 20px;
}
#infos > div > div:first-child p {
    text-align: center;
    margin-top: 20px;
}
#infos > div > div:last-child h3 {
    text-align: center;
    text-decoration: underline;
    margin-bottom: 40px;
}
#infos table tr th {
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
}
#infos table tr td {
    padding: 10px;
    text-align: right;
}
#infos table tr td:first-child {
    text-align: left;
}
#conditions {
    display: flex;
    font-size: 0.75rem;
    margin-top: 20px;
    justify-content: space-around;
    width: 70%;

}

/*Contact*/

#contact {
    display: flex;
    justify-content: space-around;
    width: 50%;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    background-repeat: no-repeat;
}
#contact div {
    padding: 40px;
}
#contact div:first-child {
    width: 50%;
}
#contact div:first-child label {
    max-width: 50%;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 10px;
}
#contact div:first-child input {
    width: 100%;
    border: 1px black solid;
}
#contact div:first-child textarea {
    resize: none;
    width: 100%;
    height: 150px;
    border: black 1px solid;
}
#contact > div > h3 {
    display: block;
    margin-bottom: 50px;
}
#contact-form {
    margin-top: 60px;
}
#sendwhite {
    display: block;
    padding: 10px;
    width: 50%;
    border: 1px black solid;
    background-color: white;
    transition: background-color 300ms, color 300ms;
    margin-top: 10px;
}
#sendwhite:hover {
    background-color: #070625;
    color: white;
    border: 2px white solid;
}
#send {
    display: block;
    padding: 10px;
    width: 50%;
    transition: background-color 300ms, color 300ms;
    background-color: white;
    margin-top: 10px;
    color: #070625;
}

.venir {
    width:70%;
    margin:0 auto;
    padding-bottom:20px;
    display:flex;
    justify-content: space-around;
}

.venir div {
    width:50%;
}

.h3 {
    text-align: center;
    padding-top:30px;
    padding-bottom: 15px;
}

.venir p {
    text-align: justify;
    line-height: 25px;
    max-width: 90%;
}

.venirt {
    font-style: italic;
    padding-top:15px;
    padding-bottom:5px;
}

.venirv {
    display: block;
    font-style: italic;
    text-align: left;
    margin: 0;
    padding-top:15px;
    padding-bottom:5px;
}
#venircoupole {
    background-color: #f8f8f8;
}
#icon {
    width:20%;
}

.bus {
    display:flex;
    align-items: center;
    width: 100%;
}

.voit {
    width: 100%;
    display: flex;
    align-items: center;
}

#contact div:last-child {
    background-color: #070625;
}
#contact div:last-child h3 {
    color: white;
    margin-bottom: 20px;
}
#contact div:last-child p {
    margin-top: 10px;
    color: white;
}
#contact div:last-child p:last-child {
    text-align: right;
    margin-right: 90px;
}
#contact > div > form > input {
    line-height: 30px;
}
#contact > div > form > input, textarea {
    margin-bottom:20px;
    margin-top:10px;
}
.color {
    color: white;
}
#reponse {
    color: white;
}
/*programme*/

#programme {
    background-color:#070625;
    color:white;
}

#programme > div {
    display:flex;
    width:55%;
    margin:0 auto;
    align-items: center;
    height:200px;
    padding:70px;
    justify-content:space-evenly;
}
.observ {
    text-align: justify;
    padding-left:40px;
    padding-bottom: 30px;
    padding-top:30px;
    width:50%;
}
#programme > div > div > h3 {
    padding-bottom: 20px;
}
#programme table {
    width:50%;
}
.nom_proj {
    text-decoration: underline;
    padding-bottom: 7px;
}
.heure {
    padding-left:30px;
}
.temps {
    font-style: italic;
    padding-left:20px;
    padding-right:40px;
}
/*footer*/
footer {
    background-color: #25282a;
    padding-top: 20px;
}
footer > div > p {
    align-items: center;
}
footer div > p > a > img {
    width: 2%;
}
footer > p {
    font-size: 1rem;
    color: white;
    text-align: center;
}
footer div {
    width: 40%;
    margin: 0 auto;
}
footer > div > div {
    display: flex;
}
footer div p {
    font-size: 1rem;
    color: white;
    text-align: center;
}
footer div a {
    display: block;
    text-align: center;
}
footer div img {
    width: 100%;
}
footer > a {
    display: block;
    margin-bottom: 30px;
}
footer > a > img {
    display: block;
    margin: 0 auto;
    width:5%;
}
/*Date*/
#date-4 {
    padding-top: 100px;
    padding-bottom: 150px;
    background-color: white;
}
#date-4 > div {
    display: flex;
    width:  80%;
    margin: 0 auto;
    align-items: center;
}
#date-4 h2 {
    display: block;
    width: 40%;
    font-family: 'Bebas Neue';
    text-align: center;
}
#date-4 > div > div {
    display: block;
    width: 50%;
}
#date-4 table {
    width: 80%;
    margin: 0 auto;
    margin-top: 100px;
}
.expo-4 {
    text-transform: uppercase;
    width: 25%;
    padding-left: 50px;
    background: url("../img/puce.png") left no-repeat; 
    background-size: 7%;
    font-family: 'Bebas Neue';
    font-size: 1.40rem;
}

#date-4 table th {
    padding-bottom:20px;
    font-size:1.3rem;
}

#date-4 table td {
    padding-left:30px;
}

#date-4 > div > div hr {
    width: 90%;
    border: 2px black solid;
    margin: 0 auto;
}

#date-5 {
    padding-bottom: 150px;
    padding-top: 100px;
    background-color:#070625;
    color:white;
}
#date-5 > div {
    display: flex;
    width:  80%;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}
#date-5 h2 {
    display: block;
    width: 30%;
    font-family: 'Bebas Neue';
    text-align:center;
}
#date-5 > div > div {
    display: block;
    width: 70%;
}
#date-5 > div > div hr {
    width: 90%;
    border: 2px white solid;
    margin: 0 auto;
}
#date-5 table {
    width: 70%;
    margin: 0 auto;
    margin-top: 100px;
}

#date-5 table th {
    padding-bottom:20px;
    font-size:1.3rem;
}
#date-5 table td {
    padding-left:30px;
}
.expo-5 {
    text-transform: uppercase;
    width: 25%;
    padding-left: 50px;
    background: url("../img/puceb.png") left no-repeat; 
    background-size: 7%;
    font-family: 'Bebas Neue';
    font-size: 1.40rem;
}
.description {
    font-family: 'Noir Pro';
    text-transform: lowercase;
    font-style: italic;
    font-size:0.85rem;
    padding-bottom: 30px;
}

/* Le shop */
.lesarticles {
    background-image: url("../img/fond.jpg");
    color:white;
    padding-top:30px;
    font-size:2.5rem;
}
.lesarticles h4 {
    max-width: 60%;
    margin: 0 auto;
}
.articles {
    max-width: 60%;
    margin: 0 auto;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:50px;
    position:relative;
}
.articles > div {
    flex-basis: 40%;
    border: solid white 50px;
}
.articles img {
    width:100%;
}
.articles-title {
    display:block;
    width:100%;
    text-align:left;
    margin-top:20px;
    font-size: 12px;
}
.articles-img {
    position:relative;
    overflow: hidden;
}
.articles-over {
    position:absolute;
    background-color:black;
    opacity:0;
    top:0;
    left:0;
    width:100%;
    height:100%;
    color:white;
    transition: opacity 300ms;
}
.articles-over:hover {
    opacity:0.5;
}
.articles-over > p {
    width:25%;
    position:absolute;
    font-size:1.5rem;
    text-align: center;
    left: 38%;
    bottom:50%;
}
/*presse*/
#presse div {
    margin: 0 auto;
    padding-left:30px;
    padding-top:30px;
}
.impair {
    background-color: #070625;
    color:white;
}
.impair img {
    display: block;
    width:40%;
    margin: 0 auto;
}
.pair {
    background-color: #f8f8f8;
}
.pair img {
    display: block;
    width:40%;
    margin: 0 auto;
}

.print {
    background-color: #f8f8f8;
}
.print img {
    display: block;
    width:70%;
    margin: 0 auto;
}

.pair > a {
    display: block;
    width: 10%;
    margin: 0 auto;
    color: black;
    margin-top: 20px;
    padding: 10px;
    text-decoration: underline;
    font-family: 'Bebas Neue';
    font-size: 2rem;
    text-align: center;
    transition: all ease-in-out 300ms;
    margin-bottom: 10px;
}
.impair > a {
    display: block;
    width: 10%;
    margin: 0 auto;
    color: white;
    margin-top: 20px;
    padding: 10px;
    text-decoration: underline;
    font-family: 'Bebas Neue';
    font-size: 2rem;
    text-align: center;
    transition: all ease-in-out 300ms;
}
#presse > div > h3 {
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    padding: 10px;
    font-size: 1.8rem;
    text-align: center;
    transition: all ease-in-out 300ms;
}
.pair > a:hover {
    background-color: #070625; 
    color: white;
}
.impair > a:hover {
    background-color: white;
    color: #070625;
}
/*Billetterie*/
#tickets {
    padding-top:50px;
}

#tickets > h3 {
    width:55%;
    margin:0 auto;
    padding-top:20px;
    color:#bb0b0b;
}
#tickets > div {
    display: flex;
    justify-content: space-evenly;
}
#tickets > div > div > h3 {
    padding-top:20px;
    padding-bottom:15px;
}
#tickets table tr td div {
    display: flex;
    align-items: center;
    padding-left:20px;
    padding-right:15px;
}
#panier input {
    width: 70%;
    text-align: center;
}
#form-tickets {
    width:50%;
    margin:0 auto;
    padding-top:30px;
    padding-bottom: 30px;
    display:flex;
    justify-content: space-around;
}
#TVA {
    font-size: 0.75rem;
}
.recap td {
    text-align: center;
}
#form-tickets td {
    padding-left:10px;
}
#panier {
    padding: 20px;
    width: 300px;
    margin: 30px auto;
    background-color: #f8f8f8;
    color: black;
}
#panier input {
    margin-bottom:30px;
    width: 50%;
    border: #000000 1px solid;
}
#CB {
    width: 15%;
}
#btn- {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 5px;
    background-color: #25282a;
    color: white;
    border: none;
}
#btnP {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 5px;
    border: none;
}
#payer {
    padding: 5px;
    margin-top: 20px;
    margin: 0 auto;
    width: 30%;
    text-transform: uppercase;
    border-radius: 5px;
    border: 2px black solid;
    transition: all 300ms ease-in;
}
#payer:hover{
    background-color: #070625;
    color:white;
}
#panier img {
    width:30%;
    padding-right:10px;
}
.coord{
    padding: 20px;
    width: 300px;
    margin: 0 auto;
    background-color: #f8f8f8;
    color: black;
}
.coord table tr {
    margin: 20px;
}
.coord table tr td input {
    border: #000000 1px solid;
    height: 20px;
    margin-top: 10px;
}
.pass {
    display: none;
}
/************************************/
#videos {
    width: 100%;
    background-color: #f8f8f8;
    padding-bottom: 30px;
    padding-top: 30px;
}
#videos > div {
    margin: 0 auto;
    width: 70%;
    display: flex;
    flex-direction: column;
}
#videos > div > div {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#videos p {
    margin-top: 10px;
    text-align: justify;
}
#videos a {
    display: block;
    width: 100%;
    margin: 20px auto;
    color: #070625;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px;
    border: 2px #070625 solid;
    transition: all 300ms ease-in;
    text-align:center;
}
#videos a:hover {
    color: white;
    background-color: #070625;
}
#reload {
    background-color: #d3d3d3;
    background-image: url('../img/reload.gif');
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: top;
}