.zoom {
  transition: transform .2s; /* Animation */
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.about-video-area .video-icon-imts a {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #ffffff;
  height: 50px;
  width: 50px;
  display: inline-block;
  background-color: #ff911a00;
  text-align: center;
  line-height: 56px;
  font-size: 38px;
  border-radius: 50%;
}
.about-video-area .video-icon-imts a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background-color: transparent;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 2px solid #FF911A;
  -webkit-animation: video-icon 1200ms linear infinite;
  animation: video-icon 1200ms linear infinite;
  z-index: -10;
}