.container.jobs {
    padding-top: 6vh;
    padding-bottom: 6vh;
    width: 90vw;
    max-width: 77vw;
    margin: auto;
}

.jobs-title {
    padding: 32px 0;
    text-align: center;
    color: #fff;
}

.job-item {
    background: #00000000;
    border: 1px solid #fff;
    color: #fff;
    padding: 14px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
        flex-direction: column;
}

.jobsbtn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btnholder.jobsbtn {
margin: 32px auto;
    background: #00677b;
    color: #ffffff;
    padding: 12px 32px;
}
.job-description,
.hidden {
    display: none;
}

.job-item.active {
    padding: 26px 20px;
}

.job-title {
    font-size: 1.2rem;
}

.job-description {
    padding: 22px 10px 22px 0;
    margin-top: 22px;
    opacity: .5;
}

svg.job-icon {
background: #ffffff14;
    border-radius: 99px;
    margin-top: 10px;
    width: 46px;
    height: 46px;
}

.job-description:hover {
    opacity: 1;
}

.job-toggle {
    transition: transform .3s ease-in-out;
}

.job-item.active .job-toggle {
    transform: rotate(180deg);
}

.load-more-btn {
    margin-top: 54px;
    padding: 14px 34px;
    background-color: #00677B;
    color: #fff;
    cursor: pointer;
    border: 0 solid;
    border-radius: 100px;
}

.load-more-btn:hover {
    color: #00677B;
    background-color: #fff;
}

.job-description ul {
    list-style: inside;
}


.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.job-title {
    flex: 1;
}

.job-toggle {
    flex-shrink: 0;
}

.btnholder.alternative {
    flex-shrink: 0;
}

@media screen and (max-width:900px) {


    .container.jobs {
    padding-top: 6vh;
    padding-bottom: 6vh;
    width: 100%;
    max-width: 90vw;
    margin: auto
}



    .job-title {
        font-size: 1rem;
    }

    .job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    flex-direction: column;
}

.job-header .btnholder.alternative {
    display: none;
}
svg.job-icon {
        width: 26px;
    height: 26px;
}
}