.job-listing-sec {
    padding: 80px 0;
    background-color: var(--sky-blue);
}

.next-step-sec .section-title h1>span {
    text-transform: uppercase;
    color: var(--blue);
}

.job-listing-sec .wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7.5px -15px -7.5px;
}

.job-listing-sec .job-col {
    padding: 0 7.5px;
    width: 33.33%;
    margin-bottom: 15px;
}

.job-listing-sec .job-card {
    padding: 25px 20px;
    border-radius: 8px;
    background: var(--white);
    height: 100%;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.job-listing-sec .job-text>span {
    font-weight: 600;
    line-height: normal;
    background: var(--blue);
    display: inline-block;
    padding: 6px 15px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.job-details ul {
    list-style-type: none;
    margin: 0;
    justify-content: space-between;
    border-top: 1px solid #dfdfdf;
    padding: 15px 0 0 0;
}

.job-details ul li {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.job-details ul li span.icon {
    margin-right: 5px;
}

.job-details ul li span.text {
    font-weight: 400;
}

.job-details ul li:not(:last-child) {
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .job-listing-sec .job-col {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .job-listing-sec {
        padding: 60px 0;
    }
    .job-listing-sec .job-text h2 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .job-listing-sec {
        padding: 50px 0;
    }
    .job-listing-sec .job-col {
        width: 100%;
    }
    .job-listing-sec .job-card {
        padding: 20px 15px;
        gap: 15px;
        height: auto;
        margin: 0;
    }
    .job-listing-sec .job-col {
        margin-bottom: 15px;
    }
    .job-text p {
        font-size: 14px;
        line-height: 22px;
    }
    .job-details {
        font-size: 14px;
        line-height: 22px;
    }
    .job-details ul li:not(:last-child) {
        margin-bottom: 5px;
    }
}