.container {
	display: flex;
}
.item {
	width: 50%;
	margin: 25px;
}
.subitem {
	width: 100%;
	max-height: 100%;
	margin-top: 25px;
	margin-bottom: 25px;
}
.logo {
	width: 100%;
	margin-top: 25px;
	margin-bottom: 25px;
}
.thumbnail { 
	top:-50px; 
	left:-35px; 
	display:inline-block; 
	z-index:999; 
	cursor: pointer; 
	opacity: 0.5;
	-webkit-transition-property: all; 
	-webkit-transition-duration: 0.3s; 
	-webkit-transition-timing-function: ease-in-out;
	border-radius: 1.2vw;
} 
.thumbnail:hover { 
	transform: scale(1.05);
	opacity: 1;
}
