.masked-image {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 480'><g fill='black'><circle cx='240' cy='240' r='240'/></g></svg>");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 480'><g fill='black'><circle cx='240' cy='240' r='240'/></g></svg>");
  mask-repeat: no-repeat;
  mask-size: cover;
}

.about-text-wrapper p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.5s ease;
  color: white !important;
}

.about-text-wrapper .paragraph-in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.about-text-wrapper a span {
  color: white !important;
}
.about-text-wrapper a {
  position: relative;
  text-decoration: none !important;
}

.about-text-wrapper a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  background: white !important;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 100%;
}
.about-text-wrapper a:hover {
  text-decoration: none;
}

.about-text-wrapper a:hover:after {
  width: 0%;
  left: 50%;
}
