/* Start: Recommended Isotope styles */

/**** Isotope Filtering ****/

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:      -o-transform, opacity;
          transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
      -ms-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}

/* End: Recommended Isotope styles */



/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
     -moz-transition: none;
      -ms-transition: none;
       -o-transition: none;
          transition: none;
}


/**** Isotope styles ****/

/* required for containers to inherit vertical size from window */
html,
body {
  height: 100%;
}


.element {
  width: 292px;
  height: auto;
  margin-top:30px;
  float: left;
  overflow: hidden;
  position: relative;
}

.element img{
	width:100%;
}
.element h3{
	font-size:18px;
	margin-bottom:5px;
}
.element-content{
	padding:10px;
	background:#fff;
	text-align:left;
}
.element-content .date{
	margin:0px;
	color:#007dc4;
	font-size:12px;
}

/*element-Hover*/

.element-img{
	position:relative;
}
.element-hover{
	background:rgba(0, 0, 0, 0.7);
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	visibility:hidden;
	cursor:pointer;
-webkit-transform:translateY(-200px);
	-webkit-transition:all ease-in-out 0.5s;

}

.element-hover .element-icon{
	position: absolute;
	top: 50%;
	width: 63px;
	background: #1a171b;
	height: 63px;
	line-height: 61px;
	border-radius: 50%;
	border: 3px solid #fff;
	margin-top: -30px;
	margin-left: -30px;
	font-size: 21px;
	color:#fff;
	opacity:0.2;
	
}
.element-img:hover .element-hover{
	visibility:visible;
	-webkit-transform:translateY(0px);
	}
	
.element-img:hover .element-icon{
	opacity:1;
	-webkit-transition: all 1s ease-in-out 0.4s;
	-moz-transition: all 1s ease-in-out 0.4s;
	-o-transition: all 1s ease-in-out 0.4s;
	-ms-transition: all 1s ease-in-out 0.4s;
	transition: all 1s ease-in-out 0.4s;
}
/**** Example Options ****/
.isotope .collapse {
	display:block;
}
#options {
  margin-bottom: 10px;
}

#options h3 {
  margin-bottom: 0.2em;
  font-size: 15px;
}

#options h4 { 
  font-weight: bold;
}

#options ul {
  margin: 0;
  list-style: none;
  display:inline-block;
}

#options ul ul {
  margin-left: 1.5em;
}


#options li {
  float: left;
  margin-right:15px;
}

#options li:last-child{
	margin:0px;
}

#options li a {
  display: block;
  padding: 8px 15px;
  background-color:#fff;
  color: #00a6cf;
  font-size:16px;
  text-transform:capitalize;
  box-shadow: 0px 7px 0px #ccc;
  border-radius: 0px 0px 4px 4px;
  position:relative;
}

#options li a:hover {
	top:2px;
    background-color: #e6e6e6;
}


#options li a.selected {
  background-color: #e6e6e6;
  text-shadow: none;
  color: #00a6cf;
}

/* Combination filter options*/

#options .option-combo {
  display: inline-block;
  float: left;
  margin-right: 10px;
}

#options .option-combo ul {
  margin-right: 20px;
  display: inline-block;
}

#options .option-combo h2,
#options .option-combo h4 {
  line-height: 34px;
  margin-bottom: 0;
  margin-right: 5px;
  display: inline-block;
  vertical-align: top;
}


/* The Magnificent Clearfix: nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }
