@font-face {
	font-family: "somefont";
	src: url("../fonts/somefont.woff2");
}

body, html {
	margin: 0;
	padding: 0;
	font-family: "somefont";
	background-color: #FFF;
	text-transform: uppercase;
	line-height: 50px;
	-webkit-font-smoothing: antialiased;
	height: 100vh;
}

h1, h2 {
	margin: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

.nav {
	position: relative;
	background: #FFFFFF;
	height: 100px;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.name-holder {
	margin-left: 100px;
	display: inline-block;
	background-image: url('../images/logo.png');
	background-size: contain;
	background-repeat: no-repeat;
	height: 100px;
	width: 450px;
}

.pull-right {
	width: 60px;
	height: 100px;
}

.menu {
	padding-left: 50px;
	margin-top: 25px;
	margin-right: 75px;
	float: right;
	width: 630px;
}

.menu li {
	text-transform: uppercase;
	display: inline-block;
	padding-left: 25px;
}

.menu a {
	padding-bottom: 15px;
	height: 45px;
	border-bottom: solid 1px rgba(0, 0, 0, 0);
	transition: all 0.3s ease;
}

#about a:hover{
	border-color: rgba(0, 0, 0, 1);
	padding: 0 0 10px 0;
}

#projects a:hover{
	border-color: rgba(0, 0, 0, 1);
	padding: 0 0 10px 0;
}

#careers a:hover{
	border-color: rgba(0, 0, 0, 1);
	padding: 0 0 10px 0;
}

#survey a:hover{
	border-color: rgba(0, 0, 0, 1);
	padding: 0 0 10px 0;
}

#contact a:hover{
	border-color: rgba(0, 0, 0, 1);
	padding: 0 0 10px 0;
}

.torso {
	width: 100%;
	overflow: hidden;
}

.torso .header-img {
	position: relative;
	width: 100%;
	height: 300px;
	background: url('../images/engineering1.jpg') no-repeat;
	background-size: 100%;
}

.torso .header-img .header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(44, 136, 199, 0.87);
}

.torso .header #call {
	padding-top: 80px;
	margin: 0 auto;
	text-align: center;
	width: 50%;
	color: #FFF;
	font-weight: 100;
	text-transform: none;
	font-size: 2.7em;
}

.torso .header .button {
	position: relative;
	width: 17%;
	height: 45px;
	border-radius: 5px;
	text-align: center;
	margin: 30px auto;
	color: rgba(52, 152, 219, 1);
	font-weight: 600;
	font-size: 0.9em;
	cursor: pointer;
	background-color: #FFF;
}

.torso .header .button a {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.torso .benefits {
	height: 800px;
}

.torso .benefits #title {
	text-align: center;
	padding-top: 50px;
	font-size: 1.75em;
}

.torso .benefits .details {
	width: 70%;
	margin: 0 auto 20px auto;
}

.torso .benefits .details p {
	margin: 10px 0;
	line-height: 25px;
	text-transform: none;
	font-size: 0.94em;
	font-weight: 100;
	color: #646464;
	width: 59%;

}

.torso .benefits .details #health {
	float: left;
}

.torso .benefits .details #learning {
	float: right;
}

.torso .benefits .details #time {
	float: left;
}

.torso .benefits .details #employee {
	float: right;
}

.torso .benefits .details b {
	color: #000;
}

.torso .benefits .underline {
	width: 100px;
	border-bottom: solid 1px #EF4135;
	margin: 20px auto 50px auto;
}

.footer {
	position: relative;
	height: 100px;
	width: 100%;
	background: #2F3238;
	color: #949494;
	font-size: 0.9em;
	text-transform: none;
}

.footer .copyright {
	position: absolute;
	right: 20px;
	top: 15px;
}

.footer .signature {
	position: absolute;
	left: 20px;
	top: 15px;
}

.footer div {
	position: absolute;
	right: 20px;
	top: 45px;
}

.footer div #privacy {
	padding-right: 10px;
	border-right: solid 1px #949494;
}

.footer div #terms {
	padding-left: 8px;
}

.footer div a {
	color: #949494;
	transition: color 0.3s ease;
}

.footer div a:hover {
	color: #3498db;
}


@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes scale {
  0% { transform: scale(1); }
  100%   { transform: scale(1.1); }
}

@keyframes translate {
  0% { transform: translate(0, 0); }
  100%   { transform: translate(30px, 0); }
}