.catalog-all-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.catalog-all-list__item {
	position: relative;
	height: 453px;
	display: block;
}
.catalog-all-list__title {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    padding: 0 40px 38px;
    color: #FFF;
font-family: CirceBold, serif;
font-size: 40px;
font-weight: 700;
line-height: 110%;
z-index: 3;
}
.catalog-all-list__bg {
    position: absolute;
    width: 100%;
    height: 45%;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(52, 59, 69, 0.8) 35%, rgba(15, 36, 64, 0) 100%);
    z-index: 2;
    transition: all 0.3s;
}
.catalog-all-list__img {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.catalog-all-list__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}
.catalog-all-list__item:hover img {
	transform: scale(1.05);
}
@media(max-width: 1200px) {
	.catalog-all-list__title {
		font-size: 24px;
		padding: 0 20px 18px;
	}
	.catalog-all-list__item{
		height: 245px;
	}
}
@media(max-width: 580px) {
	    .catalog-all-list__item {
        height: 162px;
    }
	.catalog-all-list__title {
		font-size: 12px;
	}
}