<script>
body {
	background: #1b1e24;
}

.videob {
float:left;
	width: 270px;
	height: 170px;

	margin-left:6%;
	margin-right:25px;
	margin-bottom:1%;
}

.shape {
float:left;
	width: 270px;
	height: 170px;
	position: relative;
	margin-left:15px;
	margin-right:5px;
	margin-bottom:1%;
}

.shapein {
float:left;
	width: 270px;
	height: 200px;
	position: relative;
	margin-left:15px;
	margin-right:5px;
	margin-bottom:3.5%;
	border:1px solid #000;
box-shadow: 0px 13px 15px -10px;
color:#000;
}

.martop {
float:left;
width: 280px;
margin-top:1%;
}
.marbottom {
float:left;
width: 170px;
margin-bottom:1%;

}


		
	.shape .overlay {
		display:block;
		width: 271px;
		height: 170px;
		position: absolute;
		top:-5px;
		left:-3px;
		-webkit-transform: scale(1,1);
		-webkit-transition-timing-function:ease-out;
		-webkit-transition-duration: 0.6s;
		-moz-transform: scale(1,1);
		-moz-transition-timing-function: ease-out;
		-moz-transition-duration: 0.6s;
		transform: scale(1,1);
		transition-timing-function: ease-out;
		transition-duration: 0.6s;				
		z-index:500;
		/* allow user to actually perform actions underneath this layer */
		pointer-events:none; 
		background-repeat: no-repeat;
		outline:0;		
	}

/* different shapes */

.shape .overlay.hexagon {
	background: url(../images/hexagon.png);
}

			

/* hover effect */
.shape:hover .overlay {
	-webkit-transform: scale(1.07,1.07);
	-webkit-transition-timing-function: ease-out;
	-webkit-transition-duration: 0.3s;
	-moz-transform: scale(1.07,1.07);
	-moz-transition-timing-function: ease-out;
	-moz-transition-duration: 0.3s;
}


.shape:hover .bg {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  display:block;
}

.shape:hover .details {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
	z-index:450;
  display:block;	
}	
		
		

/* content styles */
.shape .bg, 
.shape .details {
	position: absolute;
	width: 262px;
	height:160px;
	display:table-cell;
	vertical-align:middle;
	text-align:center;
	top:0;
	left:0;
	opacity:80%;
	-webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;				
	display:none;  
}		

.shape .bg {
	background: #2a2a2a;		
}

.shape .details span.heading {
	 font-family: 'font-awesome';
	font-size:20px;
	display:block;
	margin-top:60px;
	color:#fff;
	font-weight:bold;
	background-image:url(../images/bbg.png); 
	text-decoration:none;
}

.shape .details p {
	 font-family: 'Open Sans', sans-serif;		
	color:#fff;
	width: 50%;
	font-size:18px;
	margin:0 auto;
	margin-top:0px;
}

.shape a.button {
	padding:3px 3px;
	font-family: 'Abel', sans-serif;	
	font-size:12px;	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	background: #0d0d0d;
	text-decoration:none;
	color:#fff;
	display:block;
	width:70px;
	margin:0 auto;
	text-align:center;
	margin-top:35px;
}

	.shape a.button:hover {
		background: #cc4902;
		color: #000;				
	}
	</script>
