.partners{
	padding: 128px 0 120px;
}
.partners ul{
	padding-bottom: 64px;
	font-size: 0;
}
.partners ul li{
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 23%;
	margin-bottom: 36px;
	margin-right: 2.666%;
}
.partners ul li img{
	width: 100%;
} 
.partners ul li:nth-child(4n){
	margin-right: 0;
}
.partners ul li p{
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: rgba(235,102,34,0.9);
	top: 0;
	left: 0;
	font-size: 20px;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.partners ul li:hover p{
	opacity: 1;
	visibility: visible;
}


