@charset "uft-8";

/* ******************main******************************************************************************* */

/************* main-visual ********************/
h3{
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 36px;
    color: #111;
}
h3 span{
  color: #e60013;
}
.subtext{
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
main{
    background-color: #000;
    color: #111;
}
main{
  overflow-x: hidden;
}
#main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #000;
}
#main-visual .main-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}
#main-visual .main-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
#main-visual .hero{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 220px 5%;
}
#main-visual .hero .title{
  text-align: left;
  font-size: 72px;
  margin-bottom: 64px;
  font-weight: 700;
  line-height: 1.3;
}
#main-visual .hero .title .line{
  display: block;
  color: #444;
  /* fff 그라데이션 */
  background: linear-gradient(90deg, #fff,#fff);
  background-size: 0% 100%;
  background-repeat: no-repeat;

  -webkit-background-clip: text;
  background-clip: text;

  animation: textfill 3.5s ease forwards;
}
/* 두번째줄 딜레이 */
#main-visual .hero .title .line2{
  animation-delay: 1.5s;
}
@keyframes textfill{
  0%{
    background-size: 0% 100%;
    color: #444;
  }
  100%{
    background-size: 100% 100%;
    color: transparent;
  }
}
#main-visual .main-visual-btn{
  width: 200px;
  height: 64px;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 1px;
  font-size: 24px;
  font-weight: 600;
  z-index: 1;
  overflow: hidden;
  position: relative;
}
#main-visual .main-visual-btn::after{
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #111;
  transition: all 0.5s ease;
}
#main-visual .main-visual-btn:hover{
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
}
#main-visual .main-visual-btn:hover:after{
  left: 0;
  width: 100%;
}
#main-visual .main-visual-btn:hover:active{
  top: 2px;
}
#main-visual .hero .text{
  text-align: right;
}
#main-visual .hero .text p{
  color: #fff;
  font-size: 24px;
  margin-bottom: 8px;  
}
#main-visual .hero .text p.em{
  font-size: 28px;
  font-weight: 600;
  transition: .3s;
}
#main-visual .hero .text p.em:hover{
  color: #f5ebb3;
}
/* portfolio-slide */
#main-visual .main-slide{
  width: 100%;
  position: relative;
  background: linear-gradient(to bottom, #000 , #231916);
  padding-bottom: 160px;

}
#main-visual .main-slide h4{
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 44px;
}
#main-visual .main-slide h4 span{
  color: #f5ebb3;
}
#main-visual .category-tab{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 64px;
}
#main-visual .category-tab li{
  padding: 0 16px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  transition: .3s;
  cursor: pointer;
}
#main-visual .category-tab li.onepage:hover, #main-visual .category-tab li.onepage.active{
  border: 2px solid #79dc6f;
  color: #79dc6f;
}
#main-visual .category-tab li.catalog:hover, #main-visual .category-tab li.catalog.active{
  border: 2px solid #a1d5fc;
  color: #a1d5fc;
}
#main-visual .category-tab li.detailpage:hover, #main-visual .category-tab li.detailpage.active{
  border: 2px solid #ffdf78;
  color: #ffdf78;
}
#main-visual .category-tab li.newsletter:hover, #main-visual .category-tab li.newsletter.active{
  border: 2px solid #f09fd6;
  color: #f09fd6;
}
#main-visual .category-tab li.event:hover, #main-visual .category-tab li.event.active{
  border: 2px solid #b7abff;
  color: #b7abff;
}
/* main-visual-slide-warp */
#main-visual .slider-wrap{
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 400px;
}
#main-visual .slider-wrap li{
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#main-visual .slider-wrap li.active{
  opacity: 1;
  visibility: visible;
  position: relative;
}
#main-visual .project{
  overflow: hidden;
} 
#main-visual .project img{
  display: block;
  width: 100%;
  transition: .4s;
}
#main-visual .project:hover img{
  transform: scale(1.08);
}
/* ****************main-cont1******************** */
#main-cont1{
  background-color: #fff;
  width: 100%;
  position: relative;
  margin-top: 80vh;
}
#main-cont1 .cont1-wrap{
  width: 100%;
  padding: 160px 5%;
}
#main-cont1 .cont1-wrap > p{
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 64px;
}
#main-cont1 .cont1-wrap .operation-list{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
}
#main-cont1 .cont1-wrap .operation-list li{
  width: 25%;
  aspect-ratio: 0.9;
  background-color: #89e179;
  border-radius: 10px;
  overflow: hidden;
  padding: 32px 20px;
  position: relative;
  transition: .3s;
}
#main-cont1 .cont1-wrap .operation-list li.cont2{background-color: #95a7f4;}
#main-cont1 .cont1-wrap .operation-list li.cont3{background-color: #ffefaf;}
#main-cont1 .cont1-wrap .operation-list li.cont4{background-color: #f5b7e7;}
#main-cont1 .cont1-wrap .operation-list li:hover{box-shadow: 10px 10px 15px rgba(205, 245, 151, 0.7); transform: translateY(-10px);}
#main-cont1 .cont1-wrap .operation-list li.cont2:hover{box-shadow: 10px 10px 15px rgba(162, 213, 251, 0.7);}
#main-cont1 .cont1-wrap .operation-list li.cont3:hover{box-shadow: 10px 10px 15px rgba(255, 245, 199, 0.8);}
#main-cont1 .cont1-wrap .operation-list li.cont4:hover{box-shadow: 10px 10px 15px rgba(251, 207, 236, 0.6);}
#main-cont1 .cont1-wrap .operation-list li h5{
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}
#main-cont1 .cont1-wrap .operation-list li p{
  font-size: 16px;
  font-weight: 500;
  width: 90%;
  word-break: keep-all;
  position: relative;
}
#main-cont1 .cont1-wrap .operation-list li p span{
  font-weight: 700;
}
#main-cont1 .cont1-wrap .operation-list li .cursor{
  position: absolute;
  z-index: 0;
  top: -50%;
}
/* cont1-wrap img */
#main-cont1 .cont1-wrap .operation-list li .img-wrap{
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 240px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* cont1 */
#main-cont1 .cont1-wrap .operation-list .cont1 .img-wrap img.page{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  bottom: 30px;
  cursor: url(/images/main/cont1-onpage-guide.png) 2 2, auto;
  transition: .3s;
}
#main-cont1 .cont1-wrap .operation-list .cont1 .img-wrap img.page:hover{
  transform: translateX(-50%) scale(1.2);
  filter: drop-shadow(0px 0px 20px #2bac14);
}
/* 깜박이는 애니메이션 */
/* #main-cont1 .cont1-wrap .operation-list .cont1 .img-wrap img:last-child{
  top: 44%;
  left: 18%;
  animation: cont1 2s ease-in-out infinite;
}  
@keyframes cont1{
  0%,100%{opacity:1;}
  50%{opacity:0;}
} */
/* cont2 */
#main-cont1 .cont1-wrap .operation-list .cont2 .img-wrap img.catalog{
  position: absolute;
  width: 95%;
  left: 50%;
  bottom: 30px;
  transform: translateX(-45%);
  transition: .3s;
}
#main-cont1 .cont1-wrap .operation-list .cont2 .img-wrap img.catalog:hover{
  animation: shake .5s;
  animation-iteration-count: infinte;
  scale: 1.1;
  
}

