.partners-list-page {
	display: grid;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    align-items: center;
}

.partner-info-box {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.partners-list-page .partner-item-box {
	height: 100%;
}

.partners-list-page .partner-item {
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 38px 30px;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
	height: 100%;
}

.partners-list-page .partner-logo {
	height: 60px;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 100%;
	max-width: 70%;
}

.partners-list-page .partner-logo:hover {
    filter: initial;
    opacity: 1;
}

.partners-list-page .partner-name {
    text-align: center;
    margin-top: 16px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
}

.partner-logo-mask {
    width: 180px;
    height: 160px;
    display: table;
    background-size: contain !important;
    position: absolute;
    right: -20px;
    bottom: -20px;
    z-index: 0;
    mix-blend-mode: luminosity;
    opacity: 0.05;
	background-repeat: no-repeat !important;
}