/*--------------------------------------------------------------
Normalize
Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/

html {
    font-family: sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

figcaption,
figure,
main {
    display: block;
}

figure {
    margin: 1em 0;
}

hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
    outline-width: 0;
}

abbr[title] {
    border-bottom: 1px #767676 dotted;
    text-decoration: none;
}

b,
strong {
    font-weight: inherit;
}

b,
strong {
    font-weight: 700;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #eee;
    color: #222;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

audio,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    border: 1px solid #bbb;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    display: inline-block;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details,
menu {
    display: block;
}

summary {
    display: list-item;
}

canvas {
    display: inline-block;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    -webkit-tap-highlight-color:transparent
}

a, button {
    text-decoration: none;
    outline: 0;
}

a {
    color: #000;
    text-decoration: none;
    transition: color 300ms cubic-bezier(0.4, 0.8, 0.74, 1);
}

a:link, a:visited:link {
    -webkit-tap-highlight-color: transparent;
}

img.scale-with-grid {
    display: block;
    height: auto !important;
    width: 100% !important;
}

.transition {
    -webkit-transition: all .25s ease-out;
       -moz-transition: all .25s ease-out;
        -ms-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
}

.transition2 {
    -webkit-transition: visibility 0s 1s,-webkit-transform 1s cubic-bezier(.75,0,.25,1);
    transition: visibility 0s 1s,-webkit-transform 1s cubic-bezier(.75,0,.25,1);
    transition: transform 1s cubic-bezier(.75,0,.25,1),visibility 0s 1s;
    transition: transform 1s cubic-bezier(.75,0,.25,1),visibility 0s 1s,-webkit-transform 1s cubic-bezier(.75,0,.25,1);
    will-change: transform;
}

/*--------------------------------------------------------------
Fonts
--------------------------------------------------------------*/
.light .buttons a {
    border: 0;
    background-color: #171729;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
    border-radius: 0;
    font-size: .8rem;
}

/*----------------------------------------------------------------------------------------------------------------------------
  COLOR
----------------------------------------------------------------------------------------------------------------------------*/

:root {
  --color-bleu: #2100f0;
  --color-black: #000000;
}