/* cont3 */
#main-cont1 .cont1-wrap .operation-list .cont3 .img-wrap img{
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  animation: cont3 3s ease-in-out infinite;
  animation-direction: alternate;
  animation-play-state: paused;
  width: 80%;
  top: -30%;
}
#main-cont1 .cont1-wrap .operation-list .cont3 .img-wrap img:hover{
  animation-play-state: running;
  width: 90%;
}
@keyframes cont3{
  0%{transform: translate( -50%, 10%);}
  100%{transform: translate( -50%, 0);}
}
/* cont4 */
#main-cont1 .cont1-wrap .operation-list .cont4 .img-wrap .edm{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
  width: 60%;
  z-index: 1;
}
#main-cont1 .cont1-wrap .operation-list .cont4 .img-wrap .edm:hover{
  transform: translateX(-50%) scale(1.2);
}
#main-cont1 .cont1-wrap .operation-list .cont4 .img-wrap .button2{
  position: absolute;
  bottom: 16%;
  right: 30px;
  opacity: 0;
  transition: .3;
  z-index: 2;
}
#main-cont1 .cont1-wrap .operation-list .cont4 .img-wrap:hover .button2{
    opacity: 1;
}
/* *******************main-cont2-management********************* */
#main-cont2-management{
    background-color: #fff;
    width: 100%;
}
#main-cont2-management h3{
  font-weight: 800;
  color: #ddd;

  background: linear-gradient(90deg, #111, #111);
  background-size: 0% 100%;
  background-repeat: no-repeat;

  -webkit-background-clip: text;
  background-clip: text;
}
#main-cont2-management h3.active{
  animation: cont2-textfill 4s ease forwards;
}

