/*@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700);
@import url(http://fonts.googleapis.com/css?family=Alegreya+Sans:300,400,700);*/

/* ICON STYLES - ICON FROM: http://fontastic.me/
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@font-face {
	font-family: "untitled-font-1";
	src: url("../fonts/untitled-font-1.eot");
	src: url("../fonts/untitled-font-1.eot?#iefix")
		format("embedded-opentype"), url("../fonts/untitled-font-1.woff")
		format("woff"), url("../fonts/untitled-font-1.ttf") format("truetype"),
		url("../fonts/untitled-font-1.svg#untitled-font-1") format("svg");
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"]:after, [class*=" icon-"]:after {
	font-family: "untitled-font-1";
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	speak: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-up-open-big:after {
	content: "a";
	font-size: 2.5em;
	display: block;
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
	color: black;
	-webkit-transition: color .3s;
	transition: color .3s;
}

.icon-up-open-big:hover:after {
	color: white;
}

.scroll-icon {
	position: absolute;
	left: 50%;
	bottom: 30px;
	padding: 0 10px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.scroll-icon a {
	display: inline-block;
	text-decoration: none;
}

.scroll-icon p {
	text-transform: uppercase;
}

/* HELPER CLASSES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

.l-left {
	float: left;
}

.l-right {
	float: right;
}

.end {
	margin-top: 30px;
	font-size: 3em;
	font-weight: bold;
	opacity: 0;
	-webkit-transform: translateY(300px);
	-ms-transform: translateY(300px);
	transform: translateY(300px);
	-webkit-transition: opacity, -webkit-transform 1s;
	transition: opacity, transform 1s;
	-webkit-transition-delay: 1s;
	transition-delay: 1s;
}

/* RESET-GENERAL STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
* {
	margin: 0;
	padding: 0;
	font-family: 'Ubuntu', 'Alegreya Sans', Arial, sans-serif;
	/*text-transform: uppercase;*/
	font-weight: 300;
}

html {
	
}

body {
	color: black;
	letter-spacing: .18em;
}

a {
	text-decoration: none;
	color: white;
}

ul, li {
	list-style-type: none;
}

/* NAV STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header-top {
	background: rgba(0, 47, 77, .3);
	height: 70px;
	padding: 0 10px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 12;
	box-sizing: border-box;
}

.fp-tableCell .content {
	padding-top: 70px;
}

h1 {
	line-height: 70px;
	line-height: 51px;
	height: 70px;
	color: white;
}

h1 a {
	display: block;
	padding: 0 10px;
}

.toggle-menu {
	width: 50px;
	height: 50px;
	display: inline-block;
	position: relative;
	top: 10px;
}

.toggle-menu i {
	position: absolute;
	display: block;
	height: 2px;
	background: white;
	width: 30px;
	left: 10px;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.toggle-menu i:nth-child(1) {
	top: 16px;
}

.toggle-menu i:nth-child(2) {
	top: 24px;
}

.toggle-menu i:nth-child(3) {
	top: 32px;
}

.open-menu i:nth-child(1) {
	top: 25px;
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}

.open-menu i:nth-child(2) {
	background: transparent;
}

.open-menu i:nth-child(3) {
	top: 25px;
	-webkit-transform: rotateZ(-45deg);
	transform: rotateZ(-45deg);
}

nav {
	height: 0;
	opacity: 0;
	box-sizing: border-box;
	background: rgba(0, 47, 77, .25);
	position: fixed;
	top: 70px;
	width: 100%;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	/*z-index: 16 !important;*/
}

.open-menu ~ nav {
	opacity: 1;
	z-index: 15;
}

nav ul {
	padding: 0 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	background: rgba(255, 255, 255, 0.9);
}

nav li {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

nav li a {
	display: block;
	padding: 10px;
	text-align: center;
	-webkit-transition: background .3s;
	transition: background .3s;
}

/* SECTION STYLES - fullPage.js 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
section {
	text-align: center;
	/*background: url('https://unsplash.it/1910/1221?image=626') no-repeat center / cover;*/
}

h1 {
	
}

h2 {
	font-weight: 700
}

h3, .visualCaptcha-explanation {
	font-weight: 300;
}

@media screen and (max-width: 768px) {
	h2 {
		margin-bottom: 20px;
	}
	
	.landscape h2 {
		margin-bottom: 0;
	}
}

/* SLIDENAV STYLES - fullPage.js 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#fp-nav ul li a span, .fp-slidesNav ul li a span {
	background: white;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
}

#fp-nav ul li a.active span, .fp-slidesNav ul li a.active span, #fp-nav ul li:hover a.active span,
	.fp-slidesNav ul li:hover a.active span {
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	background: transparent;
	box-sizing: border-box;
	border: 1px solid #24221F;
	border: 1px solid #fff;
}

/* CUSTOM STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header-top img {
	height: 40px;
	margin-top: 5px;
}

.input-code {
	border: none;
	border-bottom: 3px solid black;
	background-color: transparent;
	text-align: center;
	outline: none;
	box-shadow: none;
	border-radius: 0;
	text-shadow: none;
	color: black;
	margin-top: 30px;
}

.input-code:focus {
	border: none !important;
	border-bottom: 3px solid black !important;
	background-color: transparent;
	text-align: center;
	outline: none !important;
	box-shadow: none !important;
	background-color: rgba(0, 0, 0, 1);
	color: white;
	border-radius: 0;
	text-shadow: none;
}

.input-code:hover {
	background-color: rgba(0, 0, 0, .3);
}

.accessibility-description, .status.valid, .visualCaptcha-explanation {
	background-color: transparent;
	font-family: inherit;
	color: black;
	margin: 20px 0 24px;
}

.visualCaptcha-possibilities .img {
	padding: 10px;
	border: none;
	border-radius: 200px;
}

.visualCaptcha-possibilities .visualCaptcha-selected {
	background-color: white;
}

.visualCaptcha-refresh-button {
	padding: 12px;
	margin: 0 5px;
	background-color: transparent;
	border: 1px solid #f87056;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	border: 1px solid #000;
}

.visualCaptcha-accessibility-button {
	padding: 12px;
	border: 1px solid #000;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
}

@media screen and (max-width: 768px) {
	.visualCaptcha-possibilities {
		margin-bottom: 10px;
	}
	.visualCaptcha-possibilities img {
		width: 50px;
		height: 50px;
	}
}

.visualCaptcha .audioField {
	width: calc(100% - 100px);
}

section:nth-of-type(1) {
	background: url(../img/background.jpg) no-repeat center/cover;
}

#fp-nav a{
	cursor: normal;
	pointer-events: none;
}

/********** Machaco las siguientes clases de bootstrap para arreglar conflicto con el fullpage ************/
.row {
	margin-right: 0px;
	margin-left: 0px;
}

.form-horizontal .form-group {
	margin-right: 0px;
	margin-left: 0px;
}

/* MQ STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 767px) {
	nav ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	nav li {
		margin-top: 1px;
	}
	.scroll-icon {
		display: none;
	}
}

@media screen and (max-width: 400px) {
	.open-menu ~ nav {
		padding: 20px 0;
	}
	nav li a {
		padding: 3px;
	}
}