@import url('https://fonts.googleapis.com/css2?family=Jost&family=Poppins:wght@700&display=swap');


::selection {
    background: #ff5c1a; /* WebKit/Blink Browsers */
    color:#fff;
}
::-moz-selection {
    background: #ff5c1a; /* WebKit/Blink Browsers */
    color:#fff;
}


* {
	margin:0;
	padding:0;
}

body{
    background-color:#000;
    color:#fff;
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: 'Jost', sans-serif;
}

/*
svg{
    fill:white;
}
*/

#shop{
    position: absolute;
    z-index: 80;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    top: 30px;
    right: 0;
    padding: 10px 20px;
    border: 1px dashed rgba(255,255,255,0.5);
    border-right: 0;
    background-color: rgba(0,0,0,0.1);
    text-align: center;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
}
#shop:hover{
    border: 1px dashed rgba(255,255,255,1);
    background-color: rgba(255,255,255,1);
    color: black;
}
.videoWrapper {
    position: relative;
    top:0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
  
.videoWrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 250vh;
    height: 200vh;
    z-index: 1;
  }
  
#overlay{
    position: absolute;
    top:0;
    width:100%;
    height:100%;
    z-index:2;
}
#show-video{
    display: none;
}
#videoMobile{
    display: none;
}

#newsletter{
    background-image:url(../img/nl.svg);
}

#facebook{
    background-image:url(../img/fa.svg);
}
#spotify{
    background-image:url(../img/sp.svg);
}
#deezer{
    background-image:url(../img/de.svg);
}
#apple{
    background-image:url(../img/am.svg);
}
#songkick{
    background-image:url(../img/sk.svg);
}
#twitter{
    background-image:url(../img/tw.svg);
}
#instagram{
    background-image:url(../img/in.svg);
}
#youtube{
    background-image:url(../img/yo.svg);
}

#logo{
    position: absolute;
    z-index: 50;
    top: 25px;
    width:125px;
    height:50px;
    left: 50%;
    transform: translate(-50%);
    background-size: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-image:url(../img/logo.svg);
}



#content{
    position: absolute;
    z-index: 52;
    color: white;
    text-align: left;
    bottom: 20px;
    left: 25px;
}
#content h2{
    font-family: 'Poppins', sans-serif;    
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1em;
    font-size: 24px;
}
.button{
    transition: 0.3s;
    display: none;
    border: 1px dashed #ccc;
    border-radius: 30px;
    padding: 15px 25px;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.button:hover{
    transition: 0.1s;
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
}

.playing{
    display: inline-block;
    height: 30px;
    font-size:10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 26px;
}
.red{
    display: inline-block;
    line-height: 36px;
    color:red;
    font-size: 72px;
    vertical-align: top;
}


#subscribe{
    transition: 0.2s;
    position: absolute;
    z-index: 52;
    right: 20px;
    bottom: 15px;
    text-align: center;
    width: 305px;
    display: inline-block;
    border: 1px dashed rgba(255,255,255,0.5);
    margin-bottom: 8px;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}
#subscribe input, #subscribe button{
    height: 30px;
    background: transparent;
    border: none;
}
::placeholder{
    color: rgba(255,255,255,0.6);
}
#subscribe input{
    transition: 0.2s;
    color: white;
    padding-left: 10px;
    font-family: 'Jost', sans-serif;
    width: calc(100% - 135px);
}
#subscribe button{
    transition: 0.2s;
    border-radius: 3px;
    width: 120px;
    color: white;
    font-size: 10px;
    height: 32px;
    font-family: 'Poppins', sans-serif;    
}
#subscribe:hover{
    transition: 0.1s;
    background-color: rgba(0,0,0,0.5);
    border: 1px dashed rgba(255,255,255,0);
}

#subscribe:hover button{
    transition: 0.1;
    background-color: white;
    color: black;
}
#newsletter{

}

#controls{
    display: inline-block;
    width: calc(50% - 10px);
    min-width: 270px;
    margin-top: 15px;
    text-align: left;
}

#previous{
    background-image: url(../img/previous.svg);
}
#next{
    background-image: url(../img/next.svg);
}


#sound{
    background-image: url(../img/mute.svg);
}

input[type = "checkbox"] {
    display: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

input[type = "checkbox"]:checked ~ #sound {
    background-image: url(../img/unmute.svg);
}


#social{
    position: absolute;
    z-index: 52;
    right: 20px;
    bottom: 60px;
    height: 40px;
}

    .icon:hover{
        background-color: rgba(0,0,0,0.5);
    }
.icon{
    cursor:pointer;
    transition:0.2s;
    border-radius: 3px;
    width:40px;
    height:35px;
    transition:0.2s;
    display:inline-block;
    text-decoration:none;
    background-position:center center;
    background-size: 32px;
    background-repeat:no-repeat;
    display: inline-block;
}
#social .icon{
    opacity: 0.5;
}
    #social:hover .icon{
            opacity: 1;
}

