.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 .heading {
  max-width: 69.1875rem;
}

.columns .columns__top .body--2 {
  max-width: 51.6875rem;
}

.columns .columns__list {
  gap: 1.5rem;
}

.columns .columns__list .column {
  flex: 1 1 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 0.5rem;
  border: 1px solid var(--black-400, rgba(26, 24, 36, 0.1));
  background: var(--purple-300, #f9f8fc);
}

.columns .column .column__icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 2.5rem;
}

.columns .column .column__content {
  flex: 1 1 auto;
}

.columns .column .column__content .heading {
  margin-bottom: 1rem;
  min-height: 5.25rem;
}

@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 .heading {
    max-width: 100%;
  }

  .columns .columns__top .body--2 {
    max-width: 51.6875rem;
  }

  .columns .columns__list {
    gap: 1rem;
  }

  .columns .columns__list .column {
    min-height: auto;
    flex: 1 1 auto;
  }

  .columns .column .column__icon {
    width: 2.625rem;
    height: 2.625rem;
    margin-bottom: 1.5rem;
  }

  .columns .column .column__content .heading {
    margin-bottom: 0.5rem;
    min-height: auto;
  }
}
