.slider {
    padding: 0;
}

.slider-element img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.slider-element {
    display: flex;
    align-items: end;
    width: 100%;
    max-height: 100vh;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wrapper-fullscreen {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.slider-container {
    width: 100%;
    max-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.upcoming-container {
    display: flex;
    gap: 20px;
    /* flex-wrap: wrap; */
    justify-content: center;
    justify-content: space-between;
}

.upcoming-event {
    width: 30%;
}

.upcoming-event-image {

    width: 100%;
    height: 400px;
    object-fit: cover;
}

.upcoming-event h3 {
    color: #fff;
    font-size: 15pt;
    min-height: 70px;
}

.upcoming-event .partner-button {
    width: 100%;
    text-align: center;
    background-color: #ef3551;
}

.upcoming-event .partner-button:hover {
    background-color: #17b09e;
}

.subtitle {
    color: #fafafa;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid #fafafa;
    padding: 20px;
}

@media only screen and (max-width:760px) {
    .upcoming-container {
        flex-direction: column;
        align-items: center;
    }

    .upcoming-event {
        width: 90%;
        margin-bottom: 40px;
    }

    .slider-element {
        align-items: center;
        justify-content: center;
        width: 100%;
        max-height: 100vh;
    }

    .slider-element img {
        display: flex;
        width: auto;
        height: 100vh;
        object-fit: cover;
        position: relative;
    }
}