/* AJUSTES BASICOS */

* {
	margin: 0;
	padding: 0;
	border: 0
}

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

li {
	list-style: none;
	display: inline-block;
}

body {
	background-color: #1a171b;
}

header{
	position: relative;
}

h1{
	font-size: 100px;
	color: #7fffff;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	font-style: italic;
	padding: 10px 0;
	border-top: 2px solid #7fffff;
	border-bottom: 2px solid #7fffff;
	display: inline-block;
	margin: 0 auto;
}

h2{
	color: white;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	font-size: 36px;
	padding-top: 20px;
}

.container{
	width: 900px;
	position: relative;
	text-align: center;
	margin: 0 auto;
	height: 100%;
}

/* HEADER */

header .transparencia{
	width: 100%;
	height: 20px;
	background-color: rgba(255,255,255,0.3);
	position: absolute;
	bottom: -10px;
}

.logo-wrapper{
	padding: 20px 0;
}

nav{
	background-color: rgba(255,255,255,0.1);
	padding: 10px 0 20px;
}

nav ul li {
	color: white;
	padding: 0px 25px;
	border-right: 1px solid white;
}

nav ul li:last-of-type{
	border: 0;
}

nav ul li.active{
	color: #7fffff;
}

nav ul li a{
	font-family: 'Roboto Slab', serif;
	font-style: italic;
	font-size: 16px;
}

nav ul li a:hover{
	color: #7fffff;
	cursor: pointer;
}

.submenu{
	width: 100%;
	background-color: #302D31;
	margin-top: 0;
	border-top: 1px solid white;

}

.submenu ul{
	margin: 0 auto;
}

.submenu li{
	font-size: 12px;
	color: white;
	padding: 10px;
	font-family: 'Noto Sans';
}

.submenu li.active{
	color: #7fffff;
}

.submenu li:hover{
	cursor: pointer;
	color: #7fffff;
}

/* HOME */

.slider{
	background-image: url("img/slider1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	height: 700px;
}

.secciones{
	margin: 20px 0;
}

.secciones li{
	font-family: 'Roboto Slab', serif;
	font-size: 21px;
	color: #7fffff;
	font-weight: bold;
	margin: 0 10px;
}

.slider-titulo{
	width: 100%;
	position: absolute;
	top: 40%;
}

.flecha{
	position: absolute;
	top: 50%;
}

#izq{
	left: 0;
}

#der{
	right: 0;
}

.botones{
	position: absolute;
	bottom: 30px;
	width: 100%;
}
.botones li{
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: #7fffff;
	padding: 1px;
	margin: 0 5px;
}

.botones .active{
	border: 1px solid #7fffff;
}

/* NOTICIAS */

.noticias{
	background-color: #C5BAA8;
}

.noticias .imagenes{
	display: block;
	margin: 20px 0;
}

.noticias .img-1{
	background-color: #55B7AE;
	width: 320px;
	height: 300px;
	float: left;
	padding: 15px;
}

.noticias .img-2{
	background-color: #55B7AE;
	width: 125px;
	height: 125px;
	float: left;
	margin: 0 0 18px 18px;
	padding: 15px;
}

.noticias .img-wrapper{
	width: 100%;
	height: 70%;
	overflow: hidden;
	position: relative;
}

.noticias .img-wrapper img:first-child{
	width: 100%;
	min-height: 100%;
	display: block;
}

.noticias .play{
	position: absolute;
	width: 50px;
	height: 50px;
}

.noticias .img-1 .play{
	top: 65px;
	left: 135px;
}

.noticias .img-2 .play{
	top: 19px;
	left: 40px;
}

.noticias h3{
	font-family: 'Noto Sans';
	color: white;
	font-size: 16px;
	text-align: center;
	margin: 10px 0 5px;
}

.noticias p{
	font-family: 'Noto Sans';
	color: white;
	font-size: 12px;
	text-align: center;
}

/* CANAL */

.canal{
	background-color: #55B7AE;
	height: 450px;
}

.canal h2{
	font-size: 24px;
	font-family: 'Roboto Slab', serif;
	margin-top: 100px
}

.canal p{
	font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	color: white;
	font-weight: lighter;
	padding: 20px 30px;
}

.bloque-izq{
	float: left;
	width: 440px;
	height: 440px;
}

.bloque-der{
	float: right;
	width: 440px;
	height: 440px;
}

.canal form{
	margin-top: 30px;	
}

.canal form label{
	color: white;
	font-family: 'Noto Sans', sans-serif;
	font-size: 21px;
	text-align: center;
	display: block;
	margin: 10px 0;
}

.canal form input,.canal form textarea{
	display: block;
	border-radius: 5px;
	width: 70%;
	padding: 5px;
	margin: 0 auto;
}

.canal form textarea{
	height: 70px;
}


/* FOOTER */

footer{
	padding: 10px 0;
	position: relative;
}

footer .transparencia{
	width: 100%;
	height: 20px;
	background-color: rgba(255,255,255,0.3);
	position: absolute;
	top: -10px;
}

footer p{
	padding: 10px 50px;
	color: #7fbaff;
	font-family: 'Noto Sans', sans-serif;
	font-size: 12px;
	text-align: center;
}