.row_elements{
	display:flex;
	flex-direction: column;
	gap:15px;
}
.row_elements .element_item{
	width:100%;
	padding:10px 10px 10px 20px;
	background: #DEF5FF;
    border-radius: 20px;
	display: flex;
    align-items: flex-end;
    justify-content: space-between;
	position:relative;
}
.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:20px;
}
.row_elements .element_item label{
	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;
	margin-bottom:20px;
	margin-left: auto;
    margin-right: 25px;
}
.row_elements .element_item img{
	width:496px;
	height:280px;
	border-radius:16px;
	max-width:100%;
	object-fit:cover;
}
.row_elements .element_item a{
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:2;
}



@media screen and (max-width:600px){
	.row_elements .element_item label{
		position: absolute;
		top: 10px;
		font-size:14px;
		padding: 8px 12px;
        margin-bottom: unset;
	}
	.row_elements .element_item p{
		font-size:18px;
	}
	.row_elements .element_item img{
		border-radius: 10px;
		width: 171px;
		height: 136px;
	}
	
}