#banner {
  display: none;
}

.banner__hero {
  color: #fff;
  width: 100%;
  background: url(../img/banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
}

/* .banner__hero {
  color: #fff;
  width: 100%;
  height: 35vh;
} */

.banner__hero a {
  color: #fff;
  margin-top: -1rem;
}

.banner__hero img {
  position: absolute;
  width: 100%;
  z-index: -1;
}

.info__banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.info__banner h2 {
  margin-top: 8rem;
}

.info__banner p {
  margin-top: 1rem;
}

.info__banner a {
  background: #2a7ae4;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #2a7ae4;
  transition: 600ms;
}

/*      Responsive Design        */

/*        Tablet        */

@media screen and (min-width: 767px) and (max-width: 1023px) {
  .info__banner {
    padding: 11rem 5rem;
  }
}

/* Desktop */

@media screen and (min-width: 1024px) {

  #banner {
    display: none;
  }

  .banner__hero {
    background: url(../img/banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
  }

  .info__banner {
    text-align: center;
    padding: 24rem 5rem;
    font-size: 22px;
  }

  .info__banner a {
    margin-top: 3rem;
  }

  .info__banner a:hover {
    background: #fff;
    color: #2a7ae4;
    scale: 1.1;
    box-shadow: 5px 4px 5px #2a7ae4;
  }

  .banner__hero img {
    height: 90%;
  }
}