.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url('../images/he07.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/he07.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.heading {
  font-family: Lato, sans-serif;
  color: #c4c4c4;
  font-size: 24px;
}

.paragraph {
  margin-top: -12px;
  font-family: Lato, sans-serif;
  color: #f99a00;
  font-size: 20px;
  font-weight: 300;
}

@media screen and (max-width: 479px) {
  .section {
    padding: 40px;
  }
  .heading {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    text-align: center;
  }
  .paragraph {
    font-size: 14px;
  }
}

