/**
 * fullPage 2.5.7
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html, body {
    margin: 0;
    padding: 0;
    overflow:hidden;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
@media only screen and (max-width: 768px) {
    html, body {
        overflow: auto;
    }
}

#superContainer {
    height: 100%;
    position: relative;

    /* Touch detection for Windows 8 */
    -ms-touch-action: none;

    /* IE 11 on Windows Phone 8.1*/
    touch-action: none;
}
.fp-section {
    position: relative;
    -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box; /* <=28 */
    box-sizing: border-box;
}
.fp-slide {
    float: left;
}
.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}
.fp-slides {
    z-index:1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}
.fp-section.fp-table, .fp-slide.fp-table {
   /* display: table;*/
    table-layout:fixed;
    width: 100%;
  /*  margin-top: -10px;*/
}
.fp-tableCell {
  /*  display: table-cell;*/
/*    vertical-align: middle;*/
    width: 100%;
    height: 100%;
}
.fp-slidesContainer {
    float: left;
    position: relative;
}
.fp-controlArrow {
    position: absolute;
    z-index: 4;
    top: 35%;
    cursor: pointer;
    width: 0;
    height: 0;
    /*border-style: solid;*/
    margin-top: -38px;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);

}
.fp-controlArrow.fp-prev {
    margin-left: 15%;
    width: 0;
    /*border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #bec1c2 transparent transparent;*/
    background: url(img/arrow-left.png) no-repeat;
        height: 70px;
    width: 40px;
}
.fp-controlArrow.fp-next {
    right: 15%;
    /*border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #bec1c2;*/
        height: 70px;
    width: 40px;
    background: url(img/arrow-right.png) no-repeat;
}
/*.fp-scrollable {
    overflow: scroll;

}*/
.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}
#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
}
#fp-nav.right {
    right: 17px;
}
#fp-nav.left {
    left: 17px;
}
.fp-slidesNav{
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}
.fp-slidesNav.bottom {
    bottom: 270px;
}
.fp-slidesNav.top {
    top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position:relative;
}
.fp-slidesNav ul li {
    display: inline-block;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
    background: #ce0019;
    border: 1px solid #ce0019;
}
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    border: 1px solid #000;
    background: rgba(0, 0, 0, 0);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}
#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
}
#fp-nav ul li:hover .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}
#fp-nav ul li .fp-tooltip.right {
    right: 20px;
}
#fp-nav ul li .fp-tooltip.left {
    left: 20px;
}

/* Reset CSS
 * --------------------------------------- */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0;
    margin: 0;
}
a{
    text-decoration:none;
}
table {
    border-spacing: 0;
}
fieldset,img {
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: normal;
    font-style: normal;
}
strong{
    font-weight: bold;
}
ol,ul {
    list-style: none;
    margin:0;
    padding:0;
}
caption,th {
    text-align: left;

}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
    font-size: 100%;
    margin:0;
    padding:0;
   /* color:#444;*/
}
q:before,q:after {
    content:'';
}
abbr,acronym { border: 0;
}


/* Custom CSS
 * --------------------------------------- */
body{
    font-family: arial,helvetica;
    color: #333;
   /* color: rgba(0,0,0,0.5);*/
}
@media only screen and (max-width: 900px) {
  body {
    padding-top: 76px;
  }
}
.wrap{
    margin-left: auto;
    margin-right: auto;
    width: 960px;
    position: relative;
}
h1{
    font-size: 6em;
}
p{
    font-size: 2em;
}
.intro p{
    width: 50%;
    margin: 0 auto;
    font-size: 1.5em;
}
.section{
    text-align:center;
}
#menu li {
    display:inline-block;
    margin: 10px;
    color: #000;
