


/* aos 애니메이션 효과 시작작 */
[data-aos="reveal-bottom"].aos-animate {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

[data-aos="reveal-bottom"] {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos=fade-up2] {
  transform: translate3d(0, 20px, 0);
}

/* aos 애니메이션 효과 끝*/
:root {
  /* ci color */
  --mainColor: #FF6600;
  --black: #191C20;
  --black2: #2E3338;
  --black3: #25292D;
  --black4: #060B11;
  --grey: #B2BAC2;
  --grey2: #F2F2F2;
  --grey3: #6C757D;
  --grey4: #CED4DA;
  --white: #fff;
  --green: #70AD47
}
.mainColor{color: var(--mainColor) !important;}
.black{
    color: var(--black);
}
.green{color: var(--green);}
/*head 시작*/
.quick_bu > li{
  margin-bottom: -10px;
}
.quick_bu {
    position: fixed;
    right: 10px;
    bottom: 20px;
    display: none;
    z-index: 9;
}
.header{
    /* background-color: rgba(46, 51, 56, 0.8); */
    border-radius: 50px;
    /* padding: 0px 40px; */
    display: flex;
    justify-content: space-between;
    position: absolute !important;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    width: 1400px;
    align-items: center;
}
.gnb_depth{
  position: absolute;
  top: 57px;
  background-color: rgba(46, 51, 56, 0.8);
  border-radius: 20px;
  /* border-radius: 0 0 20px 20px; */
  padding: 10px;
  width: 160px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s;
  z-index: 9999;

}
.g_menu{
  cursor: pointer;
}
.g_menu:hover .gnb_depth{
  opacity: 1;
}
.g_menu > a:hover{
  background-color: transparent !important;
  padding: 0 !important;
}
.gnb_depth li{
    margin-bottom: 10px;
}
.gnb_depth li:last-child{
  margin-bottom: 0px;
}
.gnb {
    display: flex;
    height: 57px;
    align-items: center;
}

.gnb > li{
    margin-left: 40px;
     font-size: 18px;
    font-weight: 400;
    position: relative;
    height: 100%;
    line-height: 53px;
}

.gnb a{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.5s;
    border-radius: 20px;

}
.gnb a span{
    display: inline-block;
    
}
.gnb a:hover{
    background-color: var(--mainColor);
    color: var(--white);
    padding: 0 20px;
   
}
.gnb a:hover .gnb_hidden{
    
    opacity: 1;
    width: 43px;
    z-index: 0;
    margin-right: 10px;
    
}
.gnb_hidden{
    z-index: -1;
    opacity: 0;
    position: relative;
    width: 0;
    display: inline-block;
    transition: all 0.5s;
    pointer-events: none;
}


  /* 모바일 버전 CSS */
  .navbar_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s ease;
}

.navbar_burger {
    display: none;
    cursor: pointer;
    color: #fff;
    z-index: 999;
   
    position: absolute;
    right: 20px;
    top: 17px;
    
}

.navbar_burger_back {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
    color: #fff;
}

.navbar_menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #0e0e0e;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transform: translateX(100%);
    z-index: 999;
    color: #000;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.navbar_menu a {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    margin-left: 1rem;
    margin-bottom: 20px;
    text-decoration: none;
    cursor: pointer;
}

.navbar_menu a:hover {
    color: #ccc;
}

/* Product 메뉴 스타일 */
.product_menu {
    width: 100%;
}

.product_toggle {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    margin-left: 1rem;
    margin-bottom: 20px;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 1rem);
}

.product_toggle:hover {
    color: #ccc;
}

.product_arrow {
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.product_arrow.open {
    transform: rotate(180deg);
}

/* 2차 메뉴 스타일 */
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    margin-left: 1rem;
    border-radius: 5px;
  
}

.submenu.open {
    max-height: 300px; /* 충분한 높이 설정 */
    margin-bottom: 10px;
}

