/*********************************
*                                *
*           SHOWCASE             *
*                                *
**********************************/

.showcase {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	width: 100%;
	background-color: #fff;
}

.showcase-card {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
}

.showcase-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	line-height: 0;
	height: 350px;
}

.showcase-item img{
	display: block;
	border-radius: 10px;
	height: 300px;
	width: auto;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
	padding: 5px;
}


.showcase-item img:hover{
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.showcase-card .showcase-links {
	text-transform: uppercase;
	color: #444;
	font-size: 20px;
}

@media (max-width: 640px) {
	
	.showcase-card {
		justify-content: center;
	}

}