.footer {
    background-color: #757575;
    width: 100%;
    padding: 50px 0px;
}

.signature {
    width: 100%;
    display: flex;
    column-gap: 10px;
    justify-content: flex-end;
}

.signature > p {
    font-weight: bold;
}

.signature > a {
    text-decoration: none;
}


.footer__container {
    flex-direction: column;
    row-gap: 50px;
}

.footer * {
    font-size: 1rem;
    color: var(--primary);
}

.footer__container .footer__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.footer__container .footer__info .footer__element {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.footer__info__title {
    width: 100%;
    font-weight: bold;
}

.footer__info__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.footer__info__content .footer__info__row {
    display: flex;
    justify-content: space-between;
}

.footer__info__content .footer__info__row .footer__info__name,
.footer__info__content .footer__info__row .footer__info__value {
    width: 48%;
}

.footer__info__content .footer__info__row .footer__info__value {
    display: flex;
    align-items: flex-end;
}

.footer__copyright {
    display: flex;
    align-items: center;
    width: 100%;
}

/* For spaces and large devices */
@media screen and (min-width: 1000px) {
    .footer {
        padding: 100px 0px;
    }
    .footer__container {
        row-gap: 100px;
    }
    .footer__container .footer__info {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer__container .footer__info .footer__element {
        width: fit-content;
    }
    .footer__copyright {
        justify-content: center;
    }
}