.hits_block {
    width: 100%;
    height: 340px;
    background-image: url(/include/sell_hit.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 25px;
    padding: 10px;
}
.hits_block h3,
.hits_block h3:first-child {
    position: relative;
    z-index: 1;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: 72px;
    line-height: 1;
    font-weight: 600;
    text-shadow: 4px 4px 6px #000;
	margin-top: -5px;
    margin-bottom: 3px;
}
.hits_block .hit_items {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-flow: row;
    gap: 0 7%;
}
.hits_block .hit_items .hit_item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column;
    width: 100%;
    max-width: 14.5%;
    background-color: transparent;
}
.hits_block .hit_items .hit_item a {
	display: block;
	width: 100%;
	max-width: 84%;
	background-color: #ebf8f8;
	border-radius: 20px;
	padding: 22px 17px;
}
.hits_block .hit_items .hit_item .hit_img {
	position: relative;
    width: 100%;
    aspect-ratio: 100 / 100;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #fff;
    border-radius: 10px;
}
.hits_block .hit_items .hit_item .hit_img .hit_price {
    position: absolute;
    bottom: -6px;
    right: -60%;
    color: #000;
    font-size: 32px;
    font-weight: 600;
    background-color: #f3c313;
    padding: 15px 15px;
    border-radius: 27px;
}
.hits_block .hit_items .hit_item .hit_name {
	display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	color: #000;
	font-size: 12px;
	line-height: 1.2;
	margin-top: 10px;
}
@media all and (max-width: 1600px) {
	.hits_block .hit_items {
		gap: 0 5%;
	}
	.hits_block .hit_items .hit_item {
		max-width: 16%;
	}
	.hits_block .hit_items .hit_item .hit_img .hit_price {
		right: -55%;
		font-size: 26px;
		padding: 10px;
	}
}
@media all and (max-width: 1300px) {
    .hits_block .hit_items .hit_item {
        max-width: 19%;
    }
}

@media all and (max-width: 1024px) {
    .hits_block h3, 
	.hits_block h3:first-child {
        font-size: calc(5vw * 1.2);
    }
	.hits_block .hit_items {
		justify-content: flex-start;
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		padding-bottom: 20px;
	}
    .hits_block .hit_items .hit_item {
        min-width: 245px;
        max-width: unset;
        margin-right: 10px;
    }
}

@media all and (max-width: 600px) {
   .hits_block h3, .hits_block h3:first-child {
        margin-top: 10px;
        font-size: calc(7vw * 1.2);
    }
	.hits_block .hit_items .hit_item .hit_img .hit_price {
        right: -35%;
    }
	.hits_block .hit_items .hit_item {
        min-width: 260px;
    }
}
