footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: var(--border);
    min-height: var(--footer-height);
    height: fit-content;
    padding: var(--pad-main);
}

.companyCont {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact img {
    width: 32px;
}

.legalCont {
    display: flex;
    gap: 16px;
}

.adress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footerCont {
    width: 100%;
    height: 100%;
    max-width: var(--max-width);
    display: flex;
    justify-content: space-between;
    padding: 32px 0;
}

.footerCont a,  .footerCont p{
    font-size: 14px !important;
}

@media(max-width: 750px) {
    .footerCont {
        justify-content: center;
    }

    .adress {
        flex-direction: column;
    }

    .legalCont{
        justify-content: center;
    }

    .adress span {
        display: none;
    }
}