body,
ul,
a,
h1 {
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
nav {
  font-family: 'Arvo', sans-serif;
  font-weight: normal;
}
.titre1 {
  position: absolute;
  margin-top: 1%;
  margin-left: 5%;
}
.slideArrows a.arrows {
  display: inline-block;
  margin: 0 40px;
  background: url(../img/sprite.png) no-repeat 0 0;
  width: 64px;
  height: 137px;
  border-radius: 0;
  background-position: 0 -32px;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  cursor: pointer;
}
.slideArrows a.arrows#previous {
  opacity: 0;
  cursor: default;
}
.slideArrows a.arrows#next {
  opacity: 1;
  background-position: -64px -32px;
}
.formText {
  background: rgba(255,255,255,0.8);
  display: block;
  width: 80%;
  margin: 10px auto;
  border: 1px solid #fff;
  border-radius: 5px;
}
body {
  background: #35a9e0;
  background: -moz-radial-gradient(center,ellipse cover,#35a9e0 30%,#0082e5 100%);
  background: -webkit-gradient(radial,center center,0px,center center,100%,color-stop(30%,#35a9e0),color-stop(100%,#0082e5));
  background: -webkit-radial-gradient(center,ellipse cover,#35a9e0 30%,#0082e5 100%);
  background: -o-radial-gradient(center,ellipse cover,#35a9e0 30%,#0082e5 100%);
  background: -ms-radial-gradient(center,ellipse cover,#35a9e0 30%,#0082e5 100%);
  background: radial-gradient(ellipse at center,#35a9e0 30%,#0082e5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#35a9e0',endColorstr='#0082e5',GradientType=1);
  color: #fff;
  font-family: helvetica, sans-serif;
}
@media screen and (min-width: 1024px) {
  html,
  body {
    height: 100%;
  }
  .menu {
    position: fixed;
    top: 10px;
    right: 50px;
    z-index: 500;
  }
  .menu ul#menuUl li {
    display: inline-block;
    margin: 10px;
  }
  .menu ul#menuUl li a {
    color: #000;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  .menu ul#menuUl li a:hover {
    color: rgba(255,255,255,0.8);
  }
  .menu ul#boule {
    position: fixed;
    top: 45%;
    right: 2%;
  }
  .menu ul#boule li {
    width: 15px;
    height: 15px;
    margin-bottom: 10px;
    position: relative;
    border-radius: 50%;
  }
  .menu ul#boule li a {
    background: rgba(0,0,0,0.3);
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    overflow: hidden;
  }
  .menu ul#boule li a.nav-active {
    background: #fff;
  }
  .menu ul#boule li:nth-of-type(2) a.nav-active,
  .menu ul#boule li:nth-of-type(4) a.nav-active {
    background: #35a9e0;
  }
  .menu ul#boule li span {
    background: #fff;
    display: none;
    padding: 1px 5px;
    position: absolute;
    top: -4px;
    right: 50px;
    color: #35a9e0;
    text-align: center;
    border-radius: 2px;
    opacity: 0;
  }
  .menu ul#boule li span:after {
    content: "";
    position: absolute;
    top: 7px;
    right: -5px;
    border-top: 5px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid rgba(255,255,255,0.8);
  }
  .menu ul#boule li span.borderLeftBlue:after {
    content: "";
    position: absolute;
    top: 7px;
    right: -5px;
    border-top: 5px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #35a9e0;
  }
  .menu ul#boule li:hover span {
    display: block;
    -webkit-animation: boule .5s 1;
    -moz-animation: boule .5s 1;
    -ms-animation: boule .5s 1;
    -o-animation: boule .5s 1;
    animation: boule .5s 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .menu ul#boule li:hover span .arrowAnimation 0%,
  .menu ul#boule li:hover span .arrowAnimation 20%,
  .menu ul#boule li:hover span .arrowAnimation 50%,
  .menu ul#boule li:hover span .arrowAnimation 80%,
  .menu ul#boule li:hover span .arrowAnimation 100% {
    bottom: 0;
  }
  .menu ul#boule li:hover span .arrowAnimation 40% {
    bottom: 30px;
  }
  .menu ul#boule li:hover span .arrowAnimation 60% {
    bottom: 15px;
  }
  @keyframes arrowMove {
    .menu ul#boule li:hover span 0%,
    .menu ul#boule li:hover span 20%,
    .menu ul#boule li:hover span 50%,
    .menu ul#boule li:hover span 80%,
    .menu ul#boule li:hover span 100% {
      bottom: 0;
    }
    .menu ul#boule li:hover span 40% {
      bottom: 30px;
    }
    .menu ul#boule li:hover span 60% {
      bottom: 15px;
    }
  }
  @-webkit-keyframes arrowMove {
    .menu ul#boule li:hover span 0%,
    .menu ul#boule li:hover span 20%,
    .menu ul#boule li:hover span 50%,
    .menu ul#boule li:hover span 80%,
    .menu ul#boule li:hover span 100% {
      bottom: 0;
    }
    .menu ul#boule li:hover span 40% {
      bottom: 30px;
    }
    .menu ul#boule li:hover span 60% {
      bottom: 15px;
    }
  }
  .menu ul#boule li:hover span .flashAnimation 0%,
  .menu ul#boule li:hover span .flashAnimation 50%,
  .menu ul#boule li:hover span .flashAnimation 100% {
    opacity: 1;
  }
  .menu ul#boule li:hover span .flashAnimation 25%,
  .menu ul#boule li:hover span .flashAnimation 75% {
    opacity: 0;
  }
  @keyframes flash {
    .menu ul#boule li:hover span 0%,
    .menu ul#boule li:hover span 50%,
    .menu ul#boule li:hover span 100% {
      opacity: 1;
    }
    .menu ul#boule li:hover span 25%,
    .menu ul#boule li:hover span 75% {
      opacity: 0;
    }
  }
  @-webkit-keyframes flash {
    .menu ul#boule li:hover span 0%,
    .menu ul#boule li:hover span 50%,
    .menu ul#boule li:hover span 100% {
      opacity: 1;
    }
    .menu ul#boule li:hover span 25%,
    .menu ul#boule li:hover span 75% {
      opacity: 0;
    }
  }
  .menu ul#boule li:hover span .bouleAnimation 100% {
    opacity: 1;
    right: 25px;
  }
  @keyframes boule {
    .menu ul#boule li:hover span 100% {
      opacity: 1;
      right: 25px;
    }
  }
  @-webkit-keyframes boule {
    .menu ul#boule li:hover span 100% {
      opacity: 1;
      right: 25px;
    }
  }
  section {
    width: 100%;
    height: 100%;
    min-height: 566px;
    overflow: hidden;
  }
  section#home >div {
    width: 90%;
  }
  section#home >div img {
    display: inline-block;
    width: 50%;
  }
  section#home >div >div {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
  }
  section#home >div >div article {
    position: relative;
    padding-left: 20px;
  }
  section#home >div >div article h1 {
    font-size: 250%;
  }
  section#home >div >div article h1 span {
    font-style: italic;
  }
  section#home >div >div article p {
    font-size: 0.8em;
    width: 90%;
  }
  section#home >div >div article:before {
    content: "";
    height: 85%;
    position: absolute;
    top: 20px;
    left: 0;
    border-left: 1px solid #fff;
  }
  section#home >div >div >ul {
    margin-left: 3%;
    margin-top: 2%;
  }
  section#home >div >div >ul >li {
    display: inline-block;
    margin: 0 5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    opacity: .5;
    overflow: hidden;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }
  section#home >div >div >ul >li a {
    display: block;
    background: url(../img/sprite.png) no-repeat 0 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-position: 0 0;
  }  
  section#home >div >div >ul >li:nth-child(2) a {
    background-position: -64px 0;
  }  
  section#home >div >div >ul >li:hover {
    opacity: 1;
  }
  section#presentation {
    background: #fff;
  }
  section#presentation h1 {
    color: #35a9e0;
    position: absolute;
    margin-top: 1%;
    margin-left: 5%;
  }
  section#presentation iframe {
    display: block;
    width: 800px;
    height: 450px;
  }
  section#videos {
    position: relative;
  }
  section#videos h1 {
    position: absolute;
    margin-top: 1%;
    margin-left: 5%;
  }
  section#videos article.forDesktop {
    position: relative;
  }
  section#videos article.forDesktop map area {
    cursor: pointer;
  }
  section#videos article.forDesktop map span {
    background: #fff;
    display: none;
    width: 300px;
    padding: 10px 20px;
    position: absolute;
    top: 150px;
    left: 250px;
    color: #35a9e0;
    font-size: .7em;
    border-radius: 20px;
  }
  section#videos article.forDesktop map span h2,
  section#videos article.forDesktop map span p {
    margin: 0;
  }
  section#videos article.forDesktop map span p:nth-of-type(2) {
    font-size: .8em;
    text-align: right;
  }
  section#videos article.forDesktop map span:nth-of-type(2) {
    top: 150px;
    left: 650px;
  }
  section#videos article.forDesktop map span:nth-of-type(3) {
    top: 240px;
    left: 250px;
  }
  section#videos article.forDesktop map span:nth-of-type(4) {
    top: 320px;
    left: 50px;
  }
  section#videos #fade {
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1001;
    opacity: 0;
  }
  section#videos #light {
    background: rgba(255,255,255,0.8);
    width: 800px;
    height: 450px;
    margin: auto;
    position: absolute;
    top: 12%;
    left: 0;
    right: 0;
    z-index: -1002;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: transform .5s ease;
    -moz-transition: transform .5s ease;
    -ms-transition: transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease;
  }
  section#videos #light a#close {
    background: url(../img/sprite.png) no-repeat 0 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-position: -128px 0;
    display: block;
    position: absolute;
    top: -16px;
    right: -16px;
    cursor: pointer;
  }
  section#videos #light iframe {
    width: 100%;
    height: 100%;
  }
  section#videos #bientot {
    background: #444;
    width: 500px;
    margin: 50px auto;
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    text-align: center;
    padding: 5%;
    z-index: -1002;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: transform .5s ease;
    -moz-transition: transform .5s ease;
    -ms-transition: transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease;
  }
  section#videos article.forMobile {
    display: none;
  }
  section#infographies {
    background: #444;
  }
  section#infographies h1 {
    position: absolute;
    margin-top: 1%;
    margin-left: 5%;
  }
  section#infographies article {
    position: relative;
    text-align: center;
  }
  section#infographies article a.arrows {
    display: inline-block;
    margin: 0 40px;
    background: url(../img/sprite.png) no-repeat 0 0;
    width: 64px;
    height: 137px;
    border-radius: 0;
    background-position: 0 -32px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    cursor: pointer;
  }
  section#infographies article a.arrows#previous {
    opacity: 0;
    cursor: default;
  }
  section#infographies article a.arrows#next {
    opacity: 1;
    background-position: -64px -32px;
  }
  section#infographies article #slider {
    display: inline-block;
    width: 680px;
    text-align: left;
    overflow: hidden;
  }
  section#infographies article #slider ul#content {
    width: 600%;
    margin-left: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }
  section#infographies article #slider ul#content li {
    display: inline-block;
    margin: 0 20px;
  }
  section#infographies article >ul#dots {
    position: absolute;
    bottom: -50px;
    left: 46%;
  }
  section#infographies article >ul#dots li {
    background: #aaa;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
  }
  section#infographies article >ul#dots li:first-of-type {
    background: #fff;
  }
  section#contact {
    background: url(../img/logo-opacite.png) no-repeat 100% 100%;
    background-size: cover;
    position: relative;
  }
  section#contact h1 {
    position: absolute;
    margin-top: 1%;
    margin-left: 5%;
  }
  section#contact article p {
    display: block;
    width: 80%;
    margin: 50px auto 20px auto;
  }
  section#contact article p cite {
    font-weight: bold;
  }
  section#contact article >div {
    width: 70%;
    margin: 0 auto;
  }
  section#contact article >div img {
    display: inline-block;
    width: 35%;
    margin-right: 15%;
  }
  section#contact article >div form {
    display: inline-block;
    vertical-align: top;
    width: 50%;
  }
  section#contact article >div form label {
    display: block;
  }
  section#contact article >div form label span {
    font-size: .7em;
    color: #000;
    font-weight: bold;
  }
  section#contact article >div form input {
    padding: 1%;
  }
  section#contact article >div form input[type=text],
  section#contact article >div form input[type=email] {
    background: rgba(255,255,255,0.8);
    display: block;
    width: 80%;
    margin: 10px auto;
    border: 1px solid #fff;
    border-radius: 5px;
  }
  section#contact article >div form input[type=submit] {
    background: transparent;
    display: block;
    width: 20%;
    margin-left: 60%;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
  }
  section#contact article >div form input[type=submit]:hover {
    width: 25%;
    margin-left: 57.5%;
  }
  section#contact article >div form textarea {
    resize: none;
    background: rgba(255,255,255,0.8);
    display: block;
    width: 80%;
    margin: 10px auto;
    border: 1px solid #fff;
    border-radius: 5px;
    height: 100px;
    padding: 1%;
  }
  section#contact article >div form >p {
    margin: 5px;
    font-size: .8em;
    opacity: .8;
  }
  #arrowDown {
    position: absolute;
    bottom: 0;
    right: 75px;
    background: url(../img/sprite.png) no-repeat 0 0;
    width: 24px;
    height: 24px;
    border-radius: 0;
    background-position: -128px -32px;
    -webkit-animation: arrowMove 1s infinite;
    -moz-animation: arrowMove 1s infinite;
    -ms-animation: arrowMove 1s infinite;
    -o-animation: arrowMove 1s infinite;
    animation: arrowMove 1s infinite;
    -webkit-animation-fill-mode: none;
    -moz-animation-fill-mode: none;
    -ms-animation-fill-mode: none;
    -o-animation-fill-mode: none;
    animation-fill-mode: none;
  }
  #arrowDown .arrowAnimation 0%,
  #arrowDown .arrowAnimation 20%,
  #arrowDown .arrowAnimation 50%,
  #arrowDown .arrowAnimation 80%,
  #arrowDown .arrowAnimation 100% {
    bottom: 0;
  }
  #arrowDown .arrowAnimation 40% {
    bottom: 30px;
  }
  #arrowDown .arrowAnimation 60% {
    bottom: 15px;
  }
  @keyframes arrowMove {
    #arrowDown 0%,
    #arrowDown 20%,
    #arrowDown 50%,
    #arrowDown 80%,
    #arrowDown 100% {
      bottom: 0;
    }
    #arrowDown 40% {
      bottom: 30px;
    }
    #arrowDown 60% {
      bottom: 15px;
    }
  }
  @-webkit-keyframes arrowMove {
    #arrowDown 0%,
    #arrowDown 20%,
    #arrowDown 50%,
    #arrowDown 80%,
    #arrowDown 100% {
      bottom: 0;
    }
    #arrowDown 40% {
      bottom: 30px;
    }
    #arrowDown 60% {
      bottom: 15px;
    }
  }
  #arrowDown .flashAnimation 0%,
  #arrowDown .flashAnimation 50%,
  #arrowDown .flashAnimation 100% {
    opacity: 1;
  }
  #arrowDown .flashAnimation 25%,
  #arrowDown .flashAnimation 75% {
    opacity: 0;
  }
  @keyframes flash {
    #arrowDown 0%,
    #arrowDown 50%,
    #arrowDown 100% {
      opacity: 1;
    }
    #arrowDown 25%,
    #arrowDown 75% {
      opacity: 0;
    }
  }
  @-webkit-keyframes flash {
    #arrowDown 0%,
    #arrowDown 50%,
    #arrowDown 100% {
      opacity: 1;
    }
    #arrowDown 25%,
    #arrowDown 75% {
      opacity: 0;
    }
  }
  #arrowDown .bouleAnimation 100% {
    opacity: 1;
    right: 25px;
  }
  @keyframes boule {
    #arrowDown 100% {
      opacity: 1;
      right: 25px;
    }
  }
  @-webkit-keyframes boule {
    #arrowDown 100% {
      opacity: 1;
      right: 25px;
    }
  }
  footer {
    background: #333;
    text-align: center;
    overflow: hidden;
  }
  footer >ul {
    display: inline-block;
    vertical-align: top;
    margin: 30px 40px;
    text-align: left;
  }
  footer >ul h3 {
    margin: 0;
  }
  footer >ul >li a {
    color: rgba(255,255,255,0.5);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
  }
  footer >ul >li a:hover {
    color: #fff;
  }
  footer >ul:first-of-type {
    margin-top: 50px;
  }
  footer >ul:first-of-type li img {
    width: 150px;
  }
  footer >ul:last-of-type >li >ul >li {
    display: inline-block;
    margin: 3px 5px;
    background: url(../img/sprite.png) no-repeat 0 0;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background-position: 0 0;
    opacity: .5;
  }
  footer >ul:last-of-type >li >ul >li a {
    display: block;
    width: 100%;
    height: 100%;
  }  
  footer >ul:last-of-type >li >ul >li:hover {
    -webkit-animation: flash 1s 1;
    -moz-animation: flash 1s 1;
    -ms-animation: flash 1s 1;
    -o-animation: flash 1s 1;
    animation: flash 1s 1;
    -webkit-animation-fill-mode: none;
    -moz-animation-fill-mode: none;
    -ms-animation-fill-mode: none;
    -o-animation-fill-mode: none;
    animation-fill-mode: none;
    opacity: 1;
  }
  footer >ul:last-of-type >li >ul >li:hover .arrowAnimation 0%,
  footer >ul:last-of-type >li >ul >li:hover .arrowAnimation 20%,
  footer >ul:last-of-type >li >ul >li:hover .arrowAnimation 50%,
  footer >ul:last-of-type >li >ul >li:hover .arrowAnimation 80%,
  footer >ul:last-of-type >li >ul >li:hover .arrowAnimation 100% {
    bottom: 0;
  }
  footer >ul:last-of-type >li >ul >li:hover .arrowAnimation 40% {
    bottom: 30px;
  }
  footer >ul:last-of-type >li >ul >li:hover .arrowAnimation 60% {
    bottom: 15px;
  }
  @keyframes arrowMove {
    footer >ul:last-of-type >li >ul >li:hover 0%,
    footer >ul:last-of-type >li >ul >li:hover 20%,
    footer >ul:last-of-type >li >ul >li:hover 50%,
    footer >ul:last-of-type >li >ul >li:hover 80%,
    footer >ul:last-of-type >li >ul >li:hover 100% {
      bottom: 0;
    }
    footer >ul:last-of-type >li >ul >li:hover 40% {
      bottom: 30px;
    }
    footer >ul:last-of-type >li >ul >li:hover 60% {
      bottom: 15px;
    }
  }
  @-webkit-keyframes arrowMove {
    footer >ul:last-of-type >li >ul >li:hover 0%,
    footer >ul:last-of-type >li >ul >li:hover 20%,
    footer >ul:last-of-type >li >ul >li:hover 50%,
    footer >ul:last-of-type >li >ul >li:hover 80%,
    footer >ul:last-of-type >li >ul >li:hover 100% {
      bottom: 0;
    }
    footer >ul:last-of-type >li >ul >li:hover 40% {
      bottom: 30px;
    }
    footer >ul:last-of-type >li >ul >li:hover 60% {
      bottom: 15px;
    }
  }
  footer >ul:last-of-type >li >ul >li:hover .flashAnimation 0%,
  footer >ul:last-of-type >li >ul >li:hover .flashAnimation 50%,
  footer >ul:last-of-type >li >ul >li:hover .flashAnimation 100% {
    opacity: 1;
  }
  footer >ul:last-of-type >li >ul >li:hover .flashAnimation 25%,
  footer >ul:last-of-type >li >ul >li:hover .flashAnimation 75% {
    opacity: 0;
  }
  @keyframes flash {
    footer >ul:last-of-type >li >ul >li:hover 0%,
    footer >ul:last-of-type >li >ul >li:hover 50%,
    footer >ul:last-of-type >li >ul >li:hover 100% {
      opacity: 1;
    }
    footer >ul:last-of-type >li >ul >li:hover 25%,
    footer >ul:last-of-type >li >ul >li:hover 75% {
      opacity: 0;
    }
  }
  @-webkit-keyframes flash {
    footer >ul:last-of-type >li >ul >li:hover 0%,
    footer >ul:last-of-type >li >ul >li:hover 50%,
    footer >ul:last-of-type >li >ul >li:hover 100% {
      opacity: 1;
    }
    footer >ul:last-of-type >li >ul >li:hover 25%,
    footer >ul:last-of-type >li >ul >li:hover 75% {
      opacity: 0;
    }
  }
  footer >ul:last-of-type >li >ul >li:hover .bouleAnimation 100% {
    opacity: 1;
    right: 25px;
  }
  @keyframes boule {
    footer >ul:last-of-type >li >ul >li:hover 100% {
      opacity: 1;
      right: 25px;
    }
  }
  @-webkit-keyframes boule {
    footer >ul:last-of-type >li >ul >li:hover 100% {
      opacity: 1;
      right: 25px;
    }
  }
  footer >ul:last-of-type >li:last-of-type >ul >li:first-of-type {
    background-position: -64px 0;
  }  
}
@media screen and (max-device-width: 1023px) and (min-device-width: 100px) {
  .menu {
    display: none;
  }
  section {
    padding-bottom: 20px;
    text-align: center;
  }
  section#home >div img {
    width: 80%;
  }
  section#home >div >div article h1 span {
    font-style: italic;
  }
  section#home >div >div article p {
    font-size: 0.8em;
  }
  section#home >div >div >ul {
    margin-left: 3%;
    margin-top: 2%;
  }
  section#home >div >div >ul >li {
    display: inline-block;
    margin: 0 5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
  }
  section#home >div >div >ul >li a {
    display: block;
    background: url(../img/sprite.png) no-repeat 0 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-position: 0 0;
  }  
  section#home >div >div >ul >li:nth-child(2) a {
    background-position: -64px 0;
  }  
  section#presentation {
    background: #fff;
  }
  section#presentation h1 {
    color: #35a9e0;
  }
  section#videos article.forDesktop,
  section#videos #light,
  section#videos #timer,
  section#videos #fade {
    display: none;
  }
  section#videos article.forMobile ul li h2 {
    text-align: left;
    margin-bottom: 0;
    margin-left: 3%;
  }
  section#infographies {
    background: #444;
  }
  section#infographies article a.arrows#previous,
  section#infographies article a.arrows#next {
    display: none;
  }
  section#infographies article #slider ul#content li {
    width: 40%;
    display: inline-block;
    margin: 10px;
  }
  section#infographies article #slider ul#content li img {
    width: 100%;
  }
  section#infographies article ul#dots {
    display: none;
  }
  section#contact article p {
    width: 80%;
    margin: 0 auto;
    font-size: .9em;
  }
  section#contact article p cite {
    font-weight: bold;
  }
  section#contact article >div {
    width: 90%;
    margin: 0 auto;
  }
  section#contact article >div img {
    display: none;
  }
  section#contact article >div form label {
    display: none;
  }
  section#contact article >div form input {
    padding: 1%;
  }
  section#contact article >div form input[type=text],
  section#contact article >div form input[type=email] {
    background: rgba(255,255,255,0.8);
    display: block;
    width: 80%;
    margin: 10px auto;
    border: 1px solid #fff;
    border-radius: 5px;
  }
  section#contact article >div form input[type=submit] {
    background: transparent;
    display: block;
    margin: 0 auto;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
  }
  section#contact article >div form textarea {
    resize: none;
    background: rgba(255,255,255,0.8);
    display: block;
    width: 80%;
    margin: 10px auto;
    border: 1px solid #fff;
    border-radius: 5px;
    height: 75px;
    padding: 1%;
  }
  section#contact article >div form >p {
    display: none;
  }
  #arrowDown {
    display: none;
  }
  footer {
    background: #333;
    padding-top: 20px;
    text-align: center;
  }
  footer >ul {
    margin: 10px 5%;
    text-align: left;
  }
  footer >ul h3 {
    margin: 0;
  }
  footer >ul >li a {
    color: rgba(255,255,255,0.5);
  }
  footer >ul:first-of-type li {
    text-align: center;
  }
  footer >ul:first-of-type li img {
    width: 50%;
  }
  footer >ul:nth-of-type(2),
  footer >ul:nth-of-type(4) {
    display: inline-block;
    vertical-align: top;
  }
  footer >ul:nth-of-type(3) {
    display: none;
  }
  footer >ul:last-of-type {
    text-align: center;
  }
  footer >ul:last-of-type >li {
    display: inline-block;
  }
  footer >ul:last-of-type >li >ul >li {
    display: inline-block;
    margin: 3px 5px;
    background: url(../img/sprite.png) no-repeat 0 0;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background-position: 0 0;
  }
  footer >ul:last-of-type >li >ul >li a {
    display: block;
    width: 100%;
    height: 100%;
  }  
  footer >ul:last-of-type >li:last-of-type >ul >li:first-of-type {
    background-position: -64px 0;
  }  
  footer p {
    width: 90%;
    margin: 0 auto;
    font-size: .5em;
  }
}
