.job-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
    position: sticky;
    top: 75px;
    padding-bottom: 20px;
    padding-top: 20px;
    background-color: #fff;
    z-index: 2;
}

.job-title .subtitle {
    color: #74a5c8;
    font-size: 24px;
}

.job-properties {
    display: flex;
    gap: 24px;
}

.job-properties .job-property {
    flex: 25%;
    position: relative;
    text-align: center;
    margin-bottom: 24px;
}

.job-properties .job-property:after {
    content:'';
    position: absolute;
    left: -12px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: rgba(128, 128, 128, 0.4);
}

.job-properties .job-property:first-of-type:after {
    content:none;
}

.job-properties .job-property .job-property-subtitle {
    font-size: 14px;
    color: #71a4ca;
    text-transform: uppercase;
}

.job-properties .job-property .job-property-title {
    font-weight: bold;
    margin-top: 5px;
}


@media screen and (max-width: 767px) {
    .job-title {
        position: static;
    }


    .job-properties .job-property:first-of-type:after {
        content:'';
    }

    .job-properties{
        flex-wrap: wrap;
    }
    .job-properties  .job-property{
        width: 100%;
        flex: 100%;
        text-align: left;
        margin-left: 12px;
    }
    section.blocks div.block{
        margin: 2rem auto;
    }

    section.blocks div.block:nth-of-type(2n+1) {
        margin: 0 auto;
    }
}

@media screen and (max-width: 450px) {
    .job-title{
        flex-wrap: wrap;
        gap: 24px;
    }

    .job-title .title{
        width: 100%;
    }
}