.header {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-image: url('../images/biznexx-bg.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.info {
  width: 50%;
  margin-bottom: 181px;
  padding: 60px 45px;
  background-color: #fff;
  font-family: Bitter, serif;
}

.heading {
  margin-top: 0px;
  padding-bottom: 15px;
  font-family: 'Droid Sans', sans-serif;
  color: #000;
}

.link {
  color: #000;
}

.heading-2 {
  font-family: 'Droid Sans', sans-serif;
  color: #000;
}

@media (max-width: 991px) {
  .header {
    height: 100vw;
    background-position: 50% 0px;
    background-size: contain;
  }
  .info {
    position: absolute;
    width: 100%;
    padding-top: 60px;
  }
}

@media (max-width: 479px) {
  .header {
    position: absolute;
    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-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .heading {
    font-size: 33px;
  }
  .heading-2 {
    font-size: 19px;
  }
}