    .NyNavList {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-end;
        grid-gap: 10vw;
    }

    .search {
        width: 320px;
        height: 80px;
        position: relative;
        border-bottom: 1px solid #D9D9D9;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .search input {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 1;
        outline: none;
    }

    .search button {
        width: 35px;
        height: 35px;
        background: #fff;
    }

    .search button i {
        font-size: 24px;
        color: #8A8A8A;
    }


    .NyNavBox {
        width: 320px;
        height: 80px;
        position: relative;
        border-bottom: 1px solid #D9D9D9;
    }

    .NyNavBox h1 {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 20px;
        line-height: 1;
        color: #000000;
    }

    .NavBox2 {
        position: absolute;
        width: 100%;
        background: #EEF0F4;
        padding: 0px 40px;
        display: none;
    }

    .NavBox2 a {
        font-size: 20px;
        line-height: 3.5;
        color: #6A6A6A;
        border-bottom: 1px solid #D2D2D2;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .NavBox2 a.active {
        color: var(--color);
    }

    .NavBox2 a:last-child {
        border-bottom: 0px solid #D2D2D2;
    }


    @media (max-width: 1600px) {
        .NyNavList {
            grid-gap: 5vw;
        }

        .search {
            width: 260px;
        }

        .NyNavBox {
            width: 260px;
        }

        .NyNavBox h1 {
            font-size: 18px;
        }

        .NavBox2 {
            padding: 0px 20px;
        }

        .NavBox2 a {
            font-size: 16px;
        }
    }

    @media (max-width: 1200px) {
        .NyNavList {
            display: flex;
            flex-wrap: wrap;
            grid-gap: unset;
            justify-content: space-evenly;
        }

        .search {
            width: 180px;
        }

        .NyNavBox {
            width: 180px;
        }

    }

    @media (max-width: 720px) {
        .NyNavList {
            display: flex;
            flex-wrap: wrap;
            grid-gap: unset;
            justify-content: space-evenly;
        }

        .search {
            width: 100%;
        }

        .NyNavBox {
            width: 50%;
        }

        .NyNavBox h1 {
            padding: 0 15px;
        }

        .NavBox2 a {
            font-size: 14px;
        }
    }
