@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Daniel:wght@400;700&display=swap");
@import url(https://fonts.googleapis.com/css?family=Oswald:400,300,700);
@font-face {
    font-family: "Daniel";
    src: url("fonts/daniel.eot");
    src: url("fonts/daniel.eot?#iefix") format("embedded-opentype"), url("fonts/daniel.woff") format("woff"), url("fonts/daniel.ttf") format("truetype"), url("fonts/daniel.svg#On-AirInline") format("svg");
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-greylight: #F9F9F9;
    --color-red: #FF0014;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.table {
    display: table;
    height: 100%;
    width: 100%;
    min-height: 100%;
}

.cell {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    min-height: 100%;
}

.hiddenLink {
    display: none;
}

body {
    font-family: "Jost", sans-serif;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

nav#nav {
    background-color: #000;
    position: fixed;
    left: -100vw;
    width: 100vw;
    height: 104vh;
    z-index: 100;
    top: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

nav#nav .logo {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    float: left;
    padding: 20px 0 0 5%;
    color: #fff;
}

nav#nav .logo img {
    display: inline-block;
    vertical-align: middle;
    width: 240px;
}

nav#nav .logo span {
    display: none;
    color: #fff;
}

nav#nav.open {
    left: 0;
}

nav#nav .contentNav {
    height: 100%;
    color: #fff;
}

nav#nav .contentNav .scdNav {
    display: inline-block;
    padding: 0 0 0 10%;
    vertical-align: middle;
    width: 40%;
}

nav#nav .contentNav .scdNav li {
    margin: 10px 0;
}

nav#nav .contentNav .scdNav li a {
    font-size: 20px;
}

nav#nav .contentNav .mainNav {
    display: inline-block;
    padding: 0 10%;
    vertical-align: middle;
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

nav#nav .contentNav .mainNav li {
    margin: 30px 0;
}

nav#nav .contentNav .mainNav li a {
    font-size: 45px;
    font-family: "Daniel", cursive;
}

nav#nav .contentNav a {
    color: #fff;
    opacity: 0.7;
    position: relative;
}

nav#nav .contentNav a:hover,
nav#nav .contentNav li.active a {
    color: #fff;
}

nav#nav .contentNav a:hover::after,
nav#nav .contentNav li.active a::after {
    content: ".";
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: url(../img/underline.png) no-repeat center center/100%;
    font-size: 0;
}

nav#nav .closeNav {
    position: absolute;
    width: 50px;
    height: 100vh;
    top: 0;
    text-align: center;
}

nav#nav .logo {
    position: absolute;
    top: 0;
}

nav .socials {
    position: absolute;
    right: 5%;
    bottom: 5%;
}

nav .socials li {
    margin: 10px 10px;
    display: inline-block;
}

nav .socials li a img {
    width: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

nav .socials a:hover img {
    transform: scale(1.2);
}

h1,
.h1 {
    font-size: 60px;
}

h1 span,
.h1 span {
    font-family: "Daniel", cursive;
    font-weight: 400;
    line-height: 31px;
    display: block;
}

.btn {
    background-color: var(--color-red);
    color: #fff;
    font-size: 12px;
    min-width: 270px;
    text-align: center;
    display: inline-block;
    padding: 15px 20px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn span {
    padding-right: 30px;
    background: url(../img/arrow.svg) no-repeat right 10px center/10px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    -webkit-box-shadow: 0px 0px 10px rgba(52, 73, 94, 0.3);
    box-shadow: 0px 0px 10px rgba(52, 73, 94, 0.3);
}

.btn:hover span {
    background: url(../img/arrow.svg) no-repeat right 0px center/10px;
}

.btnSmall {
    min-width: 0;
    padding: 10px 20px;
}

.btnLight {
    background-color: transparent;
    color: #000;
    border: 1px solid #979797;
}

.btnLight span {
    background: url(../img/arrowBlack.svg) no-repeat right 10px center/10px;
}

.btnLight:hover span {
    background: url(../img/arrowBlack.svg) no-repeat right 0px center/10px;
}

.simpleLink {
    color: var(--color-red);
    padding-right: 20px;
    background: url(../img/arrowRed.svg) no-repeat right center/10px;
    border-bottom: 1px solid var(--color-red);
}

.vsimpleLink {
    color: var(--color-red);
    text-decoration: underline;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

#openCloseNav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: #fff;
    width: 50px;
    text-align: center;
    cursor: pointer;
}

#openCloseNav b {
    height: 25px;
    position: relative;
    display: inline-block;
}

#openCloseNav b i {
    background-color: #000;
    font-style: normal;
    font-size: 0;
    width: 2px;
    height: 25px;
    display: inline-block;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#openCloseNav b i:first-child {
    background-color: #000;
    position: absolute;
    left: -7px;
    top: 0;
    height: 10px;
}

#openCloseNav b i:last-child {
    background-color: #000;
    position: absolute;
    right: -9px;
    bottom: 0;
    height: 10px;
}

#openCloseNav:hover i:first-child,
#openCloseNav:hover i:last-child {
    height: 25px;
}

main {
    padding-left: 50px;
}


/* HEADER */

header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 100%;
    z-index: 10;
    overflow: hidden;
}

header .logo {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    float: left;
    padding: 28px 0 0 5%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

header .logo:hover {
    transform: scale(1.05);
}

header .logo img {
    display: inline-block;
    vertical-align: middle;
    width: 240px;
}

header .logo span {
    display: none;
    color: #000;
}

header:after {
    content: ".";
    width: 100%;
    clear: both;
    display: block;
    font-size: 0;
}

header .specials {
    float: right;
}

header .specials a {
    border-left: 1px solid #EBEBEB;
    color: #000;
    padding: 0 30px;
    display: block;
    float: left;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

header .specials a span {
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

header .specials a:hover {
    background-color: var(--color-greylight);
}

header .specials a:hover span {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

header .specials a.btnReservations {
    color: #fff;
    background: var(--color-red);
}

header .specials a.btnReservations span {
    background: #FF0014 url(../img/icon-basket.png) no-repeat left center/30px;
    padding: 30px 0 30px 45px;
}

header .specials a.btnCalendars span {
    background: url(../img/icon-calendar.svg) no-repeat left center;
    padding: 30px 0 30px 45px;
}

header .specials a.btnProgram span {
    background: url(../img/icon-program.svg) no-repeat left center;
    padding: 30px 0 30px 45px;
}

.wrap-item {
    display: flex;
}

.wrap-item .pict {
    align-self: center;
}

.wrap-item .pict img {
    display: block;
    width: 100%;
    max-width: 120px;
}

.wrap-item .content {
    align-self: center;
    padding: 20px;
    width: 70%;
}

.wrap-item .content h4 {
    font-size: 24px;
}

.wrap-item .content p {
    font-size: 11px;
}

.now {
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.now h6 {
    color: var(--color-red);
    text-transform: uppercase;
}

#sect-hpNews {
    padding-bottom: 100px;
}

.wrapNews {
    display: block;
    position: relative;
    margin-right: -1%;
    margin-left: -1%;
}

.wrapNews .highlightedNews {
    padding: 0 1%;
    top: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 40Px;
    float: left;
    width: 50%;
}

.highlightedNews article {
    position: relative;
    border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

article.bubbleLink {
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

article.bubbleLink:hover .picture {
    transform: scale(1.01);
    box-shadow: 0 2px 9px 4px rgba(0, 0, 0, 0.1);
}

.highlightedNews article .hover {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 47%, #000000 100%);
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 60px 30px;
}

.highlightedNews article .hover .cell {
    vertical-align: bottom;
}

.highlightedNews article .hover h4 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 500;
}

.highlightedNews article .hover p {
    font-size: 16px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.highlightedNews article:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.wrapNews article img {
    display: block;
    width: 100%;
}

.wrapNews .otherNews {
    padding: 0 1%;
    width: 50%;
    margin-left: 50%;
}

.wrapNews .otherNews article {
    overflow: hidden;
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.wrapNews .otherNews article .picture {
    width: 40%;
    float: left;
    border-radius: 10px;
    overflow: hidden;
}

.wrapNews .otherNews article .content {
    width: 60%;
    padding-left: 5%;
    float: right;
}

.wrapNews .otherNews article .content h4 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 24px;
}

.wrapNews .otherNews article p {
    color: #000000;
    font-size: 16px;
}


/* footer */

footer {
    padding-left: 50px;
    clear: both;
}

footer #sect-footInfos .wrapper {
    max-width: 100%;
}

footer .step2 {
    display: none;
}

footer .h1 span {
    display: inline-block;
    margin-right: 20px;
}

footer .sponsors {
    text-align: center;
}

footer .wrap-cols {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-left: -2%;
}

footer .wrap-cols .col {
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    min-width: 46%;
    max-width: 46%;
    position: relative;
    margin: 2%;
}

footer .legals {
    margin-top: 30px;
    text-align: center;
}

footer input[type=text],
footer input[type=email] {
    background-color: transparent;
    border-bottom: 1px solid #fff;
    width: 100%;
    padding: 10px 0;
}

footer .wrap-btn {
    text-align: center;
}

#sect-footShare {
    background: url(../img/bg-newsletter.png) no-repeat center center/cover;
    padding: 100px 0;
    color: #fff;
    position: relative;
}

#shareIntro p {
    margin-bottom: 40px;
    width: 50%;
}

#shareIntro p a {
    color: #fff;
}

#sect-footShare:before {
    content: ".";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    font-size: 0;
    left: 0;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.57) 0%, rgba(0, 0, 0, 0) 100%);
}

