/* CSS Document */

#space{
	display: block;
}


.flip-container {
	perspective: 1000px;
}
	/* flip the pane when hovered */
	.flip-container:hover .flipper, .flip-container.hover .flipper {
		transform: rotateY(180deg);
	}

.flip-container, .front, .back {
	width: 250px;
	height: 400px;
}

@media (max-width: 1400px) {
.flip-container, .front, .back {
	width: 240px;
	height: 400px;
}
}

@media (max-width: 1200px) {
.flip-container, .front, .back {
	width: 520px;
	height: 200px;
	}
}

@media (max-width: 991px) {
.flip-container, .front, .back {
	display: none;
	}
}

/* flip speed goes here */
.flipper {
	transition: 0.6s;
	transform-style: preserve-3d;

	position: relative;
}

/* hide back of pane during swap */
.front, .back {
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

/* front pane, placed above back */
.front {
	z-index: 2;
	/* for firefox 31 */
	transform: rotateY(0deg);
}

/* back, initially hidden pane */
.back {
	transform: rotateY(180deg);
}

.flip-container:hover .flipper, .flip-container.hover .flipper, .flip-container.flip .flipper {
	transform: rotateY(180deg);
}

.AutoFront{
	border-radius: 50%; 
    border: solid 3px #fac521;
   /* box-shadow: 10px 10px 5px #888888;*/
	margin-top: 0px;
	width: 150px;
	height: 150px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 1200px) {
.AutoFront {
	width: 114px;
	height: 84px;
	margin-top: -10px;
	}

	#space{
		display: none;
	}
}


.AutoBack{
	border-radius: 50%; 
    border: solid 3px #fac521;
	margin-top: 45px;
	width: 150px;
	height: 150px;
	margin-left: auto;
	margin-right: auto;	
	transition: transform 0.25s;
}	
	
@media (max-width: 1200px) {
.AutoBack {
	width: 114px;
	height: 84px;
	margin-top: 15px;
	}

	#space{
		display: none;
	}
}



		
.IndFront{
	border-radius: 50%; 
    border: inset 2px #004EA2;
    box-shadow: 10px 10px 5px #888888;
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;	
}	


.IndTextFront{
	color: white!important;
	font-size: 14px;
	margin-top: 10px;
	text-align: center;
}
		

.HeaderTextFront{
	font-weight: 700;
	color: #fac521;
	margin-top: 10px;
	text-align: center;
	text-shadow: 1px 1px 1px black;
}


@media (max-width: 1200px) {
.HeaderTextFront{ 
	font-size: 20px;
	margin-top: 5px;
	}
}



.HeaderTextBack{
	font-weight: 700;
	color: #fac521;
	margin-top: 10px;
	text-align: center;
	text-shadow: 1px 1px 1px black;
}

@media (max-width: 1200px) {
.HeaderTextBack{ 
	font-size: 20px;
	margin-top: 5px;
	}
}	
	
	
	

		
.HeaderTwoBack{
	color: black;
	margin-top: 10px;
	text-align: center;
	
			
		}






























