.tutor-list{
	display:grid;
	grid-gap:28px;
	grid-template-columns: repeat( 5 , 1fr );
}
.tutor-list .tutor-pic{
	border-radius: 10px;
	overflow:hidden;
}
.tutor-name{
	margin-top:20px;
	margin-bottom: 40px;
}
.tutor-name a{
	display:block;
	    font-size: 25px;
    line-height: 30px;
}
/*
.tutor-name a:after{
	content:'';
	width:20px;
	height:20px;
	display: inline-block;
	margin-left:10px;
	background-image:url('/uploads/banner/banner_news.png');
	background-position:right center;
	background-repeat:no-repeat;
	background-size:contain;
}
*/
.tutor-pic img{
	transition: transform .5s;
}

.tutor-pic a{
	padding-bottom: 200%;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: block;
}
.tutor-pic img {
    position: absolute;
    width: 100%;
    height: 100%;
	    object-fit: cover;

}
.tutor-list .tutor-item:hover img{
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */

}
.tutor-list .tutor-item:hover .tutor-pic{
	  box-shadow: 0px 0px 6px #00000066;
}

.tutor-link a{
	vertical-align: bottom;
}
.tutor-link a:after,.tutor-name a:after{
	content:'';
	
	display: inline-block;
	margin-left:10px;
	background-image:url('/images/icon_viewarrow.svg');
	background-position:right center;
	background-repeat:no-repeat;
	background-size:contain;
	vertical-align: bottom;
}
.tutor-link a:after{
	width:28px;
	height:28px;
	
}
.tutor-name a:after{
	width:21px;
	height:21px;
	margin-bottom: 2px;
}

@media only screen and (max-width:1200px) {
	.tutor-list{
		    grid-template-columns: repeat( 3 , 1fr );
	}
	.tutor-link a{
		     display: flex;
    align-items: center;
    justify-content: left;
	}
	
	.tutor-link a:after{
		width:21px;
		height:21px;
	}
	
}
/* MOBILE VERSION */
@media only screen and (max-width:560px) {
	.side-Content .side-items .img span.imgframe{
		padding-bottom:180%;
	}
	.tutor-list {
		grid-template-columns: repeat( 2 , auto );
		grid-gap: 24px;
	}
}