#sect-footShare .wrapper {
    position: relative;
}

#sect-footShare .socials {
    position: absolute;
    right: 0;
    right: 5%;
    top: 0;
}

#sect-footShare .socials li {
    margin: 10px 0;
}

#sect-footShare .socials li a img {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#sect-footShare .socials li a:hover img {
    transform: scale(1.2);
}

#sect-footInfos .wrapper {
    display: flex;
}

#sect-footInfos .wrapper .col {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    color: #000000;
    font-size: 11px;
    flex-grow: 1;
    padding: 70px 50px;
}

#sect-footInfos .wrapper .col:last-of-type {
    border: none;
}

#sect-footInfos h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}

#sect-footInfos p,
#sect-footInfos li a {
    color: #000000;
}

#sect-footInfos p a {
    color: #000000;
}

#sect-footInfos p {
    margin-bottom: 10px;
}

#sect-footInfos li a:hover {
    text-decoration: underline;
}

#sect-footInfos ul.accesLinks {
    column-count: 2;
}

#sect-footInfos ul.sponsors li {
    display: inline-block;
    margin: 0 10px;
}

.sponsors li img {
    height: 40px;
}

.sect-topBanner {
    position: relative;
}

.sect-topBanner .bannerinside {
    height: 60vh;
}

.bannerinside h1 {
    font-size: 90px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    font-family: "Daniel", cursive;
    font-weight: 400;
    margin-top: -60px;
}

.subnav {
    position: absolute;
    overflow: hidden;
    bottom: 0;
    background-color: #FBFBFB;
    left: calc(3% + ((100vw - 1200px) / 2));
    right: 0;
    border: 1px solid #EEEEEE;
}

.subnav.fixed {
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    z-index: 5;
    bottom: auto !important;
}

.subnav li {
    float: left;
    position: relative;
    background-color: #fff;
    border-right: 1px solid #EEEEEE;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.subnav li.active {
    background-color: #CCC;
}

.subnav li a {
    display: block;
    padding: 20px 40px;
    font-size: 13px;
    color: #000;
    font-weight: 600;
    line-height: 25px;
}

.subnav li a b {
    padding: 0px 0px 0px 0px;
}

.subnav li:hover a:after {
    content: ".";
    font-size: 0;
    display: block;
    background-color: red;
    height: 2px;
    width: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
}

.subnav li.ico-history a b {
    display: block;
    background: url(../img/ico-history.svg) no-repeat left center;
    padding: 3px 0px 3px 35px;
}

.subnav li.ico-partner a b {
    display: block;
    background: url(../img/ico-partner.svg) no-repeat left center;
    padding: 3px 0px 3px 35px;
}

.subnav li.ico-poster a b {
    display: block;
    background: url(../img/icon-poster.svg) no-repeat left center;
    padding: 3px 0px 3px 35px;
}

.subnav li.ico-show a b {
    display: block;
    background: url(../img/icon-show.svg) no-repeat left center;
    padding: 3px 0px 3px 35px;
}

.subnav li.smallTitle {
    padding: 18px 30px;
    font-size: 24px;
}

.subnav li.ico-tournee a b {
    display: block;
    background: url(../img/icon-tournee.png) no-repeat left center;
    padding: 0px 0px 0px 35px;
}

.subnav--seasons {
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.subnav--seasons .subnav-scroll {
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.subnav--seasons .subnav-scroll::-webkit-scrollbar {
    height: 8px;
}

.subnav--seasons ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    min-width: max-content;
}

.subnav--seasons li {
    float: none;
    flex: 0 0 auto;
}

.subnav--seasons li a {
    white-space: nowrap;
}

.subnav--seasons .subnav-fixed-action {
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
    border-left: 1px solid #EEEEEE;
}

.subnav--seasons .subnav-fixed-action .subnav-cta {
    display: flex;
    align-items: center;
    background-color: #f4f4f4;
    white-space: nowrap;
    padding: 20px 40px;
    font-size: 13px;
    color: #000;
    font-weight: 600;
    line-height: 25px;
}

.subnav--seasons .subnav-fixed-action .subnav-cta.active {
    background-color: #CCC;
}

.subnav li.ico-resume a b {
    display: block;
    background: url(../img/icon-resume.svg) no-repeat left center;
    padding: 3px 0px 3px 35px;
}

.subnav li.ico-visuals a b {
    display: block;
    background: url(../img/icon-visuals.svg) no-repeat left center;
    padding: 3px 0px 3px 35px;
}

.subnav li.ico-prod a b {
    display: block;
    background: url(../img/icon-prod.svg) no-repeat left center;
    padding: 3px 0px 3px 35px;
}

.subnav li.ico-dossier a b {
    display: block;
    background: url(../img/icon-dossier.svg) no-repeat left center;
    padding: 3px 0px 3px 35px;
}

.subnav li.ico-around a b {
    display: block;
    background: url(../img/icon-around.svg) no-repeat left center;
    padding: 3px 0px 3px 35px;
}

.subnav li.ico-join a b {
    display: block;
    background: url(../img/icon-join.svg) no-repeat left center;
    padding: 3px 0px 3px 35px;
}

.subnav li.ico-euro a b {
    display: block;
    background: url(../img/icon-euros.svg) no-repeat left center;
    padding: 3px 0px 3px 35px;
}

.subnav li.ico-services a b {
    display: block;
    background: url(../img/icon-services.svg) no-repeat left center;
    padding: 3px 0px 3px 35px;
}

.subnav li.ico-contact a b {
    display: block;
    background: url(../img/icon-contact.svg) no-repeat left center;
    padding: 3px 0px 3px 35px;
}

.titleCent {
    text-align: center;
}

/* .draggable {
    cursor: url(http://localhost:8888/poche_dev/public/img/cursor.png) 50 50, pointer;
} */

.fromWYSIWYG p {
    color: #000000;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 27px;
}

.fromWYSIWYG p b,
.fromWYSIWYG p strong {
    color: #000;
}

.fromWYSIWYG h1 {
    margin: 20px 0;
    font-size: 30px;
}

.fromWYSIWYG h2 {
    margin: 20px 0;
    font-size: 24px;
}

.fromWYSIWYG h3 {
    margin: 10px 0;
    font-size: 22px;
}

.fromWYSIWYG h4 {
    margin: 10px 0;
    font-size: 20px;
}

.fromWYSIWYG h5 {
    margin: 10px 0 0 0;
    font-size: 16px;
}

.fromWYSIWYG h6 {
    margin: 10px 0;
    font-size: 13px;
}

.fromWYSIWYG a {
    color: var(--color-red);
    text-decoration: underline;
}

.fromWYSIWYG iframe {
    max-width: 100%;
}

.fromWYSIWYG img {
    max-width: 100%;
    margin: 0 30px 30px 0;
}

#sect-news {
    padding: 100px 0;
}

#sect-news .wrap-news {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-left: -2%;
}

#sect-news .wrap-news article {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    min-width: 29%;
    max-width: 29%;
    position: relative;
    margin: 2%;
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 40px;
}

#sect-news .wrap-news article .picture {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

#sect-news .wrap-news article .picture img {
    display: block;
    width: 100%;
}

#sect-news .wrap-news article h4 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 24px;
}

#sect-news .wrap-news article p {
    color: #000000;
    font-size: 15px;
}

.tabsSlides {
    padding-left: calc(3% + ((100vw - 1200px) / 2));
}

.tabsSlides li {
    background: #FFFFFF;
    border: 1px solid #979797;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    margin: 0 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tabsSlides li a {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tabsSlides li.active {
    background-color: #434343;
    color: #fff;
}

.tabsSlides li.active a {
    color: #fff;
    opacity: 1;
}

.tabsSlides li:hover {
    background-color: #434343;
    color: #fff;
}

.tabsSlides li:hover a {
    color: #fff;
    opacity: 1;
}

