.gd-title {
  background: linear-gradient(104.04deg,
      #1472ff -4%,
      #47a9ff 23%,
      #adc3ff 50%,
      #ffadc9 77%,
      #ff476b 104%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: fit-content;
}

@keyframes slides {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.animate-slides {
  animation: slides 30s infinite linear;
}

.hero-brand {
  mask-image: linear-gradient(to right,
      rgba(0, 0, 0, 0) 0%,
      rgb(0, 0, 0) 25%,
      rgb(0, 0, 0) 75%,
      rgba(0, 0, 0, 0) 100%);
}

.hero-brand:hover .animate-slides {
  animation-play-state: paused;
}

.b-active {
  background-image: linear-gradient(180deg, rgba(152, 161, 174, 0.08) 0%, rgba(152, 161, 174, 0.08) 0.01%, rgba(20, 114, 255, 0) 100%);
  border: 1px solid #98a1ae14;
  color: #47a9ff;
}

@media screen and (max-width: 991px) {
  .hero-brand .inline-flex.logo_items.animate-slides:first-child {
    display: none;
  }
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}

.accordion-content.show {
  max-height: auto;
}

.accordion-header svg {
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

.accordion-header svg {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.accordion-header svg.rotate-180 {
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}

.glowing-button-gradient {
  animation: spin 4s linear infinite;
  background: conic-gradient(rgb(20, 114, 255) 0deg,
      rgb(71, 169, 255) 60deg,
      rgb(173, 195, 255) 120deg,
      rgb(255, 173, 201) 180deg,
      rgb(255, 71, 107) 240deg,
      rgb(20, 114, 255) 300deg);
  z-index: 1;
  height: 500%;
  width: 120%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10%;
  right: 0;
}

.glowing-button-inner {
  z-index: 3;
}

.glowing-button {
  z-index: 4;
}

.glowing-button-inner-overlay {
  z-index: 1;
  width: 99%;
  height: 99%;
  position: absolute;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}