* {
	passing: 0;
	margin: 0;

	font-family: arial;
	font-size: 16px;
}

body, html {
	width: 100%;
	min-height: 100vh;
	background: white;
	background-size: cover;
	background-position: center;

}

.intro {
	transform: translate3d(0, -52px, 0);
	transition:  transform .5s ease-in-out;
	cursor: pointer;
	z-index: 1;
	position: relative;
}

.intro:hover {
	transform: translate3d(0, 0px, 0);
}

.intro p {
	color: #aaa;
	padding: 10px 30px;
	font-size: 12px;
	text-align: justify;
	line-height: 16px;
	background: #111;
	height: 42px;
}

.intro .hover {
	background: #111;
	display: inline-block;
	padding: 10px;
	color: white;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: bold;
	margin: auto;
}

.container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	grid-gap: 3vw;
	position: absolute;
	top: 0;left: 0;right: 0;
	height: 100%;
}

.level {
	padding: 10vh 5vw 0vh;
	position: relative;
}

.level .level-name {
	color: rgba(255,255,255,.5);
	font-weight: bold;
	font-size: 18px;
	line-height: 12px;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.level .line {
	position: absolute;
	left: 0;
	height: 1px;
	width: 5vw;
	top: calc(5vh + 40px + 3vw);
	background: #FFF;
}

.level2 .line, .level4 .line {
	left: unset;
	right: 0;

}

.level .content {

	background: rgba(0, 0, 0, .5);
	padding: 30px;
	border-radius: 0px 10px 10px 10px;
}

.level .content .title {
	font-size: 28px;
	color:  white;
	font-weight: bold;
}
.level .content .subtitle {
	font-size: 13px;
	color:  #aaa;
	font-weight: bold;
	margin-bottom: 20px;
}



.level .content .data>div {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255,255,255,.1);
	padding: 10px 0;
}

.level .content .data>div:last-child {
	border-bottom: none;
}

.level .content .data>div .label {
	color:  white;
}

.level .content .data>div .value {
	color:  #aaa;
	font-size: 14px;
}