@keyframes cont2-textfill{
  0%{
    background-size: 0% 100%;
    color: #ddd;
  }
  100%{
    background-size: 100% 100%;
    color: transparent;
  }
}

#main-cont2-management .cont2-wrap{
    width: 100%;
}
#main-cont2-management .cont2-wrap .textbox{
    text-align: center;
}
#main-cont2-management .cont2-wrap .textbox .movetext1{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}
#main-cont2-management .cont2-wrap .textbox .movetext2{
    font-size: 28px;
    font-weight: 500;
}
#main-cont2-management .cont2-wrap .textbox .movetext2 span{
    font-weight: 700;
    display: block;
    margin-top: 12px;
}
  /* one-stoap */
#main-cont2-management .cont2-wrap .one-stop{
  padding-top: 120px; 
  padding-bottom: 160px;
}
#main-cont2-management .cont2-wrap .one-stop-list{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}
#main-cont2-management .cont2-wrap .one-stop-list li{
  width: 310px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #a4dd00;
  position: relative;
  overflow: hidden;
  margin: 0 -18px;
  z-index: 1;
  transition: .4s;
}
#main-cont2-management .cont2-wrap .one-stop-list li:hover{
  margin: 0 100px;
  box-shadow: 7px 7px 10px rgba(0,0,0,0.2);
}
#main-cont2-management .cont2-wrap .one-stop-list li.list2{background-color: #1eae76;}
#main-cont2-management .cont2-wrap .one-stop-list li.list3{background-color: #e86b76;}
#main-cont2-management .cont2-wrap .one-stop-list li.list4{background-color: #8dcbe6;}
#main-cont2-management .cont2-wrap .one-stop-list li.list5{background-color: #998ceb;}
#main-cont2-management .cont2-wrap .one-stop-list li img{
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: soft-light;
}
#main-cont2-management .cont2-wrap .one-stop-list li:hover img{
  mix-blend-mode: overlay;
}
#main-cont2-management .cont2-wrap .one-stop-list li p{
  color: #fff;
  position: relative;
  font-size: 28px;
  font-weight: 700;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}
