/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 24 2024 | 19:15:43 */
.strategy-anim{
  position: relative;
}

.strategy-anim::before{
  content: "STRATEGY";
  position: absolute;
  width: 0%;
  height: 100%;
  overflow: hidden;
  color: #0431FE;
  clip-path: circle(20% at 100% 90%);
  transition: clip-path 2.5s;
}

.strategy-anim:hover::before{
  width: 100%;
  clip-path: circle(100% at 0% 90%);
}


.creative-anim{
  position: relative;
}

.creative-anim::before{
  content: "CREATIVE";
  position: absolute;
  width: 0%;
  height: 100%;
  overflow: hidden;
  color: #ED145B;
  clip-path: circle(20% at 0% 90%);
  transition: clip-path 2.5s;
}

.creative-anim:hover::before{
  width: 100%;
  clip-path: circle(100% at 100% 90%);
}


.digital-anim{
  position: relative;
}

.digital-anim::before{
  content: "DIGITAL";
  position: absolute;
  width: 0%;
  height: 100%;
  overflow: hidden;
  color: #95EA0F;
  clip-path: circle(20% at 100% 90%);
  transition: clip-path 2.5s;
}

.digital-anim:hover::before{
  width: 100%;
  clip-path: circle(100% at 0% 90%);
}