.corp-footer {
    width: 100%; height: 60px;
    background-color: #123156;
    bottom: 0;

}

.corp-footer .container {
    display: flex;
}

.corp-footer-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #F7F9FC;
    font-size: 12px; line-height: 15px;
}

.corp-footer-wrap .footer-links {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin: 10px;
}

.corp-footer-wrap .footer-links a:first-of-type {
    margin-left: 0;
}

.corp-footer-wrap a {
    color: #F7F9FC;
    font-size: 3.5vw;
    margin-left: 20px;
}

@media (min-width: 577px) {
    .corp-footer {
        height: 50px;
    }

    .corp-footer-wrap {
        flex-direction: row;
        justify-content: space-between;
    }

    .corp-footer-wrap .footer-links {
        justify-content: left;
        width: auto;
        margin: 0;
    }
}

@media (min-width: 320px) {
    .corp-footer-wrap a {
        font-size: 12px;
    }
}