/* 공통 */
.pc-none {
    display: none;
}
.wrapper {
    /* padding: 0 15.6770833%; */
    min-width: 1300px;
    max-width: 50.3875968%;
    margin: 0 auto;
}
.montserrat-font {
    font-family: "Montserrat", sans-serif;
}
/* 공통 END */

/* gnb */
.gnb {
    position: sticky;
    top: 0;
    width: 100%;
    min-width: 1300px;
    min-height: 120px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    z-index: 9999;
}

.gnb .gnb-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gnb .logo {
    width: 375px;
}

.gnb .gnb-wrapper ul {
    min-height: inherit;
    display: flex;
}

.gnb-wrapper ul li {
    display: flex;
    align-items: center;
    min-height: inherit;
}

.gnb-wrapper ul li:nth-child(2) {
    margin-left: 47.6px;
}

.gnb-wrapper ul .item-text {
    font-size: 22px;
    font-weight: 500;
    color: #111;
    font-family: "Roboto", sans-serif;
}

.gnb-wrapper ul .item-text .download-icon {
    width: 21px;
}

.gnb-wrapper ul .item-text .link-icon {
    width: 27px;
}

.gnb-wrapper ul .item-img {
    padding: 0 22.1px;
    /* padding-left: 22.1px; */
    margin-left: 64px;
    border-left: 1px solid rgba(144, 144, 144, 0.41);
}

.gnb-wrapper ul .item-img .menu-icon {
    width: 63px;
}
/* gnb END */

