.list-block.section-pattern-background::before {
  top: -7rem;
}
.list-block .list-block__top .body {
  max-width: 51.6875rem;
}

.list-block .list-block__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.list-block .list-block__item { 
  position: relative;
  width: 100%;
  background: var(--white-1000, #fff);
  border-radius: 1.25rem;
  min-height: 14.25rem;
  overflow: hidden;
}

.list-block .list-block__item::before,
.list-block .list-block__item::after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
  background: var(
    --icons,
    linear-gradient(102deg, #984eff -0.24%, #c87ff6 53.52%, #8989e6 90.67%)
  );
  filter: blur(4.6875rem);
  border-radius: 100%;
  transition: transform 0.6s ease, opacity 0.6s linear;
}

.list-block .list-block__item::before {
  width: 33.375rem;
  height: 14.125rem;

  top: -9.3125rem;
  left: 38.75%;

  transform: rotate(-30.71deg);
}

.list-block .list-block__item::after {
  width: 24.4375rem;
  height: 10.3125rem;

  bottom: -4.75rem;
  right: -32.03125%;

  transform: rotate(-148.14deg);
}

@keyframes moveListBefore {
  0% {
    left: 0%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 0%;
  }
}

@keyframes moveListAfter {
  0% {
    right: 0%;
  }
  50% {
    right: 100%;
  }
  100% {
    right: 0%;
  }
}

.list-block .list-block__item:hover::before {
  opacity: 0.38;
  animation: moveListBefore 4s ease-in-out infinite;
}

.list-block .list-block__item:hover::after {
  opacity: 0.38;
  animation: moveListAfter 4s ease-in-out infinite;
}

.list-block .list-block__item .item__content-wrapper{
	height: 100%;
}

.list-block .list-block__item .item__icon {
  position: relative;
  width: 12.5rem;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.list-block .list-block__item .item__icon img {
  position: absolute;
  width: 12.5rem;
  height: 12.5rem;
  left: -2.5rem;
  bottom: -0.75rem;
}

.list-block .list-block__item .item__content {
  padding: 2.5rem 2.5rem 2.5rem 0px;
}

.list-block .list-block__item .heading {
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  .list-block {
    gap: 3.75rem;
  }

  .list-block .section__top {
    margin-bottom: 0px;
  }

  .list-block .list-block__content {
    grid-template-columns: 1fr;
  }

  .list-block .list-block__item {
    min-height: auto;
  }

  .list-block .list-block__item .item__content {
    padding: 0rem 2.5rem 2.5rem;
  }

  .list-block .list-block__item .item__icon {
    width: 10rem;
    height: 9.3125rem;
  }

  .list-block .list-block__item .item__icon img {
    width: 10rem;
    height: 10rem;

    left: 0;
    top: -0.6875rem;
    bottom: auto;
  }
}
