.expo_categorie {
    margin-bottom: 25px;
}
.expo_categorie__title {
    text-align: center;
    margin-bottom: 25px;
}
.expo_partners {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    justify-content: space-between;
}
@media screen and (max-width: 992px) {
    .expo_partners {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 768px) {
    .expo_partners {
        grid-template-columns: 1fr 1fr;
    }
}
.expo_partners .expo_partner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    max-width: 260px;
    margin: auto;
    height: 100%;
    transition: 0.5s;
    border-radius: 6px;
    position: relative;
    top: 0;
    background-color: #fff;
    width: 100%;
    max-height: 250px;
}
.expo_partners .expo_partner:hover {
    top: -10px;
}

.expo_partner__image {
    display: block;
    max-width: 250px;
    max-height: 250px;
    width: 100%;
    height: 250px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.category-edit {
    position: absolute;
    top: 0;
    right: 0;
}

.edit-button {
    background-color: #ececec;
    padding: 1px;
    margin-left: 20px;
    border-radius: 5px;
    border: 1px solid #000;
}

.sponsor .sponsor_head {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.sponsor .sponsor_head .sponsors_logo {
    max-width: 200px;
}