.clinics_title{
	font-weight: 600;
	font-size: 24px;
	line-height: 120%;
	margin-bottom:25px;
}
.clinics_content{
	display:flex;
	gap:25px;
}
.clinics_item{
	width:100%;
	background-color:#fff;
	position: relative;
	padding:16px 18px;
	border-radius: 3px;
}
.clinics_item:hover{
	background: radial-gradient(96.28% 100% at 3.72% 0%, #C4EE9A 0%, #F5FFCE 61.43%, #DCFFC0 77.45%, #C9ECA6 100%);
}
.clinics_item:before {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	/*z-index: -1;
	margin: -2px;*/
	border-radius: inherit;
	background: radial-gradient(96.28% 100% at 3.72% 0%, #C4EE9A 0%, #F5FFCE 61.43%, #DCFFC0 77.45%, #C9ECA6 100%);
	padding:2px;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	z-index:1;
}
.clinics_item > div{
	display:flex;
	gap:10px;
	z-index: 2;
	position: relative;
}
.clinics_item > div > p{
	width:20px;
	height:20px;
	margin:0;
	padding:0;
}
.clinics_name{
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
}
.clinics_address{
	font-weight: 500;
	font-size: 14px;
	line-height: 23px;
	margin-top:20px;
}
.clinics_metro{
	font-weight: 500;
	font-size: 14px;
	line-height: 23px;
	margin-top:10px;
}
.clinics_phone{
	font-weight: 500;
	font-size: 14px;
	line-height: 23px;
	margin-top:10px;
}

@media all and (max-width:768px) {
	.clinics_title{
		text-align:center;
	}
	.clinics_content{
		flex-direction:column;
		gap:20px;
		margin:0 auto;
		max-width:300px;
	}
}
