#main {
    overflow-x: hidden;
}

#hero {
    background: var(--accent);
    padding-top: 15lvh;
    padding-bottom: 15lvh;

}

#hero * {
    position: relative;
    z-index: 1;
}

#hero h1, #hero p.split {
    font-size: 5rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
}

#hero p.split {
    padding-top: 1rem;
}

#hero .buttons {
    margin: auto auto;
    margin-top: 5rem;
    font-size: 2rem;
    width: 60%;
    display: flex;
    justify-content: space-between;
}

#hero .buttons .button {
    scale: 0;
}

#hero .events {
    display: flex;
    flex-direction: row;
    width: 100%;
    border: none;
    position: absolute;
    transform: translateY(5rem);
    /* background: var(--fg); */
    color: var(--bg);
    height: 30lvh;
    min-height: fit-content;
}

#hero .event {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    text-align: center;
    flex-grow: 1;
    padding: 1.5rem;
}

.event-blue {
    background: var(--accent-blue);
}

.event-black {
    background: var(--fg);
}

#hero .event p {
    padding: 0;
    margin: 0;
}

#hero .event .larger {
    font-size: 2rem;
}

#hero .events img {
    height: 100%;
    filter:grayscale(0.75);
}

#hero .events a {
    margin-top: auto;
    color: var(--bg);
}

#hero .events a:hover,
#hero .events a:active,
#hero .events a:focus {
    color: var(--accent);
    text-shadow: none;
}

#hero .block {
    /* border-color: var(--accent-blue); */
}

.image-carousel-wrapper {
    opacity: 1;
    width: 100%;
}

.image-carousel {
    display: flex;
    flex-direction: row;
    /* gap: 1rem; */
    flex-wrap:nowrap;
    width: unset;
    overflow-x:visible;
    width: 100%;
}

.image-carousel-wrapper img {
    height: calc(20lvw * 3/4);
}

.image-carousel img:first-child {
    /* padding-left: 1rem; */
}

.block {
    padding: 1rem 1rem;
    background: var(--bg);
    border: 6px solid var(--accent);
}

.block h2 {
    margin-top: 0rem;
}

#we-are {
    padding-top: 25lvh;
    padding-bottom: 20lvh;
    background: url(/assets/index/4.jpg);
    background-size: cover;
    background-position: center center;
}

@media only screen and (max-width: 992px) {
    #hero h1, #hero p.split {
        font-size: 2.5rem;
        line-height: 2.5rem;
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0;
    }

    #hero .buttons {
        font-size: 1.5rem;
        width: 90%;
        max-width: 450px;
        gap: 1rem;
        text-align: center;
        margin: auto
    }


    #hero .events {
        flex-direction: column;
    transform: translateY(0rem);
    }

    #hero .events img {
        display: none;
    }

    #hero .event {
        height: 70%;
    }

    .image-carousel-wrapper img {
        height: calc(50lvw * 3/4);
    }
}
