.wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 110px;
}

.buttonx {
  min-width: 60px;
  min-height: 60px;
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #ffffff;
  background: #D32B5C;
  border: none;
  border-radius: 50%;
  transition: all .9s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 0;
  background-image: url(../../site/image/arrow-down-front.png);
  background-size: 20px 15px;
  background-position: center 24px;
  background-repeat: no-repeat;
  }

.buttonx::before {
  content: '';
  border-radius: 50%;
  min-width: 75px;
  min-height: 75px;
  border: 4px solid rgba(255,255,255,.1);
  box-shadow: 0 0 5px rgba(248,177,255,.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .4s ease-in-out 0s;
}

.buttonx:hover, .button:focus {
  color: #ffffff;
}

.buttonx:hover::before, button:focus::before {
  opacity: 1;
}

.buttonx::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 6px solid #F45886;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 2.7s infinite;
}

.buttonx:hover::after, button:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 120px;
    height: 120px;
    opacity: 0;
  }
}