/* Custom OfficeTour */
.half {
	width: 50%;
	float: left;
}
#current {
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
}
.thirth {
	width: 33.33%;
	float: left;
	background-size: cover;
	background-position: 50% 50%;
	cursor: pointer;
	position: relative;
}
.thirth:before {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 9;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.selectedFrame:before {
	opacity: 0;
}
.thirth img {
	opacity: 0;
}
@media screen and (max-width: 780px) {
	.office-services .half {
		width: 100% !important;
	}
	.office-services .half:nth-child(1) {
		height: 320px;
	}
}
