.flex {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.textos {
	padding: 10px;
	padding-bottom: 40px;
	color: #fff;
	text-align: center;
}


.textos a {
	text-decoration: none;
	font-size: 20px;
	display: inline-block;
	padding: 10px;
	width: 220px;
	border: 1px solid #3066BE;
	border-radius: 10px;
	color: #3066BE;
}

.textos a:hover {
	background: #3066BE;
	color: #fff;
	border: 1px solid #000;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	overflow: auto;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
}

.contenido-modal {
	position: relative;
	margin: auto;
	animation-name: modal;
	animation-duration: 1s;
}

@keyframes modal {
	from {
		top: -330px;
		opacity: 0;
	}

	to {
		top: 0;
		opacity: 1;
	}
}

.close {
	color: #f2f2f2;
	font-size: 30px;
	font-weight: bold;
	justify-content: center;
}

.close:hover {
	color: #7f8c8d;
	text-decoration: none;
	cursor: pointer;
}

.modal-header {
	float: right;
	width: 50px;
	padding: 10px 10px;
	background: #EE6C4D;
	color: #f2f2f2;

}

span {
	display: block;
	margin: 0 auto;
}

video {

	background: #fff;
	cursor: pointer;
}

@media screen and (max-width:900px) {
	.modal-body video {
		width: 100%;
	}

	.textos {
		padding: 30px;
	}
}

@media screen and (max-width:500px) {
	.textos {
		padding: 20px;
	}
}
