.row_elements{
	display:flex;
	flex-direction: row;
    flex-wrap: wrap;
	gap:15px;
}
.row_elements .element_item{
	position:relative;
	display:flex;
	width:calc(50% - 10px);
	background: #b1d0ff;
	padding:10px;
	border-radius:20px;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
    gap: 30px;
	flex-wrap: nowrap;
}
.row_elements .element_item.large{
	width:100%;
}
.row_elements .element_item.large img{
	height: 280px;
	max-width:100%;
	border-radius:20px;
	object-fit:cover;
}

.row_elements .element_item span{
	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;
	bottom:20px;
	right:20px;
}
.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;
}

.row_elements .element_item p{
	font-family: "Inter Tight", sans-serif;
	font-weight: 600;
	font-size: 27px;
	line-height: 130%;
	text-align: center;
	color: #231f20;
	margin-bottom: 10px;
    margin-left: 10px;
}
.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.large img{
	width:496px;
	max-width:100%;
}
.row_elements .element_item.large span{
	right:560px;
}


@media screen and (max-width:600px){
	.row_elements .element_item{
		width:100%;
	}
	.row_elements .element_item p{
		font-size: 18px;
	}
	.row_elements .element_item span,
	.row_elements .element_item.large span{
		right:unset;
		bottom: unset;
		left:15px;
		top:15px;
		font-size:14px;
	}
	.row_elements .element_item.large img,
	.row_elements .element_item img{
		height: 136px;
        width: 150px;
        object-fit: cover;
		border-radius: 10px;
	}
}