section.events {
    padding-bottom: 10.5rem;
}
section.events h2 {
    font-family: 'Baar Sophia Bold';
    text-align: center;
    text-transform: uppercase;
    font-size: 2.5rem;
    color: var(--primary-content80-color);
    padding: 5rem 0rem;
}

/* section.events div.event:first-child {
    display: none;
}

section.events div.event:nth-child(2) {
    display: none;
} */

section.events div.event {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 50%;
    border-bottom: 1px solid #C5C3C3;
    opacity: 1;
    visibility: visible;
    transition: opacity 500ms ease-in-out, visibility 500ms ease-in-out;
}

section.events div.event.hidden {
    opacity: 0;
    visibility: hidden;
}

section.events div.event:last-child {
    border-bottom: unset;
}

section.events div.event-place {
    align-self: center;
    justify-self: center;
}

section.events div.event picture {
    align-self: center;
    justify-self: center;
    min-width: 300px;
}

section.events div.event picture img {
    width: 100%;
    border-radius: 0.8125rem;
    object-fit: cover;
    height: 230px;
  
}

section.events div.event div.description h3 {
    color: var(--accent-color);
    font-family: 'Baar Sophia Bold';
    padding-bottom: 1.975rem;
    text-transform: uppercase;
}

section.events div.event div.description {
    font-family: 'Titillium Web';
    align-self: center;
    justify-self: center;
    padding-left: 5rem;
}

/* Mobile */
@media only screen and (max-width:768px) { 

    section.events div.event { 
        grid-template-columns: 1fr;
        padding: 3rem 0rem;
    }

    section.events div.event-place {
        padding-bottom: 2rem;
        text-align: center;
    }

    section.events div.event div.description {
        padding: 1.5rem 0rem;
        text-align: center;
    }

}
