.mimotic-events {
    display: flex;
    flex-wrap: wrap;
}

.mimotic-event {
    display: block;
    background-size: cover;
    transition: transform 0.2s ease-in-out;
    background-position: center center;
    position: relative;
    width: 100%;
    height: 500px;
}

a.mimotic-event:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0px 0px 10px -1px rgb(0 0 0 / 40%);
}

.mimotic-event * {
    color: #FFF;
    z-index: 1;
    position: relative;
    line-height: 1.2em;
}

.mimotic-event .text {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.mimotic-event h4 {
    text-transform: uppercase;
    font-size: 20px;
}

.mimotic-event h5 {
    text-transform: uppercase;
    font-size: 13px;
}

@media screen and (min-width: 600px) {
    .mimotic-event {
        width: 50%;
    }
}

@media screen and (min-width: 764px) {
    .mimotic-events {
        flex-wrap: nowrap;
    }
    .mimotic-event {
        padding: 100px 50px;
    }
}