/*--------------------------------------------------------------
ARROW BOUNCE
--------------------------------------------------------------*/

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.arrow {
display: none;
  position: fixed;
  bottom: 50px;
  right: 40px;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAgAAAAIACAMAAADDpiTIAAAAMFBMVEX///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv3aB7AAAAD3RSTlMAGNe9CgcGtbOytLe2f5VrjfCKAAADsElEQVR4AezBgQAAAACAoP2pF6kCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIDZpRvTiIEYiMLkzivb65/Xf7eBLSFkYAQzDUjwvS6rZ3N9LduekvuffFOAq/+Xs+T+pABffzhL7p8CfP3FBdQB3gXEH45S+psXEP9VgM7fvoD4rwJ0/v4FxF9TQE1IAT38YZbcPwV4+YsLGBNSQB9/mONf/XdIAZ38YR9y/xTg678KkPunAF//VYDcPwU4+IsLGDekgI7+cA+5fwow8hcUsPxTgLG/uIBxQQro6w/XEPinABd/bQHLPwUY+6sLeCEFdPeH989Hfj4poL//55ddOqgCAIQBKKT9S5vB294+GeAeA/gbwN8A/gbwN4C/AfwN4G8AfwP4G8DfAP4G8DeAvwH8DeBvAH8D+BvA3wD+BvA3gL8B/A3gbwB/A/gbwN8A/gbM9DeAvwH8DeBvAH8D+BvA3wD+BvA3gL8B/A3gbwB/A/gbwN8A/gbwN4C/AfwN4G8AfwP4G8DfAP4G8DeAvwH8DeBvAH8D+BvA3wD+BvA3gL8B/A3gbwB/A/gbwN8A/gbwN4C/AfwN4G8AfwP4G8DfAP4G8DeAvwH8DeBvAP//AfwN4G8AfwP4G8DfAP4G8DeAvwH8DeBvAH8D+BvA3wD+BvA3gL8B/A3gbwB/A/gbwN8A/gbwN4C/AfwN4G8AfwP4G8DfAP4G8DeAvwH8DeBvAH8D+BvA3wD+BvA3gL8B/A3gbwB/A/gbwN8A/gbwN4C/AfwN4G8AfwPm+hvA3wD+BvA3gL8B/A3gbwB/A/gbwN8A/gbwN4C/AfwN4G8AfwP4G8DfAP4G8DeAvwH8DeBvAH8D+BvA34Bd/gbwN4C/AfwN4G8AfwP4G8DfAP4G8DeAvwH8DeBvQMXfAP4G8DeAvwH8DeBvQNPfAP4G8Deg7G8AfwPa/gbE/Q2I+xvA3wD+BvA3gL8B/A3gbwB/A/gbwN8A/gYs8DeAvwH8DeBvAH8D+BvA3wD+BvA3gL8B/A3gbwB/A/gbwN8A/gbs9zeAvwH8DeBvAH8D+BvA3wD+BvT8DeBvAH8D+BvQ9TeAvwFtfwPi/gbwf+3BsQAAAADAIH/rYeypAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAUHBYk13Z7LTsAAAAASUVORK5CYII=);
    background-size: 60%;
    background-repeat: no-repeat;
background-position: center;
    background-color: transparent;
    border-radius: 100%;
    /*border: 1px solid #000;*/
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

.fade {
  opacity:0;
  transition: 1s all ease-out;
}

@media screen and (max-width: 960px){ 

    .arrow {
      right: 20px;
    }

}


/*--------------------------------------------------------------
Structure
--------------------------------------------------------------*/

body {
    color: #333;
    background-color: #fff;
    font-family: 'Gotham', sans-serif;
    font-weight:400;
    font-size: 1.4rem;
}

body, html {
    width: 100%;
    height: 100%;
}

html {
  font-size: 62.5%;
  /*font-size: calc(1em * 0.625); IE */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

.wmgsdk-modal-dialogue ul li input, .wmgsdk-content-container ul li input {
    margin: 0px 10px 0 0 !important;
    height: 20px !important;
    width: 20px !important;
}
.wmgsdk-modal-dialogue ul li input:checked, .wmgsdk-content-container ul li input:checked {
    background-color: #00203b !important; 
}

.title-wrapper {
    position: relative;
    margin-bottom: 50px;
}
#biographie .title-wrapper {
    width: 65%;
}
h1 {
    font-size: 3.8rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: none;
    color: #fff;
    font-weight: 300;
    /* letter-spacing: 0.1rem; */
    position: relative;
    display: inline-block;
    line-height: 1;
    /* text-decoration: underline; */
    text-transform: uppercase;
}
/*h1::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    left: -10%;
}*/
h1.bleu {
    color: var(--color-bleu);
}
h1.bleu::after {
    background-color: var(--color-bleu);
}
.line {
    position: relative;
    width: 18vw;
    height: auto;
    display: block;
    margin:auto;
    opacity: .85;
}

h2 {
    position: relative;
    font-size: 3.8rem;
    font-style: italic;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 40px;
    margin-top: 30px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    background-color: transparent;
    padding: 0;
    background: #46484d;
    background: linear-gradient(to top, #46484d 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    
}
h2 strong {
    font-weight: 600;
}
/*h2::after {
    content: '';
    width: 140%;
    height: 180%;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    border: none;
    border-radius: 0;
    transform: translate(-50%,-50%);
    background-color: #ff2626;
}*/

h3 {
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.3;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
    text-transform: uppercase;
}

h4 {
    font-size: 1.25em;
    color: rgba(124,40,48,1);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

input, select, th, td {font-size:1em;}


.wrapper {
    width:100%;
    overflow: hidden;
}

.overlay {
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden;    
    z-index: 5000;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.85);
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    /* -ms-flex-pack: center; */
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;    
}

.overlay-content {
    position: relative;
    width: 80%;
    max-width: 1200px;
    min-width: 320px;
    padding: 0;
    background: #000;
}

.overlay-content img { 
    display: block;
    width: 100%;
    height: auto;
}

.overlay-close {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0px;
    z-index: 1000;
    border: none;
    background: transparent;
    cursor: pointer;
    overflow: visible;
    width: 50px;
    height: 50px;
    -webkit-transition: transform .25s ease-in-out;
    -moz-transition: transform .25s ease-in-out;
    -ms-transition: transform .25s ease-in-out;
    -o-transition: transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
}

.overlay-close:before {
    content: "";
    position: absolute;
    display: block;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 0;
    border-top: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}
.overlay-close:after {
    content: "";
    position: absolute;
    display: block;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 0;
    border-top: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}


/*--------------------------------------------------------------
NEWSLETTER
--------------------------------------------------------------*/
.btn, .wmg-button {
    padding: 10px 30px;
    display: inline-block;
    border: 0;
    color: #171729;
    background-color: #F5F5F5;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 0;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    font-style: italic;   
}
.btn:hover ,.wmg-button:hover {
    opacity: .75;
}


@media screen and (max-width: 960px){ 

    .btn,.wmg-button {
        padding: 10px 15px;
        /*font-size: 1.5rem;*/
        /*line-height: 1.4;        */
    }
}


.wmgsdk-modal-content {
    padding: 50px !important;
}

body .wmgsdk-modal-dialogue label, body .wmgsdk-content-container label {
    font-family: 'Gotham Narrow', sans-serif;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    /*text-transform: uppercase;*/
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input, select {
    font-size: 1rem;
    border-radius: 0;
    font-family: 'Gotham Narrow', sans-serif;
    font-weight: 400;
    color: #333;
    text-align: left;
    padding: 15px;
    border:1px solid #333;
    width: 100%;
    display: block;
    outline: none;
    -webkit-appearance: none;   
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: none;    
    margin-bottom: 20px; 
}
body .wmgsdk-modal-dialogue div.opt-in-button button {
    padding: 12px 30px 10px 30px;
    border: 0px solid #333;
    margin-bottom: 20px;
    color: #fff;
    background-color: #171729;
    display: block;
    width: 100%;
    font-family: 'Gotham Narrow', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;  
}

body .wmgsdk-modal-dialogue ul li p,body  .wmgsdk-content-container ul li p {
    margin: 0;
    text-transform: none;
    font-size: 1.3rem;
    line-height: 1.5;
}

section#biographie {
    /* min-height: auto; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.row {
    width: 100%;
    /*max-width: 1800px;*/
    display: flex;
    
}
.col__50 {
    width: 50%;
    display: flex;
    align-content: center;
    align-items: center;
}

figure {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    /* padding-bottom: 60%; */
    background: rgba(0,0,0,0.1);
    z-index: 100;
    width: 100%;
    height: 100%;
}
figure img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    position: absolute;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;    
}

iframe {
    overflow: hidden;
    /*background-color: #fff;*/
}

section#home {
    position: relative;
    /*min-height: 100vh;*/
    padding:150px 0 190px 0;
    text-align: center; 
}

