.jobs-container {
    padding: 30px 15px 90px 15px;
  display: flex;
    flex-direction: column;
    gap: 15px;
    @media (min-width: 1300px) {
        padding: 30px 0 90px 0;
    }
}
.job-item {
    width: 100%;
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.15);
    background: var(--white);
    padding: 15px;
    border-radius: 6px;
}
.job-header {
    display: flex;
    justify-content: space-between;
}
.job-header button{
    background:none;
    border:none;
    cursor:pointer;
    transition:transform .3s ease;
}

.job-item.active .job-header button{
    transform:rotate(180deg);
}
.job-heading {
    display: flex;
    flex-direction: column;
}

.job-content {
    display: none;
    flex-direction: column;
    margin-top: 15px;
    h5 {
        border-bottom: 1px solid var(--grey-100);
    }
}
.job-item.active .job-content {
    display: flex;
}
.job-content ul{
    list-style:none;
    margin-top:15px;
    padding-left: 2px;
}

.job-content li{
    position:relative;
    padding-left:12px;
    margin-bottom:10px;
    color:#555;
}

.job-content li::before{
    content:"•";
    position:absolute;
    left:0;
    top:1px;
    color: var(--grey-100);
    font-size:17px;
}
.job-content p{
    margin-top: 10px;
}
.job_button {
    display: flex;
    width: 100%;
    max-width: 150px;
    margin-top: 20px;
}