.jobs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 70px;
}
.jobs-list ._section {
    background: #dfe8f7;
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: bold;
    padding: 0 30px;
    color:  #2d4c7d;
    position: relative;
    margin-bottom: 10px;
}

.jobs-list ._section svg {
    position: absolute;
    top: calc(50% - 5px);
    right: 15px;
    transition: all 0.2s;
    cursor: pointer;
}
.jobs-list ._section.--active {
}
.jobs-list ._section.--active svg {
    transform: rotate(180deg);
}

.jobs-list ._item {
    width: 100%;
    text-decoration: none;
    border-bottom: 1px solid #bbbaba;
    transition: all 0.5s;
}
.jobs-list ._item.--hidden {
    display: none;
}

.jobs-list ._item:last-child {
    border-bottom: 0;
}

.jobs-list ._item:nth-child(2) {
    margin-top: -10px;
}

/*.jobs-list ._item.--active:nth-child(2) {
    margin-top: 30px;
}*/

.jobs-list ._content {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.jobs-list ._item.--fake{
    margin:0;
    padding: 0;
    box-shadow: unset;
    height: 0;
}

.jobs-list ._content{
    padding: 20px 55px 0;
}
.jobs-list ._item.--active ._content{
    padding: 20px 55px;
}

.jobs-list ._name {
    width: 100%;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
}
.jobs-list ._name::before {
    content: ' ';
    width: 12px;
    height: 12px;
    background: #a51515;
    display: block;
    position: absolute;
    left: -30px;
    top: calc(50% - 6px);
}

.jobs-list ._name svg {
    cursor: pointer;
    position: absolute;
    top: calc(50% - 5px);
    right: -38px;
    transition: all 0.2s;
}
.jobs-list ._item.--active ._name svg {
    transform: rotate(180deg);
}

.jobs-list ._desc-title {
    display: block;
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 700;
}

.jobs-list ._desc {
    display: none;
    width: calc(50% - 20px);
}

.jobs-list ._item.--active ._desc {
    display: block;
}

@media (max-width: 992px){

    .jobs-list ._content div:not(:first-child){
        margin-top: 1.5rem;
    }

    .jobs-list ._desc{
        width: auto;
        margin: 0 -30px;
    }
}

@media (max-width: 480px){

    .jobs-list ._item {
        /* width: calc(50% - 5px); */
        margin-bottom: 10px;
        box-shadow: 3px 3px 3px 0px lightgrey;
    }

    .jobs-list ._name {
        /* font-size: 13px; */
        padding: 5px;
    }
}