    .circle {
    stroke: #F2C438;
    stroke-dasharray: 650;
    stroke-dashoffset: 650;
    -webkit-transition: all 0.5s ease-in-out;
    opacity: 0.3;
  }
  
  .playBut {
    /*  border: 1px solid red;*/
    display: inline-block;
    -webkit-transition: all 0.5s ease;
  }
  .playBut .triangle {
    -webkit-transition: all 0.7s ease-in-out;
    stroke-dasharray: 240;
    stroke-dashoffset: 480;
    stroke: #ffffff;
    transform: translateY(0);
  }
  .playBut:hover .triangle {
    stroke-dashoffset: 0;
    opacity: 1;
    stroke: #F2C438;
    animation: nudge 0.7s ease-in-out;
  }
  @keyframes nudge {
    0% {
      transform: translateX(0);
    }
    30% {
      transform: translateX(-5px);
    }
    50% {
      transform: translateX(5px);
    }
    70% {
      transform: translateX(-2px);
    }
    100% {
      transform: translateX(0);
    }
  }
  .playBut:hover .circle {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  