/* view more css start */
.infoText.column-2 {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    max-height: 120px;
}

.infoText.column-2.expanded {
    max-height: 5000px;
}

.infoText.column-2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, white);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.infoText.column-2.expanded::after {
    opacity: 0;
}
/* view more css end */