/*  background:#fff;*/
    background: rgba(255,255,255, 0.5);
    -webkit-border-radius: 10px;
            border-radius: 10px;
}
#menu li.active{
/*  background:#ce0019;*/
    background: rgba(206,0,25,1);
    color: #fff;
}
#logo-menu.active{
/*  background:#fff;*/
    background: rgba(0,0,0,0);
    color: #fff;
}
#menu li a{
    text-decoration:none;
    color: #727070;
    text-transform: uppercase;
}
#menu li.active a:hover{
    background-color: #ce0019;
    border-radius: 10px;
}
#menu li:hover{
    background: rgba(255,255,255, 0.8);
}
#menu li a,
#menu li.active a{
    padding: 4px 18px;
    display:block;
}

#menu{
    position:fixed;
    top:0;
    left:0;
    height: auto;
    z-index: 70;
    width: 100%;
    padding: 0;
    margin:0;
}
.twitter-share-button{
    position: fixed;
    z-index: 99;
    right: 149px;
    top: 9px;
}

#infoMenu{
    height: 20px;
    color: #f2f2f2;
    position:fixed;
    z-index:70;
    bottom:0;
    width:100%;
    text-align:right;
    font-size:0.9em;
    padding:8px 0 8px 0;
}
#infoMenu ul{
    padding: 0 40px;
}
#infoMenu li a{
    display: block;
    margin: 0 22px 0 0;
    color: #333;
}
#infoMenu li a:hover{
    text-decoration:underline;
}
#infoMenu li{
    display:inline-block;
    position:relative;
}
#examplesList{
    display:none;
    background: #282828;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 20px;
    float: left;
    position: absolute;
    bottom: 29px;
    right: 0;
    width:638px;
    text-align:left;
}
#examplesList ul{
    padding:0;
}
#examplesList ul li{
    display:block;
    margin: 5px 0;
}
#examplesList ul li a{
    color: #BDBDBD;
    margin:0;
}
#examplesList ul li a:hover{
    color: #f2f2f2;
}
#examplesList .column{
    float: left;
    margin: 0 20px 0 0;
}
#examplesList h3{
    color: #f2f2f2;
    font-size: 1.2em;
    margin: 0 0 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    -moz-box-shadow: 0 1px 0 rgba(255,255,255,0.1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 0 0 5px 0;
}

/* Faster youtube embeds */
.youtube {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: all 200ms ease-out;
    cursor: pointer;
}


@media only screen and (min-width: 640px) {
#last-row #logo-bottom img{
    margin-left: 30px;
}
}


@media only screen and (max-width: 768px) {
    .youtube-responsive {
        margin: 0 0 20px;
        padding: 56.25% 0 29px;
        position: relative;
    }

    .youtube-responsive .youtube,
    .youtube-responsive iframe {
        height: 100% !important;
        left: 0;
        position: absolute;
        top: 0;
        width: 100% !important;
    }
}

.youtube .fa {
    color: #000;
    position: absolute;
    transition: all 0.2s ease-out;
    top: 50%;
    left: 50%;
}

.youtube .fa-2x {
    margin: -16px 0 0 -16px;
}

.youtube .fa-4x {
    margin: -32px 0 0 -32px;
}

.youtube .fa:after {
    background: #fff;
    content: "";
    position: absolute;
    height: 50%;
    width: 50%;
    z-index: -1;
}

.youtube .fa-2x:after {
    left: 10px;
    top: 10px;
}

.youtube .fa-4x:after {
    left: 15px;
    top: 15px;
}

.youtube:hover .fa {
    color: #e52d27;
}



/* Demos Menu
 * --------------------------------------- */
 #demosMenu{
    position:fixed;
    bottom: 10px;
    right:10px;
    z-index: 999;
 }


        /* Sections
         * --------------------------------------- */
         #section0 {
            height: 100vh;
         }

        @media only screen and (max-width: 768px) {
            #section0 {
                height: auto;
            }
        }

        #section0 img,
        #section1 img{
            margin: -40px 0 0 0;
        }

        #section0 img {
            height: auto;
            max-width: 100%;
        }

        #section0 #corps{
            margin: 0;
        }
        #section2 img{
            margin: 20px 0 0 52px;
        }
        /*#section3 img{
            bottom: 0px;
            position: absolute;
            margin-left: -420px;
        }*/
        .intro p{
            width: 50%;
            margin: 0 auto;
            font-size: 1.5em;
        }
        .twitter-share-button{
            position: absolute;
            z-index: 99;
            right: 149px;
            top: 9px;
        }