.tabsSlides li a {
    display: block;
    opacity: 0.5;
    font-size: 24px;
    color: #111111;
    padding: 20px;
    line-height: 24px;
}

.tabsSlides li.active {
    background-color: #434343;
}

.tabsSlides li.active a {
    color: #fff;
    opacity: 1;
}

.linedTitle {
    position: relative;
}

.linedTitle h3,
.linedTitle h2 {
    background-color: #fff;
    display: inline-block;
    position: relative;
    padding-right: 30px;
    margin: 20px 0;
}

.linedTitle:before {
    content: "-";
    font-size: 0;
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    height: 1px;
    background-color: #ccc;
}

#newsletterForm {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100%;
    height: 100vh;
    background: #000 url(../img/bg-newsletter2.jpg) no-repeat center center/cover;
    z-index: 3000;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#newsletterForm.open {
    left: 0;
}

#newsletterForm label {
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

#newsletterForm .labelcb {
    display: flex;
    margin: 30px 0;
}

#newsletterForm .labelcb .checkboxStyle .checkbox-el {
    margin-right: 20px;
}

#newsletterForm .close {
    position: absolute;
    top: 20px;
    right: 5%;
}

#newsletterForm input[type=text],
#newsletterForm input[type=email] {
    background-color: #212121;
    padding: 15px 20px;
    color: #fff;
    display: inline-block;
    width: 100%;
    border-radius: 10px;
}

#newsletterForm .wrap-cols {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-left: -2%;
}

#newsletterForm .wrap-cols .col {
    max-width: 100%;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 29%;
    max-width: 29%;
    position: relative;
    margin: 20px 2%;
}

#newsletterForm .wrap-btn {
    text-align: center;
}

#newsletterForm .wrapTitle {
    margin-bottom: 30px;
}

#newsletterForm .wrapSuccess {
    text-align: center;
    margin-top: 100px;
}

#newsletterForm .wrapSuccess p {
    color: #fff;
}


/* checkbox et radio */

.radio,
.checkbox {
    display: inline-block;
    vertical-align: middle;
}

.beforeRadio {
    display: inline-block;
    margin-right: 20px;
}

.radio label,
.checkbox label {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    margin-bottom: 0;
}

.radio label a,
.checkbox label a {
    color: #fff;
    text-decoration: underline;
}

.radio.radioLine label,
.checkbox.checkboxLine label {
    width: auto;
    margin-right: 20px;
}

input[type=radio],
input[type=checkbox] {
    margin-right: 10px;
    display: inline-block;
}

.radioStyle,
.checkboxStyle {
    cursor: pointer;
    position: relative;
    text-align: left;
    width: auto;
    color: #000000;
    margin-right: 0px;
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 5px;
}

.radioStyle input,
.checkboxStyle input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio .label,
.checkbox .label {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
    font-size: 12px;
    opacity: 0.6;
}

.radioStyle .radio-el,
.checkboxStyle .checkbox-el {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #212121;
    -webkit-transform: translate3d(0, 0.2857142857em, 0);
    transform: translate3d(0, 0.2857142857em, 0);
    margin-right: 0.3571428571em;
}

.checkboxStyle .checkbox-el {
    border-radius: 0px;
}

.radioStyle .radio-el:after,
.checkboxStyle .checkbox-el:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(20px / 2);
    height: calc(20px / 2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    opacity: 1;
    transition: all 0.2s ease-out;
}

.checkboxStyle .checkbox-el:after {
    border-radius: 0;
}

.radioStyle input:checked~.radio-el:after,
.checkboxStyle input:checked~.checkbox-el:after {
    background: var(--color-red);
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
    transform: translate3d(-50%, -50%, 0) scale(1);
    transition: all 0.1s ease-out;
}

#newsletterForm .wrapTitle {
    text-align: center;
}

#newsletterForm .wrapTitle .h1 span {
    color: #fff;
}

#newsletterForm .logo {
    position: absolute;
    top: 0;
    padding: 20px 0 0 5%;
}

#newsletterForm .logo img {
    width: 240px;
}

.pagination {
    padding: 30px 0;
    text-align: center;
}

.pagination li {
    display: inline-block;
    color: #000000;
    font-size: 15px;
}

.pagination li a {
    color: #000000;
    font-size: 17px;
    padding: 5px;
}

.pagination li span {
    font-size: 17px;
}

.pagination li.active span {
    color: var(--color-red);
    font-size: 17px;
    padding: 5px;
}

@media (max-width: 1000px) {
    main {
        padding-top: 65px;
    }
    .bannerinside h1 {
        font-size: 60px;
        margin-top: 0;
    }
    #sect-footInfos .wrapper {
        display: block;
    }
    #sect-footInfos .wrapper .col {
        border-right: none;
    }
    main,
    footer {
        padding-left: 0;
        margin-bottom: 50px;
    }
    #openCloseNav {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 80px;
        height: 60px;
        background: transparent;
        text-align: center;
        z-index: 30;
        transform: rotate(90deg);
    }
    header {
        position: fixed;
    }
    #sect-footInfos .wrapper .col {
        padding: 20px 0;
    }
    #sect-footShare .socials {
        position: relative;
        text-align: center;
        width: 100%;
        right: 0;
        margin-top: 30px;
    }
    #sect-footShare .socials li {
        display: inline-block;
        margin: 0 10px;
    }
    header .logo {
        padding: 21px 0 21px 5%;
    }
    #shareIntro p {
        width: 100%;
    }
    nav#nav .closeNav {
        width: 50px;
        height: 60px;
        right: 10px;
        top: 10px;
    }
    nav#nav .contentNav .mainNav {
        width: 100%;
        margin-bottom: 30px;
    }
    nav#nav .contentNav .mainNav li a {
        font-size: 35px;
        line-height: 30px;
    }
    nav#nav .contentNav .scdNav {
        width: 100%;
    }
    nav#nav .contentNav .scdNav li {
        margin: 2px 0;
    }
    nav#nav .contentNav .scdNav li a {
        font-size: 17px;
    }
    header .specials {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    header .specials a {
        text-align: center;
        float: left;
        width: 33.3%;
    }
    header .specials a.btnProgram span,
    header .specials a.btnCalendars span,
    header .specials a.btnReservations span {
        padding: 15px 0 15px 45px;
    }
    .subnav {
        left: 0;
        position: relative;
    }
    .subnav.fixed {
        top: 65px;
    }
    .subnav li a,
    .subnav li.smallTitle {
        padding: 10px 15px;
    }
    .subnav--seasons {
        display: block;
    }
    .subnav--seasons .subnav-fixed-action {
        border-left: 0;
        border-top: 1px solid #EEEEEE;
    }
    .subnav--seasons .subnav-fixed-action .subnav-cta {
        padding: 10px 15px;
    }
    .step1 h3 {
        line-height: 55px;
        margin-bottom: 30px;
    }
    .tabsSlides li {
        width: auto;
    }
    .tabsSlides li a {
        display: block;
        opacity: 0.5;
        font-size: 15px;
        color: #111111;
        padding: 15px;
        line-height: 14px;
    }
    .tabsSlides {
        padding-left: 5%;
    }
    #newsletterForm .table {
        display: block;
        width: 100%;
        min-height: 100%;
        position: relative;
        height: 100vh;
        overflow-y: scroll;
    }
    #newsletterForm .cell {
        display: block;
        padding: 100px 0;
        height: auto;
    }
    #newsletterForm .cell .wrap-cols {
        display: block;
    }
    #newsletterForm .cell .wrap-cols .col {
        min-width: auto;
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    nav#nav .contentNav a {
        opacity: 1;
    }
    .fromWYSIWYG p {
        color: #000;
    }
    #sect-footInfos .wrapper .col {
        font-size: 13px;
        color: #000;
    }
    #sect-footInfos p,
    #sect-footInfos li a {
        color: #000;
    }
    #sect-soiree .wordsSlide {
        font-size: 35px;
    }
    .abo-wrapSlide .slick-next {
        display: block !important;
    }
    #sect-visuals .slick-slide img {
        height: 200px !important;
    }
    #sect-soiree .contentCols .col .item:hover .hover {
        display: none !important;
        opacity: 1;
    }
}

@media (max-width: 800px) {
    .bannerinside h1 {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    h2 {
        font-size: 26px;
    }
    header .specials a.btnProgram span,
    header .specials a.btnCalendars span,
    header .specials a.btnReservations span {
        font-size: 0;
        background-position: center center;
    }
    header .specials a,
    header .specials a,
    header .specials a {
        padding: 10px;
    }
    h1,
    .h1 {
        font-size: 45px;
    }
}

#cookie-bar {
    background: #000 !important;
}

#cookie-bar p {
    font-family: "Jost", sans-serif !important;
}

#cookie-bar p a {
    color: #fff !important;
    text-decoration: underline !important;
}

