#PartnersGrid {
    padding: 50px 0;
}

.sectionTitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.partnerItem {
    width: 200px;
    text-align: center;
    position: relative;
}

.controlsPartner {
    display: none;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    margin-top: -100px;
    height: 100px;
    text-align: center;
    padding: 0px 0 0 0;
    z-index: 999;
    position: relative;
}

.partnerItem:hover .controlsPartner,
.partnerItem:focus .controlsPartner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partnerItem img {
    height: 100px;
    width: 200px;
    object-fit: contain;
}


.partnersContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}