.video-responsive {
	padding-top: 56.25%;
	top:-10px;
	position: absolute;
	width: 100%;
	z-index: -100;
	background-size:cover;
}

canvas,
.video {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	background: #000;
	z-index: -100;
	background-size:cover;
}

   
  /* Laptops y tablets apaisadas */
  @media (min-width: 768px) and (max-width: 979px) {
 .banner {
  height:450px; }
  
  }
  
 /* Tablets */
 @media (max-width: 767px) {
 .banner {
  height:250px; }
  video{ margin-top:-30px;}
  }
  
 /* Teléfonos */
 @media (max-width: 480px) {
 .banner {
  height:200px; 
}
 } 
 
@media (min-width: 980px) {
	.banner {
  height:450px; }
  
  .video{ margin-top:-100px;}
	}
  
   @media (min-width: 1200px) {
  .banner {
  height:700px; }
  
  }


.modal {
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	
	position: absolute;
	top: 0;
	left: 0;
	
	display: flex;
	
	animation: modal 1s 0s forwards;
	visibility: hidden;
	opacity: 0;
}

.contenido_image {
	display: block;
  margin-left: auto;
  margin-right: auto;
	text-align: center;
	margin-top: 50px;
}

#cerrar {
	display: none;
}

#cerrar + label {
	position: fixed;
	color: #98c316;
	font-size: 25px;
	z-index: 1001!important;
	background: #163341;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	right: 50px;
	top: 20px;
	cursor: pointer;
	
	animation: modal 1s 0s forwards;
	visibility: hidden;
	opacity: 0;
}

#cerrar:checked + label, #cerrar:checked ~ .modal {
	display: none;
	z-index: 1000;
}

@keyframes modal {
	100% {
		visibility: visible;
		opacity: 1;
	}
}