.wrapper {
	display: flex;
	justify-content: center;
	margin-left:-350px;
  }
  
  .cta {
	background: #00a8ff none repeat scroll 0 0;
	/* border-radius: 30px; */
	/* box-shadow: 0 4px 20px 0 rgba(0, 168, 255, 0.45); */
	  display: flex;
	  padding: 10px 45px;
	  text-decoration: none;
	  font-family: 'Poppins', sans-serif;
	  font-size: 30px;
	  color: white;
	  font-weight:bold;
	  /* background: #6225E6; */
	  transition: 1s;
	  box-shadow: 6px 6px 0 rgba(0, 168, 255, 0.45);
	  -webkit-transform: skewX(-15deg);
			  transform: skewX(-15deg);
  }
  
  .cta:focus {
	 outline: none; 
  }
  
  .cta:hover {
	  transition: 0.5s;
	  box-shadow: 10px 10px 0 #FBC638;
  }
  
  .cta span:nth-child(2) {
	  transition: 0.5s;
	  margin-right: 0px;
  }
  
  .cta:hover  span:nth-child(2) {
	  transition: 0.5s;
	  margin-right: 45px;
  }
  
	/* span {
	  -webkit-transform: skewX(15deg);
			  transform: skewX(15deg) 
	} */
  
	/* span:nth-child(2) {
	  width: 20px;
	  margin-left: 30px;
	  position: relative;
	  top: 12%;
	} */
	
  /**************SVG****************/
  
  path.one {
	  transition: 0.4s;
	  -webkit-transform: translateX(-60%);
			  transform: translateX(-60%);
  }
  
  path.two {
	  transition: 0.5s;
	  -webkit-transform: translateX(-30%);
			  transform: translateX(-30%);
  }
  
  .cta:hover path.three {
	  -webkit-animation: color_anim 1s infinite 0.2s;
			  animation: color_anim 1s infinite 0.2s;
  }
  
  .cta:hover path.one {
	  -webkit-transform: translateX(0%);
			  transform: translateX(0%);
	  -webkit-animation: color_anim 1s infinite 0.6s;
			  animation: color_anim 1s infinite 0.6s;
  }
  
  .cta:hover path.two {
	  -webkit-transform: translateX(0%);
			  transform: translateX(0%);
	  -webkit-animation: color_anim 1s infinite 0.4s;
			  animation: color_anim 1s infinite 0.4s;
  }
  
  /* SVG animations */
  
  @-webkit-keyframes color_anim {
	  0% {
		  fill: white;
	  }
	  50% {
		  fill: #FBC638;
	  }
	  100% {
		  fill: white;
	  }
  }
  
  @keyframes color_anim {
	  0% {
		  fill: white;
	  }
	  50% {
		  fill: #FBC638;
	  }
	  100% {
		  fill: white;
	  }
  }