.postulacion{
    position:relative;
    height:20rem;
    display: flex;
    align-items: center;
}

.postulacion::after{
    content:'';
    background-image: url(../../img/postularme.jpg);
    background-size: cover;
    background-position: center;
    opacity: 65%;
    top:0;
    bottom:0;
    left:0;
    right: 0;
    position: absolute;
    z-index: -2;
}

.postulacion__contenido{    
    width: 60%;
    height: 55%;
    background-color: rgba(255, 255, 255, 0.7);
    display:flex;
    justify-content: center;
    align-items: center;
}

.postulacion__primero{
    padding-right:2rem;
}

.postulacion__titulo{
    color: var(--gris2);
    font-size: 3rem;
}

.postulacion__texto{
    color: var(--gris2);
    font-weight: 300;
    font-size: 1.5rem;
}

.postulacion__boton{
    width:22%;
    height:3rem;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
}

@media screen and (max-width:1250px) {
    .postulacion__contenido{    
        width: 75%;
    }
}

@media screen and (max-width:1024px) {
    .postulacion__contenido{    
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    .postulacion__contenido{    
        width: 100%;
    }
    .postulacion__titulo{
        font-size: 2.2rem;
    }
    .postulacion__texto{
        font-size: 1.1rem;
    }
    .postulacion__boton{
        font-size: 1.1rem;
    }
}

@media screen and (max-width:520px) {
    .postulacion{
        height:15rem;
    }
    .postulacion__primero{
        padding-right:1rem;
    }
    .postulacion__titulo{
        font-size: 1.8rem;
        padding-bottom:0.5rem;
    }
    .postulacion__texto{
        font-size: 0.9rem;
    }
    .postulacion__boton{
        font-size: 0.9rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        height:20%;
    }
}

@media screen and (max-width:375px) {
    .postulacion__contenido{
        flex-direction: column;
        align-items: flex-start;
        height: 10rem;
    }
    .postulacion__boton{
        margin-top: 1rem;
        width:30%;
    }
}