html {
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #333;
}

p {
  margin: 0;
}

.unisalute-maintenance {
  position: relative;
  min-height: 100vh;
}

.unisalute__header {
  height: 110px;
  width: 100%;
  background: linear-gradient(270deg, #0B5E66 19.65%, #0B5E66 33.89%, #0B5E66 46.29%, #064B64 78.3%, #013762 90.52%);
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.unisalute__image-background {
  height: calc(100vh - 170px);
  width: 100%;
  background-image: url("./background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.unisalute__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 780px;
  margin: 0 auto;
  height: 100%;
}

.unisalute__content h1 {
  font-family: 'Objectivity', sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  color: #fff;
}

.unisalute__content p {
  color: #fff;
  text-align: center;
  font-family: 'Objectivity', sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.unisalute__footer {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #003B5C;
  padding: 0 40px;
  position: absolute;
  bottom: 0;
  z-index: 5;
}


/* RESPONSIVE */
@media screen and (max-width: 1024px) {

  .unisalute__header {
    padding: 0 30px;
    height: 80px;
  }

  .unisalute__image-background {
    height: calc(100vh - 140px);
    background-image: url("./background_mobile.jpg");
  }

  .unisalute__content {
    padding: 0 16px;
  }

  .unisalute__content h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .unisalute__content p {
    font-size: 16px;
    line-height: 24px;
  }

  .unisalute__footer {
    padding: 0 30px;
  }

}