#main-cont2-management .cont2-wrap .one-stop-list li:hover p{
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
/* ***********************main-cont3-slider************************* */
#main-cont3-slide{
  width: 100%;
  background-color: #201714;
}
#main-cont3-slide .cont3-wrap{
  width: 100%;
  padding: 160px 0;
}
#main-cont3-slide .cont3-wrap h3{
  color: #fff;
}
#main-cont3-slide .cont3-wrap h3 span{
  color: #fff;
  display: block;
  margin-top: 12px;
}
#main-cont3-slide .cont3-wrap .slide-wrap{
  overflow: hidden;
  margin-top: 88px;
}
#main-cont3-slide .cont3-wrap .slide-wrap > div{
  display: flex;
  gap: 44px;
  align-items: center;
  flex-wrap: nowrap;
  width: max-content;
}
#main-cont3-slide .cont3-wrap .slide-wrap .left-slider{
  margin-bottom: 44px;
  animation: cont3-slider-left 40s 0s linear infinite ;
}
#main-cont3-slide .cont3-wrap .slide-wrap .left-slider:hover{
  animation-play-state:paused;
}
@keyframes cont3-slider-left{
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
#main-cont3-slide .cont3-wrap .slide-wrap .right-slider{
  animation: cont3-slider-right 40s 0s linear infinite ;
}
#main-cont3-slide .cont3-wrap .slide-wrap .right-slider:hover{
  animation-play-state: paused;
}
@keyframes cont3-slider-right{
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#main-cont3-slide .cont3-wrap .slide-wrap > div .slider-cont{
  width: 600px;
  aspect-ratio: 2;
  overflow: hidden;
}
#main-cont3-slide .cont3-wrap .slide-wrap > div .slider-cont a{
  display: block;
  width: 100%;
}
#main-cont3-slide .cont3-wrap .slide-wrap > div .slider-cont a img{
  width: 100%;
  object-fit: cover;
}
/* **********************main-cont4-production*********************** */
#main-cont4-production{
  width: 100%;
  background: linear-gradient(to bottom, #0c0c0c, #ffffffd2 , #fff);
}
.cont4-wrap{
  padding: 160px 5%;
}
.cont4-wrap .box-list{
  display: flex;
  justify-content: space-between;
  gap: 1%;
}
.cont4-wrap .box{
  width: calc(90% / 4);
}
.cont4-wrap .box .img-box{
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 10px;
  position: relative;
  margin-bottom: 20px;
  position: relative;
}
.cont4-wrap .box .img-box img.bg{
  object-fit: cover;
  width: 100%;
}
/* onepage */
.cont4-wrap .box.onepage .img-box img.bg{
  object-fit: fill;
  width: 130%;
  position: relative;
  left: 40%;
  transform: translateX(-40%);
  top: -15%;
}
.cont4-wrap .box.onepage .img-box img.page{
  position: absolute;
  z-index: 1;
  top: 60%;
  left: 50%;
  width: 60%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  animation: page 3s ease-in-out infinite alternate;
}
/* @keyframes page{
  0%{
    transform: translate(-50%, 0%);
  }
  100%{
    transform: translate(-50%, -8%);
  }
} */
/* catalog */
.cont4-wrap .box.catalog .img-box{
  background-color: #c4dfff;
}
.cont4-wrap .box.catalog .img-box img.catalog{
  position: absolute;
  top: 55%;
  left: 50%;
  width: 125%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 70%; /* 책 중심보다 살짝 아래를 축으로 */
  animation: catalog 4s ease-in-out infinite;
}
/* @keyframes catalog{
  0% {
    transform: translate(-50%, -50%) rotate(-1deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-1deg);
  }
} */
/* banner */
.cont4-wrap .box.banner .img-box{
  background-color: #fff3bf;
}
.cont4-wrap .box.banner .img-box img.banner{
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%) scale(90%);
  animation: banner 6s ease-in-out infinite;
}
/* @keyframes banner{
  0%,100%{
    transform: translateX(-50%) scale(90%);
  }
  50%{
    transform: translateX(-50%) scale(93%);
  }
} */
/* newsletter */
.cont4-wrap .box.newsletter .img-box{
  background-color: #facfdf;
}
.cont4-wrap .box.newsletter .img-box .edm{
  position: absolute;
  width: 75%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 3s;
}
.cont4-wrap .box.newsletter .img-box .edm:hover{
  cursor: pointer;
}
.cont4-wrap .box .text-box{
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  padding: 20px;
}
.cont4-wrap .box .text-box h5{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.cont4-wrap .box .text-box .english{
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 20px;
}
.cont4-wrap .box .text-box .make{
  margin-bottom: 12px;
}
.cont4-wrap .box .text-box .make > li{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: left;
    margin-bottom: 4px;
}
.cont4-wrap .box .text-box .make > li .sort{
  width: 100px;
  height: 32px;
  padding: 8px 20px;
  background-color: #eee;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  width: max-content;
}
.cont4-wrap .box .text-box .make > li .details{
  font-weight: 400;
}
.cont4-wrap .box .text-box .consult{
  font-size: 13px;
  font-weight: 400;
  color: #888;
}
/* ******************main-cont5-partner********************** */
#main-cont5-partner{
  width: 100%;
  background-color: #fff;
}
.cont5-wrap{
  width: 100%;
  padding: 0 5%;
  padding-bottom: 160px;
}
.cont5-wrap h3 span{
  display: block;
  margin-top: 4px;
}
.cont5-wrap .partner-list{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2%;
}
.cont5-wrap .partner-list li{
  width: 13%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #000;
  position: relative;
  transition: .5s;
}
.cont5-wrap .partner-list li.active{
  width: 28%;
}
.cont5-wrap .partner-list li a{
  width: 100%;
  display: block;
  height: 100%;
}
.cont5-wrap .partner-list li a img.bg{
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.cont5-wrap .partner-list li.active a .black-bg{
  opacity: .7;
}
.cont5-wrap .partner-list li a .black-bg{
  width: 100%;
  height: 100%;
  background-color: #000;
  position: relative;
  z-index: 2;
  opacity: .4;
}
.cont5-wrap .partner-list li a img.logo{
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
/* ******************service******************************************************************************* */
#service{
  background-color: #fff;
}
#service-title{
  padding: 200px 5% 0;
}
#service-title .subtext{
  margin-bottom: 80px;
}
/* service-wrap */
#service-wrap{
  padding: 0 5% 160px;
}
#service-wrap ul{
  width: 1400px;
  margin: auto;
}
#service-wrap .box{
  border: 3px solid #79dc6f;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}
