* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	height: 100vh;
}

body {
	white-space: nowrap;
	height: 100vh;
	min-height: 100vh;
	overflow: hidden;
	font-family: 'Roboto', sans-serif;
}

a, a:link, a:visited {
	display: inline-block;
	width: 50%;
	height: 100%;
	text-decoration: none;
	text-align: center;
	color: black;
	position: relative;
	background-size: cover;
	background-position: center;

}

a:hover {
	opacity: .7;
	-webkit-transition: opacity 1.3s ease-in-out;
	transition: opacity 1.3s ease-in-out;
}

a.enterprise:hover~.logo span {
	background-color: #c02026;
}

a span {
	display: block;
	text-align: center;
	height: 250px;
	top: 50%;
	margin-top: -125px;
	position: absolute;
	width: 100%;
	white-space: normal;
	padding: 30px 100px;
	-webkit-transition: -webkit-transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out;
}

a:hover span {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

a:nth-child(2) {
	background-color: #3e609d;
	background-image: url('/images/office.jpg');
	text-shadow: 0 0 4px #dadada;
}

a:nth-child(1) {
	background-image: url('/images/pers.jpg');
	text-shadow: 0 0 4px #333;
}

a:nth-child(1) span h2,
a:nth-child(1) p {
	color: #FFF;
}

span h2 {
	display: block;
	font-size: 55px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: -2px;
	color: #333;
}

span p {
	display: block;
	font-size: 18px;
}

.logo {
	display: block;
	position: absolute;
	width: 200px;
	height: 200px;
	left: 50%;
	top: 50%;
	margin-left: -100px;
	margin-top: -100px;
	z-index: 2;
}

.logo img {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}

.logo span {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	z-index: 1;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: #f04e23;
	-webkit-transition: background-color .65s ease-in-out;
	-moz-transition: background-color .65s ease-in-out;
	-ms-transition: background-color .65s ease-in-out;
	transition: background-color .65s ease-in-out;
}
