/* PÁGINA */
@font-face {
	font-family: 'Century';
	src: url('../fonts/CenturyGothic.ttf');
}

html, body{
	height: 100%;
	width: 100%;
	margin: 0;
	font-family: 'Century';
}

#container{
	height: 100%;
	width: 100%;
	display: table;
}

.row div, .radio{
	position: inherit;
}

input[type="radio"]{
	z-index: 1;
}

.text-j{
	text-align: justify;
	font-size: 18px !important;
}

.text-c{
	text-align: center;
	font-size: 18px !important;
}

li, label{
	font-size: 18px !important;
}

/* HEADER */

#header #nav-pc{
	position: fixed;
	width: 100%;
	height: 80px;
	background-color: #83277E;
	z-index: 99;
}

#header #nav-pc ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	float: right;
	padding: 0 150px;
}

#header #nav-pc ul li{
	color: #FFFFFF;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	float: left;
	padding: 2px;
	margin: 25px 10px;
}

#header #nav-pc ul li:hover{
	border-bottom: solid 2px #ffffff;
}

#header #nav-pc a{
	color: #FFFFFF;
	text-decoration: none;
}

#header #nav-movil{
	z-index: 99;
	display: none;
	position: fixed;
}

#header #nav-movil .btn-nav-movil{
	color: #ffffff;
	background-color: #a6e2ec;
	font-size: 70px;
	padding: 10px;
	border-radius: 70px;
	position: fixed;
	top: 10px;
	right: 10px;
	cursor: pointer;
}

#header #nav-movil #content-nav{
	position: fixed;
	display: flex;
	width: 100%;
	height: 100%;
}

#header #nav-movil #content-nav .blank-nav{
	background-color: #000000;
	opacity: 0.7;
	width: 50%;
	height: 100%;
}

#header #nav-movil #content-nav .menu-nav{
	background-color: #000000;
	width: 50%;
	height: 100%;
}

#header #nav-movil #content-nav .menu-nav span{
    color: #ffffff;
    font-size: 50px;
    top: 10px;
    left: 10px;
    position: fixed;
    cursor: pointer;
}

#header #nav-movil #content-nav .menu-nav ul{
	list-style-type: none;
	padding: 100px 0 0 0;
	margin: 0;
}

#header #nav-movil #content-nav .menu-nav ul li{
	color: #ffffff;
	font-size: 26px !important;
	text-transform: uppercase;
	padding: 10px;
}

#header #nav-movil #content-nav .menu-nav ul li a{
	color: #ffffff;
	text-decoration: none;
}

#header #nav-movil #content-nav .menu-nav ul li a:hover{
	border-bottom: solid 1px #ffffff;
}

/* CONTENIDO */

#main{
	
	vertical-align: top;
	vertical-align: text-top;
}

#main .body{
	width: 100%;
	height: 100%;
	padding: 80px 50px 0 50px;
}

#main .body h1{
	font-size: 50px;
	padding-top: 20px;
}

#main .body .title{
	font-size: 18px;
	font-weight: bold;
}

#main .body .text{
	font-size: 16px;
}

/* FOOTER */

#footer{
	display: table-row;
	height: 150px;
	background-color: #FFFFFF;
	border-top: solid 1px #D9D9D9;
}

#footer p{
	margin: auto 0;
	font-size: 10px;
	text-align: justify;
}

/* RESPONSIVE */

@media screen and (max-width: 992px){
	/* HEADER */

	#header{
		display: table-caption;
	}

	#header #nav-pc{
		display: none;
	}

	#header #nav-movil{
		display: block;
	}

	#header #nav-movil #content-nav{
		display: none;
	}

	/* CONTENIDO */

	#main .container{
		padding-top: 0;
	}

	.text-c, .text-j{
		font-size: 24px !important;
	}

	/* FOOTER */

	#footer div{
		text-align: center;
	}
}

@media screen and (max-width: 768px){
	/* HEADER */

	/* CONTENIDO */

	h1{
		font-size: 32px !important;
	}

	h2{
		font-size: 30px !important;
	}

	.text-c, .text-j, h4{
		font-size: 28px !important;
	}

	/* FOOTER */

}