.footer {
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    color: #000;
    background: #fff;
    /* background: #1c1b22; */
}

.footer__body {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 32px;
}

.footer__top {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-menu {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    order: 1;
    gap: 16px;
}

.footer-menu__item {
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.footer .contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    order: 3;
}

.contacts .contacts__item {
    
}

.footer .social {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.social .social__item {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 36px;
    justify-content: center;
    align-items: center;
    color: #000;
    background-color: #f5f5f5;
    text-decoration: none;
    transition: transform 300ms;
}

.social__item:hover i {
    color: var(--bs-primary);
}

.footer-apps {
    display: flex;
    flex-direction: row;
    order: 2;
    gap: 12px;
}

.footer-apps img {
    display: block;
    width: auto;
    height: 40px;
    object-fit: contain;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
}

.footer-organization-info {
    display: flex;
    flex-direction: column;
}

.footer .hr-divider {
    margin: 16px 0;
}

@media (min-width: 768px) {
    .footer__top {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer .social {
        margin: 0;
    }
    
    .footer-apps {
        flex-direction: column;
        order: 3;
    }
    
    .footer .contacts {
        order: 2;
    }
    
}
