.header-box {
    width: 100%;
    background-color: #FFF;
}
.header {
    width: 100%;
    display: flex;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0 1px 0;
}
.logo {
    height: 50px;
}
.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #333;
    font-size: 16px;
    font-weight: bold;
}
.nav-item {
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 20px;
    transition: all .3s;
}
/*.nav-text {*/
/*    line-height: 16px;*/
/*}*/
/*.products1, .news1 {*/
/*    padding: 0;*/
    /*overflow: hidden;*/
/*}*/
/*.nav-text {*/
/*    padding: 8px 14px;*/
/*}*/
.nav-item:hover {
    color: #FFF;
    background-color: #1e50ae;
}
.a-item2 {
    color: #FFF;
    background-color: #1e50ae;
}
.p-pc-list {
    position: absolute;
}

/***** Collapse Animation *****/
.menu {
    display: none;
    height: 30px;
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 12px;*/
    /*transform: translateY(-50%);*/
    /*z-index: 1000;*/
}
/* From Uiverse.io by vk-uiux */
#checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 30px;
    cursor: pointer;
    margin: auto;
    display: block;
    height: 25px;
}

.bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    /*border-radius: calc(4px / 2);*/
    background: #E5E5E5;
    color: inherit;
    opacity: 1;
    transition: none 0.35s cubic-bezier(.5,-0.35,.35,1.5) 0s;
}

/***** Tornado Animation *****/

.bar--top {
    bottom: 100%;
    transform: translateY(100%);
    transition-property: bottom,transform;
    transition-delay: calc((0s + 0.35s) * .6);
}

.bar--middle {
    top: 50%;
    transform: translateY(-50%);
    transition-property: opacity,transform;
    transition-delay: calc(0s + 0.35s * .3);
}

.bar--bottom {
    top: 100%;
    transform: translateY(-100%);
    transition-property: top,transform;
    transition-delay: 0s;
}

#checkbox:checked + .toggle .bar--top {
    transform: rotate(-135deg);
    transition-delay: 0s;
    bottom: calc(50% - 4px/ 2);
}

#checkbox:checked + .toggle .bar--middle {
    opacity: 0;
    transform: rotate(-135deg);
    transition-delay: calc(0s + 0.35s * .3);
}

#checkbox:checked + .toggle .bar--bottom {
    top: calc(50% - 4px/ 2);
    transform: rotate(-225deg);
    transition-delay: calc(0s + 0.35s * .6);
}

.menu-list {
    display: none;
    width: 100vw;
    height: calc(100vh - 50px);
    background-color: #fff;
    padding: 20px 30px;
    position: absolute;
    left: 0;
}
.show-menu {
    display: block;
    -webkit-animation: scale-up-ver-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-ver-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.item, .p-item, .n-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    /*height: 50px;*/
    line-height: 50px;
    border-bottom: 1px solid #eee;
}
.value {
    width: 20px;
}
.p-list, .n-list {
    display: none;
}
.p-item, .n-item {
    padding-left: 30px;
}

@media (max-width: 750px) {
    .header-box {
        padding: 0 12px;
    }
    .header {
        /*justify-content: space-between;*/
        position: relative;
    }
    .logo {
        height: 30px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .nav {
        display: none;
    }
    .menu {
        display: block;
    }
}

@media (min-width: 750px) and (max-width: 1024px) {
    .header {
        padding: 0 100px;
        justify-content: space-between;
    }
    .nav {
        gap: 0;
    }
}

@media (min-width: 1024px) and (max-width: 1300px) {
    .header {
        padding: 0 100px;
        justify-content: space-between;
    }
}
@media (min-width: 1300px) {
    .header {
        padding: 0 200px;
        justify-content: space-between;
    }
}
