section.heroSection {
    height: 360px;
    width: 100%;
    background-color: #8058A0;
    display: flex;
    justify-content: center;
    align-items: end;
    color: white;
}
section.heroSection h1 {
    padding-bottom: 90px;
    font-size: 58px;
}

section.careers {
    padding: 100px 0;
}

.job-box {
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.job-box .bookmark-label {
    width: 200px;
    position: absolute;
    top: -5px;
    left: -84px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    z-index: 0;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 6px;
    padding-top: 6px;
    font-size: 20px;
    padding-top: 8px;
}
.bookmark-post .bookmark-label,
.job-box.bookmark-post .bookmark-label {
    background-color: var(--primary-color);
}
.job-box.bookmark-post .bookmark-label img {
    width: 22px;
}
.job-box h5,
.job-box h5 a {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 18px;
}
.job-box a.aply {
    font-size: 15px;
    display: flex;
    align-items: center;
    width: fit-content;
    margin-left: auto;
    color: #808080;
    gap: 0 5px;
}
.job-box a.aply img {
    filter: contrast(0);
    width: 16px;
}
.job-box:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

section.nwsltr {
    background: linear-gradient(#fff 50%, #f3f3f3 50%);
}


/* 768-991 */
@media (max-width: 991px) {
    section.heroSection h1 {
        font-size: 40px;
        line-height: 40px;
    }

}

/* 576-767 */
@media (max-width: 767px) {
    section.careers {
        padding: 30px 0 50px;
    }
    .row.justify-content-between {
        display: flex;
    }
    .row.justify-content-between > div {
        flex: 1;
    }
    section.careers .container {
        padding: 0 120px;
    }
}

/* 320-575 */
@media (max-width: 575px) {
    section.heroSection {
        height: 200px;
    }
    section.heroSection h1 {
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 40px;
    }
    
    .row.justify-content-between > div {
        flex: 100%;
    }
    .job-box a.aply {
        margin-left: 0;
    }

    section.careers .container {
        padding: 0 15px;
    }
    
}