*{
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 
}

body {
	background-color: #121212;
	font-family: 'Open Sans', sans-serif;
}

a { 
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* ---- ----- ----- Scroll Bar ----- ----- ----- */

::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: transparent !important;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #bbbbbb;
    border-radius: 10px;
 }

/* ---- ----- ----- Header ----- ----- ----- */
main{
	width: 100%;
	height: auto; 
}

.content-all{
	width: 100%;
	max-width: 1000px;
	margin-top: 0px;
}

header{
	width: 100%;
	height: 60px;
	position: fixed;
	left: 0;
	top: 0;
	background: #000000;
}

.content-all label{
	position: fixed;
	margin-left: 20px;
	width: 100%;
	max-width: 100px;
	top: 10px;
	font-size: 26px;
	color: #fff;
	z-index: 10;
}
/* ---- ----- ----- Banner ----- ----- ----- */
.banner{
	background-size: cover;
	background-position: center center;
	color: #fff;
	object-fit: contain;
	height: 448px;
}

.banner-contenedor{
	margin-left: 0px;
	padding-top: 325px;
	height: 190px;
}

.banner-titulo{
	/*margin-left: 25px;*/
	margin-top: 80px;
	font-size: 2rem;
	font-weight: 800;
	padding-bottom: 0.3rem;
}

.banner-sinopsis{
	/*margin-left: 25px;*/
	color: #fff;
	line-height: 1.3;
	padding-top: 1rem;
	font-size: 0.8rem;
	max-width: 360px;
	height: 180px;
}

.banner-fadeBottom{
	margin-top: 6px;
	height: 7.4rem;
	background-image: linear-gradient(180deg, transparent, rgba(18,18,18,0.61), #111);
}

.botones{
	/*margin-left: 25px;*/
	color: #afafaf;
	width: 45rem;
	font-size: 0.8rem;
	max-width: 200px;/*315px*/	
}

.hd{
	color: #fff;
	outline: none;
	border: none;
	font-weight: 700;
	border-radius: 0.2rem;
	padding-left: 0.2rem;
	padding-right: 0.2rem;
	margin-right: 1rem;
	padding-top: 0.2rem;
	padding-bottom: 0.2rem;
	background-color: #EF9C00;	
}

/* ---- ----- ----- Video ----- ----- ----- */
.video-contenedor {
	width: 75%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 150px;
	margin-bottom: 3em;

	display: grid;
	grid-template-columns: repeat(1,1fr);
	grid-gap: 10px;
}

.item-video {
	max-width: 100%;
	display: block;
	cursor: pointer;
}

/* ---- ----- ----- Descargar ----- ----- ----- */
.btn-descarga{
	cursor: pointer;
	color: #121212;
	outline: none;
	border: none;
	font-weight: 700;
	border-radius: 0.2rem;
	padding-left: 2rem;
	padding-right: 2rem;
	margin-right: 1rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	background-color: #e6e6e6;
}

.descarga .btn-descarga i {
	margin-right: 0.5em;
}

/* ---- ----- ----- Media Queries ----- ----- ----- */
@media screen and (max-width: 900px){

	.video-contenedor {
		width: 95%;
		margin-left: auto;
		margin-right: auto;
		margin-top: 130px;
		margin-bottom: 3em;

		display: grid;
		grid-template-columns: repeat(1,1fr);
		grid-gap: 5px;
	}

	.item-video {
		height: 250px;
		max-width: 100%;
		display: block;
		cursor: pointer;
	}

	.content-all label{
		position: fixed;
		margin-left: 20px;
		width: 100%;
		max-width: 100px;
		top: 15px;
		font-size: 20px;
		color: #fff;
		z-index: 10;
	}
}