body {
    background-color:#020202;
    margin:0;
}

body,td,th {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 15px;
    color: #fff;
}

ul, li {
    margin:0;
    padding:0;
    list-style: none;
}

.logo-wrapper {
    width: 125px;
    height: 88px;
    margin: 75px 0 0 75px;
    position: relative;
    z-index: 10;
}

#logo { 
    width: 125px; /* taille d'une frames */
    height: 88px;
    background-image:url('./img/logo_sprite.png'); 
    animation: play steps(61) 4s 0s forwards; /* nom de l'animation css / nb Frames / temps de l'anim / delai de en seconde / nb de fois que l'animation est jouée ou infinite si pas de fin */
}

canvas {
 position: absolute;
 top : 0;
 left : 0;
 width: 100%;
 height : 100%;
 z-index : 0;
}

video{
   position: absolute;
   top: 50%;
   left: 50%;  
   z-index: -100;
   -ms-transform: translateX(-50%) translateY(-50%);
   -moz-transform: translateX(-50%) translateY(-50%);
   -webkit-transform: translateX(-50%) translateY(-50%);
   transform: translateX(-50%) translateY(-50%);   
}

.video_mobile_player {
 background: #000;
}

.play_btn {
    display: block;  
    width: 71px;
    height: 71px;
    background-image:url('./img/control_FS.png');
    background-size: 143px 143px;
    background-position: -71px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);    
    transition: all 1s linear;
    visibility: visible;
    opacity: 1;      
    z-index: 1000;
}

.hide {
  visibility: hidden !important;
  opacity: 0 !important;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
    transition: all 1s linear;
    visibility: visible;
    opacity: 1;       
    z-index: 6;
}

.sound-control {
    position: absolute;
    bottom: 0;
    left: 0;    
    z-index: 1000;
}

.sound-control .sound_btn {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 0 35px 75px;
    background-image:url('./img/control_FS.png');
    background-size: 80px 80px;
    background-position: 0 -40px;    
}

.sound-control .sound_btn.inactive {
    background-position: -39px -40px;
}

footer{
    position:fixed;
    bottom:0px;
    width:100%;
    height: 75px;
    text-align:center; 
    z-index: 10;   
}

footer .socials-wrapper {
    margin-right: 75px;
}

footer ul {
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

footer ul li {
    display: inline-block;   
}

footer ul li:not(:last-child) {
    margin-right:20px;
}

footer ul li a {
    display: block;
    transition: all 0.2s ease;
}

footer ul li.social-item-behance {    
    font-size: 18px;    
    line-height: 25px;
}

footer ul li a.behance {    
    text-decoration: none;    
    display: inline-flex;
}

footer ul li a.behance .behance-text, footer ul li a.behance:visited .behance-text {
 color: #fff;
 margin-right: 14px;
}

footer ul li a.behance:hover .behance-text {
 opacity: 0;
 transition: all 0.2s ease;
}

footer ul li a.behance .behance-logo {
    background: url(./img/behance.png) center no-repeat;
    background-size: 105px 25px;
    background-position: 73px 0;
    width: 105px;
    margin-left: -73px;
    height: 25px;
    display: inline-block;
    transition: all 0.2s ease;
}


footer ul li a.behance:hover .behance-logo {
    background-position: 0 0;
}

footer ul li.social-item.contact {    
    font-size: 18px;
}


footer ul li.social-item-contact:before, 
footer ul li.social-item-contact:after {    
    content: "-";
    display: inline;
}

footer ul li.social-item-contact:before {    
    margin-right: 20px;
}

footer ul li.social-item-contact:after {    
    margin-left: 20px;
}

footer ul li a.contact, footer ul li a.contact:visited {
    font-size: 18px;
    color: #fff;
    text-decoration: none;    
    display: inline;
}

footer ul li a.contact:hover {
    color: #8e6e47;
    text-shadow:0px 0px 2px #8e6e47;
}

footer ul li.social-item a {
    background: url("./img/pictos_socials.png") center no-repeat;
    width:25px;
    height: 25px;
    background-size: 50px 100px;
}

footer ul li a.linkedin {   
    background-position: 0 0;
}

footer ul li a.facebook {
    background-position: 0 -50px;
}

footer ul li a.twitter {
    background-position: 0 -75px;
}

footer ul li a.instagram {

    background-position: 0 -25px;
}

footer ul li a.linkedin:hover {
    background-position: -25px 0;
}

footer ul li a.facebook:hover {
    background-position: -25px -50px;
}

footer ul li a.twitter:hover {
    background-position: -25px -75px;
}

footer ul li a.instagram:hover {
    background-position: -25px -25px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), 
only screen and (min-device-pixel-ratio: 2) {
    #logo { 
        background-image:url('./img/logo_sprite@2x.png');
        background-size: 7750px 88px; 
    }
}