#cookie-bar-button {
    border: 1px solid #fff !important;
    font-family: "Jost", sans-serif !important;
}

.slick-prev {
    position: absolute;
    left: 10px;
    top: 14px;
    z-index: 3;
    font-size: 0;
    background: url(../img/left-arrow.svg) no-repeat center center;
    width: 40px;
    height: 40px;
    opacity: 0.7;
    display: none !important;
}

.slick-next {
    position: absolute;
    right: 10px;
    top: 14px;
    z-index: 3;
    font-size: 0;
    background: url(../img/left-arrow.svg) no-repeat center center;
    width: 40px;
    height: 40px;
    opacity: 0.7;
    transform: rotate(180deg);
    display: none !important;
}

.slick-slider:hover .slick-next,
.slick-slider:hover .slick-prev {
    display: block !important;
    cursor: pointer;
}

.backToTop {
    padding: 50px 0;
    text-align: right;
}

.backToTop a {
    color: #000;
    padding-right: 30px;
    background: url(../img/arrowTop.svg) no-repeat right center/15px;
}


/* HOMEPAGE */

#sect-hpBanner {
    padding-bottom: 50px;
}

#sect-hpBanner .banner {
    height: 80vh;
    background: url(../img/mainBanner.png) no-repeat center center/cover;
    text-align: center;
    color: #fff;
}

#sect-hpBanner .showsSlide {
    padding-left: 40px;
    margin-top: -120px;
}

#sect-hpBanner .showsSlide .slick-prev {
    top: 45%;
    left: 50px;
}

#sect-hpBanner .showsSlide .slick-next {
    top: 45%;
    opacity: 1;
    right: 50px;
    margin-top: -15px;
}

#sect-hpBanner .wrap-btn {
    text-align: right;
}

#sect-hpBanner .hero-cta-btn {
    background-color: #000000;
}

#sect-hpBanner .hero-cta-btn:hover {
    background-color: #000000;
}

#sect-hpBanner .showsSlide .item {
    background: #FFFFFF;
    box-shadow: 0 2px 39px 4px rgba(0, 0, 0, 0.19);
    border-radius: 10px;
    border-radius: 10px;
    width: 400px !important;
    margin: 50px 20px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#sect-hpBanner .showsSlide .item:hover {
    transform: scale(1.01);
    box-shadow: 0 2px 9px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1000px) {
    #sect-hpBanner .wrap-btn {
        text-align: center;
    }
    .wrapNews .highlightedNews {
        float: none;
        width: 100%;
        position: relative;
        top: auto;
        margin-bottom: 30px;
    }
    .wrapNews .otherNews {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 800px) {
    .wrapNews .otherNews article .picture {
        width: 100%;
    }
    .wrapNews .otherNews article .content {
        width: 100%;
        padding: 20px 0;
    }
}


/* page infos */

#sect-infoTitle {
    text-align: center;
    padding: 50px 0;
}

#sect-infoTitle .bigTitle {
    text-align: center;
    font-size: 60px;
    font-family: "Daniel", cursive;
    margin-bottom: 0px;
    line-height: 50px;
}

#sect-infoLocation {
    position: relative;
}

#sect-infoLocation .subnav {
    bottom: -25px;
}

#sect-infoLocation iframe {
    width: 100% !important;
}

#sect-infoJoinus {
    padding: 100px 0;
}

@media (max-width: 800px) {
    #sect-infoJoinus {
        padding: 50px 0;
    }
}

#sect-infoJoinus .content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-left: -2%;
}

#sect-infoJoinus .content div {
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    min-width: 29%;
    max-width: 29%;
    position: relative;
    margin: 2%;
    color: #000000;
    font-size: 16px;
}

#sect-infoJoinus .content div strong {
    color: #000;
}

#sect-infoTarifs {
    background-color: #FBFBFB;
    padding: 100px 0;
}

@media (max-width: 800px) {
    #sect-infoTarifs {
        padding: 50px 0;
    }
}

#sect-infoTarifs table {
    background: #FFFFFF;
    box-shadow: 0 2px 39px 4px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    width: 100%;
    margin-bottom: 50px;
}

#sect-infoTarifs table td {
    padding: 20px;
    text-align: center;
    border-right: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    padding: 20px;
    font-weight: bold;
}

#sect-infoTarifs table td small {
    font-weight: 400;
    color: #000000;
    font-size: 11px;
}

#sect-infoTarifs table td:last-child {
    border-right: none;
}

#sect-infoTarifs table td:first-child {
    text-align: left;
}

#sect-infoTarifs table tr:last-child td {
    border-bottom: none;
}

#sect-infoContact {
    padding: 100px 0 0 0;
}

#sect-infoContact .practicalBox {
    margin-bottom: 30px;
    overflow: hidden;
}

#sect-infoContact .practicalBox h5 {
    font-size: 13px;
    margin-bottom: 10px;
}

#sect-infoContact .practicalBox .boxAdmin {
    float: left;
    width: 35%;
    background-color: var(--color-greylight);
    padding: 30px;
}

#sect-infoContact .practicalBox .boxResa {
    float: right;
    width: 60%;
    background-color: var(--color-greylight);
    padding: 30px;
}

#sect-infoContact .practicalBox p,
#sect-infoContact .practicalBox a {
    color: #000000;
    font-size: 16px;
}

#sect-infoContact .practicalBox a.vsimpleLink {
    color: var(--color-red);
}

#sect-infoContact .wrapContacts ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-left: -2%;
}

#sect-infoContact .wrapContacts ul .contactItem {
    background: #FFFFFF;
    box-shadow: 0 2px 39px 4px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    min-width: 29%;
    max-width: 29%;
    position: relative;
    margin: 2%;
    text-align: center;
}

#sect-infoContact .wrapContacts ul .contactItem .up {
    padding: 60px 40px 30px 40px;
    border-bottom: 1px solid rgba(216, 216, 216, 0.33);
}

#sect-infoContact .wrapContacts ul .contactItem .down {
    padding: 20px;
}

#sect-infoContact .wrapContacts ul .contactItem .down a {
    color: #000000;
    font-size: 16px;
    text-decoration: underline;
}

#sect-infoContact .wrapContacts ul .contactItem h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

#sect-infoContact .wrapContacts ul .contactItem h6 {
    font-size: 16px;
    color: #000000;
    font-weight: 300;
}

#sect-infoContact .wrapContacts ul .contactItem .profilPict {
    background-color: #eee;
    border-radius: 50%;
    overflow: hidden;
    max-width: 200px;
    display: inline-block;
    margin-bottom: 20px;
}

#sect-infoContact .wrapContacts ul .contactItem .profilPict img {
    display: block;
    width: 100%;
}

#sect-infoServices {
    padding: 100px 0;
}

@media (max-width: 800px) {
    #sect-infoServices {
        padding: 50px 0;
    }
}

#sect-infoServices .fromWYSIWYG {
    column-count: 2;
    column-gap: 60px;
}

@media (max-width: 1000px) {
    #sect-infoContact .wrapContacts ul .contactItem {
        min-width: 46%;
        max-width: 46%;
    }
}

@media (max-width: 900px) {
    #sect-infoTitle {
        padding: 50px 0 30px 0;
    }
    #sect-infoTitle .bigTitle {
        font-size: 45px;
        margin-bottom: 0;
    }
    #sect-infoJoinus .content div {
        min-width: 100%;
        max-width: 100%;
    }
    #sect-infoServices .fromWYSIWYG {
        column-count: 1;
    }
}

@media (max-width: 700px) {
    #sect-infoContact .wrapContacts ul .contactItem {
        min-width: 96%;
        min-width: 96%;
    }
    #sect-infoContact .practicalBox .boxAdmin,
    #sect-infoContact .practicalBox .boxResa {
        width: 100%;
    }
}

#sect-abo {
    padding: 100px 0;
}

@media (max-width: 800px) {
    #sect-abo {
        padding: 50px 0;
    }
}

#sect-abo .abo-intro {
    margin-bottom: 30px;
}

#sect-abo .abo-wrapSlide {
    padding-left: calc(3% + ((100vw - 1200px) / 2));
}

#sect-abo .abo-wrapSlide article {
    background: #FFFFFF;
    box-shadow: 0 2px 39px 4px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    width: 300px;
    margin: 40px 20px;
    min-height: 450px;
}

#sect-abo .abo-wrapSlide article .btn {
    background-color: #fff;
    min-width: 100%;
}

#sect-abo .abo-wrapSlide article.highlighted {
    background-color: var(--color-red);
    color: #fff;
}

#sect-abo .abo-wrapSlide article.highlighted .wrap-aboCont {
    min-height: 450px;
}

#sect-abo .abo-wrapSlide article.highlighted p {
    color: #fff;
}