/*
 * jQuery FlexSlider v2.4.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover,
.flex-container a:focus,
.flex-slider a:focus {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  position: relative;
  zoom: 1;
  max-width:70%;
  text-align:center;
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides img {
  height: auto;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
    position: absolute;
    top: 47%;
    cursor: pointer;
    z-index: 1100;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in-out 0.2s;
    -moz-transition: opacity 0.4s ease-in-out 0.2s;
    -o-transition: opacity 0.4s ease-in-out 0.2s;
    -ms-transition: opacity 0.4s ease-in-out 0.2s;
    transition: opacity 0.4s ease-in-out 0.2s;
    width: 20px;
    height: 89px;
    overflow: hidden;
}
.flex-direction-nav a:before {
    content: '';
    display: block;
    width: 20px;
    height: 89px;
    top: 5px;
    left: 5px;
    background: transparent url("../../common/img/parallax/arrows2.png") no-repeat top left;
}
.flex-direction-nav a.flex-next:before {
  background: transparent url("../../common/img/parallax/arrows2.png") no-repeat top right
}
.flex-direction-nav .flex-prev {
  left: 5%;
}
.flex-direction-nav .flex-next {
  right: 5%;
  text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
    opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
    opacity: 1;

}
.flexslider:hover .flex-direction-nav .flex-next:hover {
    opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a .flex-play:before {
  content: '\f003';
}
.flex-control-nav {
    display: none;
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
    .flex-control-nav {
        display: block;
    }
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 12px;
  height: 12px;
  display: block;
  background: #ddd;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.1) inset, 1px 1px 1px rgba(255,255,255,0.1);
  -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.1) inset, 1px 1px 1px rgba(255,255,255,0.1);
  box-shadow: 1px 1px 1px rgba(0,0,0,0.1) inset, 1px 1px 1px rgba(255,255,255,0.1);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  position: relative;
}
.flex-control-paging li a:hover {
}
.flex-control-paging li a.flex-active {
  cursor: default;
}
.flex-control-paging li a.flex-active:after {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    background: rgb(206,0,25);
    background: -moz-linear-gradient(top, rgba(206,0,25,1) 0%, rgba(206,0,25,1) 47%, rgba(206,0,25,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(206,0,25,1)), color-stop(47%,rgba(206,0,25,1)), color-stop(100%,rgba(237,237,237,1)));
    background: -webkit-linear-gradient(top, rgba(206,0,25,1) 0%,rgba(206,0,25,1) 47%,rgba(206,0,25,1) 100%);
    background: -o-linear-gradient(top, rgba(206,0,25,1) 0%,rgba(206,0,25,1) 47%,rgba(206,0,25,1) 100%);
    background: -ms-linear-gradient(top, rgba(206,0,25,1) 0%,rgba(206,0,25,1) 47%,rgba(206,0,25,1) 100%);
    background: linear-gradient(top, rgba(206,0,25,1) 0%,rgba(206,0,25,1) 47%,rgba(206,0,25,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 );
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}

.da-slider {
    margin: 0 0 20px;
    padding: 0 15%;
    text-align: left;
}

.da-slider h2 {
    color: #727070;
    font-size: 22px;
    margin-top: 40px;

    font-weight: 700;
}

.da-slider p {
    color: #727070;
    font-family: 'FuturaStd-Light', sans-serif;
    font-size: 15px;
    line-height: 26px;
    margin-top: 50px;
    overflow: hidden;
}

.da-slider .flex-control-paging {
    width: 80%;
}



@font-face {
  font-family: 'FuturaStd-Light';
  src: url('../../common/css/font/futura/FuturaStd-Light.eot?') format('eot'), url('../../common/css/font/futura/FuturaStd-Light.woff') format('woff'), url('../../common/css/font/futura/FuturaStd-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FuturaStd-Heavy';
  src: url('../../common/css/font/futura/FuturaStd-Heavy.eot?') format('eot'), url('../../common/css/font/futura/FuturaStd-Heavy.woff') format('woff'), url('../../common/css/font/futura/FuturaStd-Heavy.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FuturaStd-Medium';
  src: url('../../common/css/font/futura/FuturaStd-Medium.eot?') format('eot'), url('../../common/css/font/futura/FuturaStd-Medium.woff') format('woff'), url('../../common/css/font/futura/FuturaStd-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}




.section{
    background-image:linear-gradient(#fff, #ededee);
}

a, p, h1, h2, h3, h4{
    font-family: 'FuturaStd-Light', sans-serif;
}

#menu{
    background : #fff;
}

#menu li a{
    font-family: 'FuturaStd-Heavy', sans-serif;
    background: url(img/point.png) no-repeat right;
}

#logo-menu{

    vertical-align: middle;
}

.lettreRouge{
    color: #ce0019;
}

h3{
    font-size: 50px;
    letter-spacing: 2px;
    margin-top: 45px;
}

.scroll{
    display: block;
    padding-top:5%;
    clear: both;
    text-align: center;
}

#hand{
    display: none;
}

h1{
    text-align: left;
    font-size: 35px;
    color: #ce0019;
    top: 0;
    background: url(img/line.png) repeat-x center;
    font-family: 'FuturaStd-Medium', sans-serif;
}

h1 span{
    background: #fcfcfc;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 60px;
}

h3 span{
    font-family: 'FuturaStd-Heavy', sans-serif;
}




.intro{
    margin-top: 150px;
	color:#727070;
}

/*.intro-accueil{
    margin-top: 3%;
}
*/
#bloc-left{
    width: 30%;
    float: left;
    margin-top: 30px;
    margin-left: 5%;

}