.submenu a {
    color: #cccccc;
    font-size: 16px;
    padding: 10px 15px;
    margin: 0;
    margin-bottom: 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.submenu a:last-child {
    border-bottom: none;
}

.submenu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.navbar_menu.active {
    transform: translateX(0);
}

.navbar_overlay.active {
    opacity: 1;
    pointer-events: auto;
}




/*head 끝*/

/* section-1 시작*/
.main_wrap{
    background-color: #000;
}
.main_wrap .s1 video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main_wrap .s1{
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: var(--black4);
}
.main_wrap .s1 .tit_box span{
    font-size: 80px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}
.main_wrap .s1 .tit_box img{
    vertical-align: sub;
}
.main_wrap .s1 .tit_box{
    width: 100%;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-37%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.main_wrap .s1 .tit_box.active {
    opacity: 1;
    pointer-events: auto;
  }
.main_wrap .scroll_down{
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(2680%);
}
.main_wrap .scroll_down img{
    display: block;
    margin: 0 auto;
}
.mouse_down{
    animation: wheel 1.5s infinite;
    -webkit-animation: wheel 1.5s infinite;
    position: relative;
    top:0 ;
}
@keyframes wheel {
  to {
    opacity: 0;
    top: 10px;
  }
}

@-webkit-keyframes wheel {
  to {
    opacity: 0;
    top: 10px;
  }
}
/* section-1 끝*/

/* section-2 시작*/
.main_wrap .s2{
    background-color: var(--black4);
    color: var(--white);
    padding: 180px 0;
}
.main_bu{font-size: 18px; font-weight: 500; padding: 8px 40px; border: 1px solid var(--white);
    border-radius: 20px; color: var(--white); transition: all 0.3s;display: inline-block;
}
.main_bu:hover{
    background-color: var(--white);
    color: var(--black4);
}
.main_wrap .s2_c1{
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.main_wrap .s2_c2{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.main_wrap .s2_c2 .s2_c2_b1{
    background-color: var(--black2);
    padding:32px;
    border-radius: 50px;
    width: 31%;
    min-height: 500px;
}
.main_wrap .s2_c2 .s2_c2_b1 .img_wrap{
    height: 180px; 
    position: relative;
}
.main_wrap .s2_c2 .s2_c2_b1 .img_wrap img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.main_wrap .new_s2_c1_b1{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.main_wrap .new_s2{
    background-color: var(--black4);
    color: var(--white);
    padding: 180px 0;
}
.main_wrap .new_s2_c1{
    position: relative;
}
.main_wrap .new_s2_c2{
    padding-top: 105px;
    margin-left: 50px;
}

.arrow_box{
    width: 40px;
    height: 40px;
    background: var(--mainColor);
    text-align: center;
}
.view_button_txt{
    transition: all 1s;
    padding-right: 8px;
}
.view_button_wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 0;
    width: 190px;
    margin-left: auto;
    margin-top: 20px;
       
  }
  
  /* 배경 애니메이션용 ::before 가상 요소 */
  .view_button_wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--mainColor);
    transition: left 0.4s ease;
    z-index: -1;
  }
  
  /* hover 시 왼→오 채우기 효과 */
  .view_button_wrap:hover::before {
    left: 0;
  }
  
  /* 텍스트 색상 반전 등 추가 스타일 원할 경우 */
  .view_button_wrap:hover .view_button_txt {
    color: #fff !important; /* 선택사항: hover 시 텍스트 흰색으로 변경 */
  }


  .pin-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--black4);

  }
  .inner {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .scroll_box {
    opacity: 0;
    transform: translateY(30px);

    font-size: 2rem;
    transition: 0.6s ease;
    color:#fff;
    margin-left: auto;
  }
/* section-2 끝*/

/* section-3 시작*/
.main_wrap .s3{
    background: url(/img/main_s3_bg.svg) center no-repeat;
    background-size: cover;
    padding: 160px 0;
    color: var(--white);
}
.main_wrap .s3_clone{
    background: url(/img/main_s3_bg2.svg) center no-repeat;
    background-size: cover;
    padding: 160px 0;
    color: var(--white);
}
.main_wrap .s3_clone2{
    background: url(/img/main_s3_bg3.svg) center no-repeat;
    background-size: cover;
    padding: 160px 0;
    color: var(--white);
}
.s3_c1_flex{
    display: flex;
    justify-content: center;
    align-items: end;
    flex-wrap: wrap;
    gap: 40px;
}
.main_wrap .s3_c1 {
    width: 30%;
}
.w-auto{
    width: auto !important;
}
.main_wrap .s3_c1 .s3_c1_b1{
    display: flex;
    align-items: flex-start;
}
.main_wrap .s3_c1 .s3_c1_b1 > img{
    margin-right: 32px;
}
.main_wrap .s3_c1 > img{
    display: block;
    margin: 0 auto;
    width: 100%;
}
.main_wrap .s3_clone2 .s3_c1_flex {
  
    align-items: center;
}
/* section-3 끝*/

/* section-4 시작*/
.swiper-pagination {
    position: relative !important;
    transform: initial !important;
    margin-top: 60px;
}
.swiper-pagination-bullet-active {
  
    background: var(--black) !important;
}
.main_wrap .s4_c1{
    display: flex;
    justify-content: space-between;
}
.main_wrap .s4{
    background-color: var(--white);
    color: var(--black);
    padding: 100px 0;
}
.main_wrap .s4_c1_b1{
    position: relative;
    padding-top:60px;
}
.eng_main_wrap.main_wrap .swiper {
    width: 65%;
}
.main_wrap .swiper {
    width: 70%;
    height: 100%;
    cursor:pointer;
    position: relative;
    padding: 20px 0;
    
}
.swiper-wrapper{
    
    
}
.eng_main_wrap.main_wrap .swiper-slide {
    padding: 12px;
}
.eng_main_wrap .fs64 {
    font-size: 58px !important;
}

.main_wrap .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--black2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    min-height: 550px;
    padding: 32px;

}
.main_wrap .swiper-slide a{
    color: var(--white);
    
}
.main_wrap .swiper-slide a:hover .img_wrap{
    opacity: 0.5;
}
.main_wrap .swiper-navigation > div {
    scale: 0.7;
}
.main_wrap .swiper-navigation{
    position: absolute;
    
    left: 50%;
    transform: translateX(-50%);
    top: 49.5%;
    width: 80%;
    z-index: 9999;
}
.main_wrap .s4 .img_wrap{
    height: 300px; 
    position: relative;
    transition: all 0.3s;
   
}
.main_wrap .s4 .img_wrap img{
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%,-50%);
}
/*.swiper-slide ul li{
    list-style: disc;
    margin-left: 24px;
}*/

.top-40{
  top: 40% !important;
}
/* section-4 끝*/


/* section-5 시작*/
.main_wrap .s5{
    background: url(/img/main_s5_bg.png) center center no-repeat;
    background-size: cover;
    padding: 180px 0;

}
.main_wrap .s5 .tit_box{
    text-align: center;
    color: #fff;
    width: 50%;
}
/* section-5 끝*/

/* section-6 시작*/
.main_wrap .s6 {
    background-color: var(--white);
    color: var(--black);
    padding: 140px 0;
}
/* section-6 끝*/

/* section-7 시작*/
.main_wrap .s7 {
    background-color: var(--black4);
    color: var(--white);
    padding-top: 120px;
    padding-bottom: 60px;
}
.main_wrap .s7 .s7_c1 {
    width: 50%;
}
.w-203{
    width: 203px !important;
    
}
.main_wrap .s7_c2{
    position: absolute;
    right: 0;
    bottom: -131px;
    text-align: right;
    z-index: 1;
}
/* section-7 끝*/


/* footer 시작 */
.footer {
  background-color: var(--black2);
  padding: 80px 0;
  z-index: 2;
  position: relative;
}

.footer .wrap_in2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer a,
.footer li {
  color: var(--white);
}

.footer .f_s2 ul:nth-child(2) li {
  display: inline-block;
  margin-right: 28px;
}
.grey2{color: #87929C}
.footer .f_s3{
    display: flex;
    position: relative;
}
.footer .f_s3 > div{
    width: 180px;
    height: 180px;
    border-radius: 180px;
    background-color: var(--black3);
    margin-left: 20px;
    text-align: center;
    position: relative;
   
}
.footer .f_s3 .f_s3_wrap span{
    font-size: 15px;
    font-weight: 500;
    display: block;
    color: #fff;
    margin-top: 20px;
    width: 100%;
}
.footer .f_icon_wrap{
    height: 40px;
    position: relative;

}
.footer .f_icon_wrap img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.footer .f_s3_wrap{
     position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
/* footer 끝 */