/* BASIC css start */
#footer{border-top:1px solid #ccc !important; }
/* 섹션 공통 */
.section{width: 100%; margin-bottom: 120px;box-sizing:border-box}
.section h2{font-family: 'Lato', sans-serif; font-size:34px; color:#000; font-weight:500; margin-bottom:60px; text-align:center; }
.section .sec_inner{width: 1600px; margin: 0 auto; }
.section :is(*){box-sizing:border-box}
/* sec1 */
#sec1{margin-bottom: 100px;}
#sec1 .swiper{}
#sec1 .swiper ul{}
#sec1 .swiper ul li{}
#sec1 .swiper ul li>a{display: block; width: 100%;}
#sec1 .swiper ul li>a>img{width: 100%; }
#sec1 .swiper ul li .txt_area{overflow: visible; position: absolute;  left: 50%; top: 50%; transform: translate(-50%,-50%);}
#sec1 .swiper ul li .txt_area p{opacity: 0;}
#sec1 .swiper ul li.swiper-slide-active .txt_area p{transform: translateY(25px); opacity: 1;}
#sec1 .swiper ul li.swiper-slide-active .txt_area a.viewmore{transform: translateY(35px); opacity: 1;}
#sec1 .swiper ul li .txt_area p.big{font-size: 45px;transition: all .5s;transition-delay: .55s;font-weight: 500;}
#sec1 .swiper ul li .txt_area a.viewmore{opacity: 0; transition-delay: .7s; font-size: 20px;}
#sec1 .swiper-pagination{bottom: 70px; z-index: 10;}
#sec1 .swiper-pagination-bullet{background-color: #fff;transition: all .2s;}
#sec1 .swiper-pagination-bullet-active{width: 25px; border-radius: 8px;}
#sec1 .swiper ul li .txt_area{position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;}
#sec1 .swiper ul li .txt_area :is(*){color: #fff;font-family: 'Lato', sans-serif; transition: all .34s; }


/* sec2 */
#sec2{}
#sec2{width: 100%;}
#sec2 h2{width: 1600px; margin: 0 auto 60px;}
#sec2 .swiper{padding-bottom: 40px;}
#sec2 .swiper ul li{width:26%}
#sec2 .swiper .swiper-pagination-progressbar{bottom: 0; top: unset; height: 2px; background-color: rgba(0,0,0,.09);width:800px; left:50%; transform:translateX(-50%);}
#sec2 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background-color: #666666;}


#sec3{}
#sec3 .sec3_cont{display: flex;height: auto;}
#sec3 .sec3_cont>div{flex-grow: 1; height: inherit;width: 50%;}
#sec3 .sec3_cont .sec3_left{}
#sec3 .sec3_cont .sec3_right{}
#sec3 .sec3_cont>div .sec3_inner{width: 100%; height: inherit; position: relative;}
#sec3 .sec3_cont>div .sec3_inner img{width: 100%; display: block; transition: all .1s;}
#sec3 .sec3_cont>div .sec3_inner .txt_area{display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);}
#sec3 .sec3_cont>div .sec3_inner .txt_area :is(*){color: #fff;font-family: 'Lato', sans-serif; transition: all .2s;}
#sec3 .sec3_cont>div .sec3_inner .txt_area p.big{font-size: 45px; font-weight: 500;}


/* sec4 */
#sec4{}
#sec4{width: 100%;}
#sec4 h2{width: 1600px; margin: 0 auto 60px;}
#sec4 .swiper{padding-bottom: 40px;}
#sec4 .swiper ul li{width:26%}
#sec4 .swiper .swiper-pagination-progressbar{bottom: 0; top: unset; height: 2px; background-color: rgba(0,0,0,.09);width:800px; left:50%; transform:translateX(-50%);}
#sec4 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background-color: #666666;}

#sec5{ height:87vh; background: no-repeat top center;background-size: contain;   background-attachment: fixed;}


#sec6{}
#sec6 .sec_inner{padding: 80px 0; }
#sec6 .sec_inner .txt_area{display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px;}
#sec6 .sec_inner .txt_area :is(*){color: #000;font-family: 'Lato', sans-serif; transition: all .2s;}
#sec6 .sec_inner .txt_area p.big{font-size: 34px; font-weight: 500; color: #000;}
#sec6 .sec_inner .txt_area a.viewmore{font-size: 16px; color: #000; font-weight: 500; border: 1px solid #000; display: inline-block; padding: 15px 74px;}




.w-btn-neon2 {
  position: relative;
  color: darkslategray;
  cursor: pointer;
  font-weight: 700;
  /* transition: all 0.0s; */
}

.w-btn-neon2:hover {

  transform: scale(1.1);
  color: #fff !important;
  border-color: transparent !important;
  background:#000
}

@keyframes ring {
  0% {
      width: 30px;
      height: 30px;
      opacity: 1;
  }
  100% {
      width: 300px;
      height: 300px;
      opacity: 0;
  }
}

.w-btn-neon2:hover::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 6px solid #FFDFDE;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}
.custom-btn {
    width: 220px;
    height: 50px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
     box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
  }
  /* 12 */
.btn-12{
    position: relative;
    border:none;
    box-shadow: none;
    width: 220px;
    line-height: 50px;
    -webkit-perspective: 230px;
    perspective: 230px;
    font-size: 16px;
    
  }
  .btn-12 span {
    border: 1px solid #fff;
    background: transparent;
  background: transparent;
    display: block;
    position: absolute;
    width: 220px;
    margin:0;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .btn-12 span:nth-child(1) {
    opacity: 0;
    box-shadow:
     -7px -7px 20px 0px #fff9,
     -4px -4px 5px 0px #fff9,
     7px 7px 20px 0px #0002,
     4px 4px 5px 0px #0001;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
  }
  .btn-12 span:nth-child(2) {
    
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px; z-index: 10;
  }
  .btn-12:hover span:nth-child(1) {
    opacity: 1;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  .btn-12:hover span:nth-child(2) {
    opacity: 0;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
   color: transparent;
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
  }
/* BASIC css end */