#bloc-right{
    width: 50%;
    float: left;
    margin-top: 30px;
    margin-left: 5%;

}

.intro p{
    text-align: left;
    font-size: 16px;
    margin: 0;
    width: 100%;

}

#bloc-left p{
    font-weight: bold;
    color: #727070;
    line-height: 1.7;
    font-family: 'FuturaStd-Medium', sans-serif;

}

#legende p{
    color: #74797d;
    margin-top: 30px;
}

#legende span{
    color: #74797d;
    font-family: 'FuturaStd-Light', sans-serif;
}


#bloc-right p{
    padding-right: 50px;
    line-height: 1.5;
}

@media only screen and (max-width: 768px) {
    #bloc-right p {
        padding-right: 0;
    }
}

.download{
    width: 170px;
    float: right;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background: #ce0019;
    margin-top: 30px;
    padding: 5px 5px 5px 25px;
    color: #fff;
    text-transform: uppercase;
}


.download span{
    font-family: 'FuturaStd-Heavy', sans-serif;
}

#logo-menu a{
    line-height: 1;
    vertical-align: middle;
}

#menu li.active a{
    color: #fff;
}
#menu li.active a span{
    color: #fff;
}

#menu #logo-menu.active{
    background: rgba(0,0,0,0);

}

#menu #logo-menu a{
    background: none;

}

#logo-menu a img{
    padding-top: 20px;
}

.content-slider{
    width: 55%;
    margin:auto;
}
.content-slider h4{
    font-weight: bold;
    color: #000;
    text-align: left;
    font-size: 20px;
    margin-bottom: 20px;

}

