.job {
    position: relative;
    padding-top: 60px;
    padding-bottom: 80px;
    background: var(--Green, #098b43);
}
.job > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.job .container {
    position: relative;
    z-index: 10;
}
.job .job-filter {
    display: flex;
    align-items: center;
    gap: 20px;
}
.job .job-filter .job-filter-search {
    width: 413px;
    height: 60px;
    border-radius: 42px;
    border: 1px solid rgba(38, 38, 38, 0.12);
    background: #fff;
    padding-left: 60px;
    position: relative;
}
.job .job-filter .job-filter-search svg {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}
.job .job-filter .job-filter-search input {
    height: 100%;
    width: 100%;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.job .job-filter .job-filter-search input::placeholder {
    color: rgba(38, 38, 38, 0.6);
}
.job .job-filter .job-filter-btn {
    width: 197px;
    height: 60px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
    border-radius: 58px;
    border: 1px solid #10c25f;
    background: linear-gradient(
        90deg,
        #2db04a -9.74%,
        #2b8670 54.2%,
        #2e398b 130.49%
    );
}
.job .job-filter .job-filter-drops {
    flex: 1 0 0;
    position: relative;
}
.job .job-filter .job-filter-drops .job-filter-drops-label {
    border-radius: 42px;
    border: 1px solid rgba(38, 38, 38, 0.12);
    background: #fff;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
}
.job .job-filter .job-filter-drops .job-filter-drops-label input {
    display: none;
}
.job .job-filter .job-filter-drops .job-filter-drops-label p {
    color: var(--text, #101857);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.job .job-filter .job-filter-drops .job-filter-drops-label svg {
    width: 16px;
    height: 16px;
}
.job-filter-drops-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border-radius: 22px;
    padding: 16px;
    background: white;
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
    transition: all 0.3s;
}
.job-filter-drops-list.open {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: auto;
}
.job-filter-drops-item {
    padding: 6px 0;
    color: var(--text, #101857);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
}
.job .job-post {
    margin-top: 24px;
    width: 100%;
    padding: 40px;
    background: rgba(26, 37, 121, 0.8);
}
.job .job-post .job-post-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.job .job-post .job-post-item-left .job-post-left-heading {
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
    margin-bottom: 20px;
}
.job .job-post .job-post-item-left .job-post-left-location {
    display: flex;
    align-items: center;
    gap: 8px;
}
.job .job-post .job-post-item-left .job-post-left-location svg {
    width: 20px;
    height: 20px;
}
.job .job-post .job-post-item-left .job-post-left-location p {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.job .job-post .job-post-item-right p {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.job .job-post .job-post-item-right .job-post-item-right-label {
    color: #fff;
    text-align: right;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.job .job-post .job-post-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 40px 0;
}
.job .job-post .job-post-line:last-child {
    display: none;
}
.job .btn-more-job {
    display: flex;
    width: 220px;
    padding: 20px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 58px;
    border: 1px solid #10c25f;
    background: var(--Green, #098b43);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 20px;
}
@media (max-width: 639px) {
    .job .job-filter {
        flex-direction: column;
        padding: 0 16px;
    }
    .job .job-filter .job-filter-search {
        width: 100%;
    }
    .job .job-filter .job-filter-drops {
        width: 100%;
        z-index: 10;
    }
    .job .job-filter .job-filter-drops:nth-child(3) {
        z-index: 9;
    }
    .job .job-post .job-post-item {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
    .job .job-post .job-post-item-right .job-post-item-right-label {
        text-align: start;
    }
}