.slider {

}
.slider img {
    width: 100%;
    height: auto;
    /*top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    position: absolute;*/
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;    
}

.section__left {
    position: relative;
    width: 50%;
}

.section__left img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    -o-object-fit: contain;
    position: absolute;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}    
.section__right {
    padding: 100px 0;
    position: relative;
    width: 50%;
    display: flex;
}

.section__right__container {
    /*padding: 50px 0;*/
    margin: auto;
    width: 100%;
}

section#home {
    position: relative;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
        flex-direction: column;
}

.slick-home {
    /*position: absolute;
    top: 0;
    left: 0;*/
    width: 100%;
    height: 100%;
    display: block;
    margin: auto;
}

section#videos img,
section#newsletter img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*opacity: .3;*/
    object-position: center center;
    object-fit: cover;
    -o-object-fit: cover;
    position: absolute;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}




section {
    position: relative;
    /*min-height: 100vh;*/
    display: flex;
    /*background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: center center;*/
}
section#concours {
    min-height: auto;
}


section#videos iframe { 
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
}

.video-playlist__wrapper {
    position: relative;
    width: 80%;
    max-width: 950px;
    margin: auto;
}

@media screen and (max-width: 960px) {

    .video-playlist__wrapper {

    }

    .row {
        display: block;
        padding: 0;
    }
    .col {
        width: 100%;
    }

    #newsletter .row {
        display: flex;
        flex-direction: column-reverse;
    }

    figure {
        /*display: none;*/
        width: 100vw;
        height: 100vw;
    }

}


section#tournee {
    /*background-image: url(../images/bg2.jpg);
    background-size: cover;
    background-position: left top;*/
}
section#videos, section#newsletter {
        background: #F5F5F5;
}

.slick-banner {
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    margin: auto;
    /*min-height: 100vh;*/
}

.slick-dots {
    position: absolute;
    bottom: 5vh;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: rgba(255,255,255,.4);
    border-radius: 50%;
}
.slick-dots li.slick-active button {
    background: #fff;
}

.slick-item {
    position: relative;
    outline: none;
}

.slick-item img {
    width: 100%;
    height: auto;
}

/*.album-animation .bg-wood {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}*/

.album-animation-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;

    z-index: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);    
    width: 75%;
    max-width: 1800px;
    height: 100%;
    z-index: 100;
}

.album-animation-left {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;    
    width: 50%;
}
.album-animation-right {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;   
    flex-direction: column; 
    width: 50%;
}

.album-animation .cover-wrapper {
    position: relative;
    width: 90%;
    height: auto;
    
}
.cover {
    transform: rotate(-1.5deg);
    box-shadow: 0 0 40px 0 rgb(0 0 0 / 40%);
}
.album-animation .banner-logo {
    width: 28%;
    height: auto;
    margin-bottom: 30px;
    max-width: 400px;
}
.album-animation .album-title {
    width: 25%;
    height: auto;
    margin-bottom: 30px;
    max-width: 400px;
}




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



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

section#album {
    background-color: #171729;
}

.slick-album {
    width: 100%;
    display: block;
    margin: auto;
}

.slick-album-item img {
    width: 90%;
    height: auto;
    display: inline-block;
    margin-bottom: -40px;
}

.slick-musique {
    /*width: 35%;*/
    width: 40%;
    display: block;
    margin: auto;
    max-width: 600px;
}
.slick-musique {
    margin-top: 25px;
    margin-bottom: 25px;
}

.slick-videos {
    width: 70%;
    display: block;
    margin: auto;
}
.slick-videos-item {
    outline: 0;
}
.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: auto;
    top: 50%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: 0;
    background-color: #fff;
    border-radius: 0;
    outline: none;
    z-index: 100;
}
.slick-prev {
    left: -50px;
    background-image: url(../images/prev.svg);
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: 40% center;
}
.slick-next {
    right: -50px;
    background-image: url(../images/next.svg);
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: 50% center;
}


.video__wrapper {
    position: relative;
    width: 90%;
    display: inline-block;
    /*padding-bottom: 56.25%;*/
    /*border: 5px solid #fff;*/
    background-color: #000;
    /*margin-top: 45px;
    margin-bottom: 25px;*/
    margin-bottom: 10px;
}
.video__wrapper::before {
    content: "";
    padding-bottom: 56.25%;
    display: block;
}

.videos__cover {
    position: absolute;
    z-index: 110;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
}
.videos__play {
    content: '';
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    overflow: hidden;
    width: 100px;
    height: 100px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 1;
    -webkit-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
    -webkit-transition: opacity 1.2s ease;
    transition: opacity 1.2s ease;
}
.videos__play:after {
    content: '';
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    height: 0;
    width: 0;
    border-bottom: 25px solid transparent;
    border-left: 38px solid #fff;
    border-top: 25px solid transparent;
    -webkit-transform: translate3d(-40%,-50%,0);
    transform: translate3d(-40%,-50%,0);
}
.videos__player {
    /*display: none;*/
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
}


