/* POPUP */
/*PopUp Validación*/
.overlay__Validate {
	background: rgba(0, 0, 0, .3);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: center;
	justify-content: center;
	display: flex;
	visibility: hidden;
}

.overlay__Validate.active {
	visibility: visible;
}

.popup__Validate {
	background: #F8F8F8;
	box-shadow: 12px 14px 13px 6px rgba(0, 0, 0, 0.3);
	/*box-shadow: 0px 0px 5px 0px rgba(190, 110, 110, 0.3);*/
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	padding: 20px;
	text-align: center;
	width: 560px;
	align-items: center;

	transition: .3s ease all;
	transform: scale(0.7);
	opacity: 0;
}

.popup__Validate .btn-cerrar-popup__Validate {
	font-size: 16px;
	line-height: 16px;
	display: block;
	text-align: right;
	transition: .3s ease all;
	color: #BBBBBB;
}

.popup__Validate .btn-cerrar-popup__Validate:hover {
	color: #000;
}

.img-thumbnail {
	width: 140px;
	height: 160px;
}


/* ANIMACIONES */
.popup__Validate.active {
	transform: scale(1);
	opacity: 1;
}

.popup__Validate.active h3 {
	animation: entradaTitulo .8s ease .5s forwards;
}

.popup__Validate.active h4 {
	animation: entradaSubtitulo .8s ease .5s forwards;
}

@keyframes entradaTitulo {
	from {
		opacity: 0;
		transform: translateY(-25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes entradaSubtitulo {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}



/*PopUp Video*/

.overlay__Video {
	background: rgba(0, 0, 0, .3);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	align-items: center;
	justify-content: center;
	display: flex;
	visibility: hidden;
}

.overlay__Video.active {
	visibility: visible;
}

.popup__Video {
	background: #F8F8F8;
	box-shadow: 12px 14px 13px 6px rgba(0, 0, 0, 0.3);
	/*box-shadow: 0px 0px 5px 0px rgba(190, 110, 110, 0.3);*/
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	padding: 20px;
	text-align: center;
	width: 660px;
	align-items: center;

	transition: .3s ease all;
	transform: scale(0.7);
	opacity: 0;
}

.popup__Video .btn-cerrar-popupVideo {
	font-size: 16px;
	line-height: 16px;
	display: block;
	text-align: right;
	transition: .3s ease all;
	color: #BBBBBB;
}

.popup__Video .btn-cerrar-popupVideo:hover {
	color: #000;
}

.video--thumbnail {
	width: 660px;
	height: 375px;
}


/* ANIMACIONES */
.popup__Video.active {
	transform: scale(1);
	opacity: 1;
}

.popup__Video.active h3 {
	animation: entradaTitulo .8s ease .5s forwards;
}

.popup__Video.active h4 {
	animation: entradaSubtitulo .8s ease .5s forwards;
}

@keyframes entradaTitulo {
	from {
		opacity: 0;
		transform: translateY(-25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes entradaSubtitulo {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}


/*PopUp Team*/
.overlay__Team {
	background: rgba(0, 0, 0, .3);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: center;
	justify-content: center;
	display: flex;
	visibility: hidden;
}

.overlay__Team.active {
	visibility: visible;
}

.popup__Team {
	background: #F8F8F8;
	box-shadow: 12px 14px 13px 6px rgba(0, 0, 0, 0.3);
	/*box-shadow: 0px 0px 5px 0px rgba(190, 110, 110, 0.3);*/
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	padding: 20px;
	text-align: center;
	width: 660px;
	align-items: center;

	transition: .3s ease all;
	transform: scale(0.7);
	opacity: 0;
}

.popup__Team .btn-cerrar-popup__Team {
	font-size: 16px;
	line-height: 16px;
	display: block;
	text-align: right;
	transition: .3s ease all;
	color: #BBBBBB;
}

.popup__Team .btn-cerrar-popup__Team:hover {
	color: #000;
}




/* ANIMACIONES */
.popup__Team.active {
	transform: scale(1);
	opacity: 1;
}

.popup__Team.active h4 {
	animation: entradaTituloTeam .8s ease .5s forwards;
}

.popup__Team.active #btn__cerrar--popup__Team {
	animation: entradabotonTeam .8s ease .5s forwards;
}

@keyframes entradaTituloTeam {
	from {
		opacity: 0;
		transform: translateY(-25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes entradabotonTeam {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}


/*PopUp Contacto*/
.overlay__Contact {
	background: rgba(0, 0, 0, .3);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: center;
	justify-content: center;
	display: flex;
	visibility: hidden;
}

.overlay__Contact.active {
	visibility: visible;
}

.popup__Contact {
	background: #F8F8F8;
	box-shadow: 12px 14px 13px 6px rgba(0, 0, 0, 0.3);
	/*box-shadow: 0px 0px 5px 0px rgba(190, 110, 110, 0.3);*/
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	padding: 20px;
	text-align: center;
	width: 660px;
	align-items: center;

	transition: .3s ease all;
	transform: scale(0.7);
	opacity: 0;
}

.popup__Contact .btn-cerrar-popup__Contact {
	font-size: 16px;
	line-height: 16px;
	display: block;
	text-align: right;
	transition: .3s ease all;
	color: #BBBBBB;
}

.popup__Contact .btn-cerrar-popup__Contact:hover {
	color: #000;
}




/* ANIMACIONES */
.popup__Contact.active {
	transform: scale(1);
	opacity: 1;
}

.popup__Contact.active h4 {
	animation: entradaTituloContact .8s ease .5s forwards;
}

.popup__Contact.active #btn__cerrar--popup__Contact {
	animation: entradabotonContact .8s ease .5s forwards;
}

.popup__Contact.active #btn--popup__Metis {
	animation: entradabotonMetis .8s ease .5s forwards;
}

@keyframes entradaTituloContact {
	from {
		opacity: 0;
		transform: translateY(-25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes entradabotonContact {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes entradabotonMetis {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}


@media only screen and (max-width: 800px) {

	.popup__Validate {
		
		width: 360px;

	}

	.popup__Video {

		width: 460px;
		
	}

	.popup__Team {
		
		width: 365px;

	}

	.popup__Contact {
		
		width: 380px;
		
	}

	
}



/*

@keyframes entradaInputs {
	from { opacity: 0; }
	to { opacity: 1; }
}

.popup h3 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 10px;
	opacity: 0;
}

.popup h4 {
	font-size: 26px;
	font-weight: 300;
	margin-bottom: 40px;
	opacity: 0;
}

.popup form .contenedor-inputs {
	opacity: 0;
}

.popup form .contenedor-inputs input {
	width: 100%;
	margin-bottom: 20px;
	height: 52px;
	font-size: 18px;
	line-height: 52px;
	text-align: center;
	border: 1px solid #BBBBBB;
}

.popup form .btn-submit {
	padding: 0 20px;
	height: 40px;
	line-height: 40px;
	border: none;
	color: #fff;
	background: #5E7DE3;
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	cursor: pointer;
	transition: .3s ease all;
}

.popup form .btn-submit:hover {
	background: rgba(94,125,227, .9);
}

*/