/* dropdown-nav */
.dropdown-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    background-color: #333;
}
.dropdown-nav.hidden {
    display: none;
}
.dropdown-nav .dropdown-top {
    /* padding: 0 15.6770833%; */
    max-width: 1300px;
    margin: 0 auto;
    min-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dropdown-nav .dropdown-top .logo {
    width: 375px;
}
.dropdown-nav .dropdown-top .logo.active {
    animation: swing 1s forwards;
    animation-delay: 1.4s;
}
@keyframes swing {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
.dropdown-nav .dropdown-top .close-btn {
    position: relative;
    width: 35.4px;
    height: 35.4px;
    z-index: 111;
}
.dropdown-top .close-btn .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    cursor: pointer;
    transition: all 0.5s;
}
.dropdown-top .close-btn .bar1 {
    transform: translate(-50%, -50%) rotate(45deg);
}
.dropdown-top .close-btn .bar2 {
    transform: translate(-50%, -50%) rotate(135deg);
}

.dropdown-top .close-btn.close .bar {
    transform: unset;
    left: 0;
}
.dropdown-menu {
    margin: min(50px, 1.937984vw) auto 0;
    font-size: min(50px, 1.937984vw);
    color: #fff;
}
.dropdown-menu-item {
    position: relative;
    z-index: 111;
    margin-bottom: min(50px, 1.93798449vw);
    font-weight: normal;
}
.dropdown-menu-item.active {
    opacity: 1;
}
.dropdown-menu-item a {
    opacity: 0.5;
    cursor: pointer;
}
.dropdown-menu-item a:hover {
    opacity: 1;
    font-weight: 800;
}
.dropdown-menu.active .dropdown-menu-item:nth-child(1) {
    animation: moving 0.2s forwards;
}
.dropdown-menu.active .dropdown-menu-item:nth-child(2) {
    animation: moving 0.5s forwards;
}
.dropdown-menu.active .dropdown-menu-item:nth-child(3) {
    animation: moving 0.8s forwards;
}
.dropdown-menu.active .dropdown-menu-item:nth-child(4) {
    animation: moving 1.1s forwards;
}
.dropdown-menu.active .dropdown-menu-item:nth-child(5) {
    animation: moving 1.4s forwards;
}
.dropdown-menu.active .dropdown-menu-item:nth-child(6) {
    animation: moving 1.7s forwards;
}
.dropdown-menu.active .dropdown-menu-item:nth-child(7) {
    animation: moving 2s forwards;
}
.dropdown-menu.active .dropdown-menu-item:nth-child(8) {
    animation: moving 2.4s forwards;
}
.dropdown-bottom {
    display: block;
    position: fixed;
    bottom: min(2.596899vw, 67px);
    opacity: 0;
    width: 100%;
}
.dropdown-bottom div {
    max-width: 1300px;
    margin: 0 auto;
}
.dropdown-bottom.active {
    animation: fade 1.2s forwards;
}
.dropdown-bottom .follow-text {
    color: #fff;
}
.dropdown-bottom .icon {
    display: flex;
    gap: 15.5px;
    margin-bottom: min(2.984496vw, 77px);
    font-family: "Roboto", sans-serif;
    /* font-size: min(0.93023255vw, 24px); */
    font-size: 24px;
    margin-top: 30px;
}
.dropdown-bottom .icon img {
    width: 29px;
}
.copyright-text {
    font-size: 18px;
    font-size: min(18px, 0.6976744vw);
    color: #888;
    font-weight: 500;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes moving {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(37.79069767vw);
    }
}
/* dropdown-nav END */

/* 반응형 */
@media screen and (max-width: 1300px) {
    /* gnb */
    .gnb {
        min-height: 60px;
        min-width: unset;
    }
    .gnb-wrapper figure {
        margin-left: 3.733333333333333%;
    }
    .gnb .logo {
        width: 193px;
    }
    .gnb .item-text {
        display: none;
    }
    .gnb .gnb-wrapper ul {
        padding-right: 5.33333%;
    }
    .gnb-wrapper ul .item-img {
        padding: 0;
        border-left: none;
        margin-left: 0;
    }
    .gnb-wrapper ul .item-img .menu-icon {
        width: 30px;
    }
    /* gnb END */

    /* 공통 */
    .wrapper {
        min-width: unset;
    }
    .container {
        max-width: 420px;
        margin: 0 auto;
        overflow: hidden;
    }
    body {
        background-color: #fafafa;
    }
    .pc-none {
        display: block;
    }
    .m-none {
        display: none !important;
    }
    /* 공통 END */

    /* dropdown-menu */
    .dropdown-nav .dropdown-top {
        width: 100%;
        min-width: unset;
        max-width: unset;
        margin-bottom: 30px;
    }
    .dropdown-nav .dropdown-top .logo {
        width: 180px;
        margin-left: 3.733333333333333%;
    }
    .dropdown-nav .dropdown-top .close-btn {
        position: absolute;
        width: 30px;
        height: 30px;
        right: 5.33333%;
        top: 15px;
    }
    .dropdown-menu-item {
        font-size: min(7.466666vw, 28px);
        margin-bottom: min(8vw, 20px);
        animation: moving 0.2s forwards;
        position: relative;
        height: 34px;
        animation: unset;
        text-align: center;
        transition: all 0.5s;
        width: 0px;
        opacity: 0;
    }
    .dropdown-bottom div {
        padding: 0 0 20px 5.3333%;
    }
    .dropdown-bottom .icon {
        margin-top: 15px;
    }
    .dropdown-menu.active .dropdown-menu-item:nth-child(1) {
        animation: moving 0.2s forwards;
    }
    .dropdown-menu.active .dropdown-menu-item:nth-child(2) {
        animation: moving 0.5s forwards;
    }
    .dropdown-menu.active .dropdown-menu-item:nth-child(3) {
        animation: moving 0.8s forwards;
    }
    .dropdown-menu.active .dropdown-menu-item:nth-child(4) {
        animation: moving 1.1s forwards;
    }
    .dropdown-menu.active .dropdown-menu-item:nth-child(5) {
        animation: moving 1.4s forwards;
    }
    .dropdown-menu.active .dropdown-menu-item:nth-child(6) {
        animation: moving 1.7s forwards;
    }
    .dropdown-menu.active .dropdown-menu-item:nth-child(7) {
        animation: moving 2s forwards;
    }
    .dropdown-menu.active .dropdown-menu-item:nth-child(8) {
        animation: moving 2.4s forwards;
    }
    @keyframes moving {
        0% {
            width: 60%;
        }
        100% {
            width: 100%;
            opacity: 1;
        }
    }
    /* dropdown-menu END */
}
