body{
	font-family: Georgia, serif;
	background: #ddd;
	font-weight: 400;
	font-size: 15px;
	color: #333;
	overflow: hidden;
	-webkit-font-smoothing: antialiased;
}
a{
	color: #555;
	text-decoration: none;
}
.clr{
	clear: both;
	padding: 0;
	height: 0;
	margin: 0;
}

.st-container {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	font-family: 'Josefin Slab', 'Myriad Pro', Arial, sans-serif;
}

.st-container > input,
.st-container > a {
	position: fixed;
	/*bottom: 0px;*/
	width: 20%;
	cursor: pointer;
	font-size: 16px;
	height: 34px;
	line-height: 34px;
}

.st-container > input {
	opacity: 0;
	z-index: 1000;
}

.st-container > a {
	z-index: 10;
	font-weight: 700;
	background: #02a1d4;
	color: #fff;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
}

/* "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: 0px;/*CAMBIAR 34*/
	background: #e23a6e;
	z-index: 9;
	bottom: 0;
}

#st-control-1, #st-control-1 + a {
	left: 0;
}

#st-control-2, #st-control-2 + a {
	left: 20%;
}

#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: #0071a3;
}

.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: #0071a3;
	border-width: 30px;
	left: 50%;
	margin-left: -30px;
	margin-top:30px;
	-webkit-transform:rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.st-container > input:hover + a{
	background: #06ace3;
}

.st-container > input:hover + a:after {
	border-bottom-color: #AD244F;
}

.st-scroll,
.st-panel {
	position: relative;
	width: 100%;
	height: 100%;
}

.st-scroll {
	top: 30px;
	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{
	background: #fff;
	overflow: hidden;
} 

#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%);
}

.st-content h2 {
	color: #06ace3;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.75);
	position: absolute;
	font-size: 54px;
	font-weight: 900;
	width: 80%;
	left: 5%;
	text-align: left;
	line-height: 50px;
	margin: -70px 0 0 0;
	padding: 0;
	top: 30%;
	-webkit-backface-visibility: hidden;
}