#sect-abo .abo-wrapSlide article.highlighted .btn {
    margin-top: 20px;
    border: none;
}

.wrap-aboCont {
    padding: 40px 20px;
    text-align: center;
    min-height: 360px;
}

.wrap-aboCont p {
    color: #7F7F7F;
    font-weight: 300;
}

.wrap-aboCont h3 {
    margin-bottom: 30px;
    font-family: "Daniel", cursive;
    font-size: 40px;
    line-height: 30px;
}

.wrap-aboCont h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.wrap-aboBtn {
    padding: 20px;
    background-color: var(--color-greylight);
    text-align: center;
}

#sect-aboTarifs {
    padding: 0 0 100px 0;
}

@media (max-width: 800px) {
    #sect-aboTarifs {
        padding: 0 0 50px 0;
    }
}

#sect-aboTarifs .wrap-btn {
    text-align: center;
}

.wrap-tarifTable table {
    background: #FFFFFF;
    box-shadow: 0 2px 39px 4px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    width: 100%;
    margin-bottom: 50px;
}

.wrap-tarifTable table td {
    padding: 20px;
    text-align: center;
    border-right: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    padding: 20px 0;
}

.wrap-tarifTable table td {
    font-size: 24px;
    font-weight: 600;
}

.wrap-tarifTable table td strong {
    font-size: 24px;
    display: block;
}

.wrap-tarifTable table td small {
    font-size: 16px;
    color: #7F7F7F;
    font-weight: 300;
    display: block;
}

.wrap-tarifTable table th {
    background-color: var(--color-greylight);
    border-right: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    padding: 40px 0;
    font-family: "Daniel", cursive;
    font-size: 24px;
}

.tarifsToggle {
    text-align: center;
    margin-bottom: 40px;
    vertical-align: middle;
}

.tarifsToggle span {
    font-size: 24px;
    font-weight: bold;
    margin: 0 20px;
}

.tarifsToggle input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}

.tarifsToggle label {
    cursor: pointer;
    text-indent: -9999px;
    width: 60px;
    height: 30px;
    background: red;
    display: block;
    border-radius: 100px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.tarifsToggle label:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 141px;
    transition: 0.1s;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.tarifsToggle input:checked+label:after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
}

.tarifsToggle label:active:after {
    width: 50px;
}

.abo-wrapSlide .slick-prev {
    top: 45%;
    left: 50px;
    display: none !important;
}

.abo-wrapSlide.slick-slider:hover .slick-prev {
    display: none !important;
}

.abo-wrapSlide .slick-next {
    top: 45%;
    opacity: 1;
    right: 50px;
    margin-top: -15px;
}

@media (max-width: 800px) {
    .wrap-tarifTable table td,
    .wrap-tarifTable table td strong {
        font-size: 18px;
    }
    .wrap-tarifTable table td small {
        font-size: 14px;
    }
    .wrap-tarifTable table th {
        font-size: 14px;
    }
}

@media (max-width: 700px) {
    .tarifsToggle span {
        font-size: 14px;
        margin: 0 10px;
    }
}

#sect-calendarNav {
    padding: 100px 0 60px 0;
}

#sect-calendarMonth h2 {
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

#sect-calendarMonth .date {
    background-color: #F9F9F9;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#sect-calendarMonth .date .affiche {
    align-self: center;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    min-width: 20%;
    max-width: 20%;
    padding: 10px 20px 10px 10px;
}

#sect-calendarMonth .date .affiche img {
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

#sect-calendarMonth .date .content {
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    min-width: 60%;
    max-width: 60%;
    padding: 20px;
    align-self: center;
}

#sect-calendarMonth .date .content h3 {
    font-size: 24px;
}

#sect-calendarMonth .date .content h4 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 20px;
}

#sect-calendarMonth .date .content h4 b {
    color: var(--color-red);
    font-weight: normal;
}

#sect-calendarMonth .date .btns {
    flex-grow: 1;
    align-self: center;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    min-width: 20%;
    max-width: 20%;
    padding: 20px;
}

#sect-calendarMonth .date .btns .btn {
    min-width: 0;
    width: 100%;
    margin: 5px 0;
}

#sect-calendarMonth .date .btns .btnLight {
    background-color: #fff;
}

#sect-calendarMonth .date.olddate {
    background-color: #ebebeb;
}

#sect-calendarMonth .date.olddate .affiche {
    opacity: 0.2;
}

@media (max-width: 800px) {
    #sect-calendarMonth .date {
        display: block;
    }
    #sect-calendarMonth .date .affiche {
        min-width: auto;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    #sect-calendarMonth .date .content {
        min-width: auto;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    #sect-calendarMonth .date .btns {
        min-width: auto;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    #sect-calendarNav {
        padding: 50px 0 20px 0;
    }
}

.partnersLogos ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-left: -2%;
}

.partnersLogos ul li {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 16%;
    max-width: 16%;
    position: relative;
    margin: 2%;
    text-align: center;
}

.partnersLogos ul li img {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 50%;
}

.partnersLogos ul li:hover img {
    filter: grayscale(0%);
    opacity: 100%;
}

#sect-history {
    padding: 100px 0;
}

@media (max-width: 800px) {
    #sect-history {
        padding: 50px 0;
    }
}

#sect-intro {
    padding-top: 100px;
}

#sect-history .timeline {
    padding-left: 90px;
    border-left: 1px solid #C3C3C3;
}

#sect-history .timeline .year {
    margin-bottom: 90px;
    position: relative;
}

#sect-history .timeline .year .titleYear {
    margin-bottom: 10px;
}

#sect-history .timeline .year .titleYear strong {
    color: var(--color-red);
    font-size: 30px;
    font-family: "Daniel", cursive;
    font-weight: 100;
    margin-right: 30px;
}

#sect-history .timeline .year .titleYear span {
    font-size: 24px;
    font-weight: bold;
}

#sect-history .timeline .year:after {
    content: ".";
    display: block;
    font-size: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #C3C3C3;
    left: -98px;
    top: 50%;
    position: absolute;
    background-color: #fff;
}

#sect-history .timeline .year:last-child:before {
    width: 30px;
    height: 50%;
    position: absolute;
    background-color: #fff;
    top: 50%;
    content: ".";
    display: block;
    font-size: 0;
    left: -105px;
}

#sect-history .timeline .year:first-child:before {
    width: 30px;
    height: 50%;
    position: absolute;
    background-color: #fff;
    top: 0;
    content: ".";
    display: block;
    font-size: 0;
    left: -105px;
}

#sect-partners {
    background-color: #FBFBFB;
    padding: 100px 0;
}

@media (max-width: 800px) {
    #sect-partners {
        padding: 50px 0;
    }
}

@media (max-width: 800px) {
    #sect-history .timeline {
        padding-left: 30px;
    }
    #sect-history .timeline .year:after {
        left: -40px;
    }
}

#sect-archivePosters {
    padding: 100px 0;
    background-color: #fcfcfc;
}

#sect-archivePosters .wrap-btn {
    text-align: center;
}

#sect-archivePosters .wrap-posters {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-left: -2%;
    margin-bottom: 30px;
}

#sect-archivePosters .wrap-posters .poster {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 21%;
    max-width: 21%;
    position: relative;
    margin: 2%;
    border-radius: 10px;
    overflow: hidden;
}

#sect-archivePosters .wrap-posters .poster img {
    display: block;
    width: 100%;
}

#sect-archiveShows {
    padding: 100px 0;
}

#sect-archiveShows .intro {
    margin-bottom: 50px;
}

#sect-archiveShows .wrap-archive {
    display: -ms-flexbox;
    border-top: 1px solid #D8D8D8;
    margin-top: 40px;
    padding-top: 40px;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-left: -2%;
}

#sect-archiveShows .wrap-archive .item {
    border-radius: 10px;
    padding: 30px;
    background: rgba(235, 235, 235, 0.3);
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 29%;
    max-width: 29%;
    position: relative;
    margin: 2%;
    overflow: hidden;
}

#sect-archiveShows .wrap-archive .item h4 {
    font-size: 16px;
    line-height: 27px;
    text-decoration: underline;
}

#sect-archiveShows .wrap-archive .item p {
    font-size: 16px;
    color: #7F7F7F;
    letter-spacing: 0;
    line-height: 24px;
}

@media (max-width: 800px) {
    #sect-archivePosters .wrap-posters .poster {
        min-width: 29%;
        max-width: 29%;
    }
    #sect-archiveShows .wrap-archive .item {
        min-width: 46%;
        max-width: 46%;
    }
    #sect-archivePosters {
        padding: 100px 0;
    }
}

@media (max-width: 800px) and (max-width: 800px) {
    #sect-archivePosters {
        padding: 50px 0;
    }
}

