.divisionen_container {
    display: flex;
    flex-flow: row wrap;
    padding: 5% 10%;
    gap: 34px;
    justify-content: center;
}

.divisionen_item {
    position: relative;
    width: 300px;
}

.divisionen_item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #aec845;
    transition: all .2s;
    z-index: 0;
}

.divisionen_item a:hover {
    transform: translate(7px, 7px);
}


.divisionen_item a {
    position: relative;
    display: flex;
    transition: transform .2s;
    z-index: 1;
}

.divisionen_item img {
    position: relative;
    width: 100%;
    height: 100%;
}