.row > .specialist-item {
    background: #ececec57;
}

.row > .specialist-item {
    /* display: block; */
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-weight: normal;
    -webkit-box-shadow: 0 0 5px 5px rgb(0 0 0 / 12%);
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    color: #404040;
    margin: 0;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    box-shadow: 0 0 5px 5px rgb(0 0 0 / 12%);
    margin-bottom: 35px;
    transition: box-shadow 0.5s, transform 0.5s;
    transform: scale(1);
}
.row > .specialist-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px 7px rgba(34, 60, 80, 0.2);
    transition: box-shadow 0.5s, transform 0.5s;
}

.specialist-item .specialist_photo {
    border: none;
    height: 270px;
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
}

.specialist-item .specialist_photo img {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    display: block;
}
.specialist-item .specialist_name {
    padding: 15px 0;
    color: #000;
	font-size: 1.125em;
	text-decoration: none;
}
.specialist-item .specialist_position {
    padding: 0;
    line-height: 1.5em;
    font-size: 0.875em;
	min-height: unset;
	text-decoration: none;
}
@media screen and (max-width: 900px){
	.row > .specialist-item {
	    width: 30%;
	}
}
@media screen and (max-width: 600px){
	.row > .specialist-item {
	    width: 48%;
	}
}
@media screen and (max-width: 420px){
	.row > .specialist-item {
	    width: 100%;
	}
}