.content-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.wdc-logo {
  width: 360px;
  margin-bottom: 40px;
}

.heading {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.text-block {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #000;
  background-image: url('../images/white-arrow.svg');
  background-position: 96%;
  background-repeat: no-repeat;
  background-size: auto 12px;
  border-radius: 5px;
  margin-top: 15px;
  padding-right: 38px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  transition: background-color .2s;
}

.button:hover {
  background-color: #375cd8;
}

@media screen and (max-width: 991px) {
  .content-wrap {
    height: auto;
    min-height: 100vh;
    padding: 120px 60px;
  }

  .heading {
    margin-bottom: 20px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 767px) {
  .heading {
    font-size: 32px;
  }
}

@media screen and (max-width: 479px) {
  .content-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  .wdc-logo {
    width: 100%;
    margin-bottom: 0;
  }

  .heading {
    font-size: 26px;
  }

  .text-block {
    font-size: 17px;
  }
}


