* {
	margin: 0;
}

html, body {
	width:	100vw;
	height: 100vh;

}
.logo{
  position: fixed;
	left:50px;
	top:50px;
	z-index: 45;
}
.logo img{
  width: 20vw;
  height: auto;
}
.kinetic{
	width: 100vw;
	height: 100vh;

}

.slider {
	width: 100vw;
	height: 100vh;

	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.pic {
	height: 100vh;
	display: inline-block;
	margin: 0 -.25em 0 0;
	vertical-align: top;
}


.wrapperInfo{

}
#info{
	vertical-align: top;

	background: #692AB2;
	text-align: right;
	top: 0;
	right: 0;
	clear: both;

	position: relative;
	height: 100vh;
	padding: 35% 50px 5% 190px;

}
.textInfos {
	font-family: 'choloregular';
	font-size: 4em;
	z-index: 150;
	color:#FFFD39;
	-moz-user-select:none;
	right: 0;
	margin-left: 25px;
	position: relative;
	background:#692AB2;
}
.textInfos2 {
	font-family: "choloregular",sans-serif;
	font-size: 1.5em;
	z-index: 149;
	color:#FFFD39;
	line-height:1;
	right: 0;
	margin-left: 25px;
	position: relative;
	background:#692AB2;
	-moz-user-select:none;
}
/*WayPoints Style*/
.container{
	width: 100vw;
	height: 100vh;
	overflow-x: visible;
	overflow-y: hidden;
	white-space: nowrap;
	overflow: hidden;
}
.icon{
	color: #321749;
	font-family: "choloregular",sans-serif;
	font-size: 1em;

	position: fixed;
	bottom:2%;
	left: 45%;
	z-index: 45;
	display: block;
	opacity: 1;
	transition: opacity 200ms ease 0ms;
}


.iconOff{
	color: #321749;
	font-family: "choloregular",sans-serif;
	font-size: 1.5em;
	position: fixed;
	bottom:2%;
	left: 45%;
	z-index: 100;
	display: block;
	opacity: 0;
	transition: opacity 200ms ease 0ms;

}

.links{
	position: fixed;
	top: 50%;
	margin-top: -1em;
	z-index: 45;
	display: block;
	color: #321749;
	font-family: 'choloregular';
	font-size: 0.7em;
	text-decoration: none;
	-moz-user-select:none;

}
.previous{
	color: #321749;
	font-family: 'choloregular';
	font-size: 3em;
	text-decoration: none;
	z-index: 45;
	opacity: 0;
	transition: opacity 500ms ease 0ms;
	cursor: move;
	position: fixed;
	left: 2vh;
	-moz-user-select:none;
}

.previousVisible{
	position: fixed;
	left: 2vh;
	color: #321749;
	font-family: 'choloregular';
	font-size: 3em;
	text-decoration: none;
	opacity: 1;
	transition: opacity 500ms ease 0ms;
	cursor: pointer;
	-moz-user-select:none;
}
.next{
	position: fixed;
	color: #321749;
	font-family: 'choloregular';
	font-size: 3em;
	text-decoration: none;
	right: -95vw;
	top: 50%;
	margin-top: -1em;
	z-index: 100;
	display: block;
	opacity: 0;
	transition: opacity 500ms ease 0ms;
	cursor: move;
	margin-top: 0;
	-moz-user-select:none;
}
.nextVisible{
	position: relative;
	color: #321749;
	font-family: 'choloregular';
	font-size: 3em;
	text-decoration: none;
	right: -95vw;
	opacity: 1;
	transition: opacity 500ms ease 0ms;
	cursor: pointer;
	margin-top: 0;
	-moz-user-select:none;
}

/*Nav*/
.button_container {
  position: fixed;
  top: 5%;
  right: 5%;
	width: 35px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
}

.button_container:hover {
  opacity: .7;
}
.button_container.active .top {
  -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
          transform: translateY(10px) translateX(0) rotate(45deg);
  background: #321749;
}
.button_container.active .middle {
  opacity: 0;
  background: #321749;
}
.button_container.active .bottom {
  -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
          transform: translateY(-10px) translateX(0) rotate(-45deg);
  background: #321749;
}
.button_container span {
  background: #321749;
  border: none;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 10px;
}
.button_container span:nth-of-type(3) {
  top: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: hidden;
  -webkit-transition: opacity .35s, visibility .35s, width .35s;
  transition: opacity .35s, visibility .35s, width .35s;
  z-index: 50;
}
.overlay:before {
  content: '';
  background: #9d1d81;
  left: -55%;
  top: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  -webkit-transition: left .35s ease;
  transition: left .35s ease;
}
.overlay:after {
  content: '';
  background: #9d1d81;
  right: -55%;
  top: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.overlay.open:before {
  left: 0;
}
.overlay.open:after {
  right: 0;
}
.overlay.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
        animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
        animation-delay: .35s;
}
.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: .45s;
        animation-delay: .45s;
}
.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: .55s;
        animation-delay: .55s;
}
.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: .65s;
        animation-delay: .65s;
}
.overlay nav {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  		transform: translateY(-50%);
  font-size: 50px;
  font-family: 'choloregular';
  font-weight: 400;
  text-align: center;
  z-index: 100;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.overlay ul li {
  display: block;
  height: 50%;
  height: calc(100% / 4);
  min-height: 50px;
  position: relative;
  opacity: 0;
  padding-bottom: 50px;
}
.overlay ul li a {
  display: block;
  position: relative;
  color: #321749;
  text-decoration: none;
  overflow: hidden;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}
.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 3px;
  background: #321749;
  -webkit-transition: .35s;
  transition: .35s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
/*cores:
roxo: #A455FF;
roxo claro: #B16FFF;
roxo escuro: #692AB2;
amarelo escuro: #B2B262;
amarelo: #FFFD39;
