/** =============================================================================
	=Added June 9, 2017
	========================================================================== */

.bluetitle {
	margin: 30px 0 10px 0;
	color: #31a4d6;
    font-size: 30px;
    font-weight: 600;
    line-height: 1em;
}

/** =============================================================================
	=Service Box
	========================================================================== */

.service-boxes,
.service-boxes * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-ms-overflow-style: scrollbar;
}
.service-boxes {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -7px;
	margin-left: -7px;
	margin-top: -130px;
	margin-bottom: 30px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.service-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 20%;
	padding-left: 7px;
	padding-right: 7px;
	margin-bottom: 20px;
}
.sb-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	z-index: 10;
	padding: 20px 18px 20px 18px;
	color: #fff;
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	background-color: rgba(49, 164, 214, 0.8);
	border-radius: 10px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.sb-inner:before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	background-color: rgba(49, 164, 214, 0.8);
	border-radius: 10px;
}
.sb-content {
	position: relative;
	z-index: 10;
	flex: 1 0 auto;
}
.sb-title {
	padding-bottom: 20px;
	font-size: 23px;
	font-weight: bold;
	line-height: 29px;
}
.sb-desc {
	padding-bottom: 20px;
}
.sb-link {
	display: inline-block;
	position: relative;
	z-index: 10;
	min-width: 120px;
	padding: 6px 12px;
	color: #fff;
	text-transform: uppercase;
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 100px;
}

/** =============================================================================
	=Project Category Filter
	========================================================================== */

.project-category-filter-nav {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 70px;
}
.project-category-filter-item-entry {
	position: relative;
	min-height: 235px;
	padding-left: 480px;
	padding-bottom: 25px;
	border-bottom: 1px solid #cfcfcf;
}
.project-category-filter-item-entries > div:last-child {
	border-bottom: none;
}
.pcf-item-image {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 435px;
	height: 210px;
	background-size: cover;
	background-position: center center;
}
.pcf-item-content h3 {
	font-size: 19px;
	font-weight: bold;
	line-height: 24px;
}

/** =============================================================================
	=Responsive
	========================================================================== */

@media all and (max-width: 1024px){
	.sb-title {
		font-size: 18px;
	}
}
@media all and (max-width: 980px){
	.service-box {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 33.333333%;
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
}
@media all and (max-width: 768px){
	.project-category-filter-item-entry {
		padding-left: 0;
	}
	.pcf-item-image {
		position: relative;
		width: 100%;
		margin-bottom: 20px;
	}
	.service-box {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 50%;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}
@media all and (max-width: 580px){
	.service-box {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}