.about-page {
  overflow-wrap: break-word;
}

.page-wrapper {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url('/images/help/help-bg.svg');
  background-repeat: no-repeat;
  background-position: -60px -110px;

  @media (min-width: 768px) {
    background-position: top -40px center;
  }
}

.about-card-grid {
  display: grid;
  gap: 36px;

  @media (min-width: 1200px) {
    grid-template-rows: auto auto auto;
  }

  .about-card-row {
    display: grid;
    gap: 36px;
  }
  .about-card-row:nth-child(1) {
    @media (min-width: 1200px) {
      grid-template-columns: 4fr 3fr 3fr;
    }
  }
  .about-card-row:nth-child(2) {
    @media (min-width: 1200px) {
      grid-template-columns: 3fr 5fr 3fr;
    }
    .about-card {
      justify-content: flex-end;
    }
  }
  .about-card-row:nth-child(3) {
    @media (min-width: 1200px) {
      grid-template-columns: 3fr 3fr 4fr;
    }
    .about-card {
      justify-content: flex-end;
    }
  }

  .about-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid var(--gray-500);
    padding: 30px;
  }

  .about-card-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 24px;
  }
  .about-card-title:hover {
    color: var(--magenta);
  }

  .about-card-text {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
  }
}

.about-check-table {
  display: flex;
  flex-direction: column;
  gap: 50px;

  @media (min-width: 768px) {
    gap: 70px;
  }

  .about-check-row {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;

    @media (min-width: 768px) {
      flex-direction: row;
      gap: 0;
    }
  }

  .about-check-title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    text-align: center;

    @media (min-width: 768px) {
      text-align: initial;
      width: 60%;
    }
  }

  .about-check-icons-box {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .about-check-icon {
    width: 100%;
    text-align: center;
  }
}

.download-section-container {
  background: linear-gradient(0.87deg, #de758b -15.18%, #bf76b6 99.02%);
}

.business-form-bg-wrapper {
  background-image: linear-gradient(18.49deg, #ac76d1 6.44%, #7f79d2 87.55%);
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 0;
}

.business-form-bg {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url('/images/index/glabix-screen/index/demo-form-bg.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