a{
    text-decoration:none;
}

.lien{
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.2em;
}


#footer{
    position: absolute;
    z-index: 60;
    top: 100%;
    width: 100%;
    padding: 50px 0;
    background-color: #151515;
    -webkit-box-shadow: inset 0px 10px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: inset 0px 10px 10px 0px rgba(0,0,0,0.5);
    box-shadow: inset 0px 10px 10px 0px rgba(0,0,0,0.5);
}

#mentionsLegales{
    text-align: center;
    opacity: 0.2;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
#mentionsLegales h1{
    text-align: center;
    width: 425px;
    margin: 0 auto;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
#logoFooter{
        height:125px;
        opacity: 0.2;
        margin: 25px auto 0 auto;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        background-image:url(../img/logo.svg);
    }
    #socialFooter{
        margin: 10px auto;
        text-align: center;
    }
    #socialFooter a{
        transition:0.5s;
        border-radius: 3px;
        width:40px;
        height:35px;
        transition:0.2s;
        display:inline-block;
        text-decoration:none;
        opacity: 0.2;
    }

    #socialFooter a:hover{
        opacity: 1;
    }



/*   ANIMATION   */

.apparitionLogo{
  -webkit-animation: APPARITIONLOGO 1.3s ease-in-out; /* Safari 4+ */
  -moz-animation:    APPARITIONLOGO 1.3s ease-in-out; /* Fx 5+ */
  -o-animation:      APPARITIONLOGO 1.3s ease-in-out; /* Opera 12+ */
  animation:         APPARITIONLOGO 1.3s ease-in-out; /* IE 10+, Fx 29+ */
}

@-webkit-keyframes APPARITIONLOGO {
  0%   { top: 35vh; height:140px; }
  70%   { top: 35vh; height:140px; opacity: 1; }
  80%   { top: 30vh; height:140px; opacity: 0; }
  90%   { top: 15px; height:50px; opacity: 0; }
  100% { top: 25px; height:50px; opacity: 1; }
}
@-moz-keyframes APPARITIONLOGO {
  0%   { top: 35vh; height:140px; }
  75%   { top: 35vh; height:140px; opacity: 1; }
  85%   { top: 30vh; height:140px; opacity: 0; }
  86%   { top: 15px; height:50px; opacity: 0; }
  100% { top: 25px; height:50px; opacity: 1; }
}
@-o-keyframes APPARITIONLOGO {
  0%   { top: 35vh; height:140px; }
  75%   { top: 35vh; height:140px; opacity: 1; }
  85%   { top: 30vh; height:140px; opacity: 0; }
  86%   { top: 15px; height:50px; opacity: 0; }
  100% { top: 25px; height:50px; opacity: 1; }
}
@keyframes APPARITIONLOGO {
  0%   { top: 35vh; height:140px; }
  75%   { top: 35vh; height:140px; opacity: 1; }
  85%   { top: 32vh; height:140px; opacity: 0; }
  86%   { top: 15px; height:50px; opacity: 0; }
  100% { top: 25px; height:50px; opacity: 1; }
}

.apparitionVideo{
  -webkit-animation: APPARITION 2s ease-in-out; /* Safari 4+ */
  -moz-animation:    APPARITION 2s ease-in-out; /* Fx 5+ */
  -o-animation:      APPARITION 2s ease-in-out; /* Opera 12+ */
  animation:         APPARITION 2s ease-in-out; /* IE 10+, Fx 29+ */
}
.apparitionControls{
  -webkit-animation: APPARITION 2s ease-in-out; /* Safari 4+ */
  -moz-animation:    APPARITION 2s ease-in-out; /* Fx 5+ */
  -o-animation:      APPARITION 2s ease-in-out; /* Opera 12+ */
  animation:         APPARITION 2s ease-in-out; /* IE 10+, Fx 29+ */
}
.apparitionSocials{
  -webkit-animation: APPARITION 3s ease-in-out; /* Safari 4+ */
  -moz-animation:    APPARITION 3s ease-in-out; /* Fx 5+ */
  -o-animation:      APPARITION 3s ease-in-out; /* Opera 12+ */
  animation:         APPARITION 3s ease-in-out; /* IE 10+, Fx 29+ */
}

@-webkit-keyframes APPARITION {
  0%   { opacity: 0; }
  50%   { opacity: 0; }
  100%   { opacity: 1; }
}
@-moz-keyframes APPARITION {
  0%   { opacity: 0; }
  50%   { opacity: 0; }
  100%   { opacity: 1; }
}
@-o-keyframes APPARITION {
  0%   { opacity: 0; }
  50%   { opacity: 0; }
  100%   { opacity: 1; }
}
@keyframes APPARITION {
  0%   { opacity: 0; }
  50%   { opacity: 0; }
  100%   { opacity: 1; }
}

