.ma_custom_contact {
  color: #fff;
  position: relative;
}
.ma_custom_contact:before {
  content: "";
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 0;
  left: 0;
  animation: bellshake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  backface-visibility: hidden;
  transform-origin: top left;
  opacity: 0.3;
}
.ma_custom_contact.type1:before {
  background: url(./img/phone.png) no-repeat;
}
.ma_custom_contact.type2:before {
  background: url(./img/phone-2.png) no-repeat;
}
.ma_custom_contact .phone {
  font-size: 40px;
  letter-spacing: 3px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.ma_custom_contact .text {
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.ma_custom_contact .ma_cover_link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@keyframes bellshake {
  0% {
    transform: rotate(0);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(4deg);
  }
  60% {
    transform: rotate(-4deg);
  }
  75% {
    transform: rotate(2deg);
  }
  85% {
    transform: rotate(-2deg);
  }
  92% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0);
  }
}

/*# sourceMappingURL=style.css.map */
