
/*Photo*/

.gallery_area {
  width: 100%;
  position: relative;
  float: left;
  margin: 50px 0px;
  padding: 0;
}


.gallery-items
{
	width:100%;
	position:relative;
	float:left;
	margin:0;
	padding:0;
}


.gallery-items > li {
	list-style:none;
	width:270px;
	margin:0px 15px 30px 15px;
	position:relative;
	float:left;
	padding:0;
	overflow:hidden;
	border-radius:10px;	
	border:1px solid #ccc;
}
.gallery-items > li a {
	position:relative;
	float:left;
	margin:0;
	padding:0;
	width:270px;
	height:270px;
  -webkit-transform:  scale(1.2);
  -moz-transform:     scale(1.2);
  -ms-transform:      scale(1.2);
  transform:          scale(1.2);
  -webkit-transition: all 0.6s ease;
  -moz-transition:    all 0.6s ease;
  -ms-transition:     all 0.6s ease;
  transition:         all 0.6s ease;
}

.gallery-items > li a:before,
.gallery-items > li a:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition:    all 0.6s ease;
  -ms-transition:     all 0.6s ease;
  transition:         all 0.6s ease;
  border-radius: 50%;
}

.gallery-items > li a:after {
	border-radius:5px;
  background: rgba(63, 202, 219, 0.48);
  -webkit-transform:  scale(0);
  -moz-transform:     scale(0);
  -ms-transform:      scale(0);
  transform:          scale(0);
   
}

.gallery-items > li a:before {
  content: '+';
  border-radius:5px;
  width: 80px;
  height: 80px;
  background: rgba(63, 202, 219, 0.48);
  margin: auto;
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 10;
  font-size: 3em;
  color: #000;
  -webkit-transform:  scale(2);
  -moz-transform:     scale(2);
  -ms-transform:      scale(2);
  transform:          scale(2);
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition-delay: 0.2s;
  padding-left:30px;
  
}

.gallery-items > li a:hover {
  -webkit-transform:  scale(1);
  -moz-transform:     scale(1);
  -ms-transform:      scale(1);
  transform:          scale(1);
}

.gallery-items > li a:hover:after {
  -webkit-transform:  scale(2);
  -moz-transform:     scale(2);
  -ms-transform:      scale(2);
  transform:          scale(2);
}

.gallery-items > li a:hover:before {
  -webkit-transform:  scale(1);
  -moz-transform:     scale(1);
  -ms-transform:      scale(1);
  transform:          scale(1);
  filter: alpha(opacity=1);
  opacity: 1;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/*Photo end*/
