.hero-bg {
	height: 100vh;
}

html,
body {
	margin: 0;
	height: 100vh;
	overflow: hidden;
}

.header-logo-image {
	width: 40px;
}

.device-mockup {
	width: 500px;
}


@media screen and (max-height: 1200px) {
	.hero-inner {
		overflow: auto;
	}
}

.hero .hero-bg {
    background-image: url(../images/background.jpg) !important;
    background-size: cover;
    background-position-x: 50%;
}

.hero-bg:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: black;

}

.hero-copy {
    background-color: #00209ba1;
    padding: 40px;
    border-radius: 25px;
    max-width: 607px;
    box-shadow: #000b81 0px 0px 10px;
}

.final-email {
    padding-top: 28px;
    margin-bottom: 0;
    font-size: 17px;
}

a {
    text-decoration:none;
}

.fade-in {
    animation: fadeIn 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
