/* reset */
* {margin: 0;padding: 0; box-sizing: border-box;}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, tbody, tfoot, thead, tr, th, td{margin:0;padding:0;}
h1, h2, h3, h4, h5, h6 {font-weight: 700; font-size: inherit;}
a {color: inherit; text-decoration: inherit;}
img {vertical-align: middle;}
a img {border: none;}
li {list-style: none;}
address, em, i {font-style: normal;}
a:focus {outline: none}
button:focus {outline: none}
video {max-width: 100%; height: auto;}
html {scroll-behavior: smooth; background: #000;}
html, body {overscroll-behavior-y: none;}
@font-face {
    font-family: 'Pretendard';
    src: url('../font/Pretendard-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../font/Pretendard-Regular.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../font/Pretendard-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../font/Pretendard-ExtraLight.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Labil Grotesk';
    src: url('../font/Labil\ Grotesk.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Jomolhari';
    src: url('../font/Jomolhari-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

* {font-family: 'Pretendard',sans-serif; color: #fff;}
html,body {overflow-x: hidden; overflow-y: auto;}
.wrap {background: #000;}
.en1 {font-family: 'Roboto' , sans-serif; letter-spacing: -0.02em;}
.en2 {font-family: 'Labil Grotesk' , sans-serif;}
.en3 {font-family: 'Montserrat' , sans-serif; letter-spacing: -0.02em;}
.en4 {font-family: 'Jomolhari' , sans-serif;}


/* Header */
header {position: fixed; width: 100%; height: 73px; z-index: 999; top: 0px; transition: all 0.5s ease-in-out; overflow: hidden; background: transparent;}
header.active {background: #000;}
header .inner {max-width: 1610px; margin: 0 auto;  height: 100%; position: relative;transition: all 0.5s ease-in-out; align-content: center; opacity: 0;}
header .inner .logo {position: absolute; left: 5%; top: 50%; transform: translateY(-50%);}
header .inner h1 {width: 50px;}
header .inner h1 img {width: 100%;}
header .inner h1.logoonly {display: none;} /* 글씨없는 로고는 제거 */
header .inner nav {display: flex; justify-content: space-between;}
header .inner nav ul {display: flex; font-size: 16px; margin: 0 auto;}
header .inner nav ul li {margin: 0 30px;}
header .inner nav ul li .text {transition: all 0.4s; position: relative; display: inline-block;}
header .inner nav ul li.show .text::before {content: ''; width: 0%; height: 1px; position: absolute; left: 0; bottom: -15%; background: #00ebe1; transition: all 0.4s;}
header .inner nav ul li.none .text{cursor: default; opacity: 0.35;}
header .inner nav ul li.show:hover .text {color: #00ebe1;}
header .inner nav ul li:hover .text::before {width: 100%;}
header .inner .SearchBox {display: flex; position: absolute; right: 5%; top: 50%; transform: translateY(-50%); transition: all 0.4s;}
header .inner .SearchBox .imgBox img {width: 24px; height: 24px; transition: all 0.3s; opacity: 0.35; cursor: default;}
header .inner .SearchBox .imgBox:nth-child(2) {margin-left: 30px;}





/* 노래 */
header .inner .SearchBox .audio-controls .volume-control a {width: 26px; height: 26px; margin-left: 30px;}
header .inner .SearchBox .audio-controls .volume-control a img {width: 26px; height: 26px; cursor: pointer;}

.audio-controls {position: relative; display: none;}
.soundwave-container {
  display: none; /* 기본은 숨김 */
  margin-left: 8px;
  width: 10px;
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  right: -110%;
  top: 50%;
  transform: translate(0%, -50%);
}
.soundwave-container {
  height: 20px;
  width: auto;
  display: flex;
  align-items: flex-end;
  margin-right: 15px;
}
.soundwave-container .bar {
  width: 3px;
  height: 40px;
  background: #00ebe1;
  border-radius: 2px;
  margin: 0 2px;
  animation: equalizer 10s steps(40, end) infinite;
}
.soundwave-container .bar:nth-child(1) { 
  animation-duration: 2s;
}
.soundwave-container .bar:nth-child(2) { 
  animation-duration: 2.2s;
}
.soundwave-container .bar:nth-child(3) { 
  animation-duration: 2.4s;
}
.soundwave-container .bar:nth-child(4) { 
  animation-duration: 2.6s;
}


@keyframes equalizer {
  0% {
    height: 60%;
  }
  4% {
    height: 50%;
  }
  8% {
    height: 40%;
  }
  12% {
    height: 30%;
  }
  16% {
    height: 20%;
  }
  20% {
    height: 30%;
  }
  24% {
    height: 40%;
  }
  28% {
    height: 10%;
  }
  32% {
    height: 40%;
  }
  36% {
    height: 60%;
  }
  40% {
    height: 20%;
  }
  44% {
    height: 40%;
  }
  48% {
    height: 70%;
  }
  52% {
    height: 30%;
  }
  56% {
    height: 10%;
  }
  60% {
    height: 30%;
  }
  64% {
    height: 50%;
  }
  68% {
    height: 60%;
  }
  72% {
    height: 70%;
  }
  76% {
    height: 80%;
  }
  80% {
    height: 70%;
  }
  84% {
    height: 60%;
  }
  88% {
    height: 50%;
  }
  92% {
    height: 60%;
  }
  96% {
    height: 70%;
  }
  100% {
    height: 80%;
  }
}











.header.scrolled {top: 0px;}
.header.scrolled .inner {max-width: 1800px;}
header.hide {
  transform: translateY(-100%);
}
.header.active .inner{animation: mainSlide 1s; animation-delay: 0s; opacity: 1;}

@keyframes mainSlide {
    0%{transform: translateY(100px); opacity: 0;}
    100%{transform: translateY(0px); opacity: 1;}
}




/* header -> 햄버거 */
.mobile-menu-toggle {display: none;flex-direction: column; gap: 3px; cursor: pointer; padding-top: 5%; box-sizing: border-box;}
.mobile-menu-toggle span {display: block; width: 30px; height: 1px; background: #fff; transition: all 0.3s ease;}
.mobile-nav {
  position: fixed;
  top: 38px;
  right: 0;
  width: 100%;
  background: #000;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.3s ease;
  z-index: 9999;
  border-radius: 0px 0px 15px 15px;
}


.mobile-nav ul {
  padding: 20px;
  margin: 0;
}



.mobile-nav ul li a {
  color: #fff;
  text-decoration: none;
}










/*header 반응형 */
/* 1024 */
@media screen and (max-width: 1024px) {
  header{height: 62px;}
  header .inner h1 img{width: 41px;}
  header .inner nav ul{font-size: 11px;}
  header .inner nav ul li{margin: 0 20px;}  
  header .inner .SearchBox .imgBox img{width: 19px; height: 19px;}
  header .inner .SearchBox .imgBox:nth-child(2){margin-left: 16px;}
  header .inner .SearchBox .audio-controls {display: none;}
}
/* 768 */
@media screen and (max-width: 768px) {
  header .inner h1 {width: 39px;}
  header .inner h1 a {width: 100%; display: inline-block; height: 100%;}
  header .inner h1 img{width: 100%;}
  header .inner nav ul{font-size: 9px;}
  header .inner nav ul li{margin: 0 12px;}
  header .inner nav ul li .text {font-size: 12px;}
  header .inner .SearchBox .imgBox img{width: 16px; height: 16px;}
  header .inner .SearchBox .imgBox:nth-child(2){margin-left: 10px;}
  header .inner .SearchBox .audio-controls {display: none;}
}
/* 480 */
@media screen and (max-width: 480px) {
  /* 로고 글씨없는버전으로 변경 */
  header .inner h1.logo {display: none;}
  header .inner h1.logoonly {display: inline; position: absolute; left: 5%; top: 60%; transform: translateY(-60%); width: 50px; height: 50px;}
  
  header{height: 60px;}
  header .inner h1 img{width: 50px;}
  header .inner nav ul{display: none;}
  header .inner nav ul li{margin: 0 7px;}
  /* header .inner .SearchBox .imgBox img{width: 13px; height: 13px;}
  header .inner .SearchBox .imgBox:nth-child(2){margin-left: 7px;} */ /* 숨김처리 */

  /* 480로고 오른쪽 텍스트 */
  header .logoonly a::after {content: 'IGLOO'; width: auto; height: 32.3px; position: absolute; top: 50%; left: 120%; transform: translateY(-50%); line-height: 32.3px; font-size: 24px;}


  /* 햄버거 */
  .mobile-menu-toggle {
    display: block;
    z-index: 1001;
    width: 30px; height: 30px;
  }
  .bar {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  
  /* 각 바 초기 위치 */
  .bar--top {
    top: 25%;
  }
  
  .bar--middle {
    top: 50%;
  }
  
  .bar--bottom {
    top: 75%;
  }
  
  /* X 모양 전환 */
/* X 모양 전환 (percent 기준에 맞게 수정) */
.mobile-menu-toggle.active .bar--top {
  top: 55%;
  transform: rotate(45deg) scale(1.3);
}

.mobile-menu-toggle.active .bar--middle {
  opacity: 0;
}

.mobile-menu-toggle.active .bar--bottom {
  top: 55%;
  transform: rotate(-45deg) scale(1.3);
}



  
  .mobile-nav.active {
    display: block;
  }
  
    /* 모바일 메뉴: 오른쪽에서 왼쪽으로 슬라이드 */
    .mobile-nav {
      position: fixed;
      top: 60px;
      right: 0;
      width: 0;
      height: 100%;
      background: #000;
      overflow: hidden;
      opacity: 0;
      transition: width 0.4s ease, opacity 0.3s ease;
      z-index: 9999;
    }
  
    .mobile-nav.active {
      width: 100%; /* 너비 설정 */
      opacity: 1;
    }
  
    .mobile-nav ul {
      padding: 80px 33px;
      margin: 0;
      box-sizing: border-box;
    }
  
    .mobile-nav ul li {
      white-space: nowrap;
      margin-bottom: 33px;
    }
  



    .mobile-nav ul li a {
      color: #fff;
      opacity: 0.85;
      text-decoration: none;
      font-size: 35px;
      transition: all 0.3s ease;
    }
            .mobile-nav ul li.none a {
          cursor: default;
          opacity: 0.35;
    }
    
    .mobile-nav .hamIcon {opacity: 0.35;}
    /* 모바일에서 링크 클릭 시 포커스 박스 삭제 및 색깔 변경 */
    .mobile-nav ul li a {-webkit-tap-highlight-color: transparent;}
    .mobile-nav ul li a:focus {outline: none; box-shadow: none; color: #00ebe1;}
    .mobile-nav ul li a:active {color: #00ebe1; outline: none;}
    .mobile-nav ul li a::-moz-focus-inner {border: 0;} /* 파이어폭스 전용 */

    /* 모바일에서 서치박스 숨김 */
    header .inner .SearchBox > .imgBox {display: none;}
    /* 서치박스 숨기면 햄버거 메뉴 height가 안잡히니까 서치박스에 height 추가 */
    header .inner .SearchBox {height: 30px;}
    /* search 서치, globe 글로브 아이콘 추가 */
    .mobile-nav ul .hamIcon {width: 20%;}
    .mobile-nav ul .hamIcon div {display: flex; justify-content: space-between; flex-wrap: nowrap; width: 100%; margin: 0 auto;}
    .mobile-nav ul .hamIcon div .imgBox img {width: 30px; aspect-ratio: 1/1;}

} 





















/* ------------[공통요소 : 푸터]--------- */


/* footer */
footer{position: relative; overflow: hidden; padding-bottom: 30px;}
footer > .imgBox{position: absolute; top: -400px ; right: -275px;}
footer .footerWrap{margin: 0 7.5%; position: relative;}
footer .footerWrap .corp{display: flex; justify-content: space-between; width: 26%; float: right; margin: 63px 0px;}
footer .footerWrap .corp li{font-size: 22px; font-weight: 300; color: #fff; opacity: 0.9; transition: all 1s; width: 80%;}
footer .footerWrap .corp li a {
    background-color: transparent;
    border: none;
    padding: 5px;
    position: relative;
    width: 7.2em;
    height: 2em;
    transition: 0.5s;
    font-size: 17px;
    border-radius: 0.4em;
  }
  
  footer .footerWrap .corp li a p {
    position: absolute;
    top: 0.4em;
    left: 1.2em;
    margin: 0;
    padding: 0;
    transition: .5s;
    color: #fff;
  }
  
  footer .footerWrap .corp li a svg {
    position: absolute;
    top: 0.45em;
    right: 0.5em;
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: 0.5s;
    height: 1em;
    fill: #0077b5
  }
  
  footer .footerWrap .corp li a:hover p {
    left: 0.6em;
    color: #0077b5
  }
  
footer .footerWrap .corp li a:hover svg {opacity: 1;}

footer .footerWrap .corp li:nth-child(2) a:hover p{color: #1877F2;}
footer .footerWrap .corp li:nth-child(3) a:hover p{color: #FF0000;}
footer .footerWrap .corp li:nth-child(2) a svg{fill: #1877F2;}
footer .footerWrap .corp li:nth-child(3) a svg{fill: #FF0000;}

footer .footerWrap .newsLetter{padding-top: 150px;}
footer .footerWrap .newsLetter .text1{font-size: 18px; color: #fff; opacity: 0.62;}
footer .footerWrap .newsLetter .text2{font-size: 22px; color: #fff; opacity: 0.9; margin-top: 15px;}
footer .footerWrap .newsLetter .write{display: flex; justify-content: left; margin-top: 23px;}
footer .footerWrap .newsLetter .write .textLogin{background: #000; width: 281px; height: 53px; border: none; border-bottom: 1px solid #111111; margin-right: 21px; font-size: 18px;}
/* button */
footer .footerWrap .newsLetter .write .buttonBox{align-content: center; opacity: 0.8;}
footer .footerWrap .newsLetter .write .buttonBox button {
background: #242323; width: 8em; height: 3.3em; border: 2px solid #000;border-radius: 25px;font-weight: bold; text-transform: uppercase; color: #1abc9c; padding: 2px; display: flex; justify-content: center; align-items: center; position: relative; overflow: hidden; cursor: pointer;}
footer .footerWrap .newsLetter .write .buttonBox button .login {transition: .4s ease-in-out;position: absolute;}
footer .footerWrap .newsLetter .write .buttonBox button .complete {transform: translateY(1em) scale(0); color: #000; position: absolute;}
footer .footerWrap .newsLetter .write .buttonBox button .loader-container {height: 100%;width: 100%; background-color: transparent; border-radius: inherit; display: flex; justify-content: center; align-items: center; z-index: 0; overflow: hidden;}
footer .footerWrap .newsLetter .write .buttonBox button .loader-container .loader {height: 100%; width: 100%; background-color: #00EBE1; border-radius: inherit; transform: translateX(-13em);}
footer .footerWrap .newsLetter .write .buttonBox button:focus {border: 2px solid #00EBE1; animation: scaling 0.8s ease-in-out 0s 1 both; background-color: transparent;}
footer .footerWrap .newsLetter .write .buttonBox button:focus .login {position: absolute;transform: translateY(-5em); transition: .4s ease-in-out;}
footer .footerWrap .newsLetter .write .buttonBox button:focus .complete {transform: translateY(0) scale(1); transition: .2s ease-in-out 1.2s;z-index: 2;}
footer .footerWrap .newsLetter .write .buttonBox button:focus .loader-container .loader {display: block; transform: translate(0); transition: .8s cubic-bezier(0,.4,1,.28) .2s; animation: loading 0.6s forwards; background-color: #00EBE1;}

@keyframes scaling {
    20% {height: 1.5em;}
    80% {height: 1.5em;} 
    100% {height: 3.3em;}
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

footer .footerWrap .newsLetter .write .textLogin:focus{outline: none; border-bottom: 1px solid #00EBE1; transition: all 1s;}
footer .footerWrap .imgLine{text-align: center; position: relative; margin-top: 113px;}
footer .footerWrap .imgLine::before{content: ''; position: absolute; width: 1000%; height: 1px; background: #fff; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.6;}
footer .footerWrap .navigation{margin: 50px 0 91px; display: flex; justify-content: space-between; width: 550px; font-size: 21px; font-weight: 300; color: #fff; }
footer .footerWrap .navigation li.show a {transition: all 0.5s ease;}
footer .footerWrap .navigation li.none a {cursor: default; opacity: 0.35;}
footer .footerWrap .navigation li.show a:hover{color: #00EBE1;}
footer .footerWrap .footerBottom{display: flex; justify-content: space-between; align-items: flex-end;}
footer .footerWrap .footerBottom .footerLogo{ height: 100%; transition: all 1s; position: relative; z-index: 2; color: #00EBE1; overflow: hidden;}
footer .footerWrap .footerBottom .footerLogo img{position: absolute; top: 0%; left: 0%; z-index: 11; width: 100%;}
footer .footerWrap .footerBottom .footerLogo img:nth-child(1){position: relative;}
footer .footerWrap .footerBottom .footerLogo img:nth-child(2){width: 120%; height: 100%; left: -20%;}
footer.active .footerWrap .footerBottom .footerLogo img:nth-child(2){transition: all 1.5s; left: 120%;}

footer .footerWrap .footerBottom .number {font-size: 16px; opacity: 0.62; text-align: right; display: block; }
footer .footerWrap .footerBottom .number .copy{margin-top:15px;}




/*footer 반응형 */
/* 1024 */
@media screen and (max-width: 1024px) {
  footer > .imgBox{width: 700px; height: 700px; top: -50%; right: -20%;}
  footer > .imgBox >img{width: 100%; height: 100%;}
  footer .footerWrap .corp{width: 300px; margin: 32px 0;}
  footer .footerWrap .corp li a p{font-size: 13px;}
  footer .footerWrap .corp li a svg{top: 50%; transform: translateY(-50%);}
  footer .footerWrap .newsLetter{padding: 46px 0;}
  footer .footerWrap .newsLetter .text1{font-size: 14px;}
  footer .footerWrap .newsLetter .text2{font-size: 18px;}
  footer .footerWrap .newsLetter .write .textLogin{font-size: 14px; width:30%; margin-right: 78px ;}
  footer .footerWrap .imgLine{margin: 0;}
  footer .footerWrap .imgLine img{width: 35px; height: 35px;}

  footer .footerWrap .navigation{margin: 10 0 31px; width: 50%; font-size: 16px;}
  footer .footerWrap .footerBottom{margin-top: 0px; width: 98%;}
  footer .footerWrap .footerBottom .footerLogo{width: 70%}
  footer .footerWrap .footerBottom .number{font-size: 11px;}
}

/* 768 */
@media screen and (max-width: 768px) {
  footer > .imgBox{width: 700px; height: 700px; top: -47%; right: -29%;}

  footer .footerWrap .imgLine img{width: 30px; height: 30px;}

  footer .footerWrap .corp{margin: 20px 0; width: 50%;}
  footer .footerWrap .footerBottom{display: block;}
  footer .footerWrap .navigation{margin: 14.5px auto 0; width: 60%;}
  footer .footerWrap .footerBottom{margin: 0 auto; width: 92%;}
  footer .footerWrap .footerBottom .number{margin-top: 12px;}
  footer .footerWrap .footerBottom .number .copy{margin-top: 10px;}
  footer .footerWrap .footerBottom .footerLogo{width: 100%; margin-top: 22px;}
}

/* 480 */
@media screen and (max-width: 480px) {
  footer{padding-bottom: 15px;}
  footer > .imgBox{top: -90%; right: -66%;}

  footer .footerWrap .corp li{text-align: center; width: 100%;}
  footer .footerWrap .corp li a{padding: 0;}
  footer .footerWrap .corp li a p {font-size: 9px; position: relative; top: 0; left: 0;}
  footer .footerWrap .corp li a svg{right: 2px; display: none;}

  footer .footerWrap .imgLine img{width: 25px; height: 25px;}

  footer .footerWrap .newsLetter {padding:75px 0 10px;}
  footer .footerWrap .newsLetter .text1{font-size: 12px;}
  footer .footerWrap .newsLetter .text2{font-size: 14px;}
  footer .footerWrap .newsLetter .write .textLogin{width: 27%; height: 40px; margin-right: 8px; font-size: 13px; font-size: 12px;}
 
  footer .footerWrap .newsLetter .write .buttonBox button{width: 6em; height: 2em; padding: 0px; border: 1px solid #000;}
  
  footer .footerWrap .newsLetter .write .buttonBox button .loader-container{height: 2em;}
  footer .footerWrap .newsLetter .write .buttonBox button .loader-container .loader{height: 80%;}
  
  footer .footerWrap .newsLetter .write .buttonBox button .login{font-size: 10px;}
  footer .footerWrap .newsLetter .write .buttonBox button .complete{font-size: 10px;}

  footer .footerWrap .navigation{width: 78%; font-size: 13px; margin: 0 auto;}

  footer .footerWrap .footerBottom {width: 100%;}
  footer .footerWrap .footerBottom .footerLogo{opacity: 0.2; width: 100%; margin-top: 22px; width: 105%; left: 0;}
  footer .footerWrap .footerBottom .footerLogo a img:nth-child(1) {filter: grayscale(100%);}
  footer .footerWrap .footerBottom .footerLogo a img:nth-child(3) {filter: grayscale(100%);}
  footer .footerWrap .footerBottom .number{position: absolute; bottom: 0; right: 0; z-index: 10; width: 100%; text-align: left; }
  footer .footerWrap .footerBottom .number .copy{margin: 15px 0 0;}
  
  @keyframes scaling {
    20% {height: 1em;}
    80% {height: 1em;} 
    100% {height: 2em;}
  }
}





















/* ------------------[공통요소 : alert]--------------------- */
/* alert 박스 커스텀 */
.custom-alert {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: sans-serif;
  }
  
  .alert-box {
    background: #fff;
    padding: 24px 36px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    text-align: center;
    animation: fadeIn 0.3s ease;
    color: #000; /* ✅ 글자색 검정 */
  }
  
  .alert-box p {
    margin: 0 0 16px;
    font-size: 16px;
    color: #000; /* ✅ 글자색 검정 */
  }
  
  .alert-box button {
    padding: 8px 20px;
    background: #00ebe1;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .alert-box button:hover {
    background: #00c9c1;
  }
  
  @keyframes fadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  
  .custom-alert {transition: opacity 0.3s ease;}
















/* -----------------------------[section : visual]---------------------------- */
/* fonts */
.visual .container .inner .top .textBox .support p {font-size: 20px; letter-spacing: 0; padding: 8px 15px ; background: #015B58; border-radius: 10px; border: 1px solid #383838; box-shadow: inset 0px 0px 2px rgba(255, 255, 255, 0.25); display: inline-block; color: #00ebe1;}
.visual .container .inner .top .textBox .bigTitle .title01 {display: flex; align-items: center;}
.visual .container .inner .top .textBox .bigTitle p {font-size: 70px; line-height: 77px; letter-spacing: -2%; margin-top: -10px;}
.visual .container .inner .top .textBox .bigTitle p span {color: #00B5D3;}
#questions {transform-style: preserve-3d; margin-left: 10px; padding-bottom: 10px;}
  #questions span {
  font-family: 'Labil Grotesk' , sans-serif;
  font-size: 75px;
	position: relative;
	transition: all 1s ease;
	display: inline-block;
  animation: wave 3.5s ease infinite;
	letter-spacing: 0.01em;
	transform-origin: 100% 50%;
	transform-style: preserve-3d;
  }
  #questions span:nth-child(1) {
			animation-delay: 0s;
  }
  #questions span:nth-child(2) {
			animation-delay: 0.05s;
  }
  #questions span:nth-child(3) {
			animation-delay: 0.1s;
  }
  #questions span:nth-child(4) {
			animation-delay: 0.15s;
  }
  #questions span:nth-child(5) {
			animation-delay: 0.2s;
  }
  #questions span:nth-child(6) {
			animation-delay: 0.25s;
  }
  #questions span:nth-child(7) {
			animation-delay: 0.3s;
  }
  #questions span:nth-child(8) {
			animation-delay: 0.35s;
  }
  #questions span:nth-child(9) {
			animation-delay: 0.4s;
  }
  #questions span:nth-child(10) {
			animation-delay: 0.45s;
  }
  #questions span:nth-child(11) {
			animation-delay: 0.5s;
  }
  #questions span:nth-child(12) {
			animation-delay: 0.55s;
  }
  #questions span:nth-child(13) {
			animation-delay: 0.6s;
  }
  #questions span:nth-child(14) {
			animation-delay: 0.65s;
  }
  #questions span:nth-child(15) {
			animation-delay: 0.7s;
  }
  #questions span:nth-child(16) {
			animation-delay: 0.75s;
  }
  #questions span:nth-child(17) {
	-webkit-animation-delay: 0.8s;
			animation-delay: 0.8s;
  }
  #questions span:nth-child(18) {
			animation-delay: 0.85s;
  }
  #questions span:nth-child(19) {
			animation-delay: 0.9s;
  }
  #questions span:nth-child(20) {
			animation-delay: 0.95s;
  }
  #questions span:nth-child(21) {
			animation-delay: 1s;
  }
  #questions span:nth-child(22) {
    animation-delay: 1.05s;
}
  
  
  @keyframes wave {
    0% {
      color: rgba(0, 235, 225, 0.8);
    }
    15% {
      text-shadow: 0 0 1px #bce2eb;
    }
    24% {
      color: rgba(0, 235, 225, 0.8);
      opacity: 1;
    }
    100% {
      opacity: 0.8;
    }
  }





















.visual .container .inner .top .textBox .detail p {font-size: 16px; color: #898989; margin-top: 11px; font-weight: 300;}


.visual .container .inner .bottom .textBox2 h2 {font-size: 29px; font-weight: 500; letter-spacing: -2%;}
.visual .container .inner .bottom .textBox2 p {font-size: 16px; color: #898989; margin-top: 3px; font-weight: 300;}


.visual .container .inner .bottom .boxLine ul .box .boxText h2 {font-size: 22.96px; font-weight: 300;}
.visual .container .inner .bottom .boxLine ul .box .boxText p {font-size: 17.53px; color: #fff; margin-top: 9px; font-weight: 100; opacity: 0.5;}



/* layout */
/* .visual .bgBox {position: absolute; width: 100%; object-fit: cover; top: -10%;}
.visual .bgBox p {width: 100%; object-fit: cover;}
.visual .bgBox img {display: block; object-fit: cover; width: 100%; opacity: 0.48;} */

.visual .bgBox {filter: brightness(1) /*노출*/ saturate(1.10) /*채도*/ contrast(2) /*대비*/ opacity(0.5) /*투명도*/ blur(1px)}
.visual .container {width: 92%; margin: 0 auto; z-index: 20; position: relative; max-width: 1920px; height: 100%;}
.visual .container .inner {padding-top: 8%; display: flex; flex-direction: column; justify-content: space-between; height: 100%;}

.visual .container .inner .top .textBox .bigTitle {margin: 23px 0 10px;}
.visual .container .inner .bottom {margin-bottom: 4%;}
.visual .container .inner .bottom .boxLine {margin-top: 29px;}
.visual .container .inner .bottom .boxLine ul {display: flex; justify-content: space-between; gap: 2.5em; list-style: none; margin: 0; padding: 0; align-items: flex-start; position: relative;}

.visual .container .inner .bottom .boxLine ul .box .boxText {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -2em); text-align: center; width: 100%; z-index: 30;}
.visual .container .inner .top .textBox .bigTitle .title02 span {color: #fff;}

.visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
}

.visual .bgBox {
  position: absolute;
  width: 100%;
  height: 120vh;
  top: -10vh;
  overflow: hidden;
}

.visual .bgBox img {
  display: block;
  object-fit: cover;
  width: 120vw;
  height: 120vh;
  transform: translate(-10vw, -10vh);
  opacity: 0;
}

.visual .bgBox .canvasbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.68;
}

#waveCanvas {
  position: absolute;
  top: -10vh;
  left: -10vw;
  width: 130vw;
  height: 130vh;
  transform-origin: top center;
  transform: translateY(0) scale(1);
  display: block;
  opacity: 0.58;
}
















.visual .container {width: 92%; margin: 0 auto; z-index: 20; position: relative; max-width: 1920px; height: 100%;}
.visual .container .inner {padding-top: 9%; display: flex; flex-direction: column; justify-content: space-between; height: 100%;}

.visual .container .inner .top .textBox .bigTitle {margin: 10px 0 10px; line-height: 1.1;}
.visual .container .inner .bottom {margin-bottom: 1.2%;}
.visual .container .inner .bottom .boxLine {margin-top: 29px;}
.visual .container .inner .bottom .boxLine ul {display: flex; justify-content: space-between; gap: 2.5em; list-style: none; margin: 0; padding: 0; align-items: flex-start; position: relative;}

.visual .container .inner .bottom .boxLine ul .box .boxText {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -2em); text-align: center; width: 100%; z-index: 30;}



/* hover 애니메이션 */
.visual .container .inner .bottom .boxLine ul .box .boxText h2 {transition: 0.4s;}
.visual .container .inner .bottom .boxLine ul .box:hover .boxText h2 {color: #00EBE1; transition: 0.4s;}
.visual .container .inner .bottom .boxLine ul .box:nth-child(odd):hover {transform: translateY(-10px); transition: 0.4s; cursor: pointer;}
.visual .container .inner .bottom .boxLine ul .box:nth-child(even):hover {transform: translateY(-10px); transition: 0.4s; cursor: pointer;}
/* .visual .container .inner .bottom .boxLine ul .box:hover .glass-overlay {background: rgba(255, 255, 255, 0.2); transition: all 0.2s;} */

.visual .container .inner .bottom .boxLine ul .box:hover .glass-specular {
  box-shadow: 
    inset 0.5px 0.5px 0 rgba(0, 235, 225, 0.35),
    inset 0 0 20px rgba(0, 235, 225, 0.2);
  transition: all 0.4s;}









/* --------------------------[liquid glass]------------------------------- */
:root { /* 리퀴드 배경, 스트로크 수정 */
  --lg-grey: #444739;
}
.visual .container .inner .bottom .boxLine ul .box { 
  position: relative; 
  flex: 1 1 calc((100% - 2.5em * 4) / 5);
  aspect-ratio: 1/1; 
  max-width: 323px; 
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  transition: 
    all 0.8s cubic-bezier(0.175, 0.885, 0.3, 1.5);
  display: flex;
  opacity: 1;
}


.visual .box-inner {
  transition: transform 0.3s ease-out;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 1;
  border-radius: 12.85px;
}


.visual .glass-filter,
.visual .glass-overlay,
.visual .glass-specular {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.visual .glass-filter {
  z-index: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  filter: url(#lensFilter) saturate(120%) brightness(1.15);
  opacity: 1;
}

.visual .glass-overlay {
  z-index: 1;
  background: rgba(16, 16, 16, 0.85);
  transition: all 0.2s;
}

.visual .glass-specular {
  z-index: 2;
  box-shadow: 
    inset 0.5px 0.5px 0 rgba(255, 255, 255, 0.45),
    inset 0 0 5px rgba(255, 255, 255, 0.45);
    transition: all 0.4s;
}





/*visual 반응형 */
/* 1024 */
@media screen and (max-width: 1024px) {
  .visual .container .inner {padding-top: 16%; height: 92%;}
  .visual .container .inner .top .textBox .support p {font-size: 14px;}
  .visual .container .inner .top .textBox .bigTitle {margin: 15px 0 8px;}
  .visual .container .inner .top .textBox .bigTitle p {font-size: 50px; line-height: 48px;}
  #questions span {font-size: 50px;}
  .visual .container .inner .top .textBox .detail p {font-size: 13px;}
  .visual .container .inner .bottom {margin-bottom: 0%;}
  .visual .container .inner .bottom .textBox2 h2 {font-size: 24px;}
  .visual .container .inner .bottom .textBox2 p {font-size: 13px; margin-top: 13px;}
  .visual .container .inner .bottom .boxLine ul {gap: 0.8em;}
  .visual .container .inner .bottom .boxLine ul .box .boxText h2 {font-size: 16px;}
  .visual .container .inner .bottom .boxLine ul .box .boxText p {font-size: 12px;}
  .visual .container .inner .bottom .boxLine ul .box .boxText {transform: translate(-50%, -1.8em);}
}
/* 768 */
@media screen and (max-width: 768px) {
  .visual {height: auto; padding-bottom: 1%;}
  .visual .bgBox .canvasbox {filter: blur(1px);}
  .visual .bgBox {height: 120vh;}
  #waveCanvas {transform: translateY(10vh) !important;}
  .visual .container .inner .top .textBox .bigTitle {margin: 5px 0 8px;}
  .visual .container .inner .top .textBox .support p {font-size: 11px;}
  .visual .container .inner .top .textBox .bigTitle p {font-size: 43px; line-height: 40px;}
  .visual .container .inner {padding-top: 14%;}
  #questions {margin-left: 7px;}
  #questions span {font-size: 43px;}
  .visual .container .inner .top .textBox .detail p {font-size: 10px;}
  .visual .container .inner .bottom .textBox2 p {font-size: 10px; margin-top: 0px;}
  .visual .container .inner .bottom {margin-top: 5%;}
  .visual .container .inner .bottom .textBox2 h2 {font-size: 18px;}
  .visual .container .inner .top .textBox .support p {padding: 4px 12px; border-radius: 5px;}
  .visual .container .inner .bottom .boxLine {margin-top: 15px;}
  .visual .container .inner .bottom .boxLine ul { flex-wrap: wrap; gap: 1em; justify-content: start; align-items: stretch; }
  .visual .container .inner .bottom .boxLine ul .box {flex: 1 1 calc((100% - 2.5em * 2) / 3); max-height: 220px; max-width: 220px;}
}
/* 480 */
@media screen and (max-width: 480px) {
  .visual .container {padding: 0 6%;}
  .visual .container .inner .top .textBox .support p {font-size: 8px; padding: 3px 8px; border: none; border-radius: 3px;}
  .visual .container .inner {padding-top: 25%;}
  .visual .container .inner .top .textBox .bigTitle p {font-size: 32px; line-height: 30px;}
  #questions {margin-left: 4px; padding-bottom: 8px;}
  #questions span {font-size: 30px;}
  .visual .container .inner .bottom .boxLine ul .box {flex: 1 1 calc((100% - 2.5em * 2) / 2); max-height: 220px; max-width: 220px;}
  .visual .bgBox .canvasbox {opacity: 0;}
  .visual .bgBox img {opacity: 0.68; transform: translate(-10%,-25%);}
  .visual .container .inner .top .textBox .bigTitle p {font-size: 31px;}
  .visual .container .inner .bottom .boxLine ul {display: flex; width: 100%; }
  .visual .container .inner .bottom .boxLine {margin-top: 22px;}
  .visual .container .inner .bottom .boxLine ul .box {max-width: 48%; height: 80px;}
  .visual .container .inner .bottom .boxLine ul .box .boxText {transform: translate(-50%, -50%);}
  .visual .container .inner .bottom .boxLine ul .box .boxText p {font-size: 10px; margin-top: 5px;}
  .visual .container .inner .bottom .boxLine ul .box .boxText h2 {font-size: 12px;}
  .visual .container .inner .top .textBox .detail p {font-size: 10px; margin-top: 5px;}
  .visual .container .inner .bottom .textBox2 p {font-size: 9px;}
  .visual .container .inner .bottom {margin-top: 8%;}
  .visual {padding-bottom: 15%; }
} 


.break-768-down {display: inline;}


.break-768-up {
  display: none;
}

@media (max-width: 768px) {
  .break-768-down {
    display: none;
  }
}

@media (max-width: 768px) {
  .break-768-up {
    display: block;
  }
}























/* ------------[contactUs]--------- */
/*contactUs 제목 스타일 */
.contactUs .contactUsInner{position: relative; width: 80%; margin:  275px auto 240px auto;}
.contactUs .contactUsInner .contactUsTitleBox {text-align: center; padding: 82px 0 90px; border-top: 1px solid #fff; border-bottom: 1px solid #fff; border-image: linear-gradient(to right,#000 0, #6C6C6C 50%, #000 100%); border-image-slice: 1;}



.contactUs .contactUsInner .contactUsTitleBox .tit1{font-size: 85px; color: #fff;}
.contactUs .contactUsInner .contactUsTitleBox .tit2{font-size: 85px; color: #fff; margin-top: -20px;}
.contactUs .contactUsInner .contactUsTitleBox .tit3{font-size: 22px; color: #00EBE1; margin: 11px 0 42px;}
.contactUs .contactUsInner .contactUsTitleBox .tit4{font-size: 20px; color: #898989;}
.contactUs .contactUsInner .contactUsTitleBox .contactBtn{color: #000; background: #fff; font-size: 22px; text-align: center; padding: 20px 66px; border-radius: 10px; border: none; margin-top: 84px; cursor: pointer;}



  

/*contactUs 제목 애니메이션 */
.contactUs .contactUsInner .contactUsTitleBox.motion .tit1{animation: titleSlide 1s;}
.contactUs .contactUsInner .contactUsTitleBox.motion .tit2{animation: titleSlide 1s;}
.contactUs .contactUsInner .contactUsTitleBox.motion .tit2{animation: titleSlide 1.4s;}
.contactUs .contactUsInner .contactUsTitleBox.motion .tit3{animation: titleSlide 1.8s;}
.contactUs .contactUsInner .contactUsTitleBox.motion .tit4{animation: titleSlide 1.8s;}
.contactUs .contactUsInner .contactUsTitleBox.motion .contactBtn{animation: titleSlide 2.2s;}

@keyframes titleSlide {
  0%{transform: translateY(100px); opacity: 0;}
  100%{transform: translateY(0); opacity: 1;}
}







/* alert 박스 커스텀 */
.custom-alert {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: sans-serif;
}

.alert-box {
  background: #fff;
  padding: 24px 36px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  text-align: center;
  animation: fadeIn 0.3s ease;
  color: #000; /* ✅ 글자색 검정 */
}

.alert-box p {
  margin: 0 0 16px;
  font-size: 16px;
  color: #000; /* ✅ 글자색 검정 */
}

.alert-box button {
  padding: 8px 20px;
  background: #00ebe1;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.alert-box button:hover {
  background: #00c9c1;
}

@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.custom-alert {transition: opacity 0.3s ease;}




/*contactUs  반응형 ->캘린더 제외 */
/* 1024 */
@media screen and (max-width: 1024px) {
  .contactUs .contactUsInner .contactUsTitleBox {border: none;}
  .contactUs .contactUsInner {width: 88%;}
  .contactUs .contactUsInner .contactUsTitleBox.motion .tit1 {font-size: 70px;}
  .contactUs .contactUsInner .contactUsTitleBox.motion .tit2 {font-size: 70px;}
  .contactUs .contactUsInner .contactUsTitleBox.motion .tit3 {font-size: 19px;}
  .contactUs .contactUsInner .contactUsTitleBox.motion .tit4 {font-size: 17px;}
  .contactUs .contactUsInner .contactUsTitleBox.motion .contactBtn {margin-top: 50px; padding: 18px 50px;}
}
/* 768 */
@media screen and (max-width: 768px) {
  .contactUs .contactUsInner .contactUsTitleBox.motion .tit1 {font-size: 53px;}
  .contactUs .contactUsInner .contactUsTitleBox.motion .tit2 {font-size: 53px;} 
  .contactUs .contactUsInner .contactUsTitleBox.motion .tit3 {font-size: 17px;}
  .contactUs .contactUsInner .contactUsTitleBox.motion .tit4 {font-size: 16px;}
  .contactUs .contactUsInner .contactUsTitleBox .contactBtn {font-size: 20px;}
}
/* 480 */
@media screen and (max-width: 480px) {
  .contactUs .contactUsInner {width: 100%;}
  
  .contactUs .contactUsInner .contactUsTitleBox.motion .tit1 {font-size: 33px;}
  .contactUs .contactUsInner .contactUsTitleBox.motion .tit2 {font-size: 39px; margin-top: -10px; line-height: 1;}
  .contactUs .contactUsInner .contactUsTitleBox.motion .tit3 {font-size: 13px; margin-bottom: 20px;}
  .contactUs .contactUsInner .contactUsTitleBox.motion .tit4 {font-size: 11px;}
  .contactUs .contactUsInner .contactUsTitleBox.motion .contactBtn {font-size: 15px; padding: 10px 30px; border-radius: 5px; margin-top: 40px;}
} 


















