.content-boxes {
	padding: 0 2px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-auto-flow: dense;
}
.content-three-boxes {
	padding: 0 2px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-auto-flow: dense;
}

@media (max-width: 640px) {
	.content-boxes,
	.project-list {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media (min-width: 640px) and (max-width: 1460px) {
	.project-list {
		padding: 0 2px;
		position: relative;
		overflow: hidden;
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 1103px) {
	.project-list .project-item-column.big-project-item {
		grid-column-start: span 2;
		grid-row-start: span 2;
	}
}

.project-list .project-list-placeholder .project-item-column {
	width: auto;
	min-width: 0;
}
.project-list .project-item-container {
	padding: 0 2px;
	margin-bottom: 4px;
	overflow: hidden;
}
.project-item {
	cursor: pointer;
	display: block;
	font-size: 20px;
	outline: none;
	overflow: hidden;
	padding-bottom: 71.2%;
	position: relative;
	background-color: beige;
	transition: 0.2s all ease-in-out;
	background-size: cover;
}
.project-item .title,
.project-item .text .font {
	display: none;
}
.project-item:hover .title,
.project-item:hover .text .font {
	display: block;
}
.project-item:hover .text .cover {
	display: block;
}
.project-item:hover a {
	background-color: rgba(0, 0, 0, 0.4) !important;
}
.project-item .text .font,
.project-item .text .cover {
	transition: 0.2s all ease-in-out;
	font-size: 16px;
	line-height: 1.2;
	padding: 20px 0 0 0;
}
.project-item a {
	position: absolute;
	padding: 20px 28px;
	height: 100%;
	width: 100%;
	display: block;
	color: #fff;
	transition: 0.3s all ease;
}
.project-item .describe {
	position: relative;
	width: 100%;
	height: 100%;
}
.project-item .text {
	font-size: 33px;
	line-height: 45px;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.project-item .text .font {
	font-size: 20px;
}
.project-item .text .cover {
	display: none;
}
