.container {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.headline {
  text-align: left;
  text-transform: none;
  margin-top: 15px;
  margin-bottom: 30px;
  font-family: Manrope, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}

.text-block {
  color: #fff;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.section {
  background-color: #0000;
  background-image: url('../images/bkg.jpg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.div-block-4 {
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  display: flex;
}

.heading {
  color: #fff;
  font-family: Manrope, sans-serif;
  font-weight: 200;
}

.bold-text-2 {
  color: #fff;
  font-weight: 200;
}

.link {
  color: #fff;
  text-decoration: none;
}

.link:hover {
  color: #ffd900;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.image {
  width: 30%;
  margin-bottom: 20px;
}

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

  .section {
    padding-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .text-block {
    text-align: left;
  }

  .section {
    padding-right: 20px;
  }

  .div-block-4 {
    margin-top: 20px;
  }

  .bold-text-2 {
    font-size: 22px;
  }

  .image {
    width: 60%;
  }
}

@media screen and (max-width: 479px) {
  .headline {
    font-size: 22px;
    line-height: 26px;
  }

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

  .bold-text-2 {
    font-size: 20px;
  }

  .image {
    width: 80%;
  }
}


