.columns {
  position: relative;
}
.columns::before {
  display: block;
  content: "";
  position: absolute;
  top: -7rem;
  left: 0px;
  width: 100%;
  height: 90rem;
  background-image: url("../../../assets/images/Pattern.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: -1;
}
.columns .columns__top .columns__title {
  max-width: 44.4375rem;
}

.columns .columns__top .body {
  max-width: 37.5rem;
  margin-top: 0px;
}

.columns .columns__list {
  gap: 2rem;
}

.columns .columns__list .column {
  flex: 1 1 100%;
  position: relative;
  border-radius: 1.25rem;
  background: var(--white-1000, #fff);
  overflow: hidden;
}

.columns .columns__list .column:nth-of-type(2) {
  flex: 1 0 40rem;
}

.columns .columns__list .column::before,
.columns .columns__list .column::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;
}

.columns .columns__list .column::before {
  width: 33.375rem;
  height: 14.125rem;

  top: -9.3125rem;
  left: 38.75%;

  transform: rotate(-30.71deg);
}

.columns .columns__list .column::after {
  width: 24.4375rem;
  height: 10.3125rem;

  bottom: -4.75rem;
  left: -32.03125%;

  transform: rotate(-148.14deg);
}

@keyframes moveBefore {
  0% {
    transform: translateX(0) rotate(-30.71deg);
  }
  50% {
    transform: translateX(100%) rotate(-30.71deg);
  }
  100% {
    transform: translateX(0) rotate(-30.71deg);
  }
}

@keyframes moveAfter {
  0% {
    transform: translateX(0) rotate(-148.14deg);
  }
  50% {
    transform: translateX(100%) rotate(-148.14deg);
  }
  100% {
    transform: translateX(0) rotate(-148.14deg);
  }
}

.columns .columns__list .column:hover::before {
  opacity: 0.38;
  animation: moveBefore 2s ease-in-out infinite;
}

.columns .columns__list .column:hover::after {
  opacity: 0.38;
  animation: moveAfter 2s ease-in-out infinite;
}

.columns .column .column__content {
  width: 100%;
  height: 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 5rem;
}

.columns .column .column__icon {
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--purple-500, #d7c8ff);
  background: #f7f2ff;
}

.columns .column .column__icon img {
  width: 2.375rem;
  height: 2.375rem;
  display: block;
}

.columns .column .column__description {
  flex: 1 1 auto;
}

@media screen and (max-width: 1023px) {
  .columns .columns__list .column {
    flex: 0 1 calc(50% - 0.75rem);
  }
}

@media screen and (max-width: 767px) {
  .columns::before {
    top: -10rem;
    left: 0px;
    width: 100%;
  }
  .columns .columns__top .columns__title {
    max-width: 100%;
    margin-bottom: 1rem;
  }
  .columns .columns__list {
    gap: 1rem;
  }

  .columns .columns__list .column,
  .columns .columns__list .column:nth-of-type(2) {
    min-height: auto;
    flex: 1 1 auto;
  }

  .columns .column .column__icon {
    margin-bottom: 2rem;
  }

  .columns .column .column__icon img {
    width: 2.625rem;
    height: 2.625rem;
  }

  .columns .column .column__content .heading {
    margin-bottom: 0.5rem;
    min-height: auto;
  }
}