/*
.rouge {
    background-color: #c56e5f;
    background-image: url(../images/decor1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.rouge:before, .vert:before, .jaune:before, .rose:before, .blanc:before {
    content: '';
    background-image: url(../images/wave-rouge.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    top: -30px;
}
.jaune:before {
    background-image: url(../images/wave-jaune.png);
}
.vert:before {
    background-image: url(../images/wave-vert.png);

}
.rose:before {
    background-image: url(../images/wave-rose.png);
}
.blanc:before {
    background-image: url(../images/wave-blanc.png);
}

.jaune {
    background-color: #f0c079;
    background-image: url(../images/decor2.png);
    background-size: cover;        
}

.vert {
    background-color: #458d7d;
    background-image: url(../images/decor3.png);
    background-size: cover;        
}

.rose {
    background-color: #f8a17f;
}
.blanc {
    background-color: #fff;
}
*/

.container {
    position: relative;
    margin: auto;
    padding: 100px 0;
    z-index: 1;
    width: 80%;
    max-width: 1100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.text {
    margin: 10px 0;
}

.bio-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: center;
    align-items: flex-end;
    flex-direction: column;
}
.bio-photo {
    width: 35%;
    position: relative;
    z-index: 10;
}
.bio-photo img {
    border: 5px solid #fff;
    width: 100%;
    height: auto;
    display: block;
    transform: rotate(-1.5deg);
    box-shadow: 0 0 40px 0 rgb(0 0 0 / 40%);
}
.the-bio {
    position: relative;
    width: 65%;
    padding: 30px;
    /*height: 500px;*/
    overflow: hidden;
    background-color: #fff;
}
.the-bio .shadow {
    position: absolute;
    width: 100%;
    height: 120px;
    bottom: 0;
    left:0;
    z-index: 1;

    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.7) 45%, rgba(255,255,255,1) 100%);

}
.read-more {
    position: absolute;
    z-index: 2;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

p {
    text-align: justify;
    font-size: 1.7rem;
    line-height: 1.4;
    margin: 0 0 15px 0;
    color: #000;
}
@media screen and (min-width: 1600px) {
    p {
        font-size: 2.3rem;
        line-height: 1.4;
    }
    h2 {
        font-size: 3.2rem;
    }
    h3 {
        font-size: 2.8rem;
    }    
    .main-nav-item a, .menu-item a {
        font-size: 2.6rem !important;
    }    
}

.reveal-animate {
    opacity: 0;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.visible {

/*    -webkit-transition: -webkit-transform .5s cubic-bezier(.75,0,.25,1);
    transition: -webkit-transform .5s cubic-bezier(.75,0,.25,1);
    transition: transform .5s cubic-bezier(.75,0,.25,1);
    transition: transform .5s cubic-bezier(.75,0,.25,1),-webkit-transform .5s cubic-bezier(.75,0,.25,1);
    will-change: transform;    */ 
    
    /*animation-timing-function: cubic-bezier(.75,0,.25,1);
    -webkit-animation-timing-function: cubic-bezier(.75,0,.25,1);*/

    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;   

    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;      
}


.gs_reveal {
  opacity: 0;
  visibility: hidden;
  transition: transform 0s;
}

a.ticket-link {
    background-color: var(--color-bleu) !important;
}

@media screen and (max-width: 1025px) {

    .section__left {
        display: none;
    }
    .section__right {
        width: 100%;
    }
    .section__right__container {
        width: 80%;
    }

    .album-animation-wrapper {
        width: 80%;
        max-width: 1800px;
        height: auto;
    }

    .album-animation-left {
        width: 100%;
    }

    .album-animation-right {
        width: 100%;
    }

    .album-animation .cover-wrapper {
        max-width: 400px;
        margin-bottom: 30px;
        width: 70%;
    }

    .album-animation .banner-logo, .album-animation .album-title {
        width: 50%;
        margin-bottom: 20px;
    }    

    .slick-videos,
    .slick-album {
        width: 100%;
        display: block;
        margin: auto;
    }

    .slick-prev, .slick-next {
        width: 40px;
        height: 40px;
        bottom: auto;
        top: 33%;    
    }
    .slick-prev {
        left: -20px;
    }    
    .slick-next {
        right: -20px;
    }    

    .video-playlist__wrapper {
        width: 100%;
        max-width: 550px;
    }

    .video__wrapper {
        width: 100%;
    }

    section {
        /*min-height: 100vh;*/
        display: flex;
        align-content: center;
        align-items: center;        
    }
    section#concours {
        min-height: auto;
    }    

    .title-wrapper {
        margin-bottom: 50px;
    }    

    h3 {
        font-size: 1.3em;
        /*padding: 0 50px;*/
    }    

    .the-newsletter {
        text-align: center;
        min-height: 100% !important;
        padding-bottom: 50px !important;
    }

    .line {
        width: 60%;
        opacity: 1;
    }   

    .slick-musique {
        width: 80%;
        max-width: 500px;
    }

    .bio-wrapper {
        display: block;
    }

    .bio-photo {
        width: 100%;
        margin-bottom: 30px;
    }

    .bio-photo img {
        border: 5px solid #fff;
        width: 60%;
        display: inline-block;
    }    

    #biographie .title-wrapper {
        width: 100%;
    }

    .the-bio {
        width: 100%;
        padding: 20px;
        /*height: 350px;*/
    }


}



