
#instagram {
	background-color: #161616;
	position: relative;
	overflow: hidden;
	height: 340px;
	width: 100%;
}

#instagram .title-box {
    background-color: rgba(20, 20, 20, 0.7);
    position: absolute;
    text-align: right;
    color: #fff;
    bottom: 0;
    left: 0;
    margin: 0;
    top: 0;
    width: 50%;
    z-index: 1;

	-webkit-transition: .3s width ease-in-out;
	   -moz-transition: .3s width ease-in-out;
	    -ms-transition: .3s width ease-in-out;
	     -o-transition: .3s width ease-in-out;
	        transition: .3s width ease-in-out;
}

#instagram:hover .title-box {
    width: 60px;
}

#instagram .title-box .content .button {
    position: absolute;
    right: -14px;
    z-index: 1;
    top: 16px;
}

#instagram .title-box .content .button > a {
	color: #FFF;
	cursor: pointer;

	-webkit-transition: .3s all ease-in-out;
	   -moz-transition: .3s all ease-in-out;
	    -ms-transition: .3s all ease-in-out;
	     -o-transition: .3s all ease-in-out;
	        transition: .3s all ease-in-out;

	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
	-khtml-opacity: .4;
	  -moz-opacity: .4;
	       opacity: .4;
}

#instagram .title-box .content .button > a:hover {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	-khtml-opacity: .8;
	  -moz-opacity: .8;
	       opacity: .8;
}

#instagram .title-box .content .button > a > i {
	font-size: 24px;
	margin: 0 3px;
}

#instagram .title-box .content {
	position: absolute;
	padding: 0 30px;
	right: 30px;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	   -moz-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	     -o-transform: translate(0, -50%);
	        transform: translate(0, -50%);
}

#instagram .title-box .content > .avatar {
	border: 4px solid #FFF;
	position: absolute;
	overflow: hidden;
	width: 80px;
	height: 80px;
	right: 30px;
	top: 0;

	-webkit-border-radius: 50%;
	 -khtml-border-radius: 50%;
	   -moz-border-radius: 50%;
	     -o-border-radius: 50%;
	        border-radius: 50%;
}

#instagram .title-box .content > .avatar > img {
	position: relative;
	margin: -3px 0 0 -3px;
	width: 80px;
}

#instagram .title-box .content > .title-section {
	line-height: 50px;
    font-size: 50px;
    font-weight: 200;
}

#instagram .title-box .content > span {
    display: block;
    font-size: 18px;
    font-weight: 500;
}

#instagram .item {
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	height: 340px;

	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;
}

#instagram .item:after {
	background-color: rgba(50, 50, 50, 0.4);
	position: absolute;
	content: " ";
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-transition: .4s background-color ease-in-out;
	   -moz-transition: .4s background-color ease-in-out;
	    -ms-transition: .4s background-color ease-in-out;
	     -o-transition: .4s background-color ease-in-out;
	        transition: .4s background-color ease-in-out;
}

#instagram .item:hover:after {
	background-color: rgba(50, 50, 50, .06);
}