@media (max-width: 767px) {
    .event-container {
        flex-direction: column;
        align-items: center;
    }

    .event-card {
        width: 90%;
        margin: 10px 0;
    }
}

.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.slider-wrapper {
    margin-top: 200px;
}

.event-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.events-title {
    text-align: center !important;

}

.events-field {
    display: flex;
    justify-content: center;
}

.event-card {
    max-width: 397px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 5px;
    margin: 20px;
    border: 1px solid #c6c6c6;
    padding: 1.5%;
    transition: linear;
    transition-duration: 500ms;
}

.event-card .description {
    min-height: 70px;
}


.event-card img {
    width: 350px;
    height: 220px;
    min-width: 350px;
    min-height: 220px;
}



.event-card div {
    width: 100%;

}

.event-card a {
    font-size: x-large;
    color: black;
    text-decoration: none;
    transition: linear;
    transition-duration: 500ms;
}

hr {
    margin-top: 5%;
    width: 85%;
}

.event-card:hover {
    background-color: #383838;
    color: white;
}

.event-card:hover a {
    color: white;
}

.event-card:hover a:hover {
    letter-spacing: 2px;
}