.button_3d_span {
  position: relative;
  display: inline-flex;
  width: 180px;
  height: 55px;
  margin: 0 15px;
  perspective: 1000px;
}

.button_3d_span .button_3d_a {
  font-size: 19px;
  letter-spacing: 1px;
  transform-style: preserve-3d;
  transform: translateZ(-25px);
  transition: transform .25s;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
  border-radius: 5px;
  height: 55px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button_3d_span .button_3d_a:hover {
  transform: translateZ(-25px) rotateX(-90deg);
}

.content_before,
.content_after {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 5px;
  font-family: "Roboto", Sans-serif;
}

.content_before {
  transform: rotateY(0deg) translateZ(25px);
}

.content_after {
  transform: rotateX(90deg) translateZ(25px);
}