/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/

header {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 3vw;
    z-index: 500;
    background-color: #171729;
    text-align: center;
    backface-visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#left-nav {
    position: relative;
    width: 180px;
    z-index: 10;
}

header .brand {
    display: block;
    width: 100%;
    height: 100%;
}
header .brand img {
    max-width: 100%;
    height: auto;
    display: block;
}


#main-nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    /*height: 100px;*/
    position: relative;
}

.main-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

ul.main-nav-list li {
    margin: 0 20px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}
.main-nav-item a, .menu-item a {
    display: inline-block;
    position: relative;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    text-transform: uppercase;
    color: #a4a8ad;
    background: #46484d;
    background: linear-gradient(to top, #46484d 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    padding: 0;
    z-index: 10;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}
.main-nav-item a strong {
    font-weight: 600;
}

.main-nav-item a:hover, .menu-item a:hover {
    /*opacity: .75;*/
    color: #fff;
    background: linear-gradient(to top, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    
}

ul.main-nav-list li.right-nav-item {
    position: absolute;
    margin: 0 8px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

li.right-nav-item a.lang-nav-show {
    /*background-color: rgba(255,255,255,.05);*/
    font-size: 1.5rem;
}


.lang-nav-show:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 4px;
    background-image: url(../images/dropdown-white.svg);
    background-repeat: no-repeat;
    left: 50%;
    bottom: -5px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.lang-nav-show:hover + ul.lang-nav, ul.lang-nav:hover {
    visibility: visible;
    /*background-color: rgba(255,255,255,.5);*/
    /*color: #ed1c24;*/
    opacity: 1;  

    /*-webkit-animation: fadeIn 250ms ease-out both;
    animation: fadeIn 250ms ease-out both;*/
}

ul.lang-nav {
    visibility: hidden;
    /* background-color: #FFFFFF; */
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    /* min-width: 100%; */
    margin: 0;
    padding: 0;
    text-align: left;
    list-style: none;
    transition: all .25s ease-out;
    opacity: 0;
}


li.right-nav-item a {
    display: inline-block;
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 10px;
    z-index: 10;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

ul.lang-nav li {
    position: relative;
    margin: 0;
    display: block;
}
ul.lang-nav li.current-lang {
    display: none;
}
ul.lang-nav li a {
    /*background-color: rgba(255,255,255,.05);*/
    color: #fff;
    width: 100%;
    text-align: left;
    font-size: 1.5rem;
    padding: 10px;
    position: relative;
    display: block;
}

#right-nav {
    position: relative;
}


#social-nav {
    display: flex;
    align-items: center;
    align-content: center;
}

.social-nav-item {
    position: relative;
    display: inline-block;
    margin: 0 8px;
    vertical-align: middle;
}

.social-nav-item:last-child {
    margin-right: 0 !important;
}

.social-nav-item a {
    position: relative;
    color: #fff;
    font-weight: 600;
    /*width: 28px;
    height: 28px;*/
    background-color: transparent;
    display: flex;
    border-radius: none;
    justify-content: center;
    align-items: center;
}


a.audio {

    background-color: var(--color-bleu);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
  animation: pulse1 2s ease-out;
  animation-iteration-count: 10;
  -webkit-animation: pulse1 2s ease-out;
  -webkit-animation-iteration-count: 10;    
}

@-webkit-keyframes pulse1 {
  0%{-webkit-transform:scale(1,1)}
  25%{-webkit-transform:scale(1.1,1.1)}
  50%{-webkit-transform:scale(1,1)}
}
@keyframes pulse1 {
  0%{transform:scale(1,1)}
  25%{transform:scale(1.1,1.1)}
  50%{transform:scale(1,1)}
}

.animated-circle {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0px;
    left: 0px;
    border-radius: 100%;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
    border: 2px solid #fff;
    animation: pulse 2s ease-out;
    animation-iteration-count: 10;
    -webkit-animation: pulse 2s ease-out;
    -webkit-animation-iteration-count: 10;
    opacity: 0;
}

@-webkit-keyframes pulse {
  0% {-webkit-transform:scale(.8,.8);opacity:0}
  25%{opacity:.4}
  50%{-webkit-transform:scale(1.3,1.3);opacity:0}
  100%{-webkit-transform:scale(.8,.8);opacity:0}
}

@keyframes pulse { 
  0%{-webkit-transform:scale(.8,.8);opacity:0}
  25%{opacity:.4}
  50%{-webkit-transform:scale(1.3,1.3);opacity:0}
  100%{-webkit-transform:scale(.8,.8);opacity:0}
}

a.audio {
    position: absolute;
    z-index: 200;
    top:10px;
    left: 10px;
}
a.audio .muted {
    display: none !important;
}
a.audio.active .unmuted {
    display: none !important;
}
a.audio.active .muted {
    display: block !important;
}

a.audio svg {
    fill: #fff !important;
    stroke: #fff !important;
}

.social-nav-item a img {
    width: 22px;
    height: auto;
    display: block;
}

.social-nav-item a svg {
    width: auto;
    height: 16px;
    display: block;
    fill: #a4a8ad;
    -webkit-transition: all .25s ease-out;
       -moz-transition: all .25s ease-out;
        -ms-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;    
}

.social-nav-item a:hover svg {
    fill: #fff;
    /*opacity: .7;*/
}

.menu-button {
    border: none;
    background: transparent;
    cursor: pointer;
    display: none;
    /*-webkit-transition: -webkit-transform cubic-bezier(.7,0,.3,1) .3s;
    transition: -webkit-transform cubic-bezier(.7,0,.3,1) .3s;
    transition: transform cubic-bezier(.7,0,.3,1) .3s;
    transition: transform cubic-bezier(.7,0,.3,1) .3s,-webkit-transform cubic-bezier(.7,0,.3,1) .3s;*/
    position: relative;
    z-index: 100;
}

.menu-button .line {
    width: 28px;
    height: 2px;
    background: #a4a8ad;
    display: block;

    -webkit-transition: -webkit-transform .5s cubic-bezier(.75,0,.25,1);
    transition: -webkit-transform .5s cubic-bezier(.75,0,.25,1);
    transition: transform .5s cubic-bezier(.75,0,.25,1);
    transition: transform .5s cubic-bezier(.75,0,.25,1),-webkit-transform .5s cubic-bezier(.75,0,.25,1);
    will-change: transform;     
}

.menu-button .line:nth-child(2) {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.menu-button .line {
    margin-top: 5px;
}
.menu-button .line:first-child {
    margin-top: 0px;
}
.menu-open .menu-button .line:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-3px,5px);
    transform: rotate(-45deg) translate(-3px,5px);
}

.menu-open .menu-button .line:nth-child(2) {
    -webkit-transform: scale(1) rotate(45deg) translate(0px,-3px);
    transform: scale(1) rotate(45deg) translate(0px,-3px);
}

.menu-open .menu-button .line:nth-child(3) {
    -webkit-transform: scale(0);
    transform: scale(0);
}

/*
.burger-wrapper {
    display: inline-block;
    position: absolute;
    width: 70px;
    height: 70px;
    background-image: url(../images/burger-bg.png);
    background-size: cover;
    top: 20px;
    right: 20px;
}
.menu-button {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);    
}
*/

#main-nav-container {
    /*padding: 50px 0;*/
    /*background-color: rgba(113,81,34,.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);

    -webkit-transition: visibility 0s 1s,-webkit-transform 1s cubic-bezier(.75,0,.25,1);
    transition: visibility 0s 1s,-webkit-transform 1s cubic-bezier(.75,0,.25,1);
    transition: transform 1s cubic-bezier(.75,0,.25,1),visibility 0s 1s;
    transition: transform 1s cubic-bezier(.75,0,.25,1),visibility 0s 1s,-webkit-transform 1s cubic-bezier(.75,0,.25,1);
    will-change: transform;   */  
}

