/* Divider Styles */

.divider-wrapper {
    width: 100%;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
    height: 540px;
    margin: 0 auto;
    position: relative;
}

.divider-wrapper:hover {
    cursor: none;
}

.divider-bar {
    position: absolute;
    width: 10px;
    left: 50%;
    top: -10px;
    bottom: -15px;
}

.code-wrapper {
    border: 1px solid #ffffff;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    background: url("uploads/code.jpg") no-repeat;
}

.design-wrapper {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

.design-image {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url("uploads/design.jpg") no-repeat;
}

.filter-button-group{
	border: none;
	border-radius: 0px;
	margin: 10px 0px;
	display: inline-block;
}

.filter-button-group button.active{
	background: #8dbd56;
	color: #ffffff;
	
	box-shadow: -5px 5px 0px 0px rgba(0,0,0,.9);	
}

.filter-button-group button{
	color: #ffffff;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	background: #664a3f;
	padding: 12px 40px;
	border: none;
	border-radius: 0px;
}
.filter-button-group button:hover{
	color: #fff;
}

.gallery-single{
	margin: 30px 15px;;
}

.gallery-single {
	position: relative;
	overflow: hidden;
	-webkit-box-shadow: 0 0 10px #ccc;
	box-shadow: 0 0 10px #ccc;
}

.gallery-list .img-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(51, 51, 51, 0.80);
    color: #35424C;
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
    z-index: 2;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

.gallery-list .gallery-single:hover .img-overlay {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.gallery-list .gallery-single:hover .img-overlay .hoverbutton{
	opacity: 1;
	top: 50%;
}


.post-box .date{
	display: inline-block;
	position: absolute;
	bottom: 15px;
	right: 0px;
	left: 0px;
	margin: 0 auto;
	background: #8dbd56;
	color: #fff;
	padding: 10px 15px;
	text-align: center;
	width: 85px;
}

.img-overlay{}

.img-overlay h3{
	font-size: 20px;
	color: #ffffff;
	position: absolute;
	top: 80%;
	left: 0;
	opacity: 0;
	right: 0;
	text-align: center;
	-webkit-transition: all .5s;
    transition: all .5s;
}
.gallery-list .gallery-single:hover .img-overlay h3{
	opacity: 1;
	top: 30%;
}

.post-thumb{
	position: relative;
	padding: 30px;
	background: #3a3a3a;
}

.post-box{
	-webkit-box-shadow: 0px 5px 35px 0px rgba(148, 146, 245, 0.15);
	box-shadow: 0px 5px 35px 0px rgba(148, 146, 245, 0.15);
}

.post-box:hover .post-thumb::before{
	opacity: .6;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}


.post-box .post-thumb::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(102, 74, 63, 0.80);
	opacity: 0;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}

.post-info{
	padding: 0px 15px 40px 15px;
	background: #ffffff;
	text-align: left;
	margin-top: 40px;
}

.post-info p{
	margin: 0px;
	padding-bottom: 20px;
}

.post-info h4{
	font-size: 24px;
	font-weight: 600;
}

.post-info ul{
	display: block;
	text-align: center;
	margin-bottom: 15px;
	background: #8dbd56;
	color: #ffffff;
	padding: 10px 0px;
	box-shadow: 0 7px 10px #e6e6e6;
}
.post-info ul li{
	display: inline-block;
	text-align: center;
}
.post-info ul li a{
	color: #ffffff;
}
