.catalog {
    width: 100%;
}
.catalog-list {
    box-sizing: border-box;
    max-width: 1840px;
    width: 100%;
}
.catalog-items {
    flex-wrap: wrap;
    gap: 180px 40px;
    justify-content: space-between;
    width: 100%;
}
.catalog-item {
    max-width: 865px;
}
.catalog-item > * {
    flex-shrink: 0;
}
.catalog-item-image {
    cursor: pointer;
    position: relative;
    width: 602px;
}
.catalog-item-image::before {
    background-color: #2c3e50;
    content: '';
    height: 100%;
    left: 0;
    opacity: 0.72;
    position: absolute;
    top: 0;
    transition: .4s;
    width: 100%;
}
.catalog-item-image:hover::before {
    opacity: 0;
}
.catalog-item-image::after {
    border-bottom: 6px solid #f66107;
    bottom: -8px;
    content: '';
    right: 40px;
    position: absolute;
    width: 50%;
}
.catalog-item-image .image-big-wrapper {
    border-radius: 26px;
    overflow: hidden;
    width: 100%;
}
.catalog-item-image .image-big {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.catalog-item-image .button-white {
	align-items: center;
	background: #fff;
    border: none;
	border-radius: 30px;
	box-sizing: border-box;
    cursor: pointer;
	display: flex;
	height: 75px;
	justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .4s;
	width: 220px;
    z-index: 1;
}
.catalog-item-image:hover .button-white {
	background-color: #cee0f3;
}
.catalog-item-image .button-white .text-top {
	color: #2c3e50;
	font-family: 'Tahoma';
	font-size: 19px;
	line-height: 1;
}
.catalog-item-image .button-white .text-bottom {
	color: #2c3e50;
	font-family: 'Tahoma';
	font-size: 19px;
    font-weight: bold;
	line-height: 1;
    text-transform: uppercase;
}
.catalog-item-image .arrow-white {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, calc(-50% + 76px));
    z-index: 1;
}
.catalog-item-name {
    box-sizing: border-box;
    gap: 35px 0;
    padding: 0 50px;
    width: 260px;
}
.catalog-item-name img {
    max-width: 104px;
}
.catalog-item-name .text {
    color: #e5e5e5;
    font-family: 'Impact';
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    transform: scaleX(0.9);
}

/* @media(max-width: 750px) {
    .catalog-item{
        max-width: 655px;
        width: 100%;
    }
    .catalog-item .catalog-item-image{
        height: auto;
        max-width: 655px;
        width: 100%;
    }
}
@media(max-width: 500px) {
    .catalog-item-name {
        font-size: 26px;
        line-height: 26px;
        margin-bottom: 5px;
        padding: 0px 30px;
    }
    .catalog-item-image {
        margin-bottom: 80px;
    }
} */