.js .pages-stack {
	z-index: 100;
	pointer-events: none;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% -50%;
	perspective-origin: 50% -50%;
	
}

.js .page {
	position: relative;
	z-index: 5;
	overflow: hidden;
	width: 100%;
	height: 1550px;
	pointer-events: auto;
	background-image: url(../../images/soty.png);
	background-color:#204066;
	box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
}

.js .pages-stack--open .page {
	cursor: pointer;
	-webkit-transition: -webkit-transform 0.45s, opacity 0.45s;
	transition: transform 0.45s, opacity 0.45s;
	-webkit-transition-timing-function: cubic-bezier(0.6, 0, 0.4, 1);
	transition-timing-function: cubic-bezier(0.6, 0, 0.4, 1);
	margin-top:0px;
}

.js .page--inactive {
	position: absolute;
	z-index: 0;
	top: 0;
	opacity: 0;
	margin-top:-1550px;
	
	
}