.app-footer .footer-main,
.app-footer .social-media-links,
.app-footer .company-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.app-footer {
    padding: 24px 0;
    height: auto;
    background-color: #101921;
    color: #cdd9e1;
}
.app-footer .app-logo {
    width: 110px;
    height: 10vh;
}
.app-footer .social-media-links {
    display: flex;
    justify-content: space-between;
    flex: 0 160px;
    transform: translateY(-3px);
}
.app-footer .social-media-links .app-icon {
    width: 17px;
    height: 17px;
}
.app-footer .copyright {
    font-size: 0.75rem;
    margin-top: 16px;
}
.app-footer .copyright-desktop {
    color: #8aa4b3;
    font-family: Soleil, sans-serif;
}
@media (min-width: 768px) {
    .app-footer .copyright {
        margin-top: 0;
    }
}
@media (min-width: 992px) {
    .app-footer .social-media-links {
        flex: none;
        width: 160px;
    }
    .app-footer .social-media-links .app-icon {
        width: 15px;
        height: 15px;
    }
}