.hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -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;
  background-image: url('../images/bg-pattern.png'),
					url('../images/bg-blush.jpg');
  background-attachment: auto, fixed;
  background-position: 50% 50%, center;
  background-repeat: repeat, no-repeat;
  background-size: 80px, cover;
  min-height: 100%;
  -webkit-perspective: 108px;
  perspective: 108px;
}

.imprel-logo {
  width: 30%;
}

.link {
  font-family: 'Open Sans', sans-serif;
  color: #000;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
  text-decoration: none;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -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;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media (max-width: 991px) {
	margin: 0;
	height: 100%;
	overflow: hidden
	scrollbar-width: none;
    -ms-overflow-style: none;
  .imprel-logo {
    width: 40%;
  }
  .link {
    font-size: 22px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
	margin: 0;
	height: 100%;
	overflow: hidden
	scrollbar-width: none;
    -ms-overflow-style: none;
  .link {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 479px) {
	margin: 0;
	height: 100%;
	overflow: hidden
	scrollbar-width: none;
    -ms-overflow-style: none;
  .hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .imprel-logo {
    width: 70%;
  }
  .link {
    text-align: center;
  }
}