

div.scrolling {
position: relative;
}
.scrolling .vc_column-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 70px;
width: 100%;
  background: linear-gradient(
    rgba(255, 255, 255, 0.05),
    white
  ); /* transparent keyword is broken in Safari */
  pointer-events: none;
}
.scrolling .vc_column-inner {
  overflow-y: scroll;
overflow-x: hidden;
  background: white;
height: 270px;
width: 100%;
}