/* zoom on hover - transition = animation speed */
.hover-zoom img {
  transition: transform 0.4s ease;
}
/* zoom on hover - transform the image when container gets hovered */
.hover-zoom:hover img {
  transform: scale(1.1);
}

/* list style with arrows as bullets */
ul.arrowlist {
  list-style-image: url("https://icons.getbootstrap.com/assets/icons/arrow-right-short.svg");
}

/* table without any padding */
table.table-nopad tr td {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 20px;
}