@media (max-width: 800px) {
    #sect-archiveShows {
        padding: 100px 0;
    }
}

@media (max-width: 800px) and (max-width: 800px) {
    #sect-archiveShows {
        padding: 50px 0;
    }
}

@media (max-width: 600px) {
    #sect-archivePosters .wrap-posters .poster {
        min-width: 46%;
        max-width: 46%;
    }
    #sect-archiveShows .wrap-archive .item {
        min-width: 96%;
        max-width: 96%;
    }
}

#sect-pedaAbout {
    padding: 100px 0;
}

@media (max-width: 800px) {
    #sect-pedaAbout {
        padding: 50px 0;
    }
}

#sect-pedaAbout .wrapBtn {
    text-align: center;
    margin-top: 20px;
}

#sect-pedaPractical {
    padding: 100px 0;
}

@media (max-width: 800px) {
    #sect-pedaPractical {
        padding: 50px 0;
    }
}

#sect-pedaFolder {
    background-color: #fbfbfb;
    padding: 100px 0;
}

@media (max-width: 800px) {
    #sect-pedaFolder {
        padding: 50px 0;
    }
}

#sect-pedaFolder .wrap-folders {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-left: -2%;
}

#sect-pedaFolder .wrap-folders .item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    min-width: 46%;
    max-width: 46%;
    margin: 2%;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 39px 4px rgba(0, 0, 0, 0.19);
}

#sect-pedaFolder .wrap-folders .item .affiche {
    display: inline-block;
    width: 30%;
    vertical-align: middle;
    border-radius: 10px;
    overflow: hidden;
}

#sect-pedaFolder .wrap-folders .item .affiche img {
    display: block;
    width: 100%;
}

#sect-pedaFolder .wrap-folders .item .content {
    display: inline-block;
    width: 60%;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
}

#sect-pedaFolder .wrap-folders .item .content h5 {
    font-size: 25px;
    margin-bottom: 10px;
    line-height: 24px;
}

#sect-pedaFolder .wrap-folders .item .content .tags span {
    color: #7F7F7F;
    font-size: 12px;
}

#sect-pedaFolder .wrap-folders .item .content .tags {
    margin-bottom: 30px;
}

#sect-pedaFolder .wrap-folders .item .content .vsimpleLink {
    margin-top: 15px;
    display: block;
}

@media (max-width: 800px) {
    #sect-pedaFolder .wrap-folders .item {
        max-width: 96%;
        min-width: 96%;
    }
}

@media (max-width: 500px) {
    #sect-pedaFolder .wrap-folders .item {
        max-width: 96%;
        min-width: 96%;
    }
    #sect-pedaFolder .wrap-folders .item .affiche,
    #sect-pedaFolder .wrap-folders .item .content {
        width: 100%;
    }
}

#sect-soiree {
    padding: 100px 0;
}

#sect-soiree .wordsSlide {
    text-align: center;
    font-size: 100px;
    font-weight: bold;
    opacity: 0.08;
    padding: 50px 0;
}

@media (max-width: 800px) {
    #sect-soiree {
        padding: 50px 0;
    }
}

#sect-soiree .bigTitle {
    text-align: center;
    font-size: 65px;
    font-family: "Daniel", cursive;
    margin-bottom: 40px;
    line-height: 50px;
}

#sect-soiree .contentCols {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -1%;
    margin-left: -1%;
}

#sect-soiree .contentCols .col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    min-width: 48%;
    max-width: 48%;
    margin: 1%;
}

#sect-soiree .contentCols .col:nth-of-type(1) .item:nth-of-type(1) .hover {
    background-color: #90C180;
}

#sect-soiree .contentCols .col:nth-of-type(1) .item:nth-of-type(2) .hover {
    background-color: #F7B49A;
}

#sect-soiree .contentCols .col:nth-of-type(1) .item:nth-of-type(3) .hover {
    background-color: #CCA276;
}

#sect-soiree .contentCols .col:nth-of-type(1) .item:nth-of-type(4) .hover {
    background-color: #B1CDD8;
}

#sect-soiree .contentCols .col:nth-of-type(1) .item:nth-of-type(5) .hover {
    background-color: #005760;
}

#sect-soiree .contentCols .col:nth-of-type(1) .item:nth-of-type(6) .hover {
    background-color: #D3BFCC;
}

#sect-soiree .contentCols .col:nth-of-type(1) .item:nth-of-type(7) .hover {
    background-color: blue;
}

#sect-soiree .contentCols .col:nth-of-type(2) .item:nth-of-type(1) .hover {
    background-color: #762328;
}

#sect-soiree .contentCols .col:nth-of-type(2) .item:nth-of-type(2) .hover {
    background-color: #FFA45A;
}

#sect-soiree .contentCols .col:nth-of-type(2) .item:nth-of-type(3) .hover {
    background-color: #D3BFCC;
}

#sect-soiree .contentCols .col:nth-of-type(2) .item:nth-of-type(4) .hover {
    background-color: #B6CAA9;
}

#sect-soiree .contentCols .col:nth-of-type(2) .item:nth-of-type(5) .hover {
    background-color: #F94F3E;
}

#sect-soiree .contentCols .col:nth-of-type(2) .item:nth-of-type(6) .hover {
    background-color: #B1CDD8;
}

#sect-soiree .contentCols .col:nth-of-type(2) .item:nth-of-type(7) .hover {
    background-color: #005760;
}

#sect-soiree .contentCols .col .item {
    margin: 4% 0;
    width: 100%;
    position: relative;
}

#sect-soiree .contentCols .col .item.video iframe {
    width: 100%;
}

#sect-soiree .contentCols .col .item .pict {
    position: relative;
}

#sect-soiree .contentCols .col .item .pict .copy {
    position: absolute;
    bottom: 5px;
    left: 5px;
    color: #fff;
    font-size: 12px;
}

#sect-soiree .contentCols .col .item .pict img {
    display: block;
    width: 100%;
}

#sect-soiree .contentCols .col .item .hover {
    position: absolute;
    top: 0;
    text-align: center;
    color: #fff;
    bottom: 0;
    font-size: 40px;
    font-weight: bold;
    opacity: 0;
    width: 101%;
    min-height: 200px;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    height: 100%;
    display: table;
}

#sect-soiree .contentCols .col .item:hover .hover {
    display: table;
    opacity: 1;
}

@media (max-width: 900px) {
    #sect-soiree .contentCols .col .item .hover {
        display: table;
        opacity: 0.6;
    }
    #sect-soiree .bigTitle {
        font-size: 45px;
        margin-bottom: 0;
    }
}

@media (max-width: 700px) {
    #sect-soiree .contentCols {
        display: block;
    }
    #sect-soiree .contentCols .col {
        max-width: 100%;
    }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#sect-saisonList {
    background: rgba(235, 235, 235, 0.2);
    padding: 100px 0;
}

@media (max-width: 800px) {
    #sect-saisonList {
        padding: 50px 0;
    }
}

#sect-saisonList .tourneeInfos {
    overflow: hidden;
}

#sect-saisonList .tourneeInfos .contactBox {
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    float: left;
    width: 20%;
    margin-right: 10%;
    padding: 30px;
    font-size: 16px;
    color: #4e4e4e;
}

#sect-saisonList .tourneeInfos .contactBox h5 {
    color: #000;
    font-size: 13px;
    margin-bottom: 5px;
}

#sect-saisonList .tourneeInfos .contactBox a {
    color: var(--color-red);
}

#sect-saisonList .tourneeInfos .aboutTournee {
    width: 70%;
    float: right;
}

#sect-saisonList .tourneeInfos .aboutTournee h4 {
    margin-bottom: 25px;
    font-size: 24px;
}

.sect-topBannerDetail {
    position: relative;
}

.sect-topBannerDetail .share {
    position: absolute;
    bottom: 100px;
    right: 50px;
}

.sect-topBannerDetail .share li {
    display: inline-block;
    margin: 0 5px;
}

.sect-topBannerDetail .share li img {
    width: 35px;
}

.sect-topBannerDetail .showMainInfos {
    display: flex;
}

.sect-topBannerDetail .showMainInfos .affiche {
    min-width: 35%;
    max-width: 35%;
}

.sect-topBannerDetail .showMainInfos .affiche img {
    display: block;
    width: 100%;
}

.sect-topBannerDetail .showMainInfos .content {
    padding: 10%;
}

.sect-topBannerDetail .showMainInfos .smallIntro h5 {
    font-size: 16px;
    font-weight: 500;
}

.sect-topBannerDetail h1 {
    line-height: 70px;
}

.sect-topBannerDetail h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}

.sect-topBannerDetail h4 i {
    font-style: normal;
    text-decoration: underline;
}

