.department .list {
	gap: 20px;
}
.department .list .item {
	position: relative;
	width: calc(20% - 16px);
	overflow: hidden;
	cursor: pointer;
}
.department .list .item .thumb {
	position: relative;
	height: 0;
    padding-bottom: 56%;
}
.department .list .item .thumb:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.50);
}
.department .list .item .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	transform: scale(1);
	transition: transform .3s;
	object-fit: cover;
}
.department .list .item:hover .thumb img {
	transform: scale(1.1);
}
.department .list .item .txt {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
	color: var(--white);
	font-size: 24px;
	font-weight: 700;
	z-index: 1;
}




@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1024px) {
	.department .list .item {
		width: calc(25% - 15px);
	}
	.department .list .item .thumb {
		padding-bottom: 85%;
	}
}
@media screen and (max-width: 768px) {
	.department .list {
		gap: 10px;
	}
	.department .list .item {
		width: calc(33.333% - 7px);
	}
	.department .list .item .txt {
		font-size: 20px;
	}
}
@media screen and (max-width: 480px) {
	.department .list .item {
		width: calc(50% - 5px);
	}
	.department .list .item .txt {
		font-size: 16px;
	}
}
@media screen and (max-width: 380px) {
	.department .list .item {
		width: 100%;
	}
}