.navigation-place {
    display: flex;
    left: 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navigation-place .navigation {
    margin: 40px auto 32px;
    padding: 0;
    width: 100%;
    max-width: 360px;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    font-family: "Manrope", sans-serif;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 2px;
}

.pagination-arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, opacity 0.3s;
    cursor: pointer;
    border-radius: 50%;
    min-width: 32px;
    height: 32px;
}

.pagination-arrow:hover:not(.pagination-arrow-disabled) {
    opacity: 1;
    background: inherit;
}

.pagination-arrow svg {
    transition: fill 0.3s;
}

.pagination-arrow:hover:not(.pagination-arrow-disabled) svg path {
    fill: #127a8d;
}

.pagination-arrow-disabled {
    cursor: not-allowed;
}

.pagination-arrow-disabled svg path {
    fill: #E2EFF4;
}

.pagination-arrow-disabled:hover {
    opacity: 1;
}

.pagination-wrapper a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 50%;
    min-width: 40px;
    height: 40px;
    color: inherit;
    text-decoration: none;
}

.pagination-wrapper a:hover {
    background: #82aeb7;
    color: #fff;
}

.pagination-dots {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    border-radius: 50%;
    padding: 0 4px;
    min-width: 32px;
    color: inherit;
    text-decoration: none;
}

.pagination-dots:hover {
    color: #127a8d;
}

.navigation-place .navigation a {
    flex: none;
    color: #6c6c6c;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    font-family: "Manrope", sans-serif;
}
.navigation-place .navigation .pagination-dots:hover {
    background: inherit;
    color: #127A8D;
}

.navigation-place .navigation div {
    flex: none;
}

.navigation-place .navigation span.current-point {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #82aeb7;
    min-width: 40px;
    height: 40px;
    color: #fff;
    font-weight: 700;
}

.pagination-text {
    color: #127A8D;
    font-weight: 600;
    font-size: clamp(1rem, 0.8846rem + 0.5128vw, 1.5rem);
    line-height: 130%;
    font-family: "Manrope", sans-serif;
}

@media (min-width: 320px) and (max-width: 767.9px) {
    .navigation-place .navigation {
        justify-content: center;
    }
}

