.main{
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url('../img/trabaje-nosotros.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
}

.main::before{
	content:'';
	position: absolute;
    top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/* background-color: rgba(27, 33, 107, 0.6); */
    background-color: rgba(52, 44, 206, 0.382);
}

.content{
    color: #ffff;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin: auto;
}

.content h2{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contenido{
    padding: 87px 0px 141px 0px;
}

.titulo{
    margin-top: 1rem;
    margin-bottom: 1.7rem;
    font-weight: 700;
}

.btn-enviar{
    border: none;
    padding: 5px;
    background-color: #030339;
    color: white;
}

.btn-enviar:hover{
    background-color: #0f0f55;
}

/* PANTALLA DE CARGA */
#loading-screen {
    background-color: rgba(42, 92, 132, 0.7);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    margin-top: 0;
    top: 0;
    text-align: center;
}

#loading-screen img {
    width: 100px;
    height: 100px;
    position: relative;
    margin-top: -50px;
    margin-left: -50px;
    top: 50%;
}