.section {
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.column, .column-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading {
  margin-top: 100px;
  margin-bottom: 20px;
  font-family: Barlow, sans-serif;
  font-size: 6rem;
  font-weight: 700;
}

.heading-2 {
  text-transform: uppercase;
  margin-top: 15px;
  font-family: Barlow, sans-serif;
  font-size: 4rem;
}

.image {
  width: 350px;
}

.paragraph {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 25px;
  font-family: Barlow, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}

.columns {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-2 {
  height: 550px;
}

.button {
  text-transform: uppercase;
  background-color: #0152eb;
  border-radius: 5px;
  font-family: Barlow, sans-serif;
  font-weight: 600;
  transition: all .475s;
  box-shadow: 0 0 10px 2px rgba(130, 130, 130, .73);
}

.button:hover {
  box-shadow: none;
}

@media screen and (max-width: 991px) {
  .section {
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .column-2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .columns {
    display: block;
  }

  .button {
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .button {
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-bottom: 0;
    padding-left: 25px;
    padding-right: 25px;
  }

  .heading {
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 60px;
  }

  .heading-2 {
    margin-top: 0;
    font-size: 40px;
  }

  .image {
    width: 100vw;
  }

  .paragraph {
    margin-top: 25px;
    font-size: 20px;
    line-height: 25px;
  }

  .image-2 {
    height: auto;
  }

  .button {
    text-transform: uppercase;
    padding: 10px;
    line-height: 25px;
  }
}


