@import "compass/css3";

 #main h1 {
	 color: #fff;
	 font-weight: 100;
	 letter-spacing: 3px;
	 padding: 40px 0 70px;
}
 #main #gallery .gallery-item {
	 height: 385px;
}
 #main #gallery .gallery-item .album {
	 position: relative;
	 width: 63%;
	 margin-left: 20%;
	 transition: all 0.5s;
}
 #main #gallery .gallery-item .album img {
	 width: 100%;
	 height:200px;
	 position: absolute;
	 cursor: pointer;
	 top: 0;
	 left: 0;
	 border: 4px solid #fff;
	 box-shadow: 0 0 4px gray;
	 border-radius: 6px;
	 transition: all 1s;
	 transform-origin: 50% 50%;
}
 #main #gallery .gallery-item .album img:first-child {
	 position: relative;
	
}
 #main #gallery .gallery-item .album img:first-child + img {
	 transform: rotate(-4deg);
}
 #main #gallery .gallery-item .album img:last-child {
	 transform: rotate(4deg);
}
 #main #gallery .gallery-item .album:hover {
	 width: 50%;
	  height:auto;
}
 #main #gallery .gallery-item .album:hover img {
	 z-index: 2000;
	 height:auto;
}
 #main #gallery .gallery-item .album:hover img:first-child {
	 z-index: 3000;
}
 #main #gallery .gallery-item .album:hover img:first-child + img {
	 left: -40px;
	 transform: rotate(-10deg);
}
 #main #gallery .gallery-item .album:hover img:last-child {
	 left: 40px;
	 transform: rotate(10deg);
}
 #main #gallery .gallery-item p {
	 width: 100%;
	 text-align: center;
	 color: #fff;
	 padding-top: 20px;
}

.paddergal{
	padding: 21px;
    font-size: 12px;
    height: 83px;
    background: #4fc0aa;
    color: white;
}

.singlegallery{
	padding: 10px;
    background: #1cc1b2;
    color: white;
    font-weight: 500;
}

.posteddate{
	text-align: center;
}

.goback{
    padding-right: 20px;
}


 