I found out what was the problem. I had this code in style.css:

/*** MOBILE VIEW ***/
@media screen and (max-width: 767px) {
.point1 {
max-width: 480px;
min-width: 240px;
overflow: hidden;
}


I just removed this:

overflow: hidden;

and it's working fine now!