#section3 h4{
    margin-top: 40px;
    text-transform: uppercase;
    font-family: 'FuturaStd-Medium', sans-serif;
}
#section3 h4 p{
    font-weight: bold;
    text-transform: none;
    color: #74797d;
    text-align: center;
}

#section3 .intro>p{
    text-align: center;
        margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    #section3 .intro > p {
        padding: 0 20px;
        width: auto;
    }
}



.accordion dt{
    border-top:1px solid #c5c7c9;
    border-left:1px solid #c5c7c9;
    border-right:1px solid #c5c7c9;
    padding: 18px;
    text-align: left;
    font-size: 20px;


}

.accordion dd{
    border-left:1px solid #c5c7c9;
    border-right:1px solid #c5c7c9;
    border-bottom:1px solid #c5c7c9;
    text-align: left;
}

.accordion{
    width: 50%;
    margin:auto;
    border-bottom: 1px solid #c5c7c9;
}

.accordion ul img{
	max-width:100%;
}

#section3 dt a{
    text-align: left;
    color: #67696a;
    font-size: 30px;
    width: 100%;
    display: block;
}

#section3 iframe{
    margin-bottom: 60px;
}

#section3{
    margin-top: -150px;
}

.intro #bloc-left iframe,
.intro #bloc-left .youtube {
    background-color: #000;
    float: left;
    border: 3px solid #ce0019;
    margin-right: 10px;
}

#test{
    height: 395px;
}

#content-slider h4{
    font-family: 'FuturaStd-Medium', sans-serif;
}

/*.accordeon-left{
    width: 48%;
    float: left;
}

.accordeon-right{
    width: 48%;
    float: left;
}*/

dd p{
    width: 50%;
    display: inline-block;
}

dd ul li{
    display: inline-block;
    width: 46%;
    margin-left: 13px;
    vertical-align: top;
    margin-bottom: 20px;
    line-height: 1.4;
    font-family: 'FuturaStd-Light', sans-serif;
}

#section3 dt a.is-open {
    color: #ce0019;
}


dd ul li ul li{
    display: block;
    width: 100%

}

dt a img{
    float: right;
    margin-top: 15px;
    margin-right: 10px;
}
.accordion dd ul li span{
    font-family: 'FuturaStd-Medium', sans-serif;
    margin-bottom: 10px;
    display: block;
}

.accordion dd ul li ul li{
    background: url(img/puce.png) no-repeat;
    background-position: left 11px;
    padding-left: 15px;
}

#conseils-video{
    width: 50%;
    margin: auto;
}

#conseils-video p{
    text-align: center;
    font-family: 'FuturaStd-Medium', sans-serif;
    font-size: 20px;
    margin-top: 22px;
    margin-bottom: 20px;
}

.bloc-video{
    width: 100%;

}

h5{
    font-family: 'FuturaStd-Medium';
    color: #676d71;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 10px;
}


/*#section3 .bloc-video iframe{
        border: 3px solid #fff;
        margin-bottom: 2px;
}
*/
footer{
    background: #313131;
    height: auto;
    padding-bottom: 78px;
    clear: both;
}

.language-title{
    margin:auto;
    width: 355px;
    text-align: left;
	 font-family: 'FuturaStd-Medium';
    color: #FFF;
    margin-bottom: 10px;
	font-size:20px;
}

@media (max-width: 400px){
   .language-title{width: 329px;}
}

.formlang{
   float: right; 
   width: 152px;
}

@media (max-width: 400px){
   .formlang{width: 124px;}
}


#guide{
    margin:auto;
    width: 50%;
    padding-top: 30px;
}

#guide img{
    float: left;
    margin-right: 30px;
}

#guide h5, #guide p{
    color: #fff;
    text-align: left;
}

#guide h5{
    font-size: 20px;
}

#guide p{
    font-size: 16px;
    float: left;
    font-family: 'FuturaStd-Medium', sans-serif;

}