#service-wrap .box.sec{border: 3px solid #ffdf78;}
#service-wrap .box.thir{border: 3px solid #a1d5fd;}
#service-wrap .box.four{border: 3px solid #b7abff;}
#service-wrap .box.fif{border: 3px solid #f09fd6;}
#service-wrap .box:last-child{
  margin-bottom: 0;
}
#service-wrap .text-wrap{
  width: calc(50% - 20px);
}
#service-wrap .text-wrap h6{
  font-size: 40px;
  margin-bottom: 12px;
  font-weight: 700;
}
#service-wrap .text-wrap .explain{
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin-bottom: 24px;
}
#service-wrap .text-list li{
  font-size: 18px;
  margin-bottom: 8px;
  padding-left: 10px;
  position: relative;
  color: #333;
}
#service-wrap .text-list li.small{
  font-size: 16px;
  color: #666;
}
#service-wrap .text-list li.small::before{
  display: none;
}
#service-wrap .text-list li::before{
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #79dc6f;
  position: absolute;
  border-radius: 2px;
  top: 8px;
  left: 0px;
}
#service-wrap .sec .text-list li::before{background-color: #ffdf78;}
#service-wrap .thir .text-list li::before{background-color: #a1d5fd;}
#service-wrap .four .text-list li::before{background-color: #b7abff;}
#service-wrap .fif .text-list li::before{background-color: #f09fd6;}
#service-wrap .box .img-wrap{
    width: calc(50% - 20px);
}
#service-wrap .img-wrap{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
#service-wrap .img-wrap img.bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* section-fit */
#service-fit{
  background: linear-gradient(to bottom, #000, #221816);
  padding: 200px 5%;
  position: relative;
  overflow: hidden;
}
#service-fit .bg{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
}
#service-fit .bg img{
  object-fit: cover;
  height: 100%;
  position: relative;
  top: 0;
}
#service-fit .text-wrap{
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 80px;
}
#service-fit .fir{
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}
#service-fit .sec{
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
}
#service-fit .round-wrap{
  position: relative;
  z-index: 2;
  width:100%;
  max-width:1600px;
  height:700px;
  margin:0 auto;
}
#service-fit .round-wrap .fir{
  margin-bottom: 80px;
}
#service-fit .round-text{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}
#service-fit .round-text.top{
  left: -10%;
}
#service-fit .round-text.bottom{
  left: 10%;
}
#service-fit .round-text li{
  font-size: 28px;
  color: #fff;
  padding: 30px 80px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 80px;
  border: 3px solid #f75a68;
  opacity: 0;
  transform: translateY(-180px);
  will-change: transform, opacity;
  text-align: center;
  line-height: 130%;
}
#service-fit .round-text.top{
  margin-bottom: 40px;
}
#service-fit .round-text li.green{border: 3px solid #1fae76;}
#service-fit .round-text li.blue{border: 3px solid #8ecbe7;}
#service-fit .round-text li.perple{border: 3px solid #9a8ceb;}
/* service-process */
#service-process{
  background-color: #fff;
  padding: 160px 5% 80px;
}
#service-process h3{
  border-bottom: 6px solid #e60013;
  padding-bottom: 40px;
}
#service-process .process-wrap{
  width: 100%;
  border: 2px solid #eee;
  box-shadow: 2px 2px 2px #ddd;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
}
#service-process .process-wrap li{
  width: 33.333%;
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
  position: relative;
  cursor: pointer;
}
#service-process .process-wrap .num{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f7f7f7;
  font-size: 160px;
  font-weight: 700;
  transition: .3s;
}
#service-process .process-wrap li:hover .num{
  color: #fff1f1;
}
#service-process .process-wrap .wrap{
  position: relative;
  z-index: 3;
}
#service-process .process-wrap .wrap .icon{
  width: 88px;
  aspect-ratio: 1;
  border: 2px solid #333;
  border-radius: 30%;
  position: relative;
  left: 50%;
  transform: translateX(-52%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background-color: #fff;
}
#service-process .process-wrap .wrap .icon img{
  object-fit: cover;
  transform: scale(70%);
  transition: .3s;
}
#service-process .process-wrap li:hover .wrap .icon img{
  transform: scale(80%);
}
#service-process .process-wrap .wrap p{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
#service-process .process-wrap li:hover .wrap p{
  color: #e84b50;
}
#service-process .process-wrap .wrap span{
  color: #333;
  font-style: 18px;
  font-weight: 500;
}
/* btn */
.contact-btn{
  text-align: center;
  width: 280px;
  height: 80px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 160px;
}
.contact-btn a{
  font-size: 28px;
  font-weight: 600;
  background-color: #e60013;
  border-radius: 10px;
  display: flex;
  height: 100%;
  color: #fff;
  justify-content: center;
  align-items: center;
}


