.nav-bg {
    background: #fff;
    z-index: 2;
    position: relative;
    width: 100%;
    height: 60px;
}

.mod {
    z-index: 0;
    list-style-type: none;
    padding: 0px 20px;
    margin: 0;
    background: #116ea3;
    color: #fff;
    position: relative;
    top: -550px;
    height: 0px;

}

.mod-open {
    min-height: 600px;
    height: auto;
    top: 0px;
    animation-name: open-btn;
    animation-duration: 1s;
    position: relative;
    width: 100%;
}

.mod-close {
    height: 0px;
    top: -600px;
    animation-name: close;
    animation-duration: .8s;
}

@keyframes open-btn {
    from {
        z-index: -1;
        top: -680px;
        opacity: .1;
    }

    to {
        z-index: -1;
        top: 0px;
        opacity: 1;
    }
}

@keyframes close {
    from {
        height: 600px;
        z-index: -1;
        top: 0;
    }

    to {
        height: 0px;
        z-index: -1;
        top: -600px;
    }
}

.mod>li {
    padding: 10px 0px;
    border-bottom: 1px solid #fff5;
}

.mod>li>a {
    color: #fff;
    letter-spacing: 1px;
    display: flex;
    text-decoration: none;
}

.mod>li:last-child {
    border-bottom: 0px solid #333;
}

.bi-list {
    color: #333;
    width: 60px;
    height: 60px;
    padding: 15px;
}

.mod-link {
    display: none;
    z-index: 0;
}

.mod-input {
    border: 1px solid #fff9;
    padding: 2px 5px;
    background-color: #fff1;
    color: #fff;
}

.mod-input::placeholder {
    color: #fff;
}

.product-list-close {
    display: none;
}

.product-list-open {
    display: block;
}

#product-list {
    display: flex;
}

.product-list-1::after {
    content: '';
    height: 8px;
    width: 8px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(315deg);
    position: relative;
    top: 6px;
    left: 7px;
    margin-left: 0;
}

.product-list-2::after {
    transform: rotate(135deg);
    top: 10px;
}

#product-list-ul {
    margin-top: 20px;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
    min-height: 810px;
}

.mod-link-li>a>img {
    width: 60px;
    padding: 2px 0px;
    margin-right: 10px;
}

.mod-link-li {

    border-top: 1px solid #fff3;
    display: none;
}

.mod-link-li:first-child {
    border-top: 0px solid #fff3;
}

.mod-logo {
    display: inline-flex;
    position: absolute;
    left: 15px;
    height: 60px;
    width: 60px;
    padding: 5px;
}

.nav-color-change {
    background: #116ea3;
    animation-name: In;
    animation-duration: .8s;
}

@keyframes In {
    0% {
        background: #fff;
    }

    100% {
        background: #116ea3;
    }
}

.mod-search-from {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
}

.search-input {
    background: #fff0;
    outline: none;
    border: 1px solid #fff9;
    border-radius: 0;
    padding: 2px 5px;
    color: #fff;
    height: 30px;
    display: inline-block;
    font-size: 15px;
    width: 40%;
}

.search-input::placeholder {

    color: #fff;
}

.mod-search-btn {
    display: inline-block;
    border: 1px solid #fff9;
    font-size: 12px;
    position: relative;
    top: -1px;
    height: 30px;
    background: #0070b2;
    color: #fff;
}

.logo-text {
    min-width: 200px;
    color: #0070b2;
    font-weight: 500;
    text-align: left;
    line-height: 18px;
    padding: 8px 9px;
}


.mod-rwd {
    display: none;
}

.navbar-rwd {
    display: block;
}

@media (max-width:960px) {

    header{
        position: relative;
    }

    .mod-rwd {
        display: block;
        position: relative;
        width: 100%;
        z-index: 999;
    }

    .navbar-rwd {
        display: none;
    }

    .breadcrumb {
            display: none;
    }
}
