html, body {
	padding: 0;
	margin: 0;
}

.page-container {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.text-container {
	padding: 50px 100px 0px 100px;
	margin-top: 0;
}

.img-container {
	height: 100vh;
	overflow: hidden;
}

.img-container > img {
	width: 100%;
}

.open-sans-title {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

h1 {
	font-size: 3.5em;
}

.open-sans-copy {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
    font-size: 1.25em;
}

.open-sans-caption {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
    font-size: 1em;
}

.linkedin-container {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: grid;
    grid-template-columns: auto auto;
    grid-gap: 20px;
    align-items: center;
}

.heco-logo-container {
	position: absolute;
	top: 20px;
	left: 20px;
}

.motivational-container {
	position: absolute;
	bottom: 0px;
	width: 50%;
	background: #474747;
	text-align: center;
	color: white;

}

@media screen and (max-width: 1000px) {

	.page-container {
		grid-template-columns: 1fr;
		grid-template-rows: 500px auto;
	}

	.img-container {
		height: auto;
	}

	.motivational-container {
		top: 500px;
		width: 100%;
		bottom: auto;
	}

}