.header {
  width: 100vw;
  height: 100vh;
}

.background-video {
  width: 100%;
  height: 100%;
}

.div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -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;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.heading {
  margin-top: 0px;
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 52px;
  line-height: 52px;
  font-weight: 400;
  text-transform: uppercase;
}

.heading-2 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Lato, sans-serif;
  font-size: 24px;
  line-height: 24px;
  font-weight: 300;
}

.div-block-2 {
  margin-top: 40px;
}

.link {
  display: inline-block;
  margin-right: 15px;
  padding: 10px 15px;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  text-decoration: none;
}

.link:hover {
  background-color: #000;
  color: #fff;
}

.body {
  background-color: #000;
  font-family: Lato, sans-serif;
}

.image {
  width: 200px;
}

@media screen and (max-width: 991px) {
  .heading {
    font-size: 48px;
    line-height: 48px;
  }

  .heading-2 {
    font-size: 22px;
    line-height: 22px;
  }

  .image {
    width: 160px;
  }
}

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

  .heading-2 {
    font-size: 22px;
    line-height: 22px;
  }

  .image {
    width: 100px;
  }
}

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

  .heading-2 {
    font-size: 18px;
    line-height: 18px;
  }

  .body {
    background-color: #000;
  }

  .image {
    width: 120px;
  }
}