body, html {
  margin: 0;
  overflow: hidden;
  -webkit-transition: opacity 400ms;
  -moz-transition: opacity 400ms;
  transition: opacity 400ms;
}

body, .onepage-wrapper, html {
  display: block;
  position: static;
  padding: 0;
  width: 100%;
  height: 100%;
}

.onepage-wrapper {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  padding: 0;
  -webkit-transform-style: preserve-3d;
}

.onepage-wrapper .section {
  width: 100%;
  height: 100%;
}

.onepage-pagination {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 5;
  list-style: none;
  margin: -85px 105px 0 0;
  padding: 0;
  transition: 0.5s all ease-in-out;
}
.onepage-pagination li {
  padding: 0;
  text-align: center;
  margin-top: 5px;
  position: relative;
  color: #fff;
}

.onepage-pagination li:before {
 content: "";
  position: absolute;
  right: 40px;
  top: 10px;
  width: 100px;
  text-align: right;
  font-family: 'Oswald', serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 0.8em;
  opacity: 0;
  transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out;
  /*transition: all 0.5s ease-in-out;*/
}

.onepage-pagination li:hover:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 10px;
  width: 100px;
  text-align: right;
  font-family: 'Oswald', serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 0.8em;
  opacity: 1;


}
      .onepage-pagination li:nth-child(1):before { content: 'Accueil ' url("../img/fleche_blanche.png");  }
      .onepage-pagination.other li:nth-child(1):before { content: 'Accueil ' url("../img/fleche_noire.png"); }

      .onepage-pagination li:nth-child(2):before { content: 'Camp 1 ' url("../img/fleche_blanche.png"); }
      .onepage-pagination.other li:nth-child(2):before { content: 'Camp 1 ' url("../img/fleche_noire.png"); }

      .onepage-pagination li:nth-child(3):before { content: 'Camp 2 ' url("../img/fleche_blanche.png"); }
      .onepage-pagination.other li:nth-child(3):before { content: 'Camp 2 ' url("../img/fleche_noire.png"); }

      .onepage-pagination li:nth-child(4):before { content: 'Camp 3 ' url("../img/fleche_blanche.png"); }
      .onepage-pagination.other li:nth-child(4):before { content: 'Camp 3 ' url("../img/fleche_noire.png"); }

      .onepage-pagination li:nth-child(5):before { content: 'Camp 4 ' url("../img/fleche_blanche.png"); }
      .onepage-pagination.other li:nth-child(5):before { content: 'Camp 4 ' url("../img/fleche_noire.png"); }

      .onepage-pagination li:nth-child(6):before { content: 'Contact ' url("../img/fleche_blanche.png"); }
      .onepage-pagination.other li:nth-child(6):before { content: 'Contact ' url("../img/fleche_noire.png"); }


.onepage-pagination li a{
  padding: 10px;
  width: 4px;
  height: 4px;
  display: block;

}
/*.onepage-pagination li a:before{
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0,0,0,0.85);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

.onepage-pagination li a.active:before{
  width: 10px;
  height: 10px;
  background: none;
  border: 1px solid black;
  margin-top: -4px;
  left: 8px;
}*/
.onepage-pagination li a:before{
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #3a3a3a;
  background: none;

  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;

  transition: all 0.3s linear;
}
.onepage-pagination li a:hover:before{
  transform: scale(1.2);
}
.onepage-pagination li a.li-next:before{
  background: #ddc17a;
  width: 16px;
  height: 16px;
  border: 4px solid #3a3a3a;
  margin-top: 2px;
  margin-left: 2px;
  /*box-shadow: 0 0 1px 1px rgba(0, 0, 0, 1);*/
  background-clip: content-box;
}
.onepage-pagination li a.li-past:before{
  background: #3a3a3a;
}


.onepage-pagination li a.active:before{
  width: 20px;
  height: 20px;
  background: #ddc17a;
  border: none;
}

.disabled-onepage-scroll, .disabled-onepage-scroll .wrapper {
  overflow: auto;
}

.disabled-onepage-scroll .onepage-wrapper .section {
  position: relative !important;
  top: auto !important;
  left: auto !important;
}
.disabled-onepage-scroll .onepage-wrapper {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  transform: none !important;
  -ms-transform: none !important;
  min-height: 100%;
}


.disabled-onepage-scroll .onepage-pagination {
  display: none;
}

body.disabled-onepage-scroll, .disabled-onepage-scroll .onepage-wrapper, html {
  position: inherit;
}