/* ******************process******************************************************************************* */
#process{
  background-color: #fff;
  padding: 200px 5% 160px;
}
#process .title{
  text-align: center;
}
#process .title h5{
  color: #e60013;
  font-size: 50px;
  margin-bottom: 4px;
}
#process .title h3{
  font-size: 50px;
}
#process .title .subtext{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 80px;
}
#process .process-wrap{
  width: 1400px;
  margin: auto;
}
#process .process-wrap li{
  border: 3px solid #ddd;
  border-radius: 10px;
  width: 100%;
  padding: 40px 80px;
  margin-bottom: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
}
#process .process-wrap li:hover{
  border: 3px solid #e60013;
}
#process .process-wrap li:last-child{
  margin-bottom: 0;
}
#process .process-wrap li .num{
  position: absolute;
  font-size: 400px;
  font-weight: 700;
  color: #eee;
  z-index: 0;
  left: -100px;
}
#process .process-wrap li .text-wrap{
  position: relative;
  width: 50%;
  text-align: center;
}
#process .process-wrap li .text-wrap h6{
  font-size: 50px;
  margin-bottom: 24px;
}
#process .process-wrap li .text-wrap .content{
  font-size: 24px;
}
#process .process-wrap li .text-wrap .content span{
  display: block;
  margin-bottom: 4px;
}
#process .process-wrap li .img-wrap{
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  font-size: 0;
  width: 50%;
}
#process .process-wrap li .img-wrap img{}
#process .process-wrap li .img-wrap .bg{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  transition: .3s;
}
#process .process-wrap li:hover .img-wrap .bg{
  background-color: rgba(0, 0, 0, 0);
}

/* ******************review******************************************************************************* */
#review{
  width: 100%;
  position: relative;
  padding-bottom: 160px;
  overflow: hidden;
}
#review .bg{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  opacity: 0.3;
}
#review .title{
  padding-top: 200px;
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 80px;
}
#review .title span{
  color: #e60013;
}
#review .slide-wrap{
    width: 100%;
    position: relative;
    z-index: 5;
    overflow: hidden;
}
#review .slide{
  display: flex;
  align-items: top;
  flex-wrap: nowrap;
  width: max-content;
  gap: 40px;
}
#review .left-slider{
  margin-bottom: 40px;
  animation:leftMove 30s linear infinite;
}
@keyframes leftMove{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
@keyframes rightMove{
    from{
        transform:translateX(-50%);
    }
    to{
        transform:translateX(0);
    }
}
#review .right-slider{
  animation:rightMove 30s linear infinite;
}
#review .slide li{
  width: 400px;
  background-color: #000;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #333;

}
#review .slide li .sort{
  padding: 8px 16px;
  border: 1px solid #79dc6f;
  border-radius: 24px;
  display: inline-block;
  background-color: #111;
  color: #79dc6f;
  margin-bottom: 28px;
}
#review .slide li.newsletter .sort{
  color: #ef9ed6;
  border: 1px solid #ef9ed6;
}
#review .slide li.event-design .sort{
  color: #b7abff;
  border: 1px solid #b7abff;
}
#review .slide li.catalog .sort{
  color: #a1d5fd;
  border: 1px solid #a1d5fd;
}
#review .slide li.banner .sort{
  color: #ffdf78;
  border: 1px solid #ffdf78;
}
#review .slide li .text-box .review{
  color: #fff;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 16px;
}
#review .slide li .text-box .company{
  color: #fff;
  margin-bottom: 30px;
}
#review .slide li .img-box{
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 1.4;
  background-color: #111;
}
#review .slide li .img-box img{
  object-fit: cover;
  width: 100%;
}
/* ******************contact******************************************************************************* */
#contact{
  width: 100%;
  position: relative;
  display: flex;
}
/* .contact-left */
.contact-left{
  background-color: #fff;
  width: 65%;
  padding: 200px 5% 160px ;
}
.contact-left h3{
  text-align: left;
}
.contact-left .subtext{
  text-align: left;
}
.contact-left .sm-text{
  font-size: 18px;
  color: #e60013;
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 80px;
}
.contact-left .field{
  width: 100%;
  display: block;
  margin-bottom: 40px;
}

