html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

*,
*::before,
*::after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	font-size: 1.0em; /* currently ems cause chrome bug misinterpreting rems on body element */
	line-height: 1.6;
	font-weight: 400;
	font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #222; 
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 2rem;
	font-weight: 300; 
}
h1 { font-size: 2.0rem; line-height: 1.2; }
h2 { font-size: 1.8rem; line-height: 1.25;}
h3 { font-size: 1.6rem; line-height: 1.3;}
h4 { font-size: 1.4rem; line-height: 1.35;}
h5 { font-size: 1.2rem; line-height: 1.5;}
h6 { font-size: 1.0rem; line-height: 1.6;}


p {
	margin-top: 0; 
}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
	color: #1EAEDB; 
}
a:hover {
	color: #0FA0CE; 
}

img {
	width: 100%;
	height: auto;
}

section {
	margin: 10rem auto;
}




.hero {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-color: #000;
	color: #fff;
	overflow: hidden;
}

.hero h1 {
	margin: 0;
	opacity: .9;
}


.hero-text {
	padding: 25px; 
	text-align: center;
	width: 100%;
	font-weight: bold;
}

.hero-text p {
	margin: 0;
	font-weight: bold;
}

.highlight {
	font-style: italic;
}

.author {
	font-size: 0.8rem; 
}

.team .team-name {
	text-align: center;
}

.team .team-name .position{
	opacity: .7;
}

.team .team-icon {
	max-width: 16px;
}


/* Hover */

.hover-outer-box {
	position: relative;
	display: flex;
	align-content: stretch;
	align-items: stretch;
}

.hover-outer-box .hover-inner-box {
	background: rgba(0, 0, 0, 0.9);
	height: 100%;
	width: 100%;
	opacity: 0;
	top: 0;
	left: 0;
	position: absolute;
	padding: 0;
	transition: opacity .5s;
	color: #fff;
	display: flex;
	align-items: center;
}

.hover-outer-box:hover .hover-inner-box {
	opacity: .9;
	transition: opacity .5s;
}

.hover-outer-box .hover-inner-box .hover-content{
	text-align: center;
	width: 100%;
	padding: 1rem;
}

/* Mediaqueries */

@media (max-width: 1280px) {
	.navigation-bar .logo{
		margin:  0 auto;
	}
	.navigation-bar nav{
		display: none;
	}

	.row {
		margin: 0 auto;
		padding-left: 1rem; 
		padding-right: 1rem; 
	}

	.cta .display {
		margin-top: 1rem;
	}
}


/* animation  */
@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


.fade-in {
	-webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}