footer {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    width: 100%;
}

footer > h2 {
    text-align: center;
    margin-bottom: 0;
}

footer .subtitle {
    font-size: 18px;
}

footer > hr {
    color: var(--dark-text-color);
    width: 95%;
}

footer .footer-copyright {
    margin: 10px 0 20px 0; 
}

footer .footer-compliance-images {
    align-items: center;
    display: flex;
    margin: 20px 0;
}

footer .footer-compliance-images > img {
    height: 120px;
    margin: 0 20px;
}

footer .footer-links-row {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
    width: 80%;
}

footer .footer-links-col.address {
    min-width: 265px;
    width: 25% !important;
}

footer .footer-links-col {
    display: flex;
    flex-direction: column;
    width: 20%;
}

footer .footer-links-col > h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

footer .footer-links-col > a {
    color: var(--light-text-color);
    margin: 6px 0;
    text-decoration: none;
}

footer .footer-links-col > a:hover {
    color: var(--ic-blue);
}

@media only screen and (max-width: 1000px) {
    footer .footer-links-row {
        width: 95%;
    }
    
    footer .footer-links-col.address {
        min-width: unset;
        width: 20%;
    }
}

@media only screen and (max-width: 700px) {
    footer .footer-compliance-images > img {
        height: 80px;
    }

    footer .footer-links-row {
        flex-direction: column;
        align-items: center;
    }

    footer .footer-links-col {
        width: 70%;
        text-align: center;
        margin-bottom: 30px;
    }

    footer .footer-links-col.address {
        width: 70% !important;
    }

    footer .footer-links-col .logo-box {
        justify-content: center;
    }

    footer .footer-copyright {
        margin: 10px 15px 20px 15px; 
        text-align: center;
    }
}

@media only screen and (max-width: 520px) {
    footer .subtitle {
        width: 80%;
        text-align: center;
    }

    footer .footer-compliance-images {
        flex-direction: column;
    }

    footer .footer-compliance-images > img {
        margin: 20px 0;
        height: 90px
    }

    footer .footer-links-col > h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}