.content-arrow_w {
  background: transparent;
  width: 140px;
  position: relative;
  display: block;
  align-content: left;
  left: 0;
  margin-top: 5%;
}

.wlink {
  width: 10rem;
  height: 10rem;
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1175em;
  word-spacing: 0.3em;
  text-decoration: none;
  font-weight: bold;
}
.wlink__svg {
  width: 100%;
  height: auto;
  transform-box: fill-box;
  fill: #ffffff;
  stroke: #ffffff;
  stroke-width: 0.05em;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wlink__cloud {
  transform-origin: 50% 50%;
  -webkit-animation: rotate normal infinite 60s linear;
          animation: rotate normal infinite 60s linear;
  fill: rgba(255, 255, 255, 0.15);
}
.wlink__face, .wlink__arrow {
  transform-origin: 50% 50%;
  transition: transform 0.15s cubic-bezier(0.32, 0, 0.67, 0);
}
.wlink:hover .wlink__face, .wlink:hover .wlink__arrow {
  transform: scale(1.1);
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.wlink__arrow {
  stroke-width: 0.075em;
}
.wlink__text {
  -webkit-animation: rotateReverse normal infinite 20s linear;
          animation: rotateReverse normal infinite 20s linear;
  transform-origin: 50% 50%;
}
.wlink:hover .wlink__text {
  -webkit-animation-play-state: paused;svg
          animation-play-state: paused;
}
.wlink--alt {
  font-size: 1.15rem;
  letter-spacing: 0;
  word-spacing: 0;
}

@-webkit-keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateReverse {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotateReverse {
  to {
    transform: rotate(-360deg);
  }
}