.footer-area {
    width: 100%;
	padding: 20px;
	background-color: #5FA6DB;
    color: #ffffff;
    font-family: 'Roboto';
    font-weight: bold;
}

.footer-area > div {
    max-width: 1152px;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
	justify-content: space-between;
}

.footer-copyright-information {
    font-size: 10px;
    line-height: 12px;
    padding: 1em 0;
}

.footer-links {
    font-size: 14px;
    line-height: 20px;
    margin: auto 0;
    width: 30%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.footer-area a {
    color: #ffffff;
    margin-right: 1.5em;
}

.footer-links a:last-child {
    margin-right: 0;
}

.footer-links a:hover {
    color: #051F31;
}

@media all and (max-width: 767px) {
    .footer-copyright-information {
        margin: 0 auto;
    }

    .footer-links {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
        margin-top: 0.5rem;
        justify-content: center;
        font-size: 12px;
    }
}