#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 0.6s ease-in-out 0.2s backwards;
	-moz-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-o-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-ms-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	animation: moveDown 0.6s ease-in-out 0.2s backwards;
	
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
@-webkit-keyframes moveDown{
	0% { 
		-webkit-transform: translateY(-80px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}

@-moz-keyframes moveDown{
	0% { 
		-moz-transform: translateY(-80px); 
		opacity: 0;
	}
	100% { 
		-moz-transform: translateY(0px);  
		opacity: 1;
	}
}

@-o-keyframes moveDown{
	0% { 
		-o-transform: translateY(-80px); 
		opacity: 0;
	}
	100% { 
		-o-transform: translateY(0px);  
		opacity: 1;
	}
}

@-ms-keyframes moveDown{
	0% { 
		-ms-transform: translateY(-80px); 
		opacity: 0;
	}
	100% { 
		-ms-transform: translateY(0px);  
		opacity: 1;
	}
}

@keyframes moveDown{
	0% { 
		transform: translateY(-80px); 
		opacity: 0;
	}
	100% { 
		transform: translateY(0px);  
		opacity: 1;
	}
}

.text-content {
	position: absolute;
	text-align: left;
	font-size: 18px;
	line-height: 22px;
	color: white;
	z-index: 2;
	padding: 0;
	width: 50%;
	left: 5%;
	top: 30%;
	margin: 10px 0 0 0;
	/*-webkit-backface-visibility: hidden;*/
	
	color: #333;
	background-color:rgba(255,255,255,0.6);
	padding:15px;
	border-radius:3px;
	max-height:55%;
	overflow:auto;
}
.text-content h3{
	color: #666;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.0);
	position: relative;
	font-size: 34px;
	font-weight: 900;
	text-align: left;
	line-height: 30px;
	padding: 0;
	margin:0px 0 10px 0;
}

#st-control-1:checked ~ .st-scroll #st-panel-1 .text-content,
#st-control-2:checked ~ .st-scroll #st-panel-2 .text-content,
#st-control-3:checked ~ .st-scroll #st-panel-3 .text-content,
#st-control-4:checked ~ .st-scroll #st-panel-4 .text-content,
#st-control-5:checked ~ .st-scroll #st-panel-5 .text-content{
	-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;
	
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

@-webkit-keyframes moveUp{
	0% { 
		-webkit-transform: translateY(80px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}

@-moz-keyframes moveUp{
	0% { 
		-moz-transform: translateY(80px); 
		opacity: 0;
	}
	100% { 
		-moz-transform: translateY(0px);  
		opacity: 1;
	}
}

@-o-keyframes moveUp{
	0% { 
		-o-transform: translateY(80px); 
		opacity: 0;
	}
	100% { 
		-o-transform: translateY(0px);  
		opacity: 1;
	}
}

@-ms-keyframes moveUp{
	0% { 
		-ms-transform: translateY(80px); 
		opacity: 0;
	}
	100% { 
		-ms-transform: translateY(0px);  
		opacity: 1;
	}
}

@keyframes moveUp{
	0% { 
		transform: translateY(80px); 
		opacity: 0;
	}
	100% { 
		transform: translateY(0px);  
		opacity: 1;
	}
}

.redes-sociales{
	position:fixed;
	color:white;
	top:85%;
	left:calc(100% - 460px);
	z-index:2;
	margin:5px;
}
.redes-sociales img{
	width:70px;
	margin:5px;
	border-radius:100%;
	background-color:#02a1d4;
	border:0px solid #FFF;
}

/*#facebook{
	background-color:#2a3d79;
}
#twitter{
	background-color:#02a1d4;
}
#google{
	background-color:red;
}*/

.redes-sociales a:hover img{
	-webkit-animation: anima-redes-sociales 1s ease-out 1;
	  -moz-animation: anima-redes-sociales 1s ease-out 1;
	  -ms-animation: anima-redes-sociales 1s ease-out 1;
	  -o-animation: anima-redes-sociales 1s ease-out 1;
	  animation: anima-redes-sociales 1s ease-out 1;
}
@-webkit-keyframes anima-redes-sociales {
  0%{ -webkit-transform: scale(1.0) }
  30% {
  	-webkit-filter:blur(5px);
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
	
	 }
}

@media screen and (max-width: 1100px) {
	.st-panel h2 {
		top:20%;
	}
	.text-content{
		top:20%;
	}
}
@media screen and (max-width: 620px) {
	.st-panel h2 {
		font-size: 42px;
		top:20%;
	}
	.st-panel p {
		width: 90%;
		left: 5%;
		margin-top: 0;
	}
	
	.st-container > a {
		font-size: 13px;
	}
	
	.redes-sociales{
		top: calc(100% - 80px);
		left:calc(100% - 350px);
	}
	.redes-sociales img{
		width:60px;
		margin:2px;
	}
	.text-content{
		top:20%;
		width:70%;
	}
}
@media screen and (max-width: 360px) {
	.st-container > a {
		font-size: 10px;
	}
}

#st-control-1:checked ~ .st-scroll  > .st-panel > #st-back1{
	-webkit-animation: bouncedelay 4s ease-in-out 1;
	-moz-animation: bouncedelay 4s ease-in-out 1;
	-ms-animation: bouncedelay 4s ease-in-out 1;
	-o-animation: bouncedelay 4s ease-in-out 1;
	animation: bouncedelay 4s ease-in-out 1;
}
#st-control-2:checked ~ .st-scroll  > .st-panel > #st-back2{
	-webkit-animation: bouncedelay2 4s ease-in-out 1;
	-moz-animation: bouncedelay2 4s ease-in-out 1;
	-ms-animation: bouncedelay2 4s ease-in-out 1;
	-o-animation: bouncedelay2 4s ease-in-out 1;
	animation: bouncedelay2 4s ease-in-out 1;
	
	-webkit-filter:grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
#st-control-3:checked ~ .st-scroll  > .st-panel > #st-back3{
	-webkit-animation: bouncedelay3 2s ease-in-out 1;
	-moz-animation: bouncedelay3 2s ease-in-out 1;
	-ms-animation: bouncedelay3 2s ease-in-out 1;
	-o-animation: bouncedelay3 2s ease-in-out 1;
	animation: bouncedelay3 2s ease-in-out 1;
	
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
	
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
#st-control-4:checked ~ .st-scroll  > .st-panel > #st-back4{
	-webkit-animation: bouncedelay4 3s ease-in-out 1;
	-moz-animation: bouncedelay4 3s ease-in-out 1;
	-ms-animation: bouncedelay4 3s ease-in-out 1;
	-o-animation: bouncedelay4 3s ease-in-out 1;
	animation: bouncedelay4 3s ease-in-out 1;
	
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
	
	-webkit-filter:blur(0px);
	-moz-filter: blur(0px);
	-ms-filter: blur(0px);
	-o-filter: blur(0px);
	filter: blur(0px);
}
#st-control-5:checked ~ .st-scroll  > .st-panel > #st-back5{
	-webkit-animation: bouncedelay5 3s ease-in-out 1;
	-moz-animation: bouncedelay5 3s ease-in-out 1;
	-ms-animation: bouncedelay5 3s ease-in-out 1;
	-o-animation: bouncedelay5 3s ease-in-out 1;
	animation: bouncedelay5 3s ease-in-out 1;
	
	-webkit-transform: scale(1.0);
	-moz-transform: scale(1.0);
	-ms-transform: scale(1.0);
	-o-transform: scale(1.0);
	transform: scale(1.0);
	
	-webkit-filter:blur(0px);
	-moz-filter: blur(0px);
	-ms-filter: blur(0px);
	-o-filter: blur(0px);
	filter: blur(0px);
}

.iframe{
	background-color:black;
}

.st-content{
	z-index:2;
	position:absolute;
	width: 100%;
	height: 100%;
}

.st-back{
	z-index:0;
	position: absolute;/*relative*/
	top: 0;
	bottom: 100%;
	left: 0;
	width:100%;
	height:100vh;
	background:url(../images/background.jpg) no-repeat center center;
    background-position: 50% 50%;
    background-repeat: none;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
	background-size: cover;
	/*-webkit-animation: bouncedelay 5.4s 1 ease-in-out;
	  animation: bouncedelay 5.4s 1 ease-in-out;
	  -webkit-animation-delay: 2s; 
	  animation-delay: 2s; */
}
@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(1.0) }
  40% { -webkit-transform: scale(1.2) rotate(2deg) }
}
@-moz-keyframes bouncedelay{
	0%, 80%, 100% { -moz-transform: scale(1.0) }
 	40% { -moz-transform: scale(1.2) rotate(2deg)}
}
@-o-keyframes bouncedelay{
	0%, 80%, 100% { -o-transform: scale(1.0) }
 	40% { -o-transform: scale(1.2) rotate(2deg)}
}
@-ms-keyframes bouncedelay{
	0%, 80%, 100% { -ms-transform: scale(1.0) }
 	40% { -ms-transform: scale(1.2) rotate(2deg)}
}
@keyframes bouncedelay{
	0%, 80%, 100% { transform: scale(1.0) }
 	40% { transform: scale(1.2) rotate(2deg)}
}



