* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Nanum Gothic', sans-serif;
}

body {
    transition: .3s;
    position: relative;
    left: 0;
}

body.mobile {
    left: -60%;
}

/* 스크롤 바 숨기기 */
/* body::-webkit-scrollbar {
    display: none;
} */

/* =============================================================== */

header {
    display: flex;
    justify-content: center;

    float: left;

    box-sizing: border-box;

    background-color: white;
    /* border-bottom: 1px solid #ebebeb; */

    width: 100%;
    height: 120px;

    right: 0;
    left: 0;
    top: 0;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07),
    0 2px 4px rgba(0, 0, 0, 0.07),
    0 4px 8px rgba(0, 0, 0, 0.07),
    0 8px 16px rgba(0, 0, 0, 0.07),
    0 16px 32px rgba(0, 0, 0, 0.07),
    0 32px 64px rgba(0, 0, 0, 0.07);
}

header .logo {
    display: flex;
    align-items: center;
    justify-content: center;

    background-position-y: -30px;
    text-indent: -9999px;
    height: 100%;
}

.logo img {
    display: block;
    height: 100%;
}

.pc-header-section {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 1180px;
}

header .area-top-manu {

    width: 100%;
    height: 30%;

}

header .area-bottom-manu {
    display: flex;
    top: 0;

    height: 70%;
}

header .area-bottom-manu a {
    color: #111111;
}

.mo-header-section {
    display: none;
    width: 60%;
    height: 100%;
    background-color: rgba(0, 0, 0, .9);
    z-index: 999;

    position: absolute;
    right: -60%;

}

.mo-header-section.active {
    display: block;
}

header .area-logo {
    width: 20%;
    height: 100%;
}

header .area-nav {
    width: 70%;
    height: 100%;
}

header .area-global {
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 10%;
    height: 100%;
}

/* 모바일 버전  */

.hamburger-menu {
    transition: transform 1s ease;
    transform: none;

    position: relative;
    display: none;
    width: 50px;
    height: 30px;
    cursor: pointer;
}

.mo-logo {
    height: 100px;
}

.mo-logo img {
    display: block;
    height: 100%;
    margin: 0 auto;
    padding: 10px;
}

.mo-ul li {
    border-top: 1px solid #2c2c2c;
    padding: 20px;
    height: 50px;
}

.mo-ul li:last-child {
    border-bottom: 1px solid #2c2c2c;
}

.mo-ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;

    color: white;
    font-size: 22px;
}

.hamburger-bar {
    position: absolute;
    display: block;
    width: 100%;
    height: 5px;
    border-radius: 30px;
    background: #3e3a39;
    transition: all 0.35s;
    z-index: 2;
}

.hamburger-bar:nth-child(1) {
    top: 0px;
}

.hamburger-bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-bar:nth-child(3) {
    bottom: 0px;
}

.hamburger-menu.active {
    transform: rotate(180deg);
}

.hamburger-menu.active .hamburger-bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger-menu.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-bar:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ===================================================== */

/* ============================= */

header .nav-main-ul {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;

}

header .nav-main-li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 150px;
    font-size: 22px;

    /* color: #333;
    -webkit-text-stroke: 1px #282828;
    text-shadow: 0px 4px 4px #282828; */
}

header .nav-main-li a {
    align-items: center;
    color: #3e3a39;
}

header .nav-mini-ul {
    height: 100%;

    display: flex;
    justify-content: end;
    align-items: flex-end;

    gap: 30px;
}

header .nav-mini-li a {

    color: #7d7d7d;
    font-size: 16px;
}

.drop-down-inner-ul {
    z-index: 999;
    position: absolute;
    display: none;
    height: 300px;
    top: 140px;
    left: 0;
    width: 100%;
    background-color: white;
    border-top: 1px solid black;

    transition: .6s ease-in-out;
    overflow: hidden;
}

.mouse-over {
    display: block;
    height: 0px;
}

.mouse-out {
    display: block;
    height: 300px;
}

.drop-down-inner-ul-absolute {
    position: absolute;
    bottom: 0;
    left: 0;

    background-color: pink;

    width: 100%;
    height: 100px;
}

@media (max-width: 1000px) {
    body::-webkit-scrollbar {
        display: none;
    }

    header {
        height: 100px;
    }

    .pc-header-section {
        width: 100%;
    }

    .area-top-manu {
        display: none;
    }

    .area-bottom-manu {
        width: 100%;
    }

    header .logo {
        margin-left: 30px;
        background-position-y: 0px;
    }

    .nav-main-ul li {
        display: none;
    }

    header .area-logo {
        width: 35%;
    }

    header .area-nav {
        width: 40%;
    }

    header .area-global {
        width: 25%;
    }

    .hamburger-menu {
        display: block;
        width: 50px;
        height: 25px;
    }
}

@media (max-width: 380px) {
    header .area-logo {
        width: 50%;
    }

    header .logo {
        background-position-y: 0px;
    }

    header .area-nav {
        display: none;
    }

    header .area-global {
        width: 50%;
    }

    .hamburger-menu {
        width: 35px;
        height: 25px;
    }

    header .area-global {
        justify-content: flex-end;
        padding-right: 25px;
    }
}