.cv_btn {
  margin: 0 auto;
}
.cv_btn img {
  animation: anime1 4s ease 0s infinite alternate;
  transform-origin:center;
  position:relative;
  bottom:351px;
  right:26px;
}
@keyframes anime1 {
  from {
    transform: scale(1,1);
  }
  to {
    transform: scale(3.5,3.5);
  }

.btn {
  padding: 8px 24px;
  color: white;
  display: inline-block;
  opacity: 0.8;
  border-radius: 4px;
}

.btn:hover {
  opacity: 1;
}

.message {
  background-color: #5dca88;
  padding: 15px 40px;
  cursor: pointer;
  box-shadow: 0 7px #1a7940;
}
.message:active {
  box-shadow: none;
  position: relative;
  top: 7px;
}
.click {
    background: green;
    width: 100px;
    height: 100px;
    line-height: 100px;
    color: #fff;
    margin: 30px auto;
    border-radius: 50%;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.click:active {
    -webkit-box-shadow:
    0 0 0 15px #fff,
    0 0 0 18px green;
    -moz-box-shadow:
        0 0 0 15px #fff,
    0 0 0 18px green;
    box-shadow:
        0 0 0 15px #fff,
    0 0 0 18px green;
}


.Text-Span {
  position: relative;
  z-index: 1;
}
.Text-Span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0%;
  height: 4px;
  background: #5bc8ac;
  z-index: -1;
  transition: all 0.8s;
}
.Text-Span.isActive:after {
  width: 100%;
}