/* ============================================================
  GLOBAL
============================================================ */
.effects .img {
  position: relative;
  overflow: hidden;
}
.effects .img img {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 100%;
  height: auto;
}

#overlay-circle{
	border-radius:100px;
	background: rgba(0, 0, 0, 0.9);
}
.overlay {
  display: block;
  position: absolute;
  cursor:pointer;
  z-index: 20;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}


a.close-overlay {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  width: 45px;
  height: 45px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 45px;
  text-align: center;
  background-color: #000;
  cursor: pointer;
}
a.close-overlay.hidden {
  display: none;
}

div#expand-circle{
	font-size:20px;
	line-height: 25px;
	border: 0;
	padding:0;
	margin:0;
}
div.expand {
	position: absolute;
	z-index: 100;
	font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
	text-transform:uppercase;
	text-decoration:none;
	text-align: center;
	color: #93C51F;
	padding-bottom: 5px;
	line-height: 35px;
	font-weight: 500;
	font-size: 30px;
}
a.expand-link{
	width:100%;
	height:100%;
	position:absolute;
	z-index:200;
}
a.expand-link:hover{
	text-decoration:none;
}

/* ============================================================
  EFFECT 6 - ICON BOUNCE IN
============================================================ */
#effect-6 .overlay {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
}
#effect-6 .overlay div.expand {
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#effect-6 .img.hover .overlay {
  opacity: 1;
}
#effect-6 .img.hover .overlay div.expand {
  top: 50%;
  margin-top: -30px;
  opacity: 1;
}