.visually-hidden {
    display: none;
}

.catalog-bg {
    background-color: rgba(31, 41, 55, 0.4);
    position: fixed;
    z-index: 30;
    top: 126px;
    left: 0;
    width: 100%;
    height: 100%;
}

.catalog {
    padding: 40px;
    background: white;
    width: 100%;
    box-shadow:
        -5px 7px 19px 0px rgba(0, 0, 0, 0.1),
        -18px 29px 34px 0px rgba(0, 0, 0, 0.09),
        -41px 65px 46px 0px rgba(0, 0, 0, 0.05),
        -73px 115px 54px 0px rgba(0, 0, 0, 0.01),
        -113px 180px 60px 0px rgba(0, 0, 0, 0);
}

.catalog__scroll {
    height: 60vh;
    overflow-y: scroll;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    padding-right: 40px;
    box-shadow: inset 0 -10px 12px -10px rgba(0, 0, 0, 0.3);
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #dbdeeb;
    border-radius: 21px;
}

.catalog__content {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    width: 100%;
}

.catalog__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.catalog__list {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.catalog__link {
    font-size: 14px;
    transition: color 0.2s ease;
}

.catalog__link:hover {
    color: var(--red);
}