html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: 'Slabo 27px';
}

::selection {
	background: transparent;
}

#pumo {
	position: fixed;
	z-index: 20;
	width:  200px;
	height: 200px;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-60%);
	text-align: center;
}

#pumo canvas {

	width: 100% !important;
	height: 100% !important;

}

.head {
	height: 100%;
	width: 100%;
}

.quadrant {
	position: fixed;
	width: 50%;
	height: 50%;
	cursor: pointer;
}

#ux {
	top: 0;
	left: 0;
	background: #FFFFFF;
}

#vectorati {
	top: 0;
	left: 50%;
	background: #000000;
}

#high {
	top: 50%;
	left: 0;
	background: #D979FF;
}

#flux {
	top: 50%;
	left: 50%;
	background: #C0C0C0;
}

.quadrant > a {
	position: relative;
	left: 0;
	top:  0;
	display: block;
	height: 100%;
	width: 100%;
}

.quadrant .content {
	display: block;
	height: 100%;
	padding: 60px;
	background-repeat: no-repeat;
	background-origin: border-box;
	box-sizing: border-box;
	transform: scale(1);
	transition: transform 0.3s ease-in-out;
}

.quadrant .content:hover {
	transform: scale(1.02);
	transition: transform 0.3s ease-in-out;
}

#ux .content {
	background-image: url('img/uxbg.svg');
	background-size: 200px;
	background-position: 85% center;
}

#vectorati .content {
	background-image: url('img/vectoratibg.svg');
	background-size: 400px;
	background-position: bottom right;
}

#high .content {
	background-image: url('img/highbg.svg');
	background-size: 420px;
	background-position: calc(100% - 20px) bottom;
}

#flux .content {
	background-image: url('img/fluxbg.svg');
	background-size: 360px;
	background-position: bottom right;

}

.quadrant .logo img {
	width: auto;
	height: 130px;
}


#ux .logo {
	margin-left: -10px;
}

.quadrant .text {
	margin-top: 50px;
	width: 60%;
	font-size: 18px;
}

#vectorati .text, #high .text {
	color: #fff;
}

.quadrant .button {
	width: 200px;
	height: 50px;
	margin-top: 40px;
	border-radius: 0px;
	font-weight: 600;
	display: inline-block;
	transform: perspective(1px) translateZ(0);
 	position: relative;
	transition-property: color;
	transition-duration: 0.3s;
}

.quadrant .button a {
	text-decoration: none;
	width:  100%;
	height: 100%;
	display: block;
	box-sizing: border-box;
	padding: 15px;
}

.quadrant .button::before {
	content: "";
	position: absolute;
	border-radius: 0px;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transform: scaleX(0);
	transform-origin: 0 50%;
	transition-property: transform;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}

.quadrant:hover .button::before  {
  transform: scaleX(1);
  border-radius: 0px;
}

.button .inside {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: 50px;
	background-position: calc(100% - 15px) center;
	background-origin: content-box;
}

.quadrant .button.dark .inside {
	background-image: url('img/arrow_w.svg');
}

.quadrant .button.light .inside {
	background-image: url('img/arrow_b.svg');
}

.quadrant .button.dark a {
	color:  #fff;
}

.quadrant .button.light a {
	color:  #000;
}

#ux .button {
	background-color: #EB2735;
}

#vectorati .button {
	background-color: #FFF;
}

#high .button {
	background-color: #92F0ED;
}

#flux .button {
	background-color: #0F0;
}

#ux .button::before {
	background-color: #000;
}

#vectorati .button::before {
	background-color: #DDD;
}

#high .button::before {
	background-color: #FFF;
}

#flux .button::before {
	background-color: #FFF;
}

@media only screen and (max-width: 1400px) {
	#pumo {
		display: none;
	}
	body {
		overflow-x: hidden;
	}
	.quadrant {
		position: absolute;
		display: inline-block;
		width: 100%;
		height: 500px;
		background-color: #ddd;
		z-index: 10;
		box-sizing: border-box;
	}
	#vectorati {
		left: 0;
		top:  500px;
	}
	#high {
		left: 0;
		top:  1000px;
	}
	#flux {
		left: 0;
		top:  1500px;
	}
}

@media only screen and (max-width: 700px) {
	.quadrant {
		background-image:  none !important;
	}
}

