.body {
  background-color: #0d2a4f;
  background-image: linear-gradient(#19457d, #0d2a4f 54%);
}

.wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
}

.bg {
  z-index: 1;
  opacity: .13;
  background-image: url('../images/maintenance-bg.jpg');
  background-position: 0 0;
  background-size: auto;
  position: absolute;
  inset: 0%;
}

.content-wrapper {
  z-index: 2;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  display: flex;
  position: relative;
}

.heading {
  color: #fff;
  margin-bottom: 32px;
  font-size: 62px;
}

.paragraph {
  color: #fff;
  text-align: center;
  max-width: 800px;
  font-family: Poppins, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 145%;
}

.mountains {
  margin-bottom: 12px;
}

.logo-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: auto 0% 8%;
}

@media screen and (max-width: 991px) {
  .heading {
    line-height: 115%;
  }
}

@media screen and (max-width: 479px) {
  .wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .content-wrapper {
    margin-top: 80px;
  }

  .heading {
    font-size: 34px;
  }

  .paragraph {
    font-size: 18px;
  }

  .logo-wrapper {
    margin-top: 80px;
    position: relative;
    bottom: 3%;
  }
}


