.header {
    width: 100%;
    position: absolute;
    height: 100px;

}

.menu_p {
    float: left;
    position: absolute;

    left: 360px;
    top: 37px;

}

.p_logo {
    height: 30px;
    position: absolute;
    top: 34px;
    left: 30px;
    cursor:pointer;
}
.menu_p li a:hover
{
    color:#DC0014;
}
@media screen and (min-width:1431px) {
    .menu_p li {
        float: left;
        width: auto;
        margin-right: 51px;

    }

    .menu_p li a {
        padding: 0;
        margin: 0;

        color: #D9D9D9;
        font-weight: 600;
        font-family: "neue-haas-grotesk-display", "pretendard";
        ;
        font-size: 16px;
        line-height: 0;
        text-decoration: none;

        leading-trim: both;
        text-edge: cap;
        transition: all 0.5s;

    }

}


@media screen and (max-width:1430px) {
    .menu_p li {
        float: left;
        width: auto;
        margin-right: 31px;

    }

    .menu_p li a {
        padding: 0;
        margin: 0;

        color: #D9D9D9;
        font-weight: 600;
        font-family: "neue-haas-grotesk-display", "pretendard";
        ;
        font-size: 14px;
        line-height: 0;
        text-decoration: none;

        leading-trim: both;
        text-edge: cap;

    }
}



.p_logo {
    position: absolute;
}

.sns_list {
    position: absolute;
    right: 110px;
    top: 42px;
}

.sns_list li {
    float: left;
    margin-right: 15px;
    text-align: left;
    cursor:pointer;
}

.sns_list li img {
    height: 20px;
    width: auto !important;

}

.lang-bu {
    font-size: 15px;
    border: none;
    background: none;
    font-family: "neue-haas-grotesk-display", "pretendard";
    ;
    font-weight: 500;
    position: absolute;
    top: 41px;
    color: #D9D9D9;
}

.bu-en {
    right: 55px;
}

.bu-ko {
    right: 30px;
}

/******* mobile header ****/
.header_m {
    position: absolute;
    width: 100%;
    height: 60px;
    background: white;
    overflow-x: hidden !important;
}

.m_logo {
    position: absolute;
    height: 40px;
    left: 10px;
    top: 10px;
}

.menu_m_open {
    height: calc(var(--vh, 1vh) * 100 - 60px) !important;
    width: 100% !important;
    opacity: 1 !important;
}

.menu_m {
    width: 0%;
    top: 60px;
    right: 0;
    position: absolute;
    height: calc(var(--vh, 1vh) * 100 - 60px) !important;
    opacity: 0;
    transition: all 1s;
    background: white;
    overflow-x: hidden !important;
    z-index: 9999;
}

.menu_list_m {
    width: calc(100% - 20px);
    position: absolute;
    left: 20px;
    top: 30px;
}

.menu_list_m li {
    width: 100%;
    height: 30px;


}

.menu_list_m li a {
    padding: 0;
    margin: 0;
    color: #D9D9D9;
    font-weight: 500;
    font-family: "neue-haas-grotesk-display", "pretendard";
    ;
    font-size: 20px;
    line-height: 0;
    text-decoration: none;
}

.sns_list_m {
    width: 50%;
    position: absolute;

    right: 15px;
    bottom: 20px;
}

.sns_list_m li {
    float: right;
    margin-left: 9px;
    text-align: left;
}

.sns_list_m li img {
    height: 22px;
    width: auto !important;

}

.lang-bu_m {
    font-size: 20px;
    border: none;
    background: none;
    font-family: "neue-haas-grotesk-display", "pretendard";
    ;
    font-weight: 500;
    position: absolute;
    bottom: 20px;
    color: #D9D9D9;
}

.bu-en_m {
    left: 10px;
}

.bu-ko_m {
    left: 45px;
}

.m_fo {
    opacity: 0;
    transition: all 1s;
}

.m_fo_open {
    opacity: 1 !important;
}

/****** bar hambuger */


.icon {
    position: absolute;
    right: -20px;
    top: 10px;
    width: 60px;
    height: 50px;
    display: inline-block;
    cursor: pointer;
}


.bar {
    width: 30px;
    height: 3px;
    background-color: #DC0014;
    margin: 5px 0;
    position: absolute;
}

.icon .bar.one {
    top: 0;
    left: 0;
}

.icon .bar.two {
    top: 10px;
    left: 0;
}

.icon .bar.three {
    top: 20px;
    left: 0;
}

.icon .bar.one.active_ham {
    animation: one 0.7s forwards
}

.icon .bar.two.active_ham {
    animation: two 0.7s forwards
}

.icon .bar.three.active_ham {
    animation: three 0.7s forwards
}

.icon .bar.one.notActive {
    animation: one-reverse 0.7s forwards;
}

.icon .bar.two.notActive {
    animation: two-reverse 0.7s forwards;
}

.icon .bar.three.notActive {
    animation: three-reverse 0.7s forwards;
}

@keyframes one {
    0% {
        top: 0;
    }

    30% {
        top: -5px
    }

    60% {
        top: 10px
    }

    80% {
        transform: rotate(0)
    }

    100% {
        top: 10px;
        transform: rotate(45deg);
    }
}

@keyframes one-reverse {
    0% {
        top: 10px;
        transform: rotate(45deg);
    }

    30% {
        transform: rotate(0)
    }

    60% {
        top: 10px
    }

    80% {
        top: -5px
    }

    100% {
        top: 0;
    }
}

@keyframes two {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


@keyframes two-reverse {
    0% {
        opacity: 0;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes three {
    0% {
        top: 20px;
    }

    30% {
        top: 25px;
    }

    60% {
        top: 10px;
    }

    80% {
        transform: rotate(0)
    }

    100% {
        top: 10px;
        transform: rotate(-45deg);
    }
}

@keyframes three-reverse {
    0% {
        top: 10px;
        transform: rotate(-45deg);
    }

    30% {
        transform: rotate(0);
    }

    60% {
        top: 10px;
    }

    80% {
        top: 25px;
    }

    100% {
        top: 20px;
    }
}

@media screen and (min-width:1271px) {
    .header_p {
        display: block;
    }

    .header_m {
        display: none;
    }
}

@media screen and (max-width:1270px) {
    .header_m {
        display: block;
    }

    .header_p {
        display: none;
    }

    body {
        overflow-x: hidden !important;
    }
}