.menu-open #main-nav-container {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition-delay: 0s,0s;
    transition-delay: 0s,0s;    
}
#social-nav {
/*    position: absolute;
    bottom: 40px;
    right: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    left: 0;
    text-align: center;
    top: auto;*/
}

.newsletter {
    position: fixed;
    z-index: 100;
    max-width: 400px;
    padding: 20px;
    bottom: 20px;
    left: 20px;
    background-color: var(--color-bleu);
    text-align: center;
    border-radius: 10px;
}
/*
.newsletter:before {
    content: "";
    width: 80px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}*/

.newsletter h1,
.preco h1 { 
    /*text-transform: none;*/
    font-size: 1.7rem;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 10px;
}

.preco {
    position: fixed;
    z-index: 500;
    /* max-width: 400px; */
    padding: 0px;
    top: 30px;
    left: 50%;
    /* background-color: #fff; */
    text-align: center;
    border-radius: 10px;
    transform: translateX(-50%);
    display: flex;
    align-content: center;
    align-items: center;
    
}
.preco h1 { 
    /*color: var(--color-bleu);*/
    color: #fff;
    display: inline-block;
    font-size: 1.2rem;
    margin: 0 10px 0 0;
}
.preco a { 
    display: inline-block;
    flex: 1;
    font-size: 1.0rem;
    background-color: var(--color-bleu);
    color: #fff;
    padding: 10px;
}


@media screen and (max-width: 960px) {

    .newsletter {
        position: relative;
        z-index: 1;
        max-width: 100%;
        padding: 30px;
        bottom: auto;
        left: auto;
        border-radius: 0;
        background-color: var(--color-bleu);
    }

    .newsletter h1 { 
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .preco {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 40px 10px;
        bottom: auto;
        left: auto;
        top: auto;
        transform: none;
        border-radius: 0;
        background-color: #000;
        display: block;
    }

    .preco h1 { 
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 10px;
        /*color: var(--color-bleu);*/
    }    

    section#home {
        min-height: auto;
    }
}

/*--------------------------------------------------------------
VIDEO
--------------------------------------------------------------*/

.video__background {
    /*position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;*/
}

video {
    width: 100%;
    height: 100%;
}

/*--------------------------------------------------------------
TIMER
--------------------------------------------------------------*/

#timer {
    color: #fff;
    z-index: 1;
    display: flex;
}

#timer div {
  display: inline-block;
  line-height: 1;
  padding: 15px;
  font-size: 8rem;
  font-weight: 800;
}

