footer {
    font-family: regularFont, sans-serif;
    line-height: 2em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 100%;
    gap: 3em;
    padding: 4em;
}

.footer-info-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-evenly;
    flex-grow: 1;
}

.location-frame{
    flex-grow: 1;
    height: 100%;
}

iframe{
    min-height: 450px;
}

.footerTitle {
    font-size: 2em;
    text-align: center;
}

footer table td {
    padding-right: 25px;
}

footer table td:nth-child(1) {
    text-align: right;
}

/* Mobile styles */
@media only screen and (max-width: 880px) {
    iframe{
        min-height: 250px;
        width: 100%;
    }

    footer{
        padding: 0;
    }
}


.social-menu{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 3em;
    gap: 1em;
}

.social-menu .fab{
    font-size: 1.2em;
    line-height: 40px;
    transition: .3s;
}

.social-menu a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 20%;
    background-color: #fff;
    color: var(--primary-color);
    text-decoration: none;
    transition: all ease .5s;
}

.social-menu a:hover{
    transform: translate(0, -10%);
}