.etcgrid {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: grid;
	grid-template-columns: 60px repeat(4, 1fr);
	grid-template-rows: none;
	height: 544px;
}
.etcgriditem {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	font-family: 'monoidRegular', sans-serif;
	justify-content: space-between;
}
.etca {
	height: 544px;
	width: 100%;
	text-decoration: none;
	display: block;
}
.textetc {
	font-size: 0.8em;
	padding: 15px;
	text-align: center;
	color: #fff;
	line-height: 1.6;
}
.catname {
	text-align: center;
	position: relative;
	bottom: -5px;
	color: #fff;
}

.gie1 {
	background-color: #9f9f9f;
}
.gie2 {
	background-color: #838383;
}
.gie3 {
	background-color: #676767;
}
.gie4 {
	background-color: #444;
}

.etca:hover .gie1 {
	background-color: #959595;
}
.etca:hover .gie2 {
	background-color: #7d7d7d;
}
.etca:hover .gie3 {
	background-color: #626262;
}
.etca:hover .gie4 {
	background-color: #404040;
}

@media screen and (max-width: 768px) {
	.etcgrid {
		grid-template-columns: none;
		grid-template-rows: repeat(4, 1fr);
		position: absolute;
		left: 0;
		top: 0%;
		transform: translateY(0);
		height: 100%;
	}
	.etcgriditem {
		height: 100%;
	}
	.catname {
		bottom: 0;
	}
	.lastetc {
		padding-bottom: 50px;
	}
	.etca {
		height: 100%;
	}
}
