.st-container {
	background-color: #fff;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.st-container > input,
.st-container > a {
	position: fixed;
	bottom: 20px;
	width: 160px;
	cursor: pointer;
	font-size: 16px;
	height: 78px;
	line-height: 78px;
}
#st-control-2{
	width: 160px;left:130px !important;z-index:11;
}
.st-container > input {
	opacity: 0;
	z-index: 1000;
}

.st-container > a {
	z-index: 10;padding: 0;background-color: transparent;
	width: 160px;left: 130px !important;
}

.st-container > a span{
	width: 160px;height: 78px;display: block;background: #017eff99;border-radius: 8px;text-indent: 30px;
	color: #fff;text-align: center;font-size: 20px;font-weight: 700;position: relative;
}
.st-container > a span::before{
	content: "";
	position: absolute;
	top: 25px;
	left: 45px;
	width: 25px;
	height: 25px;
	background: url(../images/icon05.png) no-repeat;
	background-size: 100% 100%;
}

/* "Fix" for percentage rounding: add a background bar pseudo element with the same color like the labels */
/* .st-container:before {
	content: '';
	position: fixed;
	width: 100%;
	height: 34px;
	background: #e23a6e;
	z-index: 9;
	bottom: 0;
} */

#st-control-1, #st-control-1 + a {
	left: 0;
}

#st-control-2, #st-control-2 + a {
	left: 0;
}

#st-control-3, #st-control-3 + a {
	left: 40%;
}

#st-control-4, #st-control-4 + a {
	left: 60%;
}

#st-control-5, #st-control-5 + a {
	left: 80%;
}

.st-container > input:checked + a,
.st-container > input:checked:hover + a{
	background: #821134;
}
.st-container > input:checked + a{
    display: none;
}

.st-container > input:checked + a:after,
.st-container > input:checked:hover + a:after{
	bottom: 100%;
	border: solid transparent;
	content: '';
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: #821134;
	border-width: 20px;
	left: 50%;
	margin-left: -20px;
}

.st-container > input:hover + a{
	background: transparent;
}

.st-container > input:hover + a:after {
	border-bottom-color: transparent;
}

.st-scroll,
.st-panel {
	position: relative;
	width: 100%;
	height: 100%;background-color: #000;
}

.st-scroll {
	top: 0;
	left: 0;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	/* Let's enforce some hardware acceleration */
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
}

#st-panel-2{
	background-color: #fff;
	overflow-y: auto;
	z-index:2;
} 

#st-control-1:checked ~ .st-scroll {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-o-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
}
#st-control-2:checked ~ .st-scroll {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}
#st-control-3:checked ~ .st-scroll {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-o-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
}
#st-control-4:checked ~ .st-scroll {
	-webkit-transform: translateY(-300%);
	-moz-transform: translateY(-300%);
	-o-transform: translateY(-300%);
	-ms-transform: translateY(-300%);
	transform: translateY(-300%);
}
#st-control-5:checked ~ .st-scroll {
	-webkit-transform: translateY(-400%);
	-moz-transform: translateY(-400%);
	-o-transform: translateY(-400%);
	-ms-transform: translateY(-400%);
	transform: translateY(-400%);
}


/* Content elements */

.st-deco{
	width: 200px;
	height: 200px;
	position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -100px;
	background: #fa96b5;
	-webkit-transform: translateY(-50%) rotate(45deg);
	-moz-transform: translateY(-50%) rotate(45deg);
	-o-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

[data-icon]:after {
    content: attr(data-icon);
    font-family: 'RaphaelIcons';
    color: #fff;
	text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
	position: absolute;
	width: 200px;
	height: 200px;
	line-height: 200px;
	text-align: center;
	font-size: 90px;
	top: 50%;
	left: 50%;
	margin: -100px 0 0 -100px;
	-webkit-transform: rotate(-45deg) translateY(25%);
	-moz-transform: rotate(-45deg) translateY(25%);
	-o-transform: rotate(-45deg) translateY(25%);
	-ms-transform: rotate(-45deg) translateY(25%);
	transform: rotate(-45deg) translateY(25%);
}

.st-panel > h2 {
	z-index: 9999;
    display: inline-block;
	color: #e23a6e;
	text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
	position: absolute;
	font-size: 54px;
	font-weight: 900;
	width: 30%;
	left: 50%;
    margin-left: -15%;
	text-align: center;
	line-height: 50px;
	padding: 0;
	top: 30px;
	-webkit-backface-visibility: hidden;
	-webkit-animation: moveDown 1s ease-in-out 0.2s backwards;
	-moz-animation: moveDown 1s ease-in-out 0.2s backwards;
	-o-animation: moveDown 1s ease-in-out 0.2s backwards;
	-ms-animation: moveDown 1s ease-in-out 0.2s backwards;
	animation: moveDown 1s ease-in-out 0.2s backwards;
}
.st-panel > h2 img{
	width: 100%;
}

#st-control-1:checked ~ .st-scroll #st-panel-1 h2,
#st-control-2:checked ~ .st-scroll #st-panel-2 h2,
#st-control-3:checked ~ .st-scroll #st-panel-3 h2,
#st-control-4:checked ~ .st-scroll #st-panel-4 h2,
#st-control-5:checked ~ .st-scroll #st-panel-5 h2{
	-webkit-animation: moveDown 1s ease-in-out 0.2s backwards;
	-moz-animation: moveDown 1s ease-in-out 0.2s backwards;
	-o-animation: moveDown 1s ease-in-out 0.2s backwards;
	-ms-animation: moveDown 1s ease-in-out 0.2s backwards;
	animation: moveDown 1s ease-in-out 0.2s backwards;
}
#st-control-2:checked ~ .st-scroll #st-panel-2 .header{
	-webkit-animation: moveDown 1s ease-in-out .2s backwards;
	-moz-animation: moveDown 1s ease-in-out .2s backwards;
	-o-animation: moveDown 1s ease-in-out .2s backwards;
	-ms-animation: moveDown 1s ease-in-out .2s backwards;
	animation: moveDown 1s ease-in-out .2s backwards;
}
#st-control-2:checked ~ .st-scroll #st-panel-2 .logo{
	-webkit-animation: moveDown 1s ease-in-out 1s backwards;
	-moz-animation: moveDown 1s ease-in-out 1s backwards;
	-o-animation: moveDown 1s ease-in-out 1s backwards;
	-ms-animation: moveDown 1s ease-in-out 1s backwards;
	animation: moveDown 1s ease-in-out 1s backwards;
}
#st-control-2:checked ~ .st-scroll #st-panel-2 .main{
	-webkit-animation: moveCity 1s ease-in-out 1.5s backwards;
	-moz-animation: moveCity 1s ease-in-out 1.5s backwards;
	-o-animation: moveCity 1s ease-in-out 1.5s backwards;
	-ms-animation: moveCity 1s ease-in-out 1.5s backwards;
	animation: moveCity 1s ease-in-out 1.5s backwards;
}
.main-box .header.moveDown{
	-webkit-animation: moveDown 1s ease-in-out .2s backwards;
	-moz-animation: moveDown 1s ease-in-out .2s backwards;
	-o-animation: moveDown 1s ease-in-out .2s backwards;
	-ms-animation: moveDown 1s ease-in-out .2s backwards;
	animation: moveDown 1s ease-in-out .2s backwards;
}
.main-box .logo.moveDown{
	-webkit-animation: moveDown 1s ease-in-out 1s backwards;
	-moz-animation: moveDown 1s ease-in-out 1s backwards;
	-o-animation: moveDown 1s ease-in-out 1s backwards;
	-ms-animation: moveDown 1s ease-in-out 1s backwards;
	animation: moveDown 1s ease-in-out 1s backwards;
}
.main.moveCity{
	-webkit-animation: moveCity 1s ease-in-out 1.5s backwards;
	-moz-animation: moveCity 1s ease-in-out 1.5s backwards;
	-o-animation: moveCity 1s ease-in-out 1.5s backwards;
	-ms-animation: moveCity 1s ease-in-out 1.5s backwards;
	animation: moveCity 1s ease-in-out 1.5s backwards;
}
@-webkit-keyframes moveDown{
	0% { 
		-webkit-transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}
@-webkit-keyframes moveUp{
	0% { 
		-webkit-transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}
@-webkit-keyframes moveCity{
	0% { 
		opacity: 0;
	}
	100% {  
		opacity: 1;
	}
}
/* 
.st-panel p {
	position: absolute;
	text-align: center;
	font-size: 16px;
	line-height: 22px;
	color: #8b8b8b;
	z-index: 2;
	padding: 0;
	width: 50%;
	left: 25%;
	top: 50%;
	margin: 10px 0 0 0;
	-webkit-backface-visibility: hidden;
} */
#st-control-1:checked ~ .st-scroll #st-panel-1 p,
#st-control-2:checked ~ .st-scroll #st-panel-2 p,
#st-control-3:checked ~ .st-scroll #st-panel-3 p,
#st-control-4:checked ~ .st-scroll #st-panel-4 p,
#st-control-5:checked ~ .st-scroll #st-panel-5 p{
	-webkit-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	-moz-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	-o-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	-ms-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	animation: moveUp 0.6s ease-in-out 0.2s backwards;
}
#st-control-2 + a{
    -webkit-animation: moveUp 1s ease-in-out 0.8s backwards;
	-moz-animation: moveUp 1s ease-in-out 0.8s backwards;
	-o-animation: moveUp 1s ease-in-out 0.8s backwards;
	-ms-animation: moveUp 1s ease-in-out 0.8s backwards;
	animation: moveUp 1s ease-in-out 0.8s backwards;
}
.start_nav{
    -webkit-animation: moveUp 1s ease-in-out 0.8s backwards;
	-moz-animation: moveUp 1s ease-in-out 0.8s backwards;
	-o-animation: moveUp 1s ease-in-out 0.8s backwards;
	-ms-animation: moveUp 1s ease-in-out 0.8s backwards;
	animation: moveUp 1s ease-in-out 0.8s backwards;
}

@-webkit-keyframes moveUp{
	0% { 
		-webkit-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}

@-moz-keyframes moveUp{
	0% { 
		-moz-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-moz-transform: translateY(0px);  
		opacity: 1;
	}
}

@-o-keyframes moveUp{
	0% { 
		-o-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-o-transform: translateY(0px);  
		opacity: 1;
	}
}

@-ms-keyframes moveUp{
	0% { 
		-ms-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-ms-transform: translateY(0px);  
		opacity: 1;
	}
}

@keyframes moveUp{
	0% { 
		transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		transform: translateY(0px);  
		opacity: 1;
	}
}

/* Colored sections */

.st-color,
.st-deco{
	background: #fa96b5;
}
.st-color [data-icon]:after {
	color: #fa96b5;
}
.st-color .st-deco {
	background: #fff;
}
.st-color h2 {
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
} 
.st-color p {
	color: #fff;
	color: rgba(255,255,255,0.8);
}
