header {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    color: #fff;
    background: rgba(0,0,0,0.8);
    padding: 0px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    margin: -210px 0 0 -210px;
    text-align: left;
}

#content {
	position:absolute;
	top:50%;
	left:50%;
	z-index:999;
	background:rgba(0,0,0,0.8);
	width:400px;
	height:200px;
	margin: -100px 0 0 -200px;
	text-align:center;
}

.content{
	padding:50px 20px;
}

.bbi-item {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: relative;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1);
	cursor: default;
}

.bbi-info-wrap{
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;

	-webkit-perspective: 800px;
	-moz-perspective: 800px;
	-o-perspective: 800px;
	-ms-perspective: 800px;
	perspective: 800px;

	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;

	top: 10px;
	left: 10px;
	/*background: rgba(0,0,0,0.8);*/
	box-shadow: 
		0 0 0 2px rgba(255,255,255,0.8);

}

.bbi-info{
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;

	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
		
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;

}

.bbi-info > div {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-position: center center;

	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.bbi-info .bbi-info-back {
	-webkit-transform: rotate3d(0,1,0,180deg);
	-moz-transform: rotate3d(0,1,0,180deg);
	-o-transform: rotate3d(0,1,0,180deg);
	-ms-transform: rotate3d(0,1,0,180deg);
	transform: rotate3d(0,1,0,180deg);
	
	background: #000;
}

.bbi-img-1 { 
	background-image: url(../img/logo.png);
}

.bbi-info h1 {
	color: #fff;
	font-weight:400;
	text-transform: lowercase;
	letter-spacing: 2px;
	text-align:center;
	font-size: 22px;
	margin: 0 60px;
	padding: 165px 0 0 0;
	height: 40px;
	font-family: 'Amaranth', sans-serif;
	/*text-shadow: 
		0 0 1px #fff, 
		0 1px 2px rgba(0,0,0,0.3);*/
}

.bbi-info p {
	color: #fff;
	text-align:center;
	padding: 10px 5px;
	font-style: italic;
	margin: 0 60px;
	font-size: 12px;
	border-top: 1px solid rgba(255,255,255);
}

.bbi-info p a {
	display: block;
	color: #fff;
	text-decoration:none;
	font-weight: 400;
	text-transform: lowercase;
	font-size: 14px;
	letter-spacing: 1px;
	padding-top: 5px;
	font-family: 'Amaranth', sans-serif;
}

.bbi-info p a:hover {
	color: #fff;
	text-decoration:underline;
}

.bbi-item:hover .bbi-info-wrap {
	box-shadow: 
		0 0 0 0 rgba(255,255,255,0.8), 
		/*inset 0 0 3px rgba(115,114, 23, 0.8)*/;
}

.bbi-item:hover .bbi-info {
	-webkit-transform: rotate3d(0,1,0,-180deg);
	-moz-transform: rotate3d(0,1,0,-180deg);
	-o-transform: rotate3d(0,1,0,-180deg);
	-ms-transform: rotate3d(0,1,0,-180deg);
	transform: rotate3d(0,1,0,-180deg);
}