.all-collections {
	padding: 6.2em 0;
}

.all-collections .col-6 {
	margin-bottom: 2.5em;
}

.all-collections-item {
	display: block;
	height: 36em;
	background: #EFF2F5;
	border: 1px solid #DEDEDE;
	position: relative;
}

.all-collections-item img {
	height: 100%;
	max-height: 42vw;
	width: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
}

.all-collections-item .title {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 3.5em;
	margin-bottom: 0;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(7px);
	position: absolute;
	bottom: 2px;
	z-index: 2;
}

.all-collections-item::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	transition: all 0.3s ease;
	z-index: 1;
}

.all-collections-item:hover:before {
	background: rgba(255,255,255,0.6);
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
}

.all-collections-item:hover .title {
	background: none;
}

@media (max-width: 767px){
	
}