.sect-topBannerDetail .subnav {
    bottom: -30px;
}

#sect-production {
    padding: 0 0 100px 0;
}

#sect-production h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

@media (max-width: 800px) {
    #sect-production {
        padding: 0 0 50px 0;
    }
}

#sect-production .content {
    column-count: 2;
    column-gap: 50px;
}

#sect-production .content p {
    font-size: 12px;
}

#sect-documents {
    padding: 0 0 100px 0;
}

#sect-documents h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

@media (max-width: 800px) {
    #sect-documents {
        padding: 0 0 50px 0;
    }
}

#sect-documents ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -1%;
    margin-left: -1%;
}

#sect-documents li.dwd {
    background: var(--color-greylight);
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    min-width: 48%;
    max-width: 48%;
    margin: 1%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#sect-documents li.dwd:hover {
    -webkit-box-shadow: 0px 0px 10px rgba(52, 73, 94, 0.3);
    box-shadow: 0px 0px 10px rgba(52, 73, 94, 0.3);
}

#sect-documents li.dwd a {
    display: block;
    font-size: 13px;
    text-decoration: underline;
    font-weight: 500;
    color: #000;
    background: url(../img/dwd.png) no-repeat right 20px center/auto 20px;
}

#sect-documents li.dwd a span {
    display: block;
    padding: 30px 30px 30px 60px;
}

#sect-documents li.dwd a.pdfFile span {
    background: url(../img/icon-pdf.svg) no-repeat left 25px center/20px;
}

#sect-documents li.dwd a.audioFile span {
    background: url(../img/icon-audio.svg) no-repeat left 25px center/20px;
}

#sect-documents li.dwd a.mp3File span {
    background: url(../img/icon-audio.svg) no-repeat left 25px center/20px;
}

.saisonWrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -4%;
    margin-left: -4%;
}

.saisonWrap .saisonItem {
    max-width: 100%;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 25%;
    max-width: 25%;
    position: relative;
    margin: 4%;
    cursor: pointer;
}

.saisonWrap .saisonItem:hover .affiche {
    transform: scale(1.01);
    box-shadow: 0 2px 9px 4px rgba(0, 0, 0, 0.1);
}

.saisonWrap .saisonItem .affiche {
    box-shadow: 0 2px 39px 4px rgba(0, 0, 0, 0.19);
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    margin-bottom: 20px;
}

.saisonWrap .saisonItem .affiche img {
    display: block;
    width: 100%;
}

.saisonWrap .saisonItem h6 {
    font-size: 10px;
    color: var(--color-red);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.saisonWrap .saisonItem h4 {
    font-size: 24px;
    line-height: 24px;
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.saisonWrap .saisonItem p {
    font-size: 11px;
}

#sect-tourneeDates {
    padding: 0 0 100px 0;
}

#sect-tourneeDates h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

#sect-tourneeDates .wrap-articles {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-left: -2%;
}

#sect-tourneeDates .wrap-articles .tourneeDate {
    background: #FFFFFF;
    box-shadow: 0 2px 39px 4px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 46%;
    max-width: 46%;
    position: relative;
    margin: 2%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#sect-tourneeDates .wrap-articles .tourneeDate .contTitle {
    padding: 15px;
    align-self: center;
    border-right: 3px solid var(--color-greylight);
    min-width: 55%;
    max-width: 55%;
}

#sect-tourneeDates .wrap-articles .tourneeDate .contTitle small {
    color: #4e4e4e;
    font-size: 16px;
}

#sect-tourneeDates .wrap-articles .tourneeDate .contTitle h4 {
    font-size: 24px;
}

#sect-tourneeDates .wrap-articles .tourneeDate .contPlace {
    padding: 15px;
    align-self: center;
    min-width: 45%;
    max-width: 45%;
    text-align: center;
}

#sect-tourneeDates .wrap-articles .tourneeDate .contPlace .location {
    text-decoration: underline;
    color: #000;
    background: url(../img/pin.png) no-repeat left center;
    padding-left: 25px;
}

#sect-aroundShow {
    padding: 0 0 100px 0;
}

@media (max-width: 800px) {
    #sect-aroundShow {
        padding: 0 0 50px 0;
    }
}

#sect-aroundShow h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

#sect-aroundShow .wrap-articles {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -1%;
    margin-left: -1%;
}

#sect-aroundShow article {
    background: #FFFFFF;
    box-shadow: 0 2px 39px 4px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    min-width: 31%;
    max-width: 31%;
    margin: 1%;
}

#sect-aroundShow article .picture img {
    display: block;
    width: 100%;
}

#sect-aroundShow article .content {
    padding: 50px;
}

#sect-aroundShow article .content h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

#sect-aroundShow article .content p {
    font-size: 16px;
    color: #4e4e4e;
}

#sect-visuals {
    padding: 0 0 100px 0;
}

@media (max-width: 800px) {
    #sect-visuals {
        padding: 0 0 50px 0;
    }
}

#sect-visuals .slick-slide img {
    height: 400px;
}

#sect-visuals h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

#sect-visuals .visualsSlider {
    padding-left: calc(3% + ((100vw - 1200px) / 2));
}

#sect-visuals .visualsSlider .slick-prev {
    top: 50%;
    left: 50px;
    display: none !important;
}

#sect-visuals .visualsSlider .slick-next {
    top: 50%;
    opacity: 1;
    margin-top: -15px;
}

#sect-visuals .visualsSlider .visual {
    margin: 0 10px;
    position: relative;
}

#sect-visuals .visualsSlider .visual.video span:after {
    content: ".";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 0;
    background: url(../img/play.png) no-repeat center center;
    width: 52px;
    height: 60px;
    margin-top: -25px;
    margin-left: -25px;
}

#sect-visuals .visualsSlider .visual .copyright {
    font-size: 11px;
    font-weight: normal;
}

#sect-resume {
    padding: 100px 0;
}

@media (max-width: 800px) {
    #sect-resume {
        padding: 50px 0;
    }
}

#sect-resume .practical {
    display: inline-block;
    background-color: var(--color-greylight);
    padding: 20px 30px;
}

#sect-resume .practical h5 {
    font-size: 13px;
    text-decoration: underline;
    display: inline-block;
    margin: 0 10px;
}

#sect-resume .practical .time {
    display: inline-block;
    font-size: 16px;
    color: #4e4e4e;
    padding: 0 0 0 30px;
    margin: 0 20px;
    background: url(../img/icon-clock.svg) no-repeat left center/auto 100%;
}

#sect-resume .practical .age {
    display: inline-block;
    font-size: 16px;
    color: #4e4e4e;
    padding: 0 0 0 35px;
    margin: 0 20px;
    background: url(../img/icon-age.svg) no-repeat left center/auto 90%;
}

#sect-resume h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

#sect-resume .saisonWrap .saisonItem {
    min-width: 42%;
    max-width: 42%;
}

@media (max-width: 800px) {
    #sect-saisonList .tourneeInfos .contactBox,
    #sect-saisonList .tourneeInfos .aboutTournee {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .saisonWrap .saisonItem {
        min-width: 42%;
        max-width: 42%;
    }
    .sect-topBannerDetail .share {
        top: 20px;
    }
    .sect-topBannerDetail .showMainInfos {
        display: block;
    }
    .sect-topBannerDetail .showMainInfos .affiche {
        min-width: 50%;
        max-width: 60%;
        margin: 0 auto;
    }
    .sect-topBannerDetail .subnav {
        bottom: auto;
    }
    #sect-production .content {
        column-count: 2;
    }
    #sect-aroundShow article {
        min-width: 46%;
        max-width: 46%;
    }
    #sect-tourneeDates .wrap-articles .tourneeDate {
        min-width: 94%;
        max-width: 94%;
    }
}

@media (max-width: 600px) {
    .sect-topBannerDetail .showMainInfos {
        display: block;
    }
    .sect-topBannerDetail .showMainInfos .affiche {
        min-width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .saisonWrap .saisonItem {
        min-width: 94%;
        max-width: 94%;
    }
    #sect-production .content {
        column-count: 1;
    }
    #sect-documents li.dwd {
        min-width: 96%;
        max-width: 96%;
    }
    #sect-aroundShow article {
        min-width: 96%;
        max-width: 96%;
    }
}


/*  news detail */

#sect-newsDetail {
    padding: 100px 0;
}

@media (max-width: 800px) {
    #sect-newsDetail {
        padding: 50px 0;
    }
}

#sect-newsDetail .wrap-title {
    text-align: center;
    padding-bottom: 40px;
}

#sect-newsDetail .wrap-title .share {
    position: relative;
    z-index: 1;
}

#sect-newsDetail .wrap-title .share b {
    margin-right: 10px;
}

#sect-newsDetail .wrap-title .share span {
    background-color: #fff;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

