/******* Do not edit this file *******
Code Snippets Manager
Saved: Aug 04 2025 | 16:01:22 */
/* Slides the arrow to the right on hover in the Services section on homepage */
#arrow-animation:hover .arrow-image {
  transform: translateX(7px);
  transition: transform 0.3s ease;
}
#arrow-animation .arrow-image {
  transition: transform 0.3s ease;
}
/* Rotates the 'Expert care for every boat' text circle infinitely */
#circle-text svg {
  animation: rotate 40s linear infinite;
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
