.footer-blue { color: #00bfff !important; }
.footer-grey { color: #a9b0bc !important; }
.footer-green { color: #32cd32 !important; }
.footer-green-light { color: #baebba !important; }
.footer-red { color: #ff0000 !important; }
.footer-red-dark { color: #e0103a !important; }
.footer-red-medium { color: #ff4b4b !important; }
.footer-red-light { color: #ffaeae !important; }
.footer-orange { color: #ffaf23 !important; }
.footer-white { color: #fff !important; }
.footer-grey-dark { color: #777777 !important; }
.footer-yellow { color: #fffb00 !important; }
.footer-black { color: #000 !important; }
.footer-purple { color: #d100b5 !important; }

.footer {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 25px 30px;
    border-top: 1px solid #6161617c;
    gap: 25px;
}

.footer-box {
    width: calc(50% - 12.5px);
    color: #a3a3a3;
}

.footer-left {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    font-size: 12px;
    gap: 5px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.footer-left .footer-links a {
    color: #d5d7dd;
}
.footer-left .footer-links a::after {
    content: ' |';
}
.footer-left .footer-links a:last-child::after {
    content: '';
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.footer-right > img {
    max-width: 100%;
}

@media (max-width: 900px) {
    .footer {
        flex-direction: column;
        gap: 15px;
    }

    .footer-left {
        align-items: center;
    }
    .footer-left .footer-links a::after {
        content: '';
    }

    .footer-links {
        flex-direction: column;
        margin: 10px 0 5px 0;
    }

    .footer-box {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}