#sect-newsDetail .wrap-title .share a img {
    width: 30px;
    display: inline-block;
    vertical-align: middle;
}

#sect-newsDetail .wrap-title .share::before {
    content: "-";
    font-size: 0;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    background-color: #EBEBEB;
}

#sect-newsDetail .newsBanner {
    position: relative;
    padding: 0 120px;
    margin: 0 -120px;
}

#sect-newsDetail .newsBanner img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

#sect-newsDetail .newsBanner a.next {
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 16px;
    color: rgba(127, 127, 127, 0.44);
    text-align: center;
    line-height: 27px;
    padding-bottom: 50px;
    background: url(../img/next.svg) no-repeat bottom center;
}

#sect-newsDetail .newsContent {
    padding: 100px;
}

#sect-newsDetail .wrapBtn {
    text-align: center;
}


/* activite article */

#sect-activite {
    padding: 70px 0 0px 0;
    position: relative;
    z-index: 2;
    margin-top: -100px;
}

#sect-activite .wrapper {
    position: relative;
    z-index: 3;
}

#sect-activite::before {
    content: ".";
    width: calc(100% - ((100vw - 1200px) / 2));
    display: block;
    position: absolute;
    background-color: #fff;
    height: 100px;
    top: 0;
    font-size: 0;
    right: 0;
}

#sect-activite .title {
    text-align: center;
}

#sect-activite .title h2 {
    font-size: 40px;
}

#sect-activite .title .infoLine {
    border-top: 1px solid #EBEBEB;
    border-bottom: 1px solid #EBEBEB;
    padding: 30px;
}

#sect-activite .title .infoLine .share {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 0 20px;
}

#sect-activite .title .infoLine .share b {
    margin-right: 10px;
}

#sect-activite .title .infoLine .share span {
    background-color: #fff;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

#sect-activite .title .infoLine .share a img {
    width: 30px;
    display: inline-block;
    vertical-align: middle;
}

#sect-activite .title .infoLine .date {
    display: inline-block;
    margin: 0 20px;
    font-size: 13px;
    padding-left: 28px;
    background: url(../img/icon-calendarstar.svg) no-repeat left/18px;
}

#sect-activite .title .infoLine .linkShow {
    display: inline-block;
    margin: 0 20px;
    font-size: 13px;
}

#sect-activite .title .infoLine .linkShow a {
    text-decoration: underline;
    padding-left: 25px;
    background: url(../img/icon-show.svg) no-repeat left/20px;
    color: #000;
}

#sect-activite .content {
    padding: 100px 0;
}

@media (max-width: 800px) {
    #sect-activite .content {
        padding: 50px 0;
    }
}

@media (max-width: 1200px) {
    #sect-newsDetail .newsBanner {
        margin: 0;
        padding: 0;
    }
    #sect-newsDetail .newsBanner a.next {
        position: relative;
        margin-top: 30px;
        display: inline-block;
        font-size: 16px;
        padding: 0 30px 0 0;
        background: url(../img/next.svg) no-repeat right center/21px;
    }
}

@media (max-width: 800px) {
    #sect-news .wrap-news article {
        min-width: 46%;
        max-width: 46%;
    }
    #sect-newsDetail .newsContent {
        padding: 20px 0;
    }
}

@media (max-width: 800px) {
    #sect-news .wrap-news article {
        min-width: 96%;
        max-width: 96%;
    }
    #sect-activite .title .infoLine {
        padding: 30px 0;
    }
    #sect-activite .title h2 {
        font-size: 24px;
    }
    #sect-activite .title .infoLine .date,
    #sect-activite .title .infoLine .linkshow {
        margin: 10px 0;
    }
}

#testimonialPage {
    padding: 0;
    font-family: helvetica, arial, sans-serif;
}

#testimonialPage .btn {
    background: #e5000d url(../img/testimonials/mediumArrow.png) no-repeat right 20px center;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    display: inline-block;
    padding: 10px 50px 10px 30px;
    font-size: 27px;
    text-transform: uppercase;
}

#testimonialPage .btnPlus {
    font-size: 17px;
    background-image: url(../img/testimonials/icoPlus.png);
}

#testimonialPage h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
}

#testimonialPage h2 {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 36px;
}

#testimonialPage h3 {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 25px;
}

#testimonialPage h4 {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 15px;
}

#testimonialPage h5 {
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 15px;
}

#testimonialPage #testi_header {
    background: url(../_img/background.jpg) no-repeat center center/cover;
    padding: 40px 0;
    text-align: center;
}

#testimonialPage .socialsLinks {
    position: absolute;
    right: 30px;
    top: 40px;
}

#testimonialPage .wrapLogo {
    position: relative;
    max-width: 450px;
    margin: 0 auto 50px auto;
}

#testimonialPage .wrapLogo h1 {
    color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 24px;
    text-transform: uppercase;
}

#testimonialPage .wrapLogo img {
    width: 100%;
}

#testimonialPage #boxAbout {
    width: 80%;
    margin: 0 auto;
}

#testimonialPage #boxAbout .bubble {
    background-color: #fff;
    background-color: white;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.18);
    opacity: 0.85;
    position: relative;
    padding: 30px;
    margin-bottom: 30px;
}

#testimonialPage #boxAbout .bubble:after {
    content: ".";
    background: url(../_img/bubble.png) no-repeat center center;
    position: absolute;
    bottom: -50px;
    right: calc(50% - 197px);
    display: block;
    width: 60px;
    height: 50px;
    font-size: 0;
}

#testimonialPage #boxAbout .bubble h3 {
    margin-bottom: 20px;
}

#testimonialPage #boxAbout .bubble p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 10px;
}

#testimonialPage #sect-testimonials {
    text-align: center;
    background-color: #f6f6f6;
    padding: 80px 0;
    position: relative;
}

#testimonialPage #sect-videos h2 {
    margin-bottom: 40px;
}

#testimonialPage #sect-videos {
    text-align: center;
    padding: 80px 0;
    position: relative;
}

#testimonialPage .articles {
    margin-bottom: 40px;
}

#testimonialPage #sect-testimonials article {
    padding: 40px 0 0 0;
}

#testimonialPage #sect-testimonials article:after {
    content: ".";
    width: 30%;
    margin-left: 0;
    height: 2px;
    background-color: #000;
    font-size: 0;
    display: inline-block;
}

#testimonialPage #sect-testimonials article blockquote {
    text-align: justify;
    font-size: 15px;
    line-height: 28px;
    padding: 0 50px;
    margin-bottom: 40px;
    position: relative;
}

#testimonialPage #sect-testimonials article blockquote:before {
    content: "“";
    font-size: 100px;
    color: #b1b1b1;
    position: absolute;
    top: 30px;
    left: 0;
}

#testimonialPage #sect-testimonials article blockquote:after {
    content: "”";
    font-size: 100px;
    color: #b1b1b1;
    position: absolute;
    bottom: -30px;
    right: 0;
}

#testimonialPage p.author {
    margin-bottom: 30px;
    font-family: "Oswald", sans-serif;
}

#testimonialPage #sect-testimonials .specialLinks {
    position: absolute;
    right: 0;
    top: 20px;
}

#testimonialPage #sect-testimonials .specialLinks a {
    background: #3d3d3d url(../img/testimonials/smallArrow.png) no-repeat right 10px center;
    color: #fff;
    font-family: "Oswald", sans-serif;
    padding: 5px 35px 5px 17px;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
}

#testimonialPage .socialsLinks li {
    display: block;
    float: left;
    margin-right: 7px;
}

#testimonialPage .socialsLinks {
    position: absolute;
    right: 30px;
    top: 40px;
}

#testimonialForm {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 3000;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#testimonialForm.open {
    left: 0;
}

#testimonialForm label {
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

#testimonialForm .close {
    position: absolute;
    top: 20px;
    right: 5%;
}

#testimonialForm input[type=text],
#testimonialForm input[type=email],
#testimonialForm textarea {
    background-color: #212121;
    padding: 15px 20px;
    color: #fff;
    display: inline-block;
    width: 100%;
    border-radius: 10px;
}

#testimonialForm .wrap-btn {
    text-align: center;
}

#testimonialForm .wrapTitle {
    margin-bottom: 30px;
    text-align: center;
}

#testimonialForm .wrapTitle .h1 span {
    color: #fff;
}

#testimonialForm .logo {
    position: absolute;
    top: 0;
    padding: 20px 0 0 5%;
}

#testimonialForm .logo img {
    width: 210px;
}

#testimonialForm .wrapper {
    max-width: 800px;
}

#testimonialForm .col {
    margin-bottom: 30px;
}

#testimonialForm textarea {
    min-height: 100px;
}


/*# sourceMappingURL=global.css.map */