@keyframes play {
    from { background-position: 0px 0px; } /* position de la première frame, normalement 0px 0px */
    to { background-position:-7625px 0px; } /* position de la dernière frame, normalement -tailleWidth 0px */
}


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

    footer{
        height: 55px; 
    }
    footer .socials-wrapper {
        margin-right: 25px;
    }

    footer ul li:not(:last-child) {
        margin-right:10px;
    }

    footer ul li.social-item-contact:before {    
        margin-right: 13px;
    }

    footer ul li.social-item-contact:after {    
        margin-left: 13px;
    }

    .logo-wrapper {
        width: 125px;
        height: 88px;
        margin: 25px 0 0 25px;
    }


    .sound-control .sound_btn {
        margin: 0 0 25px 25px;
    }

    @media only screen and (max-width: 550px) {
        #logo {
            transform: scale(0.8);
        }

        .sound-control .sound_btn {
            width: 36px;
            height: 36px;
            background-size: 72px 72px;
            background-position: 0 -36px;    
        }


        .sound-control .sound_btn.inactive {
            background-position: -36px -36px;
        }

        footer ul li.social-item-behance {    
            font-size: 12px;    
            line-height: 22px;
        }

        footer ul li a.behance .behance-text, footer ul li a.behance:visited .behance-text {
            margin-right: 9px;
        }

        footer ul li a.behance .behance-logo {
            background-size: 70px 17px;
            background-position: 49px 0;
            width: 70px;
            margin-left: -49px;
            margin-top:2px;
        }

        footer ul li.social-item.contact {    
            font-size: 12px;
            line-height: 17px;
        }

        footer ul li.social-item-contact:before {    
            margin-right: 10px;
        }

        footer ul li.social-item-contact:after {    
            margin-left: 10px;
        }

        footer ul li a.contact, footer ul li a.contact:visited {
            font-size: 12px;
        }

        footer ul li.social-item a {
            background: url("./img/pictos_socials.png") center no-repeat;
            width:17px;
            height: 17px;
            background-size: 33px 67px;
        }

        footer ul li a.linkedin {   
            background-position: 0 0;
        }

        footer ul li a.facebook {
            background-position: 0 -33px;
        }

        footer ul li a.twitter {
            background-position: 0 -50px;
        }

        footer ul li a.instagram {
            background-position: 0 -17px;
        }

        footer ul li a.linkedin:hover {
            background-position: -17px 0;
        }

        footer ul li a.facebook:hover {
            background-position: -17px -33px;
        }

        footer ul li a.twitter:hover {
            background-position: -17px -50px;
        }

        footer ul li a.instagram:hover {
            background-position: -17px -17px;
        }

    }

    @media only screen and (max-width: 340px) {
        footer {
            height: 40px;
        }

        footer .socials-wrapper {
            margin-right: 10px;
        }

        footer ul li:not(:last-child) {
            margin-right:8px;
        }

        .logo-wrapper {
            margin: 15px 0 0 10px;
        }
    }
/*
     FILE ARCHIVED ON 01:02:42 Oct 17, 2017 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 07:38:23 Mar 08, 2022.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 264.036
  exclusion.robots: 0.072
  exclusion.robots.policy: 0.066
  RedisCDXSource: 11.496
  esindex: 0.008
  LoadShardBlock: 237.444 (3)
  PetaboxLoader3.datanode: 292.79 (4)
  CDXLines.iter: 13.394 (3)
  load_resource: 138.544
  PetaboxLoader3.resolve: 46.601
*/