/* creative.css: */

.no-gutter > [class*='col-'] {
	padding-right: 0;
	padding-left: 0;
}

.photo-box {
	position: relative;
	display: block;
	max-width: 650px;
	margin: 0 auto;
}

.photo-box .photo-box-caption {
	opacity: 0;
	display: block;
	position: absolute;
	bottom: 0;
	text-align: center;
	width: 100%;
	height: 100%;
}

.photo-link .photo-box-caption {
	background: rgba(28, 165, 144, 0.15);
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	transition: all 0.35s;
}

.photo-box .photo-box-caption .photo-box-caption-content {
	color: white;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.photo-box .photo-box-caption .photo-box-caption-content .project-category,
.photo-box .photo-box-caption .photo-box-caption-content .project-name {
	padding: 0 10px;
}

.photo-box .photo-box-caption .photo-box-caption-content .project-category {
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: 600;
	/* font-size: 16px; */
}

.photo-box .photo-box-caption .photo-box-caption-content .project-name {
	/* font-size: 16px; */
}

.photo-box:hover .photo-box-caption {
	opacity: 1;
}

.photo-box:hover .photo-box-caption * {
	color: white;
}

/*eof*/