body {
  padding: 50px 0px;
  text-align: center;
  background-color: #0F0F0F;
}

p {
  font-family: "Lato", sans-serif;
  color: #6b2b03;
}

.btn-animate {
  text-decoration: none;
  font-family: "Lato", sans-serif;
  color: #FFF;
  position: relative;
  display: inline-block;
  margin: 0 auto;
  width: 200px;
  height: 50px;
  overflow: hidden;
}
.btn-animate > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 50px;
  stroke-width: 8px;
  stroke: #F9690E;
  stroke-linecap: round;
  fill: transparent;
}
.btn-animate > span {
  color: #F9690E;
  width: 200px;
  height: 50px;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 2.3;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
.btn-animate > span:after {
  position: absolute;
  content: 'LETS GO!';
  color: #F9690E !important;
  top: 0;
  left: -100%;
  width: 200px;
  height: 50px;
  color: #0F0F0F;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
.btn-animate > span:before {
  position: absolute;
  content: '';
  height: 50px;
  z-index: 0;
  width: 50px;
  background-color: #F9690E;
  border-radius: 50%;
  top: 0;
  left: -63%;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
.btn-animate:hover > svg {
  -webkit-animation: 1s pencil linear forwards;
          animation: 1s pencil linear forwards;
}
.btn-animate:hover > span {
  left: 100%;
}
.btn-animate:hover > span:after {
  left: -100%;
}

.ripple-effect {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1px solid #F9690E;
  -webkit-animation: ripple-animation 2.5s;
          animation: ripple-animation 2.5s;
}

@-webkit-keyframes pencil {
  0% {
    stroke-dasharray: 300;
    stroke-dashoffset: 700;
    stroke-width: 8px;
  }
  75% {
    stroke-dasharray: 900;
    stroke-dashoffset: 400;
    stroke-width: 1px;
    fill: transparent;
  }
  100% {
    stroke-dasharray: 900;
    stroke-dashoffset: 400;
    stroke-width: 1px;
    fill: #191919;
  }
}

@keyframes pencil {
  0% {
    stroke-dasharray: 300;
    stroke-dashoffset: 700;
    stroke-width: 8px;
  }
  75% {
    stroke-dasharray: 900;
    stroke-dashoffset: 400;
    stroke-width: 1px;
    fill: transparent;
  }
  100% {
    stroke-dasharray: 900;
    stroke-dashoffset: 400;
    stroke-width: 1px;
    fill: #191919;
  }
}
@-webkit-keyframes ripple-animation {
  from {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(30);
            transform: scale(30);
    opacity: 0;
  }
}
@keyframes ripple-animation {
  from {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(30);
            transform: scale(30);
    opacity: 0;
  }
}
