header {
    position: absolute;
    z-index: 1000000;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 30px;

    transition: .5s;
}
.header_imgBx {
    position: relative;
    height: 45px;
}
.header_imgBx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.headr_nav {
    display: none;
}
.header_list ul {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
}
.header_list ul a li {
    list-style: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
.header_list-icon {
    display: none;
}
.header_fix p {
    position: fixed;
    top: 50%;
    left: 30px;

    color: #383536;
    font-size: 10px;
    font-weight: 700;
    writing-mode: vertical-lr;

    transform: translateY(-50%);
}
.header_fix p:nth-child(1) {
    transform: rotate(180deg);
}
.header_fix p:nth-child(2) {
    left: auto;
    right: 30px;
}

@media screen and (max-width:1024px) {
    header {
        position: absolute;
        z-index: 1000000;
        top: 0;
        left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 30px 30px;

        transition: .5s;
    }
    .header_imgBx {
        position: relative;
        z-index: 1000000;
        width: 35%;
        height: auto;
    }
    .header_imgBx img {
        height: auto;
    }
    .headr_nav {
        z-index: 1000000;
        display: block;
    }
    .headr_nav ion-icon {
        width: 45px;
        height: 45px;
        cursor: pointer;
    }
    .header_list {
        position: fixed;
        bottom: 0;
        left: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        height: 0vh;
        pointer-events: none;

        background: #fff;

        transition: .5s;
    }
    .header_list.active {
        z-index: 100000;
        height: 100vh;
        pointer-events: all;
    }
    .header_list ul {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
        padding-left: 30px;

        opacity: 0;
    }
    .header_list.active ul {
        animation: header_listUL .5s ease-in-out forwards;
        animation-delay: .5s;
    }
    @keyframes header_listUL {
        0% {
            opacity: 0;
            transform: translateX(-100px);
        }
        100% {
            opacity: 1;
            transform: translateX(0px);
        }
    }
    .header_list ul a li {
        list-style: none;
        color: #000;
        font-size: 36px;
    }
    .header_list-icon {
        display: block;
        padding-left: 30px;
    }
    .header_list-icon ion-icon {
        width: 18px;
        height: 18px;
        padding: 12px;

        opacity: 0;
    }
    .header_list.active .header_list-icon ion-icon {
        animation: header_listUL .5s ease-in-out forwards;
        animation-delay: .5s;
    }
    .header_fix {
        display: none;
    }
}