#timer span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 5px;
  /*opacity: .6;*/
  color: #fff;
  background: #2100f0;
  padding: 5px;
  text-transform: uppercase;
}

@media screen and (max-width: 960px) {

    #timer div {
      padding: 5px;
      font-size: 3.0rem;
    }

}

    
@media screen and (max-width: 960px) {

    #left-nav {
        width: 90px;
    }

    header {
        text-align: right !important;
        padding: 15px 10px;
    }

    .header-left {
        display: none;
    }

    header a.brand {
        max-width: 85px;
    }   
    header a.brand img {
        width: 100%;
    }       

    #social-nav {
        /*margin-right: 10px;*/
    }

    .burger-wrapper {
        top: 25px;
        right: -8px;
        width: 60px;
        height: 60px;        
    }


    .social-nav-item {
        margin: 0 5px;
    }

    /*header:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
        top: 0;
        left: 0;
    }  */

    
    .menu-button {
        display: inline-block;
        margin-left: 15px;
    }
    #main-nav-container {
        background-color: #171729;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;

        visibility: hidden;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);

        -webkit-transition: visibility 0s 1s,-webkit-transform 1s cubic-bezier(.75,0,.25,1);
        transition: visibility 0s 1s,-webkit-transform 1s cubic-bezier(.75,0,.25,1);
        transition: transform 1s cubic-bezier(.75,0,.25,1),visibility 0s 1s;
        transition: transform 1s cubic-bezier(.75,0,.25,1),visibility 0s 1s,-webkit-transform 1s cubic-bezier(.75,0,.25,1);
        will-change: transform;     
    }
    .menu-open #main-nav-container {
        visibility: visible;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        -webkit-transition-delay: 0s,0s;
        transition-delay: 0s,0s;    
    }
    /*#social-nav {
        position: absolute;
        bottom: 40px;
        right: 0;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        left: 0;
        text-align: center;
        top: auto;
    }  */
        
}

/*--------------------------------------------------------------
Main Nav
--------------------------------------------------------------*/
/*
#main-nav {
    display: flex;
    justify-content: space-between;
}
#main-nav-container {
}

ul#main-nav-list {
    text-align: left;
    padding-left: 180px;
}
ul#right-nav {
    padding-right: 130px;
}
ul#right-nav li {
    position: relative;
    margin: 0 12px;
    display: inline-block;
}

ul#main-nav-list li {
    position: relative;
    margin: 0 12px;
    display: inline-block;
}

ul#main-nav-list li:first-child {
    margin-left: 0;
}

ul#main-nav-list li:last-child {
    margin-right: 0;
}

.main-nav-item a {
    display: block;
    position: relative;    
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all .25s ease-out;
       -moz-transition: all .25s ease-out;
        -ms-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
}

.main-nav-item a:hover, .main-nav-item.active a { 
    color: rgba(255,255,255,.5);
}


ul.main-nav-list li.right-nav-item {
    position: absolute;
    margin: 0 8px;
    right: 0;
}
li.right-nav-item a, .lang__wrapper a {
    display: inline-block;
    position: relative;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    text-transform: none;
    color: #fff;
    padding: 5px;
    z-index: 10;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}
.lang__wrapper a.lang-nav-show {
    margin-right: 18px;
    padding: 10px 5px;
}
.lang-nav-show:before {
    content: "";
    position: absolute;
    width: calc(100% + 5px);
    height: 1px;
    background-color: #fff;
    left: 5px;
    bottom: 2px;
    display: inline-block;
    vertical-align: middle;
}
.lang-nav-show:after {
    content: "";
    position: relative;
    width: 8px;
    height: 4px;
    background-image: url(../images/dropdown-white.svg);
    background-repeat: no-repeat;
    right: -15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    vertical-align: middle;
}
ul.lang-nav {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background: rgba(255,255,255,.2);
    top: 0;
    left: 0;
    margin: 0;
    padding: 45px 0 0 0;
    text-align: left;
    list-style: none;
    transition: all .25s ease-out;
    width: 100%;
}

.lang-nav-show:hover + ul.lang-nav, ul.lang-nav:hover {
    visibility: visible;

    opacity: 1;  


}
ul.lang-nav li a:hover {
    color: #fff;
}

ul.lang-nav li.current-lang {
    display:  none;
}

ul.lang-nav li {
    position: relative;
    margin: 0 !important;
    display: block !important;
}
ul.lang-nav li a {
    
    color: #fff;
    width: 100%;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 300;
    padding: 5px;
    position: relative;
    display: block;
}
*/

@media screen and (max-width: 960px) {
    #main-nav {
        width: 80%;
        max-width: 350px;
        padding: 70px 0px 20px 0px;
        margin: auto;
    } 
    .main-nav-list {
        display: block;
    }    
    ul#main-nav-list {
        text-align: center;
        padding-left: 0;
    }    
    ul.main-nav-list li {
        margin: 10px 0;
        display: block;
        position: relative;
        vertical-align: middle;
        text-align: center;
    }   

    ul.lang-nav {
        background: transparent;
    }
    ul.lang-nav li a {
        text-align: center;
    }

    ul.main-nav-list li.right-nav-item {
        position: relative;
        top: auto;
        right: auto;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }    

    #right-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }    

}


.the-bio {
    position: relative;
    width: 100%;
    padding: 0 8vw;
    height: 700px; 
    overflow: hidden;
    background-color: #fff;
}