#guide p span{
    font-size: 14px;
    font-family: 'FuturaStd-Light', sans-serif;
    font-style: italic;
}

#guide .download{
    margin-top: 0;
    margin-bottom: 40px;
    border-radius: 5px;
    padding-left: 5px;
}

#lang-row{
    width: 96%;
    padding-right: 2%;
    padding-left: 2%;
    clear: both;
    text-align: center;
    padding-top: 15px;
	padding-bottom: 15px;
    border-top: 1px solid #686868;
}

#last-row{
    width: 96%;
    padding-right: 2%;
    padding-left: 2%;
    clear: both;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #686868;

}

#last-row ul li{
    display: inline-block;
    color: #fff;
    text-align: left;
    font-family: 'FuturaStd-Medium', sans-serif;
    background: url(img/point.png) no-repeat right;
    margin-right: 20px;
    padding-right: 15px;
}

#last-row ul li a{
    display: inline-block;
    color: #fff;
    text-align: left;
}

#last-row ul li a:hover{
    text-decoration: underline;
}

#last-row ul{
    text-align: center;
    float: left;
        margin-bottom: 20px;

}



#row-content{
    width : 70%;
    margin: auto;
}

nav > input {
    display: none;
}

#logo-bottom{
    margin: auto;
    text-align: center;
}

#section0 p{
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    margin-top: 20px;
    font-family: 'FuturaStd-Medium'
}

.cnil-banner{
    background: #191919;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999999;
}

.cnil-banner p{
    float: left;
    margin:0;
    width: 75vw;
    color: #fff;
    font-size: 14px;
    padding:10px 10px 10px 20px;
}

.cnil-banner #close{
    color: #fff;
    cursor: pointer;
    float: right;
    margin-right: 20px;
    margin-top: 5px;
    background: none;
    border: none;
}

#letter-bold{
    font-family: 'FuturaStd-Heavy', sans-serif;
    font-size: 20px;
}


.da-slide p{
    width: 90%;
    font-family: 'FuturaStd-Light', sans-serif;
    font-style: normal;
    height: auto;
}



/*SLIDE 2*/

 .container iframe{
    height: 188px;
    margin-bottom: 0;

 }

.slidesjs-next{
    background: url(img/arrow-right.png) no-repeat 100% 0;
    height: 68px;
    display: block;
    margin-top: -17px;
    position: absolute;
    top: 50%;
    width: 30px;
    right: 0;
 }

 .slidesjs-previous{
    background: url(img/arrow-left.png) no-repeat 0 0;
    height: 68px;
    display: block;
    margin-top: -17px;
    width: 30px;
    top: 50%;
    position: absolute;
    left: 0;
 }

 .slidesjs-pagination{
    display: none;
 }

 #slides {
    padding: 0 30px;
    position: relative;
 }

.flexslider-video .flex-direction-nav a {
    height: 68px;
    opacity: 1;
    width: 30px;
    top: 50%;
    margin-top: -19px;
}

.flexslider-video .flex-direction-nav a::before {
    background: url("img/arrow-left.png") no-repeat scroll left top transparent;
    content: "";
    display: block;
    height: 68px;
    width: 30px;
}

.flexslider-video .flex-direction-nav .flex-prev {
    left: 0;
}

.flexslider-video .flex-direction-nav .flex-next {
    right: 0;
}

.flexslider-video .flex-direction-nav .flex-next::before {
    background: url("img/arrow-right.png") no-repeat scroll right top transparent;
}

