.footer {
    width: 100%;
    height: 10rem;
    background: #000;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.contrImages {
    display: flex;
    width: 100%;
    height: auto;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.contrImages__img {
    height: 4rem;
}

.contrImages__line {
    width: 0.2px;
    height: 4rem;
    background: #fff;
    opacity: 0.4;
}

.footer__copy {
    color: #fff;
    text-align: center;
    font-size: 12px;
}

@media (max-width: 576px) {
    .footer {
        justify-content: center;
        gap: 20px;
    }

    .contrImages {
        flex-direction: row;
    }

    .contrImages__line {
        display: none;
    }

    .contrImages__img {
        height: 2rem;
    }

    .footer__copy {
        max-width: 200px;
    }
}