.doctor_list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.doctor_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	border-radius: 15px;
	border: 1px solid #D9D9D9;
	padding: 33px 26px;
	width: 100%;
	max-width: 32%;
}

.doctor_img {
	display: flex;
	flex-direction: column;
	background: #F1F1F1;
	border-radius: 50%;
	width: 150px;
	height: 150px;
	overflow: hidden;
	position: relative;
	margin-bottom: 18px;
	background-size: cover !important;
}

.doctor_top .name {
	margin: 0;
	margin-bottom: 8px;
	font-size: 22px;
	font-weight: 600;
	color: #1C1C1B;
	width: 100% !important;
	padding: 5px 8px;
}

.doctor_top {
	border-bottom: 1px solid #E8E8E8;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.city {
	border-bottom: 1px solid #E8E8E8;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.doctor_main {
	width: 100%;
	text-align: center;
}
.doctor_top .name {
	min-height: 78px;
}

.city img {
	max-height: 20px;
}

.city {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

@media (max-width: 767px) {

	.doctor_item {
		max-width: 100%;
	}
}