143143143body{
    margin: 0;
}
@font-face {
    font-family: 'Gotham-book';
    src: url(fuentes/GothamBook.otf);
    }
    @font-face {
        font-family: 'Gotham-Medium';
        src: url(fuentes/GothamMedium.ttf);
        }
        @font-face {
            font-family: 'Gotham-bold';
            src: url(fuentes/Gotham-Bold.otf);
            }
        
.banner{
    background-image: url(banner.png);
    background-repeat: no-repeat;
    width: 100%;
    min-height: 200px;
    background-size: cover;
    max-width: 1920px;
    background-position: center center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: right;
}
.logo{
    width: 20%;
    margin-right: 2rem;
    max-width: 122px;
}
.ft-nom{
    background: rgb(900,15,29);
    background: linear-gradient(90deg, rgba(900,15,29,1) 0%, rgba(900,15,29,1) 100%);
    width: 100%;
    min-height: 150px;
    display: flex;
    flex-wrap: wrap;
}
.ft{
    background-color: white;
    height: 130px;
    width: 130px;
    clip-path: circle();
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;

}
.ft-b{
    background-color: rgba(32,52,127,1.00);
    height: 130px;
    width: 130px;
    clip-path: circle();
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -4rem;
    border: 2px solid rgba(32,52,127,1.00); 
}
.ft img{
    width: 100%;
    border: solid 3px rgba(32,52,127,1.00);
}
.name{
    width: 100%;
    color: white;
    font-family: 'Gotham-Medium';
    font-size: 1.6rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: .5rem;
}
.puesto{
    color: white;
    text-align: center;
    margin-top: 0;
    font-family: 'Gotham-book';
    width: 100%;
    font-size: 1rem;
}
.fondo-b{
     background-image: url(back.png);
     min-height: 300px;
     background-size: 180%;
     background-position: center center;
}
.bu-1{
    background: rgb(900,15,29);
    background: linear-gradient(90deg, rgba(900,15,29,1) 0%, rgba(900,15,29,1) 100%);
    color: white;
    width: 40%;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    padding: .5rem 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.bu-1 img{
    height: 12px;
    margin-right: 3px;
}
.cont-b-1{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: 'Gotham-book';
    padding-top: 2rem;
}
.cont-b-2{
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 2rem;
}
.bu-2{
    background: rgb(32,52,127);
    background: linear-gradient(90deg, rgba(32,52,127,1) 0%, rgba(32,52,127,1) 100%);
    color: white;
    width: 27%;
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    max-width: 124px;
}
.bu-2 img{
    width: 30px;

}
.bu-2 p{
    margin: .5rem 0;
    font-family: 'Gotham-book';
}
.qr{
    width: 50px;
}
.c-q{
    display: flex;
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 2rem;
    align-items: center;
    justify-content: space-around;
    
}
.g-c{
    font-family: 'Gotham-Medium';
    color: rgba(32,52,127,1);
    width: 60%;
    text-decoration: none;
    border: 2px solid rgba(32,52,127,1);
    text-align: center;
    padding: .8rem 0;
    border-radius: 150px;
}
.rs{
    width: 40px;
}
.cont-rs{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 2rem;
    width: 90%;
    max-width: 1920px;
    margin: 0 auto;
    border-bottom: solid 3px rgba(32,52,127,1);
}
.fotter{
    box-shadow: rgba(149, 157, 165, 0.4) 0px -2px 24px;
    padding: 1.5rem 0;
}
.firma{
    color: rgba(32,52,127,1);
    font-family: 'Gotham-bold';
    text-align: center;
    font-size: .8rem;
}
/* ------------------------- */
/* POPUP */
/* ------------------------- */

.overlay {
	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.active {
	visibility: visible;
}

.popup {
	background: #F8F8F8;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	padding: 20px;
	text-align: center;
	max-width: 600px;
	width: 70%;
	transition: .3s ease all;
	transform: scale(0.7);
	opacity: 0;
}

.popup .btn-cerrar-popup {
	font-size: 16px;
	line-height: 16px;
	display: block;
	text-align: right;
	transition: .3s ease all;
	color: #BBBBBB;
}

.popup .btn-cerrar-popup:hover {
	color: #000;
}

.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);
}
.btn-abrir-popup {
	padding: 0 20px;
	margin-bottom: 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;
	cursor: pointer;
}

.btn-abrir-popup:hover {
	background: rgba(94,125,227, .9);
}
/* ------------------------- */
/* ANIMACIONES */
/* ------------------------- */
.popup.active {	transform: scale(1); opacity: 1; }
.popup.active h3 { animation: entradaTitulo .8s ease .5s forwards; }
.popup.active h4 { animation: entradaSubtitulo .8s ease .5s forwards; }
.popup.active .contenedor-inputs { animation: entradaInputs 1s linear 1s 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;
	}
}

@keyframes entradaInputs {
	from { opacity: 0; }
	to { opacity: 1; }
}