.job-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.job-list-single > span {
    width: 30%;
}
.job-list-single {
    list-style-type: none;
    padding: 24px 16px;
    border: 1px solid #C1C0C7;
    border-radius: 16px;
    display: flex ;
    justify-content: space-between;
}
.job-title {
    font-size:18px;
    color: #1C0A62;
    font-weight: 500;
}
.job-department, .job-location {
    font-size: 18px;
    color: #1C0A62;
    font-weight: 300;
}
.job-apply {
    color: #1C0A62;
    font-size: 18px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70px;

}
.job-list-filter {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: #F3F2F4;
    padding: 16px 27px;
    border-radius: 16px;
}
.job-title-header {

    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    color: #07021F;
    width: fit-content;
    height: fit-content;
}
#filter-form {
    display: flex;
    min-width: 571px;
    justify-content: space-around;
    align-items: center;
}
.input-group {
    display: flex;
    flex-direction: column;
}
.input-group label {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    color: #07021F;
}
.input-group select {
    width: 270px;
    padding: 7px 12px;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #C1C0C7;
}
.input-group select:focus  {
    background-color: #fff;
}


@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

    /* CSS */

}

/*
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {

    /* CSS */

}

/*
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {

    .job-list-single > span {
        width: 100%;
    }

    .job-list-filter, #filter-form,  .job-list-single {
        flex-direction: column;
        align-items: flex-start;

    }
    #filter-form,.job-list-filter {
        gap:30px
    }

}
