/* NAVIGATION START */

.navigation {
    position: sticky;
    top: 0;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 72px;
    flex-wrap: wrap;
    padding: 0;
    z-index: 100; /* Ensure navigation stays on top */
}

.navigation__links--wrapper--left {
    padding-bottom: 2px; /* To align with links on the right */
}

.navigation__links--wrapper--left,
.navigation__links--wrapper--right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.navigation__link {
    padding: 0;
    font-size: 20px;
    line-height: 120%;
    font-weight: 400;
    color: #767676;
    text-decoration: none;
}

.navigation__link:hover {
    color: #000;
    cursor: pointer;
}

@media (max-width: 770px) {
    .navigation__links--wrapper--left {
        display: none;
    }
}

@media (max-width: 350px) {
    .navigation__links--wrapper--left,
    .navigation__links--wrapper--right {
        gap: 24px;
    }

    .navigation__link {
        font-size: 16px;
    }
}

/* NAVIGATION END */
