h1{
	margin-bottom:10px;
}
.filter_row{
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    margin-bottom: 10px;
}
.filter_row select{
	display: block;
    font-family: "Inter Tight", sans-serif;
	font-weight: 500;
	font-size: 21px;
	line-height: 145%;
	color: #fff;
	border: 1px solid #fff;
    border-radius: 50px;
    padding: 6px 15px;
	padding-right:55px;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    box-shadow: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #1966E3;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='10' viewBox='0 0 15 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L7.5 8L13 2' stroke='white' stroke-width='2.1197' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}
.row_elements{
	display:flex;
    flex-direction: column;
    flex-wrap: wrap;
	gap:15px;
    justify-content: space-between;
	padding-bottom: 30px;
}
.row_elements .element_item{
	position:relative;
	display:flex;
	width:100%;
	background: #deffff;
	padding:10px;
	border-radius:20px;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}
.row_elements .element_item p small{
	display:block;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 145%;
	color: #231f20;
}
.row_elements .element_item p{
	font-family: "Inter Tight", sans-serif;
	font-weight: 600;
	font-size: 27px;
	line-height: 130%;
	color: #231f20;
    margin-left: 10px;
    margin-bottom: 10px;
}
.row_elements .element_item img{
	max-width:100%;
	border-radius:20px;
	object-fit:cover;
	height:280px;
	width:496px;
}
.row_elements .element_item span.year{
	border:1px solid #000;
	border-radius: 20px;
	padding: 8px 15px;
	font-family: "Inter Tight", sans-serif;
	font-weight: 500;
	font-size: 21px;
	text-align: center;
	color: #231f20;
	position:absolute;
	right: 540px;
    top: 30px;
}
.row_elements .element_item span.city{
	border: 1px solid #000;
	border-radius: 20px;
	padding: 8px 15px;
    position:absolute;
	top:20px;
	left:20px;
	font-family: "Inter Tight", sans-serif;
	font-weight: 500;
	font-size: 21px;
	text-align: center;
	color: #231f20;
}
.row_elements .element_item span.price{
	border-radius: 20px;
	padding: 8px 15px;
	background: #1966e3;
	font-family: "Inter Tight", sans-serif;
	font-weight: 500;
	font-size: 21px;
	text-align: center;
	color: #fff;
	position:absolute;
	right: 540px;
    bottom: 30px;
}
.row_elements .element_item a.full_link{
	content:'';
	display:block;
	position:absolute;
	top:0;
	left:0;
	width: 100%;
    height: 100%;
	z-index:2;
}
.row_elements .element_item a.like_btn{
	content:'';
	display:block;
	width: 40px;
	height: 40px;
	min-width:40px;
	background-color:#FFF;
	border-radius:50%;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21.6667L10.55 20.3719C5.4 15.7909 2 12.7697 2 9.06178C2 6.04053 4.42 3.66669 7.5 3.66669C9.24 3.66669 10.91 4.46124 12 5.71682C13.09 4.46124 14.76 3.66669 16.5 3.66669C19.58 3.66669 22 6.04053 22 9.06178C22 12.7697 18.6 15.7909 13.45 20.3817L12 21.6667Z' stroke='%230E53B9' stroke-width='2' /%3E%3C/svg%3E");
	position:absolute;
	top:20px;
	right:20px;
	z-index:5;
	background-position: center;
    background-size: auto;
    background-repeat: no-repeat;
}

@media screen and (max-width:600px){
	.filter_row select{
		font-size:11px;
		padding-right: 35px;
	}
	.row_elements .element_item{
		flex-direction: row;
		flex-wrap: nowrap;
	}
	.row_elements .element_item span.city{
		display:none;
	}
	.row_elements .element_item p{
		font-size: 18px;
		max-width: 140px;
	}
	.row_elements .element_item img{
		width: 171px;
		height: 136px;
		border-radius:10px;
	}
	.row_elements .element_item a.like_btn{
		top:15px;
		right:15px;
	}
	.row_elements .element_item span.year{
		right: 20px;
		bottom: 20px;
		top:unset;
		border-color:#FFF;
		color:#fff;
		z-index: 5;
		font-size: 8px;
	}
	.row_elements .element_item span.price{
		top: 15px;
		right: unset;
		left: 10px;
		bottom: unset;
		font-size: 14px;
	}
	.row_elements .element_item a.like_btn{
		width: 30px;
		height: 30px;
		min-width: 30px;
		background-size: 20px;
	}
}