* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #fff;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

section {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.wrapper {
    width: 1140px;
    padding: 0 60px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* -------------------------- 머리 ---------------------*/
header {
    right: 0;
    top: 0;
    z-index: 994;
    position: relative;

}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    overflow: hidden;
}
.start {
    object-fit: cover;
    /* opacity: 1; */
    transition: opacity 1s ease;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}
.overlay-logo {
    transform-origin: center;
    position: absolute;
    z-index: 1000;
    top: 100px;
    margin: 30px 0 50px 0;
    width:100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
    animation: logoAnimation 4s ease-in-out forwards;
}

@keyframes logoAnimation {
    0% {
        transform: scale(5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.overlay-logo .frontlogo {
    width: auto;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.overlay-logo .backlogo {
    width: auto;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}
/********************** NAV **********************/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 1000;
  }
  
  .nav-wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
  }
  
  .logo a {
    display: block;
    background-image: url('../mainimg/logo.png');
    width: 135px;
    height: 45px;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 120px;
  }
  
  .nav-item {
    position: relative;
    padding: 1em;
  }
  
  .nav-link {
    display: block;
    padding: 1rem;
    color: #ffff;
    text-decoration: none;
  }
  .global{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .global .global-img{
    width: 30px;
    height: 30px;
  }
  .global .arr {
    width: 13px;
    height: 13px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    display: inline-block;
    transform: rotate(135deg);
    margin: 10px;
}
  /********************** DROPDOWN **********************/
  .dropdown {
    display: none;
    position: fixed;
    left: 0;
    top: 90px;
    width: 100vw;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .gldropdown{
    display: none;
    position: fixed;
    right: 0;
    top: 80px;
    width: 128px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10%;
  }
  
  .dropdown-menu {
    width: auto;
    margin: 0 auto;
    padding: 2rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: center;
  }
  .gldropdown-menu{
    width: auto;
    margin: 0 auto;
    padding: 2rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    background: #000;
  }
  .dropdown-icon {
    display: none; 
    width: 16px;
    height: 16px;
    margin-left: 5px;
    stroke: #000;
    vertical-align: middle;
    transition: transform 0.3s ease;
  }

  .dropdown-menu a,
  .gldropdown-menu a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .nav-item:hover .dropdown,
  .nav-item:hover .gldropdown{
    display: block;
  }
  .nav-item.active .dropdown-icon {
    transform: rotate(180deg);
  }
  .nav-link:hover,
  .dropdown-menu a:hover,
  .gldropdown-menu a:hover {
    color: #0aa0d2;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .nav-toggle-label {
    display: none;
  }
  
  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    background: #fff;
    height: 2px;
    width: 25px;
    position: relative;
    transition: all 0.3s ease-in-out;
  }
  
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: "";
    position: absolute;
  }
  
  .nav-toggle-label span::before {
    bottom: 8px;
  }
  
  .nav-toggle-label span::after {
    top: 8px;
  }
  
  .nav-toggle:checked+.nav-toggle-label span {
    background: transparent;
  }
  
  .nav-toggle:checked+.nav-toggle-label span::before {
    transform: rotate(-45deg);
    bottom: 0;
  }
  
  .nav-toggle:checked+.nav-toggle-label span::after {
    transform: rotate(45deg);
    top: 0;
  }


/* ------------------------처음 화면 -------------------*/
.content-main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 980px;
    text-align: center;
    position: relative;
    width: 100%;
    padding-top: 100px;
}

.content-main .logo {
    position: absolute;
    top: 100px;
    margin: 30px 0 50px 0;
    width:100%;
    height: 100%;
}

.logo .frontlogo {
    width: auto;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 1.5s ease-in-out;
    z-index: 4;
}

.logo .backlogo {
    width: auto;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 1.5s ease-in-out;
    z-index: 1;
}
.logo img.active {
    transform: translateX(-50%) scale(1); 
    opacity: 1; 
}

.text-main {
    flex-direction: column;
    height: 100%;
    z-index: 3;
    position: absolute;
    top: -10%;
    left: 0;
}

.text-main h2 {
    position: relative;
    font-size: 100px;
    color: #fff;
    z-index: 3;
    font-weight: 700;
}

.text-main h1 {
    position: relative;
    font-size: 140px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    z-index: 3;

}

.text-main p {
    font-size: 30px;
    color: #fff;
    line-height: 1.6;
    z-index: 5;
}

/* ---------------------------소개 ---------------------*/
.content-intro {
    margin: 50px 0;
    text-align: center;
    height: 1200px;
}

.company-intro {
    width: 1200px;
    margin: 0 auto;
}

.content-intro h1 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 700;
    line-height: 1.3;
}

.content-intro p {
    text-align: left;
    margin-top: 22px;
}

.company-intro-h1 {
    margin-bottom: 40px;
}
.company-intro .h1-span{
    display: inline;
}

.company-intro-p {
    font-size: 30px;
    margin-bottom: 130px;
}

.intro-gird {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}


.intro {
    padding: 20px 0;
    border-radius: 8px;
    text-align: left;
}

.intro h3 {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 700;
}

.intro p {
    font-size: 1em;
    color: #fff;
    line-height: 1.6;
}

.intro-gird1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.intro-gird:nth-child(1) {
    background-image: url('./imoge.png');
}

/*------------------------ 게임 소개------------------*/

.content-pc{
    text-align: center;
    background-image: url('../mainimg/2background.png');
    background-position: center;
    background-size: auto;
    background-repeat: no-repeat;
    height: 1700px;
    position: relative;
    padding: 200px 0;
    width: 100%;
}


.game-intro {
    width: 1200px;
    margin: 0 auto;
    height: 1070px;
    position: absolute;
    text-align: left;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content-pc h1 {
    font-size: 7.5em;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
}

.content-pc p {
    font-size: 28px;
    color: #fff;
}
.game-card{
    height: 1500px;
    position: relative;
}
.game-card .card-infront{
    position: relative;
    z-index: 2;
    perspective: 1000px;
    width: 100%;
    height: 100%;
}
.card-face {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out; 
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.front {
    transform: rotateY(0deg);
    pointer-events: none;
}
.back {
    transform: rotateY(180deg);
    background-color: #46423f;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
}

/*---------------------v4--------------------*/
.v4-card {
    width: 322px;
    height: 322px;
    perspective: 1000px;
    position: absolute;
    top: 145px;
    left: 55px;
    border-radius: 100%;
    z-index: 1;
}
.v4-logo{
    position: absolute;
    top: 50px;
    left: 300px;
    z-index: 1;
}
.v4-card .front .v4-img{
    pointer-events: none;
}
.v4-card .card-face p{
    font-size: 24px;
    line-height: 1.6;
    color: #a3a19f;
}
.v4-card .card-face .v4-p{
    font-weight: 700;
    font-size: 32px;
    color: #ffff;
}
.v4-card:hover .front {
    transform: rotateY(-180deg);
    z-index: 5;
}
.v4-card:hover{
    z-index: 2;
}
.v4-card:hover .back {
    transform: rotateY(0deg);
    z-index: 3;
}


/*--------------------------------sudden--------------------------*/
.sudden-card {
    width: 336px;
    height: 336px;
    perspective: 1000px;
    position: absolute;
    top: -10px;
    left: 850px;
    border-radius: 100%;
    z-index: 3;
}
.sudden-card .back {
    transform: rotateY(180deg);
    background-color: #110f10;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
}
.sudden-card .card-face p{
    font-size: 24px;
    line-height: 1.6;
    color: #a3a19f;
}
.sudden-card .card-face .sud-p{
    font-weight: 700;
    font-size: 32px;
    color: #ffff;
}
.sud-logo{
    position: absolute;
    top: -100px;
    left: 705px;
}

.sudden-card .front .sud-img{
    pointer-events: none;
} 
.sudden-card:hover .front {
    transform: rotateY(-180deg); 
}

.sudden-card:hover .back {
    transform: rotateY(0deg); 
}


/*--------------------------blue-----------------------*/
.blue-card {
    width: 296px;
    height: 296px;
    perspective: 1000px;
    position: absolute;
    top: 500px;
    left: 850px;
    border-radius: 100%;
}
.blue-card .back {
    transform: rotateY(180deg);
    background-color: #0e3060;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
}
.blue-card .card-face p{
    font-size: 24px;
    line-height: 1.6;
    color: #a3a19f;
}
.blue-card .card-face .blue-p{
    font-weight: 700;
    font-size: 32px;
    color: #ffff;
}
.blue-logo{
    position: absolute;
    top: 410px;
    left: 705px;
}
.blue-card .front .blue-img{
    pointer-events: none;
} 
.blue-card:hover .front {
    transform: rotateY(-180deg); 
}

.blue-card:hover .back {
    transform: rotateY(0deg); 
}

/*-------------------------hit2----------------------------*/
.hit2-card {
    width: 247px;
    height: 243px;
    perspective: 1000px;
    position: absolute;
    top: 520px;
    left: 300px;
    border-radius: 100%;
    z-index: 3;
}
.hit2-card .back {
    transform: rotateY(180deg);
    background-color: #7270a7;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    text-align: center;
}
.hit2-card .card-face p{
    font-size: 24px;
    line-height: 1.6;
    color: #a3a19f;
}
.hit2-card .card-face .hit2-p{
    font-weight: 700;
    font-size: 32px;
    color: #ffff;
}
.hit2-logo{
    position: absolute;
    top: 670px;
    left: 210px;
}
.hit2-card .front hit2-img{
    pointer-events: none;
} 
.hit2-card:hover .front {
    transform: rotateY(-180deg); 
}

.hit2-card:hover .back {
    transform: rotateY(0deg); 
}
/*--------------------------mobile---------------------------------------*/
.content-mobile{
    text-align: center;
    background-image: url('../mainimg/2background.png');
    background-position: center;
    background-size: 1526px 907px;
    background-repeat: no-repeat;
    height: 1000px;
    position: relative;
    padding: 200px 0;
    width: 100%;
    overflow: hidden;
}
.content-mobile h1 {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
}
.content-mobile p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}
.content-mobile .game-card{
    height: 50%;
}
/*-------------moblie blue-------------*/
.content-mobile .blue-all{
    position: absolute;
    top: 10%;
    right: 0%;
    width: 200px;
    height: 200px;
}
.content-mobile .blue-card {
    width: 200px;
    height: 200px;
    perspective: 1000px;
    position: absolute;
    top: 0;
    left:0;
    border-radius: 100%;
    z-index: 3;
}
.content-mobile .blue-logo {
    position: absolute;
    top: 0;
    left: -35px;
    z-index: 1;
}
.content-mobile .blue-card .card-face p{
    font-size: 17px;
    line-height: 1.6;
    color: #a3a19f;
}
.content-mobile .blue-card .card-face .blue-p{
    font-weight: 700;
    font-size: 28px;
    color: #ffff;
}
.content-mobile .blue-img{
    height: 390px;
    width: 252px;
}
.content-mobile .blue-logo img{
    width: 66px;
    height: 66px;
}
/*---------------------mobile v4---------------*/
.content-mobile .v4-all{
    width: 135px;
    height: 135px;
    position: absolute;
    left: 0%;
    top: 20%;
}
.content-mobile .v4-card {
    width: 135px;
    height: 135px;
    perspective: 1000px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%;
    z-index: 1;
    text-align: center;
}
.content-mobile .v4-logo {
    position: absolute;
    top: 0px;
    left: 115px;
    z-index: 1;
}
.content-mobile .v4-card .card-face p{
    font-size: 12px;
    line-height: 1.6;
    color: #a3a19f;
}
.content-mobile .v4-card .card-face .v4-p{
    font-weight: 700;
    font-size: 14px;
    color: #ffff;
}
.content-mobile .v4-card:hover{
    z-index: 2;
}
.content-mobile .v4-img{
    height: 238px;
    width: 219px;
}
.content-mobile .v4-logo img{
    width: 72px;
    height: 71px;
}
/*--------------- mobile hit2-----------------*/
.content-mobile .hit2-all{
    width: 133px;
    height: 133px;
    position: absolute;
    top: 75%;
    left: 70%;
}
.content-mobile .hit2-card {
    width: 200px;
    height: 200px;
    perspective: 1000px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%;
    z-index: 1;
}
.content-mobile .hit2-card {
    width: 133px;
    height: 133px;
    perspective: 1000px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%;
}
.content-mobile .hit2-logo {
    position: absolute;
    top: -25px;
    left: -30px;
    z-index: 2;
}
.content-mobile .hit2-card .front{
    align-items: flex-end;
}
.content-mobile .hit2-card .card-face p {
    font-size: 14px;
    line-height: 1.6;
    color: #a3a19f;
}
.content-mobile .hit2-card .card-face .hit2-p{
    font-weight: 700;
    font-size: 16px;
    color: #ffff;
}
.content-mobile .hit2-card:hover{
    z-index: 3;
}
.content-mobile .hit-img{
    width: 133px;
    height: 148px;
}
.content-mobile .hit2-logo img{
    height: 65px;
    width: 66px;
}
/*---------moblie sud---------*/
.content-mobile .sudden-all{
    width: 175px;
    height: 175px;
    position: absolute;
    top: 55%;
    left: 5%;
}
.content-mobile .sudden-card{
    width: 175px;
    height: 175px;
    perspective: 1000px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%;
    z-index: 3;
    text-align: center
}
.content-mobile .sud-logo{
    position: absolute;
    top: -50px;
    left: 150px;
}
.content-mobile .sudden-card .card-face p{
    font-size: 16px;
    line-height: 1.6;
    color: #a3a19f;
}

.content-mobile .sudden-card .card-face .sud-p{
    font-weight: 700;
    font-size: 16px;
    color: #ffff;
}
.content-mobile .sud-img{
    height: 248px;
    width: 226px;
}
.content-mobile .sud-logo img{
    width: 60px;
    height: 60px;
}
/* --------------------------------------------- */
.news {
    height: 1350px;
    flex-direction: column;
    gap: 100px;
}

.news .news-title {
    color: #fff;
}

.news-title {
    width: 1200px;
    text-align: left;
    margin: 0 auto;
}

.new-title1 h2 {
    text-align: left;
    font-size: 50px;
    font-weight: 700;
}

.new-title1-h2 {
    margin: 20px 0 35px 0;
}

.new-title1 p {
    text-align: left;
    font-size: 30px;
    margin-bottom: 95px;
}

.news .news-line {
    background: linear-gradient(to right, blue, green);
    height: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: 300px;
    gap: 120px;
}

.news-line .newimg {
    height: 350px;
    width: 370px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.news-line .new-years {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
}

.news-line .news-name {
    margin-bottom: 10px;
}

.newimg p {
    font-size: 16px;
    text-align: left;
    color: #fff;
    margin-bottom:58px;
    width: 100%;
}

/*------------------------- swiper ---------------------------*/
.news .mobile{
    display: none;
}
.swiper {
    width: 100%;
    margin-top: 50px;
  }

  .swiper-wrapper .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
  }

  .newimg {
    text-align: left;
    gap: 15px;
    width: 80%;
    height: auto;
  }
 
  .newimg img {
    margin-top: 0;
    margin-bottom:26px;
  }

  .newimg * {
    margin-bottom:26px;
  }

  .newimg h3:nth-child(3) {
    font-size:22px;
    font-weight: bold;
    width: 100%;
  }
  .swiper .swiper-pagination{
    bottom: 0;
    top: unset;
    width: 400px;
    background: rgba(255, 255, 255, 0.4);
    width: 80%;
    left: 10%;
    height: 2px;
  }

  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: white;
  }
/*------------------------ 채용 ---------------------*/
.recruit {
    height: 1230px;
    margin-top: 200px;
    position: relative;
}

.recruit-title {
    width: 1200px;
}

.title1 h1 {
    text-align: left;
    font-size: 120px;
    margin-bottom: 50px;
    font-weight: 700;
}

.title1 p {
    text-align: left;
    font-size: 23px;
    margin-bottom: 100px;
}

.recruit .recruit-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.recruit .recruit-list p {
    margin: 15px 15px 15px 0;
    font-size: 20px;
}

.recruit .recruit-list .answer {
    color: #4d4d4d;
}

.viewcase {
    width: 250px;
    height: 70px;
    border-radius: 500px;
    border: 2px solid;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin-top: 60px;
    cursor: pointer;
}

.viewcase .view-scr {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.viewcase .view-scr .view-line {
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    margin-top: 4px;
    margin-right: 4px;
    margin-bottom: 4px;
    margin-left: 0px;
}

.viewcase p {
    line-height: 70px;
    margin-left: 15px;
    font-size: 20px;
}

.viewcase .nexonlogo {
    position: absolute;
    top: -100px;
    left: 380px;
}
.viewcase:hover{
    background-color: #fff;
}
.viewcase:hover .view-scr{
    background-color: #000;
}
.viewcase:hover .view-line{
    border-color: #fff;
}
.viewcase:hover p{
    color: #000;
}

/*------------------------------footer-------------------------*/
.foot {
    position: relative;
}

.allfooter {
    margin: 0 auto;
    width: 1200px;
    position: relative;
    height: 285px;
}

.logobox {
    text-align: left;
    width: 100%;
}

.logobox img {
    margin-top: 50px;
    margin-bottom: 45px;
    aspect-ratio: auto 73 /23;
}

.foot .footer-intro {
    text-align: left;
}

.foot .footer-intro p {
    color: #595959;
}

.foot .footer-intro .intro-bold {
    font-weight: bold;
    color: #fff;
}

.foot .footer-intro .intro-margin {
    display: block;
    margin-bottom: 15px;
}

.foot .sitebox {
    width: 170px;
    height: 50px;
    background-color: #333333;
    position: absolute;
    top: 1%;
    right: 1.5%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
}

.siteplus {
    position: relative;
    width: 10px;
    height: 2px;
    background-color: #fff;
}

.siteplus::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(90deg);
    width: 10px;
    height: 2px;
    background-color: #fff;
}
.content-main,
.content-intro,
.news,
.content-game,
.recruit,
footer{
    display: none;
}

.content-intro.visible,
.news.visible,
.content-game.visible,
.recruit.visible,
footer.visible{
    display: block;
}
/*--------------------미디어------------------*/

@media screen and (max-width:1200px) {
    .company-intro {width: 100%;}
    .text-main h2 {font-size:92px}
    .game-intro{
        width: 100%;
    }
    .recruit-title{
        width: 87%;
        padding: 0;
    }
    .news .newimg:nth-of-type(3),
    .news .newimg:nth-of-type(4) {
      display: none;
    }
    .content-pc{
        display: none;
    }
    .tablet{
        display: block;
    }

}

@media screen and (max-width:1024px) {

    .text-main h2 {font-size:48px}
    .text-main h1 {font-size:96px}
    .text-main p {font-size:24px;}
}

@media screen and (max-width:768px) {
    .start {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    /*-------------------nav--------------------*/
    .nav-toggle-label {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 2;
      }
    
      .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: #fff;
        padding: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
      }
    
      .nav-toggle:checked~.nav-menu {
        transform: translateX(0);
      }
    
      .nav-item {
        margin: 0;
      }
      .nav-link{
        color: #000;
      }
      .global{
        display: none;
      }
      .dropdown {
        position: static;
        box-shadow: none;
        padding-left: 0;
      }
    
      .dropdown-menu {
        padding: 10px 0;
      }
    
    /* 반응형 스타일 */
      .nav-toggle-label {
        display: flex;
        cursor: pointer;
      }
    
      .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
      }
    
      .nav-toggle:checked~.nav-menu {
        display: block;
      }
    
      .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
      }
    
      .dropdown-menu {
        flex-direction: column;
        padding: 1rem;
        gap: 1.5rem;
      }

      .nav-item:hover .dropdown-icon {
        stroke :#0aa0d2;
      }

      .nav-item:hover .dropdown {
        display: none;
      }
    
      .nav-item.active .dropdown {
        display: block;
        background: #fff;
      }

      .dropdown-icon {
        display: inline-block;
      }
      .dropdown-menu a, .gldropdown-menu a {
        color:#000;
      }
    /*----------------------content----------------------*/
    .content-main {
        height: 530px;
        padding-bottom: 100PX;
    }

    .text-main {
        height: 720px;
        justify-content: center;
        display: flex;
    }

    .text-main h2 {
        font-size: 40px;
    }

    .text-main h1 {
        font-size: 53px;
    }

    .text-main p {
        white-space: pre-line;
        font-size: 20px;
    }
    
    .logo .frontlogo{
        width: 90%;
    }
    .logo .backlogo{
        width: 90%;
    }




