* {
	-webkit-box-sizing:border-box;
	box-sizing:border-box
}
#root,body,html{
	height:100%
}
body{
	margin:0;
	padding:0;
	font-family:Lato,sans-serif
}
h1{
	font-size:32px;
	font-weight:300;
	margin:0 0 10px
}
h2{
	font-size:25px;
	margin:0 0 15px
}
h2,h3{
	font-weight:600
}
h3{
	margin:0 0 5px
}
h3,h4{
	font-size:17px
}
h4{
	font-weight:400;
	color:#9a9a9a;
	margin:0 0 10px
}
p{
	font-size:16px;
	line-height:1.7;
	color:#333
}
a.animatedLink{
	text-decoration:none;
	position:relative;
	-webkit-transition:color .2s cubic-bezier(.4,0,.2,1);
	-o-transition:color .2s cubic-bezier(.4,0,.2,1);
	transition:color .2s cubic-bezier(.4,0,.2,1)
}
a.animatedLink:before{
	content:"";
	display:block;
	position:absolute;
	left:0;
	bottom:-4px;
	height:1px;
	width:0;
	-webkit-transition:width 0s cubic-bezier(.4,0,.2,1),background .3s cubic-bezier(.4,0,.2,1);
	-o-transition:width 0s cubic-bezier(.4,0,.2,1),background .3s cubic-bezier(.4,0,.2,1);
	transition:width 0s cubic-bezier(.4,0,.2,1),background .3s cubic-bezier(.4,0,.2,1)
}
a.animatedLink:hover:before{
	width:100%
}
a.animatedLink:after,
a.animatedLink:hover:before{
	background:#89cce7;
	-webkit-transition:width .3s cubic-bezier(.4,0,.2,1);
	-o-transition:width .3s cubic-bezier(.4,0,.2,1);
	transition:width .3s cubic-bezier(.4,0,.2,1)
}
a.animatedLink:after{
	content:"";
	display:block;
	position:absolute;
	right:0;
	bottom:-4px;
	height:1px;
	width:0
}
a.animatedLink:hover:after{
	width:100%;
	background:transparent;
	-webkit-transition:all 0s cubic-bezier(.4,0,.2,1);
	-o-transition:all 0s cubic-bezier(.4,0,.2,1);
	transition:all 0s cubic-bezier(.4,0,.2,1)
}
.blueText{
	color:#89cce7
}
.headroom:not(.headroom--unpinned){
	border-bottom:1px solid #dedede
}

.hero {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
	background: url(images/homeHero2.png) center center / cover no-repeat;
}
.hero-content {
	margin: 0px auto;
	padding: 20vh 25px 50px 25px;
	max-width: 940px;
}
.text-columns {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.text-line {
	will-change: transform, opacity;
	opacity: 1;
	transform: translate(0px, 0px);
	transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 1s cubic-bezier(0.42, 0, 0.58, 1); 
}
.copy-container {
	padding-right: 100px;
}
.copy-container p {
	max-width: 30em;
}
