#listing {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 2;
    margin-top: -250px;
}

#listing .container {
    max-width: 1154px;
}

.top-listing {
    text-align: center;
    color: #fff;
    margin: 0 0 150px;
}

.more-jobs {
    background: url(./imgs/more-jobs.jpg) bottom right no-repeat;
    background-size: cover;
    min-height: 500px;
    padding: 60px 40px 45px;
    color: var(--color-purple);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.more-jobs h3 {
    color: var(--color-purple-other);
    font-weight: bold;
    max-width: 200px;
    line-height: 35px;
}

.more-jobs p {
    max-width: 220px;
    color: var(--color-purple-medium);
}

.more-jobs a {
    color: var(--color-purple);
    background: var(--color-purple-light);
    width: 52px;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0;
}

.more-jobs a span {
    transform: translateX(0px);
    transition: .25s all;
}

.more-jobs a:hover span {
    transform: translateX(5px);
    transition: .25s all;
}

.box-single-job {
    background: var(--color-purple-medium);
    color: #fff;
    padding: 60px 40px 40px;
    margin: 0 0 40px;
    min-height: 500px;
}

.box-single-job h3 {
    font-weight: bold;
    min-height: 80px;
    margin: 0;
}

.box-single-job p {
    min-height: 210px;
    margin: 20px 0 40px;
    color: var(--color-purple-other);
}

.box-single-job a {
    margin: 0 auto;
    display: table;
    padding: 10px 30px;
    width: 100%;
    text-align: center;
    color: #fff;
    background: var(--color-purple);
    font-weight: bold;
}

@media screen and (max-width: 991px) {
    .box-single-job h3,
    .box-single-job p,
    .box-single-job {
        min-height: 0;
    }
    #listing {
        padding: 0;
    }
}