/*-----------------------intro---------------------------*/



    .company-intro {
        width: 80%;
        padding: 0;
    }

    .intro-gird {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro p {
        font-size: 16px;
    }

    .intro h3 {
        font-size: 21px;
    }

    .content-intro {
        margin-bottom: 200px;
        height: auto;
    }

    .content-intro h1 {
        font-size: 25px;
        line-height: 1.2;

    }
    .company-intro-p{
        font-size: 20px;
    }
    .content-mobile .game-intro {
        width: 80%;
        padding: 0;
        height: 100%;
        margin: 0 auto;
        text-align: left;
    }

    .game-intro-text {
        margin-bottom: 230px;
    }


/*------------------------------------------------------------*/
.news {
    gap:60px;
    margin: 0;
    height: 1000px;
}
    .news .pc{
        display: none;
    }
    .title1 {
        width: 100%;
    }
    .news .news-title{
        width:80%;
        margin: 0 auto;
        padding: 0;
    }

    .new-title1 h2 {
        font-size:32px;
        line-height: 1.3;
        margin:0;
    }
    .small-tiltle {
        font-size: 18px !important;
        font-weight: 400 !important;
    }
    .new-title1 p {
        margin-top:26px;
        font-size: 18px;
        margin-bottom:0;
    }

    .title1 h1 {
        font-size: 53px;
    }

    .title1 p {
        font-size: 18px;
    }

    .viewcase .nexonlogo {
        display: none;
    }

    .recruit {
        margin: 0;
        height: 850px;
    }

    .recruit .recruit-list li p {
        font-size: 13px;
    }
    .recruit{
        width: 100%;
    }
    .recruit-title{
        width: 80%;
        padding: 0;
    }

    .allfooter {
        width: 80%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
    }
    .foot .footer-intro p{
        font-size: 13px;
    }

    .logobox img {
        width: 150px;
    }

    .foot .sitebox {
        position: absolute;
        top: -95px;
        right: 0px;
    }
    /*------------- 드롭 ----------*/
    .dropdown1{
        display: none !important;
    }
    .menu-toggle {
        display: block;
    }

    .menu-toggle span,
    .menu-toggle span:before,
    .menu-toggle span:after {
        display: block;
    }
    .manuBar .logo {
        z-index: 1;
    }

    .manuList .media-global {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        color: #cccccc;
        margin-bottom: 80px;
        margin-top: 235px;
    }

    .manuList .media-ko {
        border: 2px;
        border-right-style: solid;
    }

    .manuList .media-ko p,
    .manuList .media-en p {
        margin: 10px;
    }
    .manuList .media-ko p{
        color: #000;
    }
    .moblie-dropdown{
        display: block;
    }
    /*-------------------------------swiper---------------------------*/
    .news .mobile{
        display: block;
    }
}
@media (max-width: 1980px) and (min-width: 1024px) {
    .nav-menu {
      gap: calc(120px - ((120 - 40) * ((1980px - 100vw) / (1980 - 1024))));
    }
    
    
    
    /*---------------------------------------*/
    .title1 h1 {
        font-size: 106px;
    }

    .title1 p {
        font-size: 36px;
    }

    .viewcase .nexonlogo {
        display: block;
    }

    .recruit .recruit-list li p {
        font-size: 26px;
    }
    .recruit{
        width: 100%;
        margin: 100px 0;
        height: 850px;
    }
    /*------*/
    .content-mobile h1{
        font-size: 100px;
    }
    .content-mobile p{
        font-size: 36px;
    }
    .content-mobile .v4-all{
        left: 15%;
        top: 10%;
    }
    /*----------------*/
    .allfooter{
        width: 80%;
    }
}
  
@media (max-width:1024px) {
    .news .news-line{
        display: none;
    }
    .news{
        height: auto;
        margin-bottom: 300px;
    }

}


@media (max-width: 1024px) and (min-width: 768px) {
    .nav-menu {
      gap: calc(40px - ((60 - 20) * ((1024px - 100vw) / (1024 - 768))));
    }
    .tablet{
        display: block;
    }
    .news .news-line{
        display: none;
    }
    .news{
        height: auto;
    }
    /*-------------------------------------------*/
    .title1 h1 {
        font-size: 106px;
    }

    .title1 p {
        font-size: 36px;
    }

    .viewcase .nexonlogo {
        display: none;
    }

    .recruit .recruit-list li p {
        font-size: 26px;
    }
    .recruit{
        width: 100%;
        margin: 100px 0;
        height: 850px;
    }

    /*---------------------------*/
    .content-pc{
        display: none;
    }
    .content-mobile h1{
        font-size: 100px;
    }
    .content-mobile p{
        font-size: 36px;
    }
    .content-mobile .v4-all{
        left: 15%;
        top: 10%;
    }
    /*--------------------*/
    .allfooter{
        width: 80%;
    }
    .game-intro{
        width: 100%;
    }
    .tablet-swi{display: block;}
  }