.contact-left .f_label{
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}
.contact-left .f_label .req{
  color: #e60013;
}
.contact-left .chk_grid{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.contact-left .chk.etc{
    display:inline-flex;
}
.contact-left .chk span{
  min-width: 160px;
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  transition: .3s;
  cursor: pointer;
}
.contact-left .chk span:active{
  transform: scale(.97);
}
.contact-left .chk input{
  display: none;
}
.contact-left .chk:hover span{
  background-color: #e60013;
  border: 1px solid #e60013;
  color: #fff;
}
.contact-left .chk input:checked + span{
  background-color: #e60013;
  border: 1px solid #e60013;
  color: #fff;
}
.contact-left .chk_etc{
  display:flex;
}
.contact-left .chk.etc span,
.contact-left .chk.etc .etc_input{
    min-width:160px;
    padding: 12px 20px;
    border:1px solid #333;
    border-radius:24px;
    font-size:18px;
    font-weight:500;
    display:flex;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
    transition:.25s;
}
.contact-left .chk.etc > input[type="checkbox"]{
    display:none;
}
.contact-left .chk.etc .etc_input{
    display:none;
    justify-content:flex-start;
    background:#e60013;
    color:#fff;
    border-color:#e60013;
    outline:none;
}
.contact-left .chk.etc .etc_input::placeholder{
    color:rgba(255,255,255,.8);
}
.contact-left .chk.etc .etc_text{
    background:#fff;
    color:#333;
}
.contact-left .chk.etc input[type="checkbox"]:checked ~ .etc_text{
    display:none;
}
.contact-left .chk.etc input[type="checkbox"]:checked ~ .etc_input{
    display:flex;
}
/* 고객님의 정보 */
.basic_grid{
  width: 100%;
}
.basic_grid .info-title{
   display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.basic_grid .small-text{
  color: #666;
  text-align: right;
  margin-bottom: 12px;
  font-weight: 500;
}
.basic_grid .field{
  margin-bottom: 20px;
}
.basic_grid .f_label{
  display: none;
}
.basic_grid .f_input{
  display: flex;
  width: 100%;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid #333;
  font-size: 18px;
}

/* file */
.contact-left .file .f_label{
  display: block;
  margin: 40px 0 20px;
}
.contact-left .file .f_label .req{
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
}
.file_row { display: flex; align-items: center; gap: 12px; }
.file_btn {
	display: inline-flex; border: 1px solid #333; border-radius: 6px; gap: 8px;
	padding: 16px 20px; font-size: 16px; color: #333; cursor: pointer; background: #fff; align-items: center;
}
.file_btn img{
  object-fit: cover;
  height: 16px;
}
.file_btn:hover { border-color: #e60013; color: #e60013; }
.file_btn:hover img{filter: invert(22%) sepia(65%) saturate(4926%) hue-rotate(342deg) brightness(90%) contrast(500%);}
.file_name { font-size: 15px; color: #888; word-break: break-all; }
/* agree */
.agree_wrap { margin-top: 80px; margin-bottom: 40px;}
.agree_all { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.agree_all b { font-size: 20px; font-weight: 700; }
.checkbox_all { width: 18px; height: 18px; accent-color: var(--green-d); cursor: pointer; }

.agree_item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.agree_head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 20px 24px; cursor: pointer; background-color: #eee;
}
.agree_title { font-size: 16px; font-weight: 500; color: #111;  }
.agree_toggle { display: inline-flex; align-items: center; }
.agree_radio {
	appearance: none; -webkit-appearance: none;
	width: 29px; aspect-ratio: 1; border: 2px solid #333; border-radius: 50%;
	cursor: pointer; position: relative; transition: border-color .15s, background .15s;
}
.agree_radio:checked { border-color: #e60013; background: #e60013; }
.agree_radio:checked::after {
	content: ""; position: absolute; left: 6px; top: 3px;
	width: 10px; height: 11px; border: solid #fff; border-width: 0 3px 3px 0; transform: rotate(45deg);
}
.agree_body { display: none; padding: 0; }
.agree_table { border-top: 1px solid #eee; }
.agree_tr { display: flex; border: 1px solid #eee;  }
.term2_text .agree_tr{padding: 16px 20px;}
.agree_th { width: 190px; flex-shrink: 0; background: #fff; padding: 16px 20px; font-size: 16px; font-weight: 600; color: #333; }
.agree_td { padding: 12px 14px; font-size: 15px; color: #333; line-height: 1.6; }
.agree_desc { font-size: 14px; color: #888;  margin-top: 14px; }

.agree_note { margin-top: 22px; font-size: 15px; color: #888; line-height: 1.7; }
.agree_note_chk { display: flex; align-items: center; gap: 8px; margin-top: 4px; cursor: pointer; color: #333; }
.agree_note_chk input { width: 16px; height: 16px; accent-color: var(--green-d); cursor: pointer; }
.agree_note_chk span{font-weight: 500;}
/* btn */
.submit_wrap{}
.join_btn{
  display: inline-flex;
  padding: 20px 40px;
  background-color: #e60013;
  border-radius: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-top: 40px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: .3s;
}
.join_btn:hover{
  background-color: #c30010;
}
/* .contact-right */
.contact-right{
  width: 35%;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  padding: 200px 5%;
}
.contact-right .bg{
  position: absolute;
  width: 100%;
  height: 100%;
  left: -0;
  top: 0;
  z-index: 2;
  object-fit: cover;
  opacity: .7;
}
.contact-right .checked{
  position: relative;
  z-index: 5;
}
.contact-right .checked li{
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-right .checked li .round{
  width: 40px;
  aspect-ratio: 1;
  border: 2px solid #fff;
  background-color: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-right .checked li.active .round{
  background-color: #fff;
}
.contact-right .checked li .round img{
  width: 80%;

}
.contact-right .checked li p{
  color: #fff;
  font-size: 28px;

}
.contact-right .title{
  z-index: 5;
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  line-height: 130%;
  position: absolute;
  bottom: 200px;
}
.contact-right .title span{
  color: #e60013;
}
/* ******************portplio******************************************************************************* */
#portpolio{
  width: 100%;
  position: relative;
  background: linear-gradient(to bottom, #201614, #000);
  padding: 200px 5% 160px;
}
#portpolio h3{
  color: #fff;
}
#portpolio .subtext{
  color: #fff;
  font-weight: 400;
}
.portpolio-tabs{
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.portpolio-tabs li{
  transition: .3s;
}
.portpolio-tabs li a{
  display: inline-block;
  padding: 15px 20px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  transition: .3s;
}
.portpolio-tabs .onepage a{border: 1px solid #79dc6f;}
.portpolio-tabs .catalog a{border: 1px solid #a1d5fd;}
.portpolio-tabs .banner a{border: 1px solid #ffdf78;}
.portpolio-tabs .newsletter a{border: 1px solid #ef9ed6;}
.portpolio-tabs .event a{border: 1px solid #b7abff;}
.portpolio-tabs .all:hover a, .portpolio-tabs .all.active a{
  background:linear-gradient(to top, #513733, #000);
}
.portpolio-tabs .onepage:hover a, .portpolio-tabs .onepage.active a{
  background:linear-gradient(to top, #7adc6f3e, #000);
  color: #79dc6f;
}
.portpolio-tabs .catalog:hover a, .portpolio-tabs .catalog.active a{
  background:linear-gradient(to top, #a1d5fc3b, #000);
  color: #a1d5fc;
}
.portpolio-tabs .banner:hover a, .portpolio-tabs .banner.active a{
  background:linear-gradient(to top, #ffe0783a, #000);
  color: #ffdf78;
}
.portpolio-tabs .newsletter:hover a, .portpolio-tabs .newsletter.active a{
  background:linear-gradient(to top, #ef9ed537, #000);
  color: #ef9ed6;
}
.portpolio-tabs .event:hover a, .portpolio-tabs .event.active a{
  background:linear-gradient(to top, #b8abff3d, #000);
  color: #b7abff;
}
#portpolio .design-list{
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
  gap: 40px;
}
#portpolio .design-list li{
  background: linear-gradient(to bottom, #111, #222);
  width: calc(33.333% - 40px);
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
#portpolio .design-list li img{
  width: 100%;
  object-fit: cover;
}
#portpolio .design-list li .text{
  position: absolute;
  width: 100%;
  left: 40px;
  bottom: 60px;
}
#portpolio .design-list li .sort{
  color: #fff;
}
#portpolio .design-list li .event-name{
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-top: 12px;
}
