@charset "utf-8";
/* CSS Document */

/*  http://demo.tempload.com/turing/blue-index.html  */
@import url(//fonts.googleapis.com/css?family=Lato:400,900);
@import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);

.info-card {
    float: left;
	margin: 10px;
	perspective: 600px;
	-webkit-ms-perspective: 600px;
}

.front, .back {
	background: #FFF;
	border-radius: 2rem 0rem 2rem 2rem;
	transition: -webkit-transform 1s;
	transform-style: preserve-3d;
	-webkit-ms-transform-style: preserve-3d;
	backface-visibility: hidden;
	-webkit-ms-backface-visibility: hidden;
	
}

.front {
	overflow: hidden;
	width: 250px;
	height: 330px;
	position: absolute;
	z-index: 1;
}

.back {
	padding: 0.75rem;
	width: 250px;
	height: 330px;
	border-radius: 0rem 2rem 2rem 2rem;
	border: 1px solid grey;
	transform: rotateY(-180deg);
	-webkit-ms-transform: rotateY(-180deg);
	overflow: hidden;
	z-index: 2;
}

.info-card:hover .back {
	transform: rotateY(0);
	-webkit-ms-transform: rotateY(0);
}

.info-card:hover .front {
	transform: rotateY(180deg);
	-webkit-ms-transform: rotateY(180deg);
}

.card-image {
width: 100%;
height: auto;
}


/* Social buttons */
.social {
	background: none;
	border: 1.5px solid darkgray;
	border-radius: 50%;
	box-sizing: content-box;
	display: inline-block;
	height: 1rem;
	padding: 10px;
	width: 1rem;
	-moz-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	-webkit-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

.social a {
		position: relative;
		display: inline-block;
		padding: 10px;
		overflow: hidden;
		text-align: center;
		background-color: rgb(215, 215, 215);
		border-radius: 50%;
	}


a.social-icon {
	text-decoration: none !important;
	box-shadow: 0px 0px 1px rgb(51, 51, 51);
	box-shadow: 0px 0px 1px rgba(51, 51, 51, 0.7);
	}
a.social-icon:hover {
	color: rgb(255, 255, 255) !important;
}
a.telegram {
	color: #0088cc !important;
}
a.telegram:hover {		
	background-color: #0088cc !important;
	color: white;
}
a.twitter {
	color: rgb(45, 168, 225) !important;
}
a.twitter:hover {
	background-color: rgb(45, 168, 225) !important;
	color: white;
}
a.github {
	color: rgb(51, 51, 51) !important;
}
a.github:hover {
	background-color: rgb(51, 51, 51) !important;
	color: white;
}
a.instagram {
	color: #125688 !important;
}
a.instagram:hover {
	background-color: #125688 !important;
	color: white;
}








