.footer {
    font-size: 1.2em;
    background-color: black;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
    z-index: 99999;
    padding-top: 0.5em;
    min-height: 5rem;


    display: flex;
    align-content: space-between;
    padding-bottom: 0.5em;
}

.footer .icon img {
    height: 4rem;
    padding: 15px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.footer > div {
    flex: 1;
    padding-bottom: 0.5em;
    padding-left: 1em;
    padding-right: 1em;
    align-items: center;

    flex-direction: row;
    display: flex;
}

.footer .bottom_section {
    padding-bottom: 1em;
    justify-content: flex-end;
}

.footer .contact {
    display: flex;
    justify-content: space-evenly;
}

.footer .address {
    text-align: center;
}


.top-section > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width: 820px) {
    .footer .bottom_section > div {
        padding-top: 0.5em;
    }
}

@media(max-width: 576px) {
    .top-section > div {
        flex-direction: column;
    }

    .footer {
        flex-direction: column;
    }

    .footer .top-section {
        justify-content: center;
    }

    .footer .bottom_section {
        justify-content: center;
    }

    .footer .social-icons.inverted a {
        width: 2rem;
        height: 2rem;
        margin-right: 0.5rem;
    }

    .footer .social-icons.inverted i {
        font-size: 0.7em;
    }
}

.social-icons.inverted a {
    background-color: white !important;
    color: black !important;
}

.title {
    font-family: 'Inter';
    font-size: 1.2em;
}


.social-icons {
    padding-top: 0.5em;
    display: flex;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.5rem;
    width: 3.5rem;
    background-color: #000;
    color: #fff !important;
    border-radius: 100%;
    font-size: 1.5rem;
    line-height: 3.5rem;
    margin-right: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.social-icons a:last-child {
    margin-right: 0;
}
.social-icons a:hover {
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}