body {
	background-color: #f9f9f9;
}

.projects-content-wrapper {
	width: 100%;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

.projects-list-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
	margin-bottom: 60px;
	justify-content: center;

}

.projects-list-single {
	display: flex;
	flex-flow: column;
	width: 30%;
	margin-bottom: 3rem;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .09);
	border-radius: 10px;
	margin-left: 1rem;
	margin-right: 1rem;
	background-color: #fff;
	overflow: hidden;
	transition: box-shadow 0.6s ease, transform 0.6s ease;
}
@media only screen and (max-width: 768px){
	.projects-list-single {
		width: 100%;
	}
}

.projects-list-single:hover {
	box-shadow: rgba(0, 0, 0, .09) 0px 0px 0px 1px, rgba(0, 0, 0, 0.30) 0px 2px 23px 0px;
	transform: translateY(-1rem);
}

.projects-list-single a {
	text-decoration: none;
	color: black;
}

.image-wrapper img {
	display: block;
	width: 100%;
	height: 15rem;
	object-fit: cover;
}

.projects-title {
	font-size: 1.5rem;
	display: inline-block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: black;
}

.projects-p-wrapper {
	color: #828282;
	font-size: 0.9rem;
	padding: 1rem;
}

.projects-pagination-wrapper {
	text-align: center;
	font-size: 1.3rem;
}

.projects-current-pages {
	font-weight: 700;
}