#event {
    padding-top: 96px;
    position: relative;
}

#images {
    position: sticky;
    top: 92px;
    height: fit-content;
}

#secondary-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.img-container {
    border-radius: 24px;
    overflow: hidden;
}

.img-container.primary {
    height: 552px;
}

.img-container.secondary {
    height: 173.33px;
}


.img-container>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#googleMap {
    width: 100%;
    height: 316px;
    border-radius: 24px;
}

.overlay-text {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-family: Manosque;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    #images {
        position: relative;
        top: 0;
    }
}