/* ===== OFFICE PRESENTATION PART ===== */

#office_presentation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 12vh auto;
}

#office_presentation figure {
    position: relative;
    width: 80%;
    height: fit-content;
    max-width: 500px;
    overflow: hidden;
}

/* EXCEPTION */

.horizontal_pic {
    max-width: 700px !important;
}

#office_presentation>figure:hover figcaption {
    opacity: 1;
    transition: opacity 0.5s;
}

#office_presentation figcaption {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20%;
    color: white;
    font-size: 18px;
    font-weight: 300;
    bottom: 3px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0px 0px 25px 25px;
    transition: opacity 0.5s;
}

#office_presentation>figure>figcaption p {
    width: 70%;
    text-align: center;
}

#office_presentation img {
    width: 100%;
    height: auto;
    min-width: 300px;
    opacity: 0.8;
    transition: 0.5s;
    border-radius: 25px;
}

#office_presentation>figure:hover img {
    opacity: 1;
    transition: 0.5s;
    border-radius: 25px;
}

/* ==== LOCALS TITLE ==== */

#local_title {
    font-family: 'Oswald', sans-serif;
    text-align: center;
    font-size: 45px;
    font-weight: 500;
    animation: floating 10s infinite;
}