@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.animate {
  animation: marquee 12s linear infinite;
}

.cta:hover .right-arrow{
  transition: transform 0.2s ease-in-out;
  transform: translateX(8px);
}
.gradient-underline {
  background-image: linear-gradient(90deg, #62f992, #c1e424, #f98d62);
  background-repeat: no-repeat;
  background-size: 100% 2px; /* Adjust thickness of the underline */
  background-position: bottom; /* Position the underline */
  padding-bottom: 2px; /* Space between text and underline */
}

.hiddenn {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease, max-height 0.3s ease;
}

[id^="box-"] {
  opacity: 1;
  max-height: 500px;
  transition: all 0.3s ease, max-height 0.3s ease;
}
.g-border {
  border: 3px solid transparent;
  border-image: linear-gradient(to right, rgb(17, 202, 17), #0658a0) 1;
  border-image-slice: 1;
  padding: 25px;
}
.g-border-bot {
  border: 1px solid transparent;
  border-image: linear-gradient(to bottom, rgb(17, 202, 17), #0658a0) 1;
  border-image-slice: 1;
  /*padding: 10px;*/
}