footer {
    background: var(--nav-color);
    min-height: 300px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.footer {
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: var(--big-gap);
    position: relative;
}

.bottom-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 70px;
    padding: 0 1.25rem;
}

.left-bottom-part {
    align-items: flex-start;
    gap: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.icons-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: var(--small-gap);
    cursor: pointer;
}

.medium-bottom-part { justify-content: space-between; }

.items {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: var(--animation);
}

.items a:hover {
    color: var(--text-color);
    transform: translateX(10px);
}

.footer-items h3, .left-bottom-part h3, .right-bottom-part h3 { margin-bottom: 10px; }

.social-part {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.social-icons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    cursor: pointer;
}

.social-icon {
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--animation);
}

.social-icon:hover {
    color: var(--text-color);
    transform: translateY(-5px);
}

.plus-part {
    padding: 1.2rem 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 800px) {
    .footer {
        flex-direction: column;
        margin-top: 20px;
    }

    .bottom-section { flex-direction: column; }
}