.section-item a {
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	text-decoration: none;
	display: block;
	border-radius: 20px;
	background-color: #fff;
	-webkit-transition: all 0.2s linear 0s;
	-moz-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
	transition: all 0.2s linear 0s;
	padding: 20px;
	min-height: 180px;
}
.section-item a:hover {
	/*-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
	background: #DBBFAA;*/
	text-decoration: none;
}

.section-item-text {
	height: 150px;
	/*display: none;
    font-size: 15px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 100%);
    padding: 30px 15px 10px 15px;
    transition: all 0.5s ease-out;
    margin-bottom: -50px;*/
}
.section-item a:hover .section-item-text {
	margin-bottom: 0px;
}

.section-item-title {
	font-size: 18px;
	line-height: 20px;
	color: #fff;
	margin-bottom: 25px;
	font-weight: 700;
}

.section-item-desc {
	font-size: 14px;
	color: #d7d7d7;
	margin-top: 5px;

	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
	-ms-line-clamp: 4;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	display: -webkit-box;
	display: box;
	word-wrap: break-word;
	-webkit-box-orient: vertical;
	box-orient: vertical;
}

.section-item a:hover .section-item-title {
	color: #012a4a;
}