.list-of-links-block .nav-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 336px;
    max-width: 100%;
    height: 56px;
    color: #6A6A6A;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 30px;
    border: none;
    border-radius: 16px;
    background-color: #fff;
    padding: 5px 43px 5px 22px;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='9' viewBox='0 0 15 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.45058 5.33809L2.02851 0.0820312L0.270508 1.92724L7.45058 8.86076L14.6492 1.92724L12.8911 0.0820312L7.45058 5.33809Z' fill='%2300665B'/%3E%3C/svg%3E%0A");
    background-size: 15px 9px;
    background-repeat: no-repeat;
    background-position: calc(100% - 23px) 50%;
}

.list-of-links {
    display: none;
}

@media (min-width: 1025px) {
    .list-of-links-block .nav-select {
        display: none;
    }

    .list-of-links {
        padding: 0;
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 -10px -19px;
    }


    .list-of-links li {
        padding: 0 10px 19px;
    }

    .list-of-links a {
        display: inline-block;
        text-align: center;
        border-radius: 20px;
        background: #FFF;
        padding: 15px 30px;
        color: #006C67;
        font-size: 20px;
        font-weight: 500;
        line-height: 1;
        transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    }

    .list-of-links a:hover {
        color: #fff;
        background-color: #006C67;
    }
}