/******* Do not edit this file *******
Code Snippets Manager
Saved: Sep 30 2025 | 10:25:58 */
/* Scroll Horitzontal Mobile */
.scroll-x, .scroll-x-mobile, .scroll-x-img {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-x::-webkit-scrollbar, .scroll-x-mobile::-webkit-scrollbar, .scroll-x-img::-webkit-scrollbar {
  display: none;
}
/* Smooth Scroll CSS */
html {
  scroll-behavior: smooth;
}
:target {
  scroll-margin-top: 10vh;
}
/* Animated Gradient*/
.animated-gradient {
  background: linear-gradient(90deg, #2050F6 0%, #EA4AC0 49%, #F45504 100%);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 3s ease infinite;
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
