.footer {
    background-color: #d3f1f4;
    color: #000;
    justify-content: space-between;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
}


.footer-column {
    width: 30%;
}

.footer-column h3 {
    font-family: FiraSans-Bold;
    margin-bottom: 10px;
    font-size: 14pt;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #000;
    text-decoration: none;
}
.copyright {
    background-color: #58829a;
    color: #fff;
    padding: 10px;
    text-align: center;
}




@media (max-width: 767px) {
    .footer-column {
        width: 100%;
    }
    .footer-inner {
 flex-direction: column;
    }
}