
.vacancies-container .department {
    font-size: 22px;
    font-weight: 700;
    color: #E33A32;
    margin-top: 50px;
}
.vacancies-container .vacancy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #C9C9C9;
}
.vacancies-container .vacancy .job-title {
    font-size: 18px;
    font-weight: 600;
}
.vacancies-container .vacancy .job-location {
    font-size: 16px;
    color: #858585;
}
.vacancies-container .vacancy .job-location svg{
    width: 14px;
    margin-bottom: 3px;
}
.vacancies-container .vacancy .job-url {
    font-size: 18px;
    font-weight: 600;
    background-color: #E33A32;
    padding: 12px 20px;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
}

@media screen and (max-width: 576px) {
    .careers-heading {
        margin-top: 25px !important;
        margin-bottom: 0 !important;
    }
    .careers-heading h2 {
        font-size: 25px !important;
    }
    .vacancies-container .department {
        font-size: 20px;
        margin-top: 43px;
    }
    .vacancies-container .vacancy {
        flex-direction: column;
        align-items: start;
        border: 0;
    }
    .vacancies-container .vacancy .job-url {
        width: 100%;
        margin-top: 12px;
    }
}