.footer {
    display: flex;
    flex-direction: column;
    padding: 40px 17vw;
    gap: 40px;
    background: #565656;
    color: white;
}

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

.footer-copyright {
    font-size: 12px;
    font-weight: 400;
}

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

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

.footer-content-item-content {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 400;
    gap: 15px;
}

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