/* #slides {
      display: none
    }*/

    .container {
      width: 395px;
      margin: auto;
      margin-top: 30px;
    }

    .slides-container {
        margin-bottom: 30px;
        width: 455px;
    }

    /* For tablets & smart phones */
    @media (max-width: 767px) {
      body {
        /*padding-left: 20px;
        padding-right: 20px;*/
      }
      .container {
        width: auto
      }

      .intro-accueil {
        padding-left: 20px;
        padding-right: 20px;
      }

      #section3 .intro {
        padding-left: 20px;
        padding-right: 20px;
      }

      #section3 h1 {
        margin-left: 0;
        margin-right: 0;
      }

      .fp-table,
      .fp-tableCell {
        height: auto !important;
      }
    }

    /* For smartphones */
    @media (max-width: 480px) {
      .container {
        width: auto
      }
    }

    /* For smaller displays like laptops */
    @media (min-width: 768px) and (max-width: 979px) {
      .container {
        width: 395px;
      }

      .slides-container {
          margin-bottom: 30px;
          width: 455px;
      }
    }

    /* For larger displays */
    @media (min-width: 1200px) {
      .container {
        width: 395px;
        height: 100%;
      }

      .slides-container {
          margin-bottom: 30px;
          width: 100%;
      }

	  .intro .flexslider {
        margin: 0 auto;
        width: 70%;
      }
	  
      .container.slides-container .flexslider {
        margin: 0 auto;
        width: 40%;
      }
    }



    @media (max-width: 900px){

}

@media (max-width: 1100px){
    #bloc-right{
        float: none;
        width: auto;
        padding-right: 20px;
    }

    #bloc-left{
        float: none;
        width: 90%
    }

    h1{
    /*  padding-top:100px;*/
    }

    .fp-slidesNav{
        display: none;
    }





    .intro{
    margin-top: 260px;
    }



    #menu{
        height: auto;
        background: #fff;
    }

    .intro{
        margin-top: 0;
        padding-top: 77px;
    }

    .intro-accueil{
        margin-top: 0;
    }

/*  #section3 .intro{
        margin-top: 100px;
    }
*/
    h1{
        background: none;
        margin-left: 20px;
        margin-right: 20px;
    }

    h1 span{
        padding-left: 0;
        margin-left: 0px;
    }

    #section2 .intro{
        margin-top: 20px;
    }

        .fp-controlArrow.fp-prev{
        margin-left: 15px;
    }
    .fp-controlArrow.fp-next{
        right: 0;
    }

    .fp-controlArrow{
        /*top:46%;*/
        display: none;
    }

    .slide .intro{
        padding-top: 0;
    }

    .content-slider{
        width: 95%;
        clear: both;
        height: auto;
    }

    .content-slider p{
        height: auto;
    }

    .accordion{
        width: 100%;
    }

    .intro iframe{
        width: 90%;
    }

    dd ul li{
        width: 85%;
    }

    .bloc-video{
        width: 100%;
        margin-left: 0;
    }

    .bloc-video h5{
        text-align: center;
    }

    #conseils-video{
        z-index: -999;
        width: 100%;
    }

    #section3{
        margin-top: 0;
    }

    #guide .download{
        margin-top: 10px;
    }

    #guide{
        width: 85%;
    }

    #row-content{
        width: 100%;
    }

    #last-row ul{
        margin-bottom: 20px;
    }

    #test{
        height: auto;
    }

    #menu li a {
        background: none;
    }

    #fp-nav.right{
        display: none;
    }

/*  .fp-section.fp-table, .fp-slide.fp-table{
    margin-top:-7px;
}
*/

#section2{
/*  height: auto;
*/  overflow: scroll;

}

.fp-slides{
    position: inherit;
}
}

/*@media (max-width:1024px){
    #test{
        height: auto;
    }
    .content-slider{
        width: 82%;
    }

    #section2 .intro{
        margin-top: 115px;
    }


    .fp-controlArrow.fp-prev{
        margin-left: 0;
    }
    .fp-controlArrow.fp-next{
        right: 0;
    }

    .fp-controlArrow{
        top:46%;
    }


}*/


@media (max-width: 900px){

/*#section2 .intro h1 span{
    font-size: 16px;
}

#section2 .intro h1{
    line-height: 0.7;
}

#section2 .intro{
    padding-top: 40px;
}

#test .slide .intro{
    padding-top: 0;
}*/

#menu li{
        display: block;
        text-align: center;
        border-radius: 0px;
        margin:0;
    }

    .download{

        text-align: center;
        margin-top: 0;
        background: #aaa;
		width: 100%;
    }
	@media only screen and (min-width: 400px) {
	.bottomdownload{width: 170px;}
	}
	@media only screen and (max-width: 400px) {
	.bottomdownload{width: 100%;}
	}







/*
    #menu{
        display: none;
    }

    label:hover #menu{
        display: block;
    }*/

nav > input {
    display: none;
}

#hand{
    display: block;
}

#hand img{
    float: right;
    height: 25px;
    margin: 10px 38px 0 0;

}

.da-dots{
    display: none;
}

.da-slider{
    min-height: 750px;
}

.da-slide p{
    width: 63%;
    margin-left: 45px;
}
#navigation {
  background: #fff;
  height: 76px;
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
}
nav ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 1rem;
    transform: translateX(-110%) translateZ(0px);
    transition: transform 0.3s cubic-bezier(0.72, 0.89, 0.28, 1.39) 0s;
    -webkit-transform: translateX(-110%) translateZ(0px);
    -webkit-transform: transform 0.3s cubic-bezier(0.72, 0.89, 0.28, 1.39) 0s;
/*    margin-left: -200px;*/

    width: 70%;
    will-change: transform;
    z-index: 1;
}


nav > input:checked ~ ul {
    -webkit-transform:translateX(0px) translateZ(0px);
    transform: translateX(0px) translateZ(0px);
    /*margin-left: 0;*/
}
nav a:hover, nav a:focus, nav a:active {
    background: none repeat scroll 0 0 #222;
}

nav > label {
  /*  background-color: transparent;
    border: 1px solid #ce0019;
    border-radius: 50%;*/
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    height: 52px;
    outline: 0 none;
    padding: 0;
    position: fixed;
    top: 0.8rem;
    transition: transform 0.2s ease 0s;
    width: 52px;
    z-index: 999;
    margin-left: 20px;

}
nav > label::after, nav > label::before {
/*    background-color: #ce0019;
*/    border-radius: 10px;
    bottom: 15%;
    content: "";
    left: 40%;
    position: absolute;
    right: 40%;
    top: 15%;
    transition: transform 0.2s ease 0s;
}
nav > label::before {
    bottom: 40%;
    left: 15%;
    right: 15%;
    top: 40%;
}
nav > input:checked + label, nav > input:checked + label::before {
    transform: rotate(90deg) translateZ(0px);
}
.visually-hidden {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
}



ul {
    list-style-position: inside;
    padding-left: 1em;
}

section li::before {
    content: "?";
    margin-right: 0.8rem;
}

}



}


@media (max-width: 400px){

    .intro>img{
        width: 100%;
    }

    iframe{
        width: 100%;
    }

}



/* The CSS */
select {
    padding:3px;
    margin: 0;
    border-radius:0px;
  /*  box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset;*/
    background: #FFF;
    color:#888;
    border:none;
    outline:none;
    display: inline-block;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;
	width:150px;
	text-align:center;
	
}
@media (max-width: 400px){
	select {width:100px;}
}

/* Targetting Webkit browsers only. FF will show the dropdown arrow with so much padding. */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {padding-right:18px;
	}
}
@media (max-width: 400px){
/*
label {position:relative}
label:after {
    content:'<>';
	
    font:11px;
    color:#aaa;
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    -ms-transform:rotate(90deg);
    transform:rotate(90deg);
    right:8px; top:2px;
    padding:0 0 2px;
    border-bottom:1px solid #ddd;
    position:absolute;
    pointer-events:none;
}
label:before {
    content:'';
    right:6px; top:0px;
    width:20px; height:20px;
    background:#f8f8f8;
    position:absolute;
    pointer-events:none;
    display:block;
}*/
}