footer {
    background: #222;
    height: 333px;
}
footer .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* footer .left {}
footer .left a {} */
footer .left img {
    height: 91px;
    margin: 50px 0;
}
footer .left p {
    color: white;
    font-size: 15px;
}
/* footer .right {} */
footer .right ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-between;
    height: 225px;
    width: 315px;
}
footer .right li {
    margin-bottom: 27px;
}
footer .right a {
    font-family: var(--font-rubrik);
    color: white;
    text-decoration: none;
    font-size: 21px;
}
footer .right a:hover {
}
footer .right a::after {
    content: "";
}
footer .right a:hover::after {
}

@media screen and (max-width: 900px) {
    footer {
        height: auto;
        padding-top: 50px;
    }
    footer .wrapper {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}

@media screen and (max-width: 768px) {
    footer .left img {
        height: auto;
        width: 100%;
    }
}
