body {
  margin: 0;
}

#fullpage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 950px;
  bottom: 0;
  margin: 0 0 0 -475px;
  overflow:hidden;
	transform: translate3d(0,0,0);
  z-index: 100;
}

#fullpage .section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%);
  overflow: hidden;
  padding-top: 80px;
}
#fullpage.animate .section {
  transition: all 1500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
}

#fullpage .section.visible {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#fullpage .section.top {
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
#fullpage .section * {
  -moz-transition: -moz-transform, opacity, width, height, margin;
  -webkit-transition: -webkit-transform, opacity, width, height, margin;
  transition: transform, opacity, width, height, margin;
  -moz-transition-duration: 1500ms;
  -webkit-transition-duration: 1500ms;
  transition-duration: 1500ms;
  -moz-transition-timing-function: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  -webkit-transition-timing-function: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  transition-timing-function: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  -moz-transform: scale(.8);
  -webkit-transform: scale(.8);
  transform: scale(.8);
  opacity: 0;
  backface-visibility:hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

#fullpage .section.visible * {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

#fullpage-indicator {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 10px;
  z-index: 100;
}

#fullpage-indicator .indicator-bar {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  background: #FFF200;
  margin-top: -9px;
  opacity: .2;
  z-index: 100;
  -moz-transition: all 200ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
  -webkit-transition: all 1500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
  transition: all 1500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
  backface-visibility:hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  cursor: pointer;
}
#fullpage-indicator .indicator-section {
  position: absolute;
  left: 0;
  width: 100%;
}
#fullpage-indicator .indicator-section label {
  position: absolute;
  right: -100%;
  top: 50%;
  width: auto;
  white-space: nowrap;
  text-align: right;
  margin-right: 20px;
  padding: 5px;
  border-radius: 5px;
  background: rgba(0, 0, 0, .5);
  box-shadow: 0 0 20px rgba(0, 0, 0, .8);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
}
#fullpage-indicator.draging .indicator-section.hover label {
  z-index: 200;
  opacity: 1;
}
#fullpage-indicator .indicator-bar.rolling,
#fullpage-indicator:hover .indicator-bar,
#fullpage-indicator.draging .indicator-bar {
  opacity: 1;
}
#fullpage-indicator.draging .indicator-bar {
  transition: none;
}

#fullpage #home h1 {
  font-family: AzoSansMedium;
  font-size: 61px;
}
