.column {
  width: 100%;
  height: 100vh;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.container {
  max-width: 1200px;
  display: block;
}

.heading {
  text-transform: uppercase;
  font-family: Space Grotesk, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.paragraph {
  font-family: Space Grotesk, sans-serif;
  font-size: 16px;
}

.links {
  flex-direction: column;
  display: flex;
}

.link {
  color: #333;
  font-family: Space Grotesk, sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.wrapper {
  display: flex;
}

@media screen and (max-width: 991px) {
  .column {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .column {
    justify-content: flex-start;
  }

  .wrapper {
    flex-direction: column;
  }
}

@media screen and (max-width: 479px) {
  .column {
    justify-content: flex-start;
  }

  .container {
    flex-direction: column;
    justify-content: center;
  }

  .wrapper {
    flex-direction: column;
    display: flex;
  }
}


