footer {
    display: flex;
    padding: 50px 50px 34px 50px;
    flex-direction: column;
    background-color: rgb(0, 0, 0);
}

.footer-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-logo {
    width: 135px;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 118px;
}

.footer-container {
    display: flex;
    gap: 50px;
}

.footer-container li {
    text-decoration: underline;
    list-style: none;
    font-size: 12px;
    font-weight: 400;
}

.footer-contacts {
    display: flex;
    gap: 29px;
    align-items: flex-end;
}

.footer-phone {
    font-size: 20px;
    font-weight: 500;
}

.footer-mail {
    font-size: 12px;
    font-weight: 500;
    text-decoration: underline;

}

.footer-line {
    width: 100%;
    height: 1px;
    background-color: white;
    opacity: 0.3;
    margin: 35px 0 28px 0;
}

.footer-info {
    font-size: 12px;
    font-weight: 400
}

.footer-legal {
    display: flex;
    gap: 30px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: underline;
}

