.boxExpand {
    margin: 10px 0;
    padding: 10px 0;
}

.boxExpand #contentExpand {
    position: relative;
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
}

.boxExpand #contentExpand ul li {
    list-style-position: inside;
}

.boxExpand #contentExpand.expanded {
    max-height: 5000px;
}

.boxExpand #contentExpand.expanded::before {
    display: none;
}

.boxExpand #contentExpand::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 2;
    background: linear-gradient(to top, #ffffff 20%, rgba(0, 0, 0, 0) 100%);
}

.boxExpand .btn-expand {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    top: 0px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    z-index: 2;
    border: none;
    outline: none;
    transition: 0.3s ease;
    background: transparent;
}

.boxExpand .btn-expand i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a06a;
    bottom: 0px;
    font-size: 40px;
    transition: 0.3s ease;
}