.footer-container {
    width: 100vw;
    height: auto;
    font-family: Tonus Sans;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: #eaeaea 0px -10px 12px;
}

a {
    text-decoration: none;
}

.quickLinks h4 {
    margin: 0px;
}

.contact h4 {
    margin: 0px;
}

.quickLinks {
    display: flex;
    flex-direction: column;
    padding: 20px;
    height: 100%;
}

.footerLink {
    color: #000000;
    font-weight: normal;
    margin-top: 10px;
    transition: all 0.4s ease;
}

.footerLink:hover {
    scale: 110%;
}

.contact {
    display: flex;
    flex-direction: column;
    padding: 20px;

    height: 100%;
}

.location {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.location p {
    margin: 0px;
}

.footer-bottom {
    width: 100%;
 position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
    text-align: center;
    font-family: #598896;
    color: #598896;
    padding: 10px 0px;
    font-size: 12px;
    border-top: #598896 solid 1px;
}

.copyright-text { 
    text-align: center;
}

@media only screen and (max-width: 580px) {
    .footer-container {
        text-align: center;
        flex-wrap: wrap;
    }
}