.listpartner .thumb{
    margin-bottom: 30px;
}
.listpartner .thumb a{
	display: block;
	position: relative;
	padding-top: 180px;
	overflow: hidden;
	height: 0;
	z-index: 1;
}
.listpartner .thumb a span{
	position: absolute;
	top: 00%;
	left: 0;
	right: 0;
	display: block;
	padding: 10px;
	color: #fff;
	opacity: 0;
	z-index: 2;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	-webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.listpartner .thumb a:hover span{
	opacity: 1;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.listpartner .thumb a::before{
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.3);
	z-index: 1;
	opacity: 0;
	/* transform: scale(0); */
    /* border-top: solid 1px #1a53a4;
    border-bottom: solid 1px #1a53a4; */
	-webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.listpartner .thumb a:hover::before{
	opacity: 1;

	/* transform: scale(1); */
	-webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
/* .listpartner .thumb a::after{
	content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 50%;
    bottom: 50%;
    border-left: solid 1px #1a53a4;
    border-right: solid 1px #1a53a4;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    pointer-events: none;
    z-index: 1;
} */
.listpartner .thumb a:hover::before{
	left: 0;
    right: 0;
}
/* .listpartner .thumb a:hover::after{
	top: 0;
    bottom: 0;
} */
.listpartner .thumb a img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 70%;
	max-height: 70%;
}
@media all and (max-width: 991px){
    .listpartner .thumb a{
		padding-top: 100%;
	}
	.listpartner .thumb a::before{
		display: none;
	}
	.listpartner .thumb a span{
		display: none;
    }
    .listpartner .thumb a img{
        max-width: 70%;
        max-height: 70%;
    }
}