.the-newsletter {
    position: relative;
    width: 100%;
    padding: 0 8vw;
    min-height: 400px; 
    overflow: hidden;
    background-color: #fff;    
}


.button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border: none;
    padding: 12px 40px;
    color: #fff;
    background-color: #171729;
    font-size: 1.4rem;
    text-transform: uppercase;
    border-radius: 0;
    border: 0;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    font-style: italic;
    -webkit-transition: all .25s ease-out;
       -moz-transition: all .25s ease-out;
        -ms-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;     
}

.button:hover {
    opacity: .8;
}

.read-more {
    position: absolute;
    z-index: 2;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}
.the-bio .shadow {
    position: absolute;
    width: 100%;
    height: 120px;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.7) 45%, rgba(255,255,255,1) 100%);
}



/********************************************************************************************************************/
/******** Owl Carousel **********************************************************************************************/
/********************************************************************************************************************/


/* 
 *  Core Owl Carousel CSS File
 *  v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* display none until init */
.owl-carousel{
  display: inline-block;
  position: relative;
  width: 100%;
  height: auto;
  -ms-touch-action: pan-y;
  margin: auto;
}
.owl-carousel .owl-wrapper{
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
  
.owl-carousel .owl-item{
  float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
  cursor: pointer;
}
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(../images/grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility:    hidden;
  -ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 15px;
  height: 15px;
  margin: 0px 4px;
  filter: Alpha(Opacity=10);
  opacity: 1;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  border: 1px solid #fff;
  background-color: transparent;
}

.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  
  border: 1px solid #fff;
  background: #fff;
}

.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-controls {
  margin-top: 0;
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 50px;
}

.item {
  width: 100%;
  /*background-color: #000;*/
}

.item0 {
/*  background: #000 url(../images/slide1.jpg) top center no-repeat;
  background-size: cover;*/
}

.item img  {

}

.item1 {
 /* background: #000 url(../images/slide2.jpg) top center no-repeat;
  background-size: cover;*/
}

.item2 {
 /* background: #000 url(../images/slide3.jpg) top center no-repeat;
  background-size: cover;*/
}

.item:before {
/*  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;*/
}

.slideContent {
    position: relative;
    outline: 0;
    /*height: 100vh;*/
/*  display: none;
  vertical-align: middle;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  cursor: default;
  padding: 3em 0;
  max-width: 80%;
  position: relative;
  z-index: 400;
*/
}

.slideContent img {
  display: inline-block !important;
  width: 100%;
    margin: 0px 0 25px;
        border: 5px solid #fff;
}

.slideContent p {
    font-size: 1.30em;
    line-height: 1.25em;
    font-weight: 400;
  
}

.slideContent p a {
    color: #efc01c;
    text-decoration: underline;
    font-weight: 400;
}

.slideContent p a:hover {
    color: #efc01c;
}



#owlVideos {
    width: 700px;
    /*background: rgba(0,0,0,.2);*/
}

#owlVideos .owl-controls, #owlMusique .owl-controls {
    margin-top: 0;
    text-align: center;
    position: relative;
    width: 100%;
    margin: 10px 0;
    bottom: 0;
}


#owlMusique {
    width: 80%;
    max-width: 400px;
    /*background: rgba(0,0,0,.2);*/
}

/*a.btn {
    border-radius: 10px;
    background: #000;
    color: #fff;
    font-size: 2rem;
    display: inline-block;
    margin: 0 0 10px 0;
    padding: 10px 30px;
}
a.btn:hover {
    background: #333;
}*/

@media screen and (max-width: 960px) {
   
    #owlVideos {
        width: 100%;
    }
    #owlVideos iframe, #owlVideos object, #owlVideos embed {
        width: 100% !important;
        height: auto;
    }
}


/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/

footer {
    padding: 30px 20px 30px 0;
    position: relative;
    color: #fff;
    text-align: center;
    background-color: #171729;
    width: 100%;
}

footer ul {
    display: inline-block;
}
footer ul li {
    display: inline-block;
    margin: 0 5px;
}

footer a {
    color: #fff;
    display: inline-block;
    position: relative;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
    margin: 0;
    opacity: 1;
    -webkit-transition: all .25s ease-out;
       -moz-transition: all .25s ease-out;
        -ms-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;    
}
footer a:hover {
    opacity: .75;
}
#social-nav-footer {
    margin-bottom: 20px;
}

#social-nav-footer a svg {
    fill:#fff;
    height: 22px;
    width: auto !important;
}

@media screen and (max-width: 960px) {

    footer ul li {
        margin: 5px;
    }

}

/*--------------------------------------------------------------
Loading
--------------------------------------------------------------*/

body.loading {
    height: 100%;
    overflow: hidden;
}

#loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000;
}

/*--------------------------------------------------------------
General Media Queries
--------------------------------------------------------------*/


@media screen and (max-width: 960px) {
    h1 {

    }
    h2 {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 50px;
        width: 100%;
        text-align: center;
    }    
    .main-nav-item a {
        /*font-size: 2.1rem;*/
    }
    footer .main-nav-item a {
        font-size: 1.2rem;
    }  
}

@media screen and (max-width: 960px) {
   
    section {
        /*padding: 100px 0;*/
    }

    section#videos .container {
        /*width: 65%;*/
    }


}

