.term-description{
    margin-top: 50px;
    overflow: hidden;
    transition: all 0.6s;
}
.term-description.collapsed:before{
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    position: absolute;
    content: '';
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.711538) 34.11%, rgba(255, 255, 255, 0.835821) 54.81%, #FFFFFF 100%);
    z-index: 2;
}
.term-description .load-more-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    cursor: pointer;
}
.term-description .load-more-content svg{
    width: 24px;
    height: 24px;
    transition: all 0.4s;
    margin-top: -10px;
}
.term-description .load-more-content:hover svg{
    transform: translateY(12px);
}