.ellipse-bg {
  position: relative;
  z-index: 1;
}

@keyframes extinction {
  0% {
    height: 160px;
  }

  100% {
    height: 0px;
  }
}

@keyframes blink {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

.ellipse-bg::before {
  position: absolute;
  content: '';
  background: linear-gradient(97.62deg, rgba(52, 137, 216, 0.856) 2.27%, rgba(42, 205, 255, 0.699) 50.88%, rgb(50, 153, 221) 98.48%);
  filter: blur(125px);
  height: 160px;
  left: 5%;
  top: 5%;
  transform: matrix(-.95, -.3, -.3, .95, 200, 250);
  width: 600px;
  z-index: -1;
  opacity: 0.8;

}
@media screen and (max-width: 992px) {
  .ellipse-bg :before{
    display: none;
  }
}


.scroll-text {
  display: flex;
  position: relative;
  width: 100%;
  height: 32px;
  margin: auto;
  overflow: hidden;
  z-index: 1;
}
.scroll-slider {
  background-color: transparent;
}
.fs-32{
    font-size: 32px;
}
.fs-14{
    font-size: 14px;
}
.list-group-domai{
    background-color: transparent !important;
}
.list-group-item-domain{
    background-color: transparent !important;
    color: white;
    padding: 0.5rem 0;
    display: flex;
    gap: 8px;
}
.list-group-item-domain i{
    color: aquamarine;
}

.scroll-text__wrapper {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  transition: all 1s ease;
}

.scroll-text__title {
  margin: 0;
  font-size: 22px;
  color: whitesmoke;
  font-weight: 300;
  line-height: 1.2;
  transition: all 2s ease;
}

.scroll-text__area {
  display: flex;
  gap: 32px;
  animation: scrollText 33s infinite linear;
}
@media screen and (max-width: 992px) {
    .ellipse-bg-end:before {
        display: none;
    }

    .ellipse-bg:before {
        display: none;
    }
}

@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
