.footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: rgb(0, 0, 0);
    color: white !important;
    font-size: 1rem;
    font-weight: 500;
    height: 50px;
    width: 100%;
    bottom: 0;
}

.footer-left p {
    color: white;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.15s ease-out;
}

.footer a:hover {
    color: #fff200;
}

.footer ul {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    list-style-type: none;
    border-left: 1px solid white;
    padding-left: 1rem;
}

.footer-right {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-right: 1rem;
}

@media screen and (max-width: 750px) {
    .footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        height: 100px;
    }

    .footer ul {
        border-left: none;
        padding: 0;
        margin: 0;
    }

    .footer-left p {
        padding: 0;
        margin: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid white;
    }

    .footer-right {
        padding: 0;
        margin: 0;
    }

    /* .footer-right ul:first-child {
        border-right: 1px solid white;
        padding-right: 1rem;
    } */
}