/* Styling for footer */
.line {
    height: 1px;
    background-color: #E6E6E6;
}

.foot {
    justify-content: space-between;

    margin: 2rem 8rem 4rem;
}

@media (max-width: 992px) {
    .foot {
        flex-direction: column;
        justify-content: flex-start;
        margin: 4rem;
    }
}

@media (max-width: 768px) {
    .foot {
        flex-direction: column;
        justify-content: flex-start;
        margin: 2rem;
    }
}

.foot-img {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.foot-icon {
    font-size: 1.5rem;
}

.foot-text {
    display: flex;
    gap: 6rem;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .foot-text {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .foot-text {
        flex-direction: column;
        gap: 2rem;
    }
}

.foot-category {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .foot-category {
        margin-bottom: 1rem;
    }
}

.foot-link {
    display: block;
    font-size: 0.875rem;
    width: fit-content;
}