@keyframes animation-center {
  0% {
    transform: translateY(-65%) translateX(-50%);
  }
  50% {
    transform: translateY(30%) translateX(-50%);
  }
  100% {
    transform: translateY(-65%) translateX(-50%);
  }
}
@keyframes animation-left {
  0% {
    transform: translateY(-15%) translateX(0%) skew(-40deg, 20deg);
  }
  50% {
    transform: translateY(150%) translateX(150%) skew(40deg, 0deg);
  }
  100% {
    transform: translateY(-15%) translateX(0%) skew(-40deg, 20deg);
  }
}
@keyframes animation-right {
  0% {
    transform: translateY(-35%) translateX(0%) skew(40deg, 20deg);
  }
  50% {
    transform: translateY(150%) translateX(-150%) skew(-40deg, 0deg);
  }
  100% {
    transform: translateY(-35%) translateX(0%) skew(40deg, 20deg);
  }
}
.animation_wrapper {
  filter: blur(var(--gradient-blur-radius, 160px));
  z-index: -4;
  top: -360px;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 800px;
  margin: 0 auto;
  position: absolute;
}

.animation {
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.1, 0, 0.9, 1);
  position: absolute;
  border-radius: 100%;
  opacity: 70%;
}

.animation_center {
  width: 300px;
  height: 300px;
  z-index: -2;
  left: 50%;
  top: 20%;
  animation-name: animation-center;
  background: rgb(246, 130, 31);
}

.animation_left {
  width: 300px;
  height: 300px;
  z-index: -1;
  left: 0%;
  top: 0%;
  animation-name: animation-left;
  animation-direction: reverse;
  background: rgb(255, 102, 51);
}

.animation_right {
  width: 300px;
  height: 300px;
  z-index: -3;
  right: 0%;
  top: 0%;
  animation-name: animation-right;
  background: rgb(251, 173, 65);
}

.parent {
  background-image: url("../../../../images/grid.png");
  background-size: auto;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

div.parent > div.contentIndex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 1200px;
}

div.parent > div > span {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
}

div.parent > div > span > a,
:visited {
  color: unset;
}

main.content-large > div.row4 {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 128px;
}

main.content-large > div.row4 > div.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 0px;
}

/*# sourceMappingURL=style.css.map */
