.ws-footer--menu {
    display: flex;
    padding: 50px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    align-self: stretch;
}

.ws-footer--menu li {
    list-style: none;
}

.ws-footer--menu > li {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ws-footer--menu a:hover {
    text-decoration: underline;
}

.ws-footer--copyright-container {
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    text-align: center;
    gap: 5px;
}

.ws-footer--copyright-item:first-child::before {
    content: " ";
}

.ws-footer--copyright-item {
    list-style-type: none;
}

.ws-footer--copyright-item::before {
    content: "-";
    padding-right: 5px;
}

.ws-footer--copyright-item > span.ws-footer--copyright-link,
.ws-footer--copyright-item > a.ws-footer--copyright-link {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    cursor:pointer;
}

.ws-footer--copyright-item > span.ws-footer--copyright-link:hover,
.ws-footer--copyright-item > a.ws-footer--copyright-link:hover {
    color:var(--qerys-primary-color);
}

.ws-footer--network-title {
    align-items: center;
}

@media (max-width: 1025px) {

    .ws-footer--menu > li {
        width: calc(100% / 3 - 100px / 3);
    }

    .ws-footer--network-title {
        align-items: flex-start;
    }

    .ws-footer--copyright-item:last-child {
        width: 100%;
    }

    .ws-footer--copyright-item:last-child::before {
        content: " ";
    }
}

@media (max-width: 767px) {
    .ws-footer--menu > li {
        width: calc(50% - 25px);
    }
    .ws-footer--copyright-container {
        padding: 10px;
    }
    .ws-footer--copyright-item {
        list-style-type: none;
        width: calc(100% / 2 - 5px);
    }
    .ws-footer--copyright-item::before {
        display:none;
    }
    .ws-footer--network-title {
        align-items: center;
    }

}