.footer {
    display: flex;
    flex-direction: column;
    padding: 40px 14vw;
    gap: 40px;
    color: #35003D;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    gap: 5vw;
    width: 100%;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 400;
    max-width: 520px;
}

.footer-content-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-content-item-title {
    font-size: 16px;
    font-weight: 600;
}

.footer-content-item-content {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    gap: 10px;
}

.footer-content-item-content a {
    text-decoration: none;
}