@-webkit-keyframes bouncedelay2 {
  	0%{ -webkit-transform: scale(1.0);
	-webkit-filter: grayscale(0%)}
}
@-moz-keyframes bouncedelay2{
	 0%{ -moz-transform: scale(1.0);
	-moz-filter: grayscale(0%)}
}
@-o-keyframes bouncedelay2{
	 0%{ -o-transform: scale(1.0);
	-o-filter: grayscale(0%)}
}
@-ms-keyframes bouncedelay2{
	 0%{ -ms-transform: scale(1.0);
	-ms-filter: grayscale(0%)}
}
@keyframes bouncedelay2{
	 0%{ transform: scale(1.0);
	filter: grayscale(0%)}
}




@-webkit-keyframes bouncedelay3 {
  50%{left: 20px;
	-webkit-transform: scale(1.15)}
}
@-moz-keyframes bouncedelay3{
	 50%{left: 20px;
	-moz-transform: scale(1.15)}
}
@-o-keyframes bouncedelay3{
	 50%{left: 20px;
	-o-transform: scale(1.15)}
}
@-ms-keyframes bouncedelay3{
	 50%{left: 20px;
	-ms-transform: scale(1.15)}
}
@keyframes bouncedelay3{
	 50%{left: 20px;
	transform: scale(1.15)}
}



@-webkit-keyframes bouncedelay4 {
  	0%{-webkit-filter:blur(5px);
	-webkit-transform: scale(1);}
}
@-moz-keyframes bouncedelay4{
	0%{-moz-filter:blur(5px);
	-moz-transform: scale(1);}
}
@-o-keyframes bouncedelay4{
	 0%{-o-filter:blur(5px);
	-o-transform: scale(1);}
}
@-ms-keyframes bouncedelay4{
	0%{-ms-filter:blur(5px);
	-ms-transform: scale(1);}
}
@keyframes bouncedelay4{
	0%{filter:blur(5px);
	transform: scale(1);}
}



@-webkit-keyframes bouncedelay5 {
  0%{-webkit-filter:blur(5px);
	-webkit-transform: scale(1.1);}
}
@-moz-keyframes bouncedelay5{
	0%{-moz-filter:blur(5px);
	-moz-transform: scale(1.1);}
}
@-o-keyframes bouncedelay5{
	0%{-o-filter:blur(5px);
	-o-transform: scale(1.1);}
}
@-ms-keyframes bouncedelay5{
	0%{-ms-filter:blur(5px);
	-ms-transform: scale(1.1);}
}
@keyframes bouncedelay5{
	0%{filter:blur(5px);
	transform: scale(1.1);}
}