/*   MOBILE   */

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2) {
    #mute-video{
        display: none;
    }
    #content{
        top: 52vh;
        transform: translateY(-50%);
        left: 0;
        width: 100%;
        text-align: center;
    }
    #controls{
        display: none;
    }
    #social{
        height: min-content;
        width: 100%;
        text-align: center;
        right: 0;
        bottom: 12vh;
    }
    #subscribe{
        left: 0;
        margin: 0 auto;
        width: 88vw;
        bottom: 5vh;
        border-radius: 2vw;
    }
    #content h2{
        font-size: 10vw;
    }
      
    .playing {
        height: 4vh;
        font-size: 1.5em;
    }
    #subscribe,.button{
        border-width: 2px;
      }
    .button{
        border-radius: 10vw;
        padding: 3vw 6vw;
        margin-top: 2vh;
        color: #fff;
        font-size: 2em;
        display: inline-block;
        background-color: rgba(0,0,0,0.1);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
    }
    #social a, #socialFooter a{
        width: 10vw;
        height: 10vw;
        margin: 0;
        background-size: contain;
    }
    #subscribe input, #subscribe button{
        height: 6vh;
        font-size: 14px;
    }
    #subscribe button{
        font-size: 2em;
        width: 36vw;
        border-radius: 10px;
    }
    #subscribe input{
        padding-left: 3vw;
        font-size: 2em;
        width: calc(100% - 40vw);
    }
      
      #footer{
        padding: 5vh 0 8vh 0;
      }
      
    #logo, #logoFooter{
        background-image: url(../img/logo.svg);
        height: 26vh;
        width: 35vw;
    }
      
    #mentionsLegales{
        font-size: 1.5em;
    }

    #shop{
        font-size: 30px;
        padding: 25px 25px 25px 50px;
        border: 2px dashed white;
        border-right: 0;
    }
      
    .videoWrapper{
        opacity: 0.6;
    }
      

    @-webkit-keyframes APPARITIONLOGO {
      0%   { top: 32vh; height:26vh; }
      75%   { top: 32vh; height:26vh; opacity: 1; }
      85%   { top: 30vh; height:26vh; opacity: 0; }
      86%   { top: 15px; height:22vh; opacity: 0; }
      100% { top: 25px; height:26vh; opacity: 1; }
    }
    @-moz-keyframes APPARITIONLOGO {
      0%   { top: 35vh; height:26vh; }
      75%   { top: 35vh; height:26vh; opacity: 1; }
      85%   { top: 30vh; height:26vh; opacity: 0; }
      86%   { top: 15px; height:22vh; opacity: 0; }
      100% { top: 25px; height:26vh; opacity: 1; }
    }
    @-o-keyframes APPARITIONLOGO {
      0%   { top: 35vh; height:26vh; }
      75%   { top: 35vh; height:26vh; opacity: 1; }
      85%   { top: 30vh; height:26vh; opacity: 0; }
      86%   { top: 15px; height:22vh; opacity: 0; }
      100% { top: 25px; height:26vh; opacity: 1; }
    }
    @keyframes APPARITIONLOGO {
      0%   { top: 25vh; height:26vh; }
      50%   { top: 25vh; height:26vh; opacity: 1; }
      60%   { top: 22vh; height:26vh; opacity: 0; }
      70%   { top: 20px; height:22vh; opacity: 0; }
      100% { top: 25px; height:26vh; opacity: 1; }
    }

  .apparitionVideo{
      -webkit-animation: APPARITIONVIDEO 2s ease-in-out; /* Safari 4+ */
      -moz-animation:    APPARITIONVIDEO 2s ease-in-out; /* Fx 5+ */
      -o-animation:      APPARITIONVIDEO 2s ease-in-out; /* Opera 12+ */
      animation:         APPARITIONVIDEO 2s ease-in-out; /* IE 10+, Fx 29+ */
    }

    @-webkit-keyframes APPARITIONVIDEO {
      0%   { opacity: 0; }
      50%   { opacity: 0; }
      100%   { opacity: 0.6; }
    }
    @-moz-keyframes APPARITIONVIDEO {
      0%   { opacity: 0; }
      50%   { opacity: 0; }
      100%   { opacity: 0.6; }
    }
    @-o-keyframes APPARITIONVIDEO {
      0%   { opacity: 0; }
      50%   { opacity: 0; }
      100%   { opacity: 0.6; }
    }
    @keyframes APPARITIONVIDEO {
      0%   { opacity: 0; }
      50%   { opacity: 0; }
      100%   { opacity: 0.6; }
    }

}


/*** IPAD ***/
@media only screen 
  and (min-device-width: 834px) 
  and (max-device-width: 1112px)
  and (-webkit-min-device-pixel-ratio: 2) {
      body{
          zoom: 1.3;
      }
}