.terms-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 45px auto;
}

.terms-list ._item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(33.33% - 40px);
    margin-bottom: 60px;
    box-shadow: 5px 5px 8px 5px lightgrey;
    text-decoration: none;
    background: #2d4c7d;
    color: white;
}

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

.terms-list ._picture {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    object-position: top;
}
.terms-list ._content{
    padding: 20px 25px;
}
.terms-list ._name {
    /*color: #2d4c7d;*/
    text-transform: uppercase;
    font-size: 19px;
    font-weight: bold;
    padding-bottom: 15px;
    position: relative;
}

.terms-list ._desc {
    /* font-size: 13px; */
    font-size: 20px;
}

@media (max-width: 992px){

    .terms-list ._content {
        padding: 5px 25px 0;
    }

    .terms-list ._item {
        align-items: initial;
    }

    .terms-list{
        flex-direction: column;
    }

    .terms-list ._name{
        padding-right: 35px;
    }

    .terms-list ._name::after{
        content: '';
        width: 13px;
        height: 13px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(135deg);
        position: absolute;
        top: calc(50% - 13px);
        right: 0;
    }

    .terms-list .active ._name::after{
        transform: rotate(-45deg);
        top: calc(50% - 8px);
    }

    .terms-list ._desc {
        font-size: 18px;
        display: none;
    }

    .terms-list .active ._desc{
        display: block;
        padding-bottom: 25px;
    }

    .terms-list ._item {
        width: 100%;
        margin-bottom: 30px;
        box-shadow: 3px 3px 3px 0px lightgrey;
    }

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