/*
===================================================================== 

The Liquid Company by Meritt Thomas

=====================================================================
*/

.circle {
	border-radius: 100%;
	cursor: pointer;
	position: relative;
	margin: 0 auto;
	width: 30em; height: 30em;
	overflow: hidden;
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
		-ms-transform: translateZ(0);
			transform: translateZ(0);
}

h1 {
	color: rgba(216, 213, 223, 1);
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 2em;
	letter-spacing: 0.2em;
	text-align: center;
	text-transform: uppercase;
}

.circle:hover > h1 {
	color: rgba(185, 185, 185,1);
}

.logo {
	opacity: 0.1;
	z-index: 1;
	-moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
	-webkit-transition: opacity 0.5s ease-in-out;
  	-moz-transition: opacity 0.5s ease-in-out;
  	-ms-transition: opacity 0.5s ease-in-out;
 	-o-transition: opacity 0.5s ease-in-out;
 	transition: opacity 0.5s ease-in-out;
}

.circle:before,
.circle:after {
	border-radius: 100%;
	content:"";
	position: absolute;
	top: 0; left: 0;
	width: inherit; height: inherit;
	box-shadow: inset 20.6em 0 0 rgba(0, 163, 255, 0.2),
				inset 0 20.6em 0 rgba(0, 163, 255, 0.2),
				inset -20.6em 0 0 rgba(0, 163, 255, 0.2),
				inset 0 -20.6em 0 rgba(0, 163, 255, 0.2);
	-webkit-transition: box-shadow 0.75s;
	   -moz-transition: box-shadow 0.75s;
		-ms-transition: box-shadow 0.75s;
			transition: box-shadow 0.75s;
}

.circle:after {
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
			transform: rotate(45deg);
}

.circle:hover:before,
.circle:hover:after {
	box-shadow: inset 1.72em 0 0 rgba(0, 112, 255, 0.5),
				inset 0 1.72em 0 rgba(0, 202, 252, 0.5),
				inset -1.72em 0 0 rgba(0, 163, 255, 0.5),
				inset 0 -1.72em 0 rgba(0, 150, 255, 0.5);
}

.circle:hover .logo { 
	opacity: 1;
}