body {
    font-family: 'pret-sb';
    width: 100%;
    overflow-x: hidden;
    background-color: #efefef;
    word-break: keep-all;
}
.badge { 
  display: inline-block;
  font-size: 14px;
  margin-bottom: 24px;
  font-family: 'Pretendard';
}
.badge span {
  color: #FF7700;
}
.arrow {
    font-family: 'sans-serif';
}

h2 {
  font-size: clamp(28px, 4vw, 63px);
  letter-spacing: 1.89px;
}
@media (max-width:768px){
  h2 { letter-spacing: 0.84px;}
}

/* visual */
.visual {
    position: relative;
}
.visual .content {
    position: relative;
    height: 100vh;
}
/* visual - 텍스트 타이핑 */
.visual .content .main_text {
    position: absolute;
    top: 180px;
    left: 165px;
    z-index: 15;
    color: #fff;
}
.visual .content .main_text .text_typing {
}
.visual .content .main_text .text_typing > p {
    width: 460px;
    /* font-family: 'S-CoreDream-8Heavy'; */
    font-family: 'gangwon';
    font-size: 6em;
    line-height: normal;
    opacity: 0;
    animation: visual_text_show 0.5s linear 0.6s 1 forwards;
}
/* .visual .content .main_text .text_typing > p::after {
    content: "_";
    display: inline-block;
    animation: cursor 0.5s linear 0s infinite;
    transform: translate(-10px, 0);
}
@keyframes cursor {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
} */
.visual .content .main_text .sub_text {
    margin-top: 30px;
    font-family: 'pret-m';
    font-size: 3em;
    transition-delay: 1.2s;
    /* opacity: 0; */
    /* animation: visual_text_show 0.5s linear 2s 1 forwards; */
}
@keyframes visual_text_show {
    0% {
        opacity: 0;
        transform: translate(0, 15px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}


/* main-sub 스와이퍼 통합 260219 */
.main_swiper .swiper-slide {
    position: relative;
}
.main_swiper .slide_sub {
    position: absolute;
    right: 13%;
    bottom: 37px;
    color: #fff;
    font-size: 18px;
    width: max-content;
}
.main_swiper .slide_sub span {
    vertical-align: middle;
}
.main_swiper .slide_sub img{
    display: inline-block;
    width: 21px !important;
    height: auto !important;
    filter: none !important;
}
@media(max-width:768px){
    .main_swiper .slide_sub {
        right: 50%;
        bottom: 15px;
        transform: translateX(50%);
        font-size: 12px;
    }
    .main_swiper .slide_sub img{
        width: 16px !important;
    }
}

/* visual - 슬라이드 */
.visual .content .main_swiper {
    height: 100%;
    overflow: hidden;
}
.visual .content .main_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}
/* visual - 서브슬라이드 */
.visual .content .sub {
    position: absolute;
    width: 480px;
    right: 100px;
    bottom: 36px;
    height: 30px;
    background-color: transparent;
    z-index: 5;
}
.visual .content .sub .sub_swiper {
    height: 100%;
}
.visual .content .sub .sub_swiper .swiper-slide {
    height: 100% !important;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.3em;
    color: #fff;
    background-color: transparent;
}
.visual .content .sub .sub_swiper .swiper-slide span {
    display: inline-block;
}
.visual .content .sub .sub_swiper .swiper-slide.slide01 span {width: 30px;}
.visual .content .sub .sub_swiper .swiper-slide.slide02 span {width: 22px;}
.visual .content .sub .sub_swiper .swiper-slide.slide03 span {width: 22px;}
.visual .content .sub .sub_swiper .swiper-slide.slide04 span {width: 24px;}
.visual .content .sub .sub_swiper .swiper-slide.slide05 span {width: 25px;}


/* visual - 슬라이드 버튼 */
.visual .content .visual_btn .swiper_prev,
.visual .content .visual_btn .swiper_next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 40px;
    cursor: pointer;
    z-index: 20;
}
.visual .content .visual_btn .swiper_prev {
    left: 50px;
}
.visual .content .visual_btn .swiper_next {
    right: 50px;
}
/* visual - questions */
.visual_questions {}
.visual_questions .title {
    position: absolute;
    left: 165px;
    bottom: 40px;
    padding: 10px 20px 10px 67px;
    font-size: 1.3em;
    line-height: 22px;
    color: #191919;
    background-color: #fff;
    border-radius: 50px;
    box-sizing: border-box;
    z-index: 19;
    cursor: pointer;
    transition: all 0.4s ease;
}
.visual_questions .title::before {
    content: "Q";
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0, -50%);
    width: 36px;
    height: 36px;
    font-size: 1.5em;
    line-height: 1.6em;
    text-align: center;
    border-radius: 100%;
    color: #fff;
    background-color: #191919;
    transition: all 0.4s ease;
    animation: bounceDrop 1s ease forwards;
    animation-delay: 1s;
}
@keyframes bounceDrop {
    0% {
        transform: translate(0, -150%);
    }
    60% {
        transform: translate(0, -30%);
    }
    75% {
        transform: translate(0, -70%);
    }
    90% {
        transform: translate(0, -45%);
    }
    100% {
        transform: translate(0, -50%);
    }
}
.visual_questions .title:hover {
    color: #fff;
    background-color: #191919;
}
.visual_questions .title:hover::before {
    color: #191919;
    background-color: #fff;
}
.visual_questions .text_box {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 70px 90px;
    font-size: 1.4em;
    text-align: center;
    border-radius: 25px;
    background-color: #EFEFEF;
    z-index: 20;
    overflow: hidden;
    white-space: nowrap;
}
.visual_questions .text_box > div {
    margin-bottom: 15px;
}
.visual_questions .text_box > div .color_effect {
    font-family: 'pret-eb';
}
.visual_questions .text_box > div .mo_margin {
    display: inline-block;
}
.visual_questions .text_box .img {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translate(-50% ,0);
    width: 512px;
    height: 241px;
}

.visual_questions .text_box .close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 52px;
    height: 52px;
    background-color: #191919;
    cursor: pointer;
    border-radius: 50%;
}
.visual_questions .text_box .close > div {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 어떻게 만들까요 섹션 */
section.how-to-make {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  color: #fff;
}

/* 고정 텍스트 */
.how-to-make-text {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5556);
  text-align: center;
  /* pointer-events: none; */
  opacity: 0;
  transition: opacity 0.6s ease;
}
/* active 슬라이드만 보이게 */
.swiper-slide-active .how-to-make-text {
  opacity: 1;
}

.how-to-make-text h2 {
  margin-bottom: 2.6vw;
}

.how-to-make-text .text-box {
  width: max-content;
  padding: 12px 26px;
  border-radius: 10px;
  margin: 0 auto 20px;
}

.how-to-make-text strong {
  font-size: clamp(28px, 3.5vw, 63px);
  font-family: 'pret-m';
}


.how-to-make-text .categories {
    display: block;
    position: relative;
    font-size: clamp(16px, 1.7vw, 32px);
    background: #EFEFEF;
    color: #191919;
    border-radius: 33px;
    margin: 5.2vw auto 0;
    padding: 7px 43px 7px 58px;
    width: max-content;
    max-width: 446px;
    transition: all 0.4s ease;
}
.how-to-make-text .categories .circle-box {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0, -50%);
    width: 36px;
    height: 36px;
    font-size: 23px;
    line-height: 36px;
    text-align: center;
    border-radius: 100%;
    color: #fff;
    background-color: #191919;
    transition: all 0.4s ease;
}
.how-to-make-text .categories:hover {
    background: #191919;
    color: #fff;
}

/* Swiper */
.how-to-make-swiper {
  width: 100%;
  overflow: visible !important;
}

.how-to-make .swiper-wrapper {
  height: auto !important;
  align-items: center;
  transition-timing-function: linear !important;
}

.how-to-make .swiper-slide {
  transition: transform 1s ease;
  /* width: 22vw;
  max-width: 440px; */
}
.how-to-make .swiper-slide-active {
  transform: translateZ(0) scale(1.8) !important;
  z-index: 1;
}

.how-to-make .swiper-slide img {
  width: 100%;
  object-fit: cover;
  
  filter: grayscale(1) brightness(0.9);
  transition: filter 2s ease;
}
.how-to-make .swiper-slide-prev img {
  border-radius:  0 26px 26px 0;
}
.how-to-make .swiper-slide-next img {
  border-radius:  26px 0 0 26px;
}
.how-to-make .swiper-slide-active img {
  filter: grayscale(0) brightness(1);
  border-radius: 26px;
}


/* 반응형 */
@media (max-width: 1024px) {
  .how-to-make-text h2 {
    font-size: 36px;
  }

  .how-to-make .swiper-slide {
    width: 340px;
  }
  .how-to-make-text .categories .circle-box {
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 24px;
}
}

@media (max-width: 768px) {
  .badge { margin-bottom: 0;}
  section.how-to-make {
    padding: 20px 0 0;
    height: 53vh;
  }

  .how-to-make-text h2 {
    font-size: 28px;
  }

  .how-to-make .swiper-slide {
    width: 260px;
  }

  .how-to-make .swiper-slide img {
    height: 220px;
    border-radius: 20px;
  }
  .how-to-make .swiper-slide-active img {
    filter: grayscale(0) brightness(0.8);
  }
  .how-to-make-text .categories {
    margin: 20vw auto 0;
  }
}

@media (max-width:500px){
  .how-to-make-text .categories {
    margin: 37vw auto 0;
  }
  .how-to-make .swiper-slide img {
    height: 200px;
  }
}
@media (max-width:410px){
  .how-to-make .swiper-slide img {
    height: 180px;
  }
}


/* 숙박업 홍보마케팅 섹션 */
.how-to-ad {
  padding: 140px 0;
}

.how-to-ad-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 40px;
  display: flex;
  gap: 5.2vw;
  justify-content: space-around;
  align-items: flex-end;
  border: 1px solid #0F0F0F;
  border-radius: 31px;
}

/* Left */
.how-to-ad-left {

}

.how-to-ad-left .badge {
  margin-bottom: 18px;
}

.how-to-ad-left h2 {
  margin-bottom: 10vw;
}

.how-to-ad-left .tag {
  display: inline-block;
  margin-bottom: 22px;
  padding: 10px 22px;
  border-radius: 12px;
  background: #0F0F0F;
  box-shadow: inset 0px 4px 4px #FFFFFF24;
  font-size: 19px;
  font-family: 'Pretandard';
  color: #CECECE;
}

.how-to-ad-left .desc {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 70px;
}

.how-to-ad-left .image-box {
  border-radius: 12px;
  overflow: hidden;
  max-width: 670px;
}

.how-to-ad-left .image-box img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.8);
}

/* Right */
.how-to-ad-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 540px;
}

.ad-item {
  position: relative;
  max-width: 42vw;
  padding: 12px 28px 12px 44px;
  border-radius: 59px;
  /* background: linear-gradient(180deg, #111, #0b0b0b); */
  background: #0F0F0F;
  border: 1px solid #333;
  box-shadow: inset 0px 2px 5px #ffffff2e;
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  letter-spacing: 0.84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* transition: background 0.4s ease, border 0.4s ease; */

  opacity: 0;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(.22,.61,.36,1), 
              opacity 0.8s ease,
              background 0.2s ease, border 0.4s ease;
  transition-delay: 0.3s;
}
/* 각 아이템을 가운데 기준으로 겹치게 만들기 */
.ad-item:nth-child(1) { transform: translateY(120px); }
.ad-item:nth-child(2) { transform: translateY(80px); }
.ad-item:nth-child(3) { transform: translateY(40px); }
.ad-item:nth-child(4) { transform: translateY(-40px); }
.ad-item:nth-child(5) { transform: translateY(-80px); }
.ad-item:nth-child(6) { transform: translateY(-120px); }

/* 화면에 들어왔을 때 */
.how-to-ad-right.show .ad-item {
  transform: translateY(0);
  opacity: 1;
}


.ad-item:hover {
  /* background: linear-gradient(180deg, #1a1a1a, #0e0e0e); */
  background: #2E3031;
}
.ad-item small {
    font-size: 0.8em;
}
.ad-item .arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #efefef;
  color: #0F0F0F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* =====================
   Responsive
===================== */
@media (max-width: 1024px) {
  .how-to-ad-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 70px;
  }

  .how-to-ad-left h2 {
    font-size: 40px;
  }

  .how-to-ad-left .image-box {
    max-width: 100%;
  }
  .ad-item {
    max-width: 75vw;
  }
}

@media (max-width: 768px) {
  .how-to-ad {
    padding: 80px 20px 100px;
  }
  .how-to-ad-inner { 
    gap: 40px;
    padding: 50px 20px;
}
  .how-to-ad-left h2 {
    font-size: 32px;
  }
  .how-to-ad-left .desc {
    margin-bottom: 30px;
  }
  .how-to-ad-right { 
    width: 100%;
    max-width: 100%;
    gap: 16px;
    align-items: center;
  }
  .ad-item {
    font-size: 18px;
    letter-spacing: 0.54px;
    padding: 13px 12px 13px 23px;
    word-break: keep-all;
  }
  
}
@media(max-width:550px){
    .ad-item {
        max-width: calc(94vw - 80px);
    }
}
@media (max-width: 480px) {
  .how-to-ad-left h2 {
    font-size: 26px;
  }

  .how-to-ad-left .desc {
    font-size: 13px;

  }
 
  .ad-item .arrow {
    width: 28px;
    height: 28px;
  }
}
@media(max-width:400px){
    .ad-item {
        font-size: 16px;
        letter-spacing: 0.48px;
    }
}

/* 홈페이지 제작 섹션 */
.how-to-show {
  padding: 160px 20px;
  text-align: center;
}

.section-title {
  margin-bottom: 30px;
}

.section-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 10px 22px;
  border-radius: 12px;
  background: #0F0F0F;
  box-shadow: inset 0px 4px 4px #FFFFFF24;
  font-size: 27px;
  font-family: 'Pretandard';
  color: #CECECE;
}

.section-desc {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 80px;
  color: #757575;
}

/* Steps */
.how-to-show .process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto 120px;
}

.how-to-show .step {
  display: block;
  position: relative;
  border-radius: 20px;
  padding: 26px 20px 50px;
  border: 1px solid #1e1e1e;
  text-align: left;

  opacity: 0;
  filter: blur(3px);
  transform: translateY(40px);
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1),
              opacity 0.6s ease, filter 0.4s ease;
}

.how-to-show .process-steps.show .step {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  box-sizing: border-box;
}
/* 1, 2번 */
.how-to-show .process-steps.show .step:nth-child(1) {
  transition-delay: 0.4s;
}
.how-to-show .process-steps.show .step:nth-child(2) {
  transition-delay: 0.8s;
}

/* 3 ~ 6번 */
.how-to-show .process-steps.show .step:nth-child(3) {
  transition-delay: 1.2s;
}
.how-to-show .process-steps.show .step:nth-child(4) {
  transition-delay: 1.35s;
}
.how-to-show .process-steps.show .step:nth-child(5) {
  transition-delay: 1.5s;
}
.how-to-show .process-steps.show .step:nth-child(6) {
  transition-delay: 1.65s;
}

.how-to-show .step strong {
  font-size: 32px;
  letter-spacing: 0.96px;
  line-height: 1.4;
}

.how-to-show .step .circle-box {
  position: absolute;
  bottom: 9px;
  right: 11px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #191919;
  font-size: 23px;
  line-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
@media (min-width:1200px){
    .how-to-show .step:hover {
        background: #191919;
        color: #fff;
    }
    .how-to-show .step:hover .circle-box {
        background: #191919;
    }
}


/* =====================
   Responsive
===================== */
@media (max-width: 1200px) {
  .how-to-show .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .how-to-show {
    padding: 0px 30px;
  }

  .section-title {
    font-size: 34px;
  }
  .section-badge {
    font-size: 19px;
  }
  .how-to-show .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 90px;
  }
 .how-to-show .step {
      border-radius: 7px;
      padding: 12px 18px;
      height: 22.5vw;
      min-height: 65px;
  }
  .how-to-show .step strong {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 7vw;
  }
 
  .how-to-show .step strong {
    font-size: 20px;
    letter-spacing: 0.6px;
  }

  .how-to-show .step .circle-box {
    bottom: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    font-size: 14px;
  }

  .section-desc {
    font-size: 13px;
    margin-bottom: 40px;
    word-break: keep-all;
  }
}
@media (max-width:380px){
  .how-to-show .step strong {
    font-size: 16px;
  }
}

/* new 포트폴리오 섹션 */
.new-portfolio {
  margin: 100px auto 240px;
  width: 90%;
  max-width: 1600px;
}
.new-portfolio .badge {
  display: block;
  text-align: center;
}
.new-portfolio h2 {
  text-align: center;
  margin-bottom: 60px;
}
.new-portfolio .imgbox-wrap {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.new-portfolio .imgbox-wrap > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  
}

.new-portfolio .left, .new-portfolio .right {
  position: relative;
  z-index: 1;
}
.new-portfolio .left { z-index: 10;}
.new-portfolio .center {
  position: relative;
  z-index: 2;
}

@keyframes portfolio01 {
  0% { transform: scale(1.3) translateY(-300px); }
  100% { transform: scale(1) translateY(0px); }
}
@keyframes portfolio02 {
  0% { transform: scale(1.45) translateY(-300px); }
  100% { transform: scale(1) translateY(0px); }
}
.new-portfolio .imgbox { 
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  width: 24.271vw;
  height: 16.667vw;
   /* transition: all 0.6s ease; */


}


.new-portfolio .imgbox img.port-img {
  filter: grayscale(1);
  height: 100%;
  transition: all 0.6s ease;
  object-fit: cover;
}

.new-portfolio .imgbox img.port-logo {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 40%;
    z-index: 1;
    filter: brightness(4);
    transition: opacity 0.6s ease;
}
.new-portfolio .imgbox h3 {
    position: absolute;
    bottom: 10px;
    left: 20px;
    font-size: 32px;
    letter-spacing: 0.03em;
    color: #fff;
}
.new-portfolio .imgbox .arrow {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0F0F0F;
    color: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}


@media (min-width: 1200px){

    .new-portfolio .imgbox {
        opacity: 0.5;
        transform: scale(0.8);
        transition: transform 2s cubic-bezier(.22,.61,.36,1),
                    opacity 1s ease, height 1.3s ease;
        transition-delay: 0.6s;           
    }
   
  
    .new-portfolio .imgbox.left01 {
        transform: translate(569px, 201px) scale(0.7);
    }
    .new-portfolio .imgbox.left02 {
        transform: translate(510px, -164px) scale(0.7);
    }


    .new-portfolio .imgbox.center01 {
        transform: translate(-76px, 83px) scale(0.7);
    }
    .new-portfolio .imgbox.center02 {
        transform: translate(-101px, -71px) scale(0.8);
    }


    .new-portfolio .imgbox.right01 {
        transform: translate(-288px, 45px) scale(0.8);
    }
    .new-portfolio .imgbox.right02 {
        transform: translate(-257px, -38px) scale(0.7);
    }

    /* .animate-wrap.show .left .imgbox, .animate-wrap.show .center .imgbox, .animate-wrap.show .right .imgbox  */
    .animate-wrap.show .imgbox 
    {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }



    .new-portfolio .imgbox img.port-img {
        transition: filter 0.4s ease;
    }

    .new-portfolio .imgbox img.port-logo {
        transition: opacity 0.4s ease;
    }

  /* 기본 hover 효과 */
  .new-portfolio .imgbox:hover img.port-img {
    filter: grayscale(0);
  }

  .new-portfolio .imgbox:hover img.port-logo {
    opacity: 0;
  }

  /* 🔥 hover 된 박스 */
  /* .new-portfolio .imgbox:hover {
    height: calc(16.667vw + 60px);
    transform: translateY(-30px) !important;
    z-index: 2;
  } */

  /* 🔥 hover 된 박스 위에 있는 형제들 */
  /* .new-portfolio .imgbox:hover ~ .imgbox {
    transform: translateY(-30px) !important;
  } */

  /* 🔥 hover 된 박스 아래 형제들 */
  /* .new-portfolio .imgbox:has(~ .imgbox:hover) {
    transform: translateY(-30px) !important;
  } */

}



@media(max-width:1400px){
    .new-portfolio .imgbox h3 {
        font-size: 24px;
        left: 15px;
    }
}

@media(max-width:768px){
    .new-portfolio h2 {
        margin-bottom: 40px;
    }
    .new-portfolio .imgbox-wrap {
        flex-direction: column;
        align-items: center;
    }
    .new-portfolio .imgbox { 
        width: 85vw;
        height: 58.75vw;
        opacity: 0;
        transition: all 1.2s ease;
        filter: blur(2px);
        transform: translate(0, 50px);
    }
    .animate-wrap.show .imgbox  {
        opacity: 1;
        filter: blur(0);
        transform: translate(0, 0);
    }
    .new-portfolio .imgbox .arrow { 
        color: #0F0F0F;
        background: #efefef;
    }
    .new-portfolio .imgbox img.port-img {
        filter: grayscale(0) brightness(0.4);
    }
    .new-portfolio .imgbox h3 {
        font-size: 22px;
    }
}



@media( max-width:500px){
  .new-portfolio {
    display: block;
    max-width: 450px;
    margin: 100px auto 120px;
  }
  .new-portfolio .left, .new-portfolio .right, .new-portfolio .center {
    margin-top: 10px;
  }
  
}




/* work */
.work {
    padding: 50px 0 100px 0;
    background: url("/images/main/bg.jpg") no-repeat center;
    background-size: cover;
}
.work .content {}
.work .content .img {
    position: relative;
    width: 32%;
    max-width: 615px;
    height: 380px;
    margin: 0 auto;
    overflow: hidden;
}
.work .content .img img {
    position: absolute;
    left: 0;
    bottom: -45px;
}
.work .content .text {
    width: 100%;
    font-family: 'S-CoreDream-7ExtraBold';
    font-size: 6em;
    text-align: center;
    color: #1d3487;
}
.work .content .text > div {
    height: 130px;
    line-height: 130px;
}
.work .content .text > div.text02 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}
.work .content .text > div.text02 .rolling_text {
    height: 130px;
    padding: 0 30px;
    color: #21bf82;
    border: 2px solid #1d3487;
    box-sizing: border-box;
    overflow: hidden;
}
.work .content .text > div.text02 .rolling_text > ul {
    height: 100%;
    
}
.work .content .btn {
    width: max-content;
    margin: 40px auto;
}
.work .content .btn a {
    height: 45px;
    padding: 0 30px;
    line-height: 43px;
    text-align: center;
    border-radius: 25px;
    font-size: 1.3em;
    color: #fff;
    border: 2px solid #1d3487;
    box-sizing: border-box;
    background-color: #1d3487;
    cursor: pointer;
}
.work .content .btn:hover a {
    color: #1d3487;
    border: 2px solid #1d3487;
    background-color: #fff;
}



/* about - pc */
.about {
    position: relative;
    height: 450vh;
}
.about .content {
    position: relative;
    height: 100%;
}
.about .content .about_cont {
    top: 0 !important;
    height: 100vh;
}
.about .content .about_cont .about_info {
    position: relative;
    height: 100vh;
    word-break: keep-all;
}

.about .content .about_cont .about_info .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
}
.about .content .about_cont .about_info .bg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about .content .about_cont .about_info .bg_item {
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translate(-50%, 0);
    z-index: 10;
}
.scroll > i {
    display: block;
    line-height: 0.9em;
    color: #fff;
}
.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 500;
}
.scroll p {
    font-size: 0.8em;
    padding-top: 12%;
    font-weight: 500;
}
.unu, .doi, .trei
{
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    animation: mouse-scroll 1s infinite;
}
.unu {
    color: #a5a5a5;
    -webkit-animation-delay: .1s;
    -moz-animation-delay: .1s;
    -webkit-animation-direction: alternate;
    
    animation-direction: alternate;
    animation-delay: alternate;
}

.doi {
    color: #5f5f5f;
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -webkit-animation-direction: alternate;
    animation-delay: .2s;
    animation-direction: alternate;
}

.trei {
    color: #000;
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    -webkit-animation-direction: alternate;
    animation-delay: .3s;
    animation-direction: alternate;
}
@-webkit-keyframes mouse-scroll {
    0%   { opacity: 0;}
    100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes mouse-scroll {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

.about .content .about_cont .about_info .about_main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    height: 512px;
    transition: 0.5s;
    z-index: 11;
    color: #fff;
}
/* about - 타이틀 롤링 */
.about .content .about_cont .about_info .about_main .rolling {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}
.about .content .about_cont .about_info .about_main .rolling .main_rolling {
    height: 120px;
    overflow: hidden;
}
.about .content .about_cont .about_info .about_main .rolling .main_rolling ul {
    transform: translate(0, 120px);
    transition: 1s;
    text-align: right;
}
.about .content .about_cont .about_info .about_main .rolling .main_rolling ul li {
    font-family: 'S-CoreDream-6Bold';
    height: 120px;
    line-height: 120px;
    font-size: 7.5em;
    letter-spacing: 8px;
}
.about .content .about_cont .about_info .about_main .rolling .sub_rolling {}
.about .content .about_cont .about_info .about_main .rolling .sub_rolling ul {
    opacity: 0;
    transition: 2s;
}
.about .content .about_cont .about_info .about_main .rolling .sub_rolling ul.on {
    opacity: 1;
}

.about .content .about_cont .about_info .about_main .rolling .sub_rolling ul li {
    padding: 3px 0;
    font-family: 'S-CoreDream-6Bold';
    font-size: 1.2em;
    opacity: 0.3;
    cursor: pointer;
}
.about .content .about_cont .about_info .about_main .rolling .sub_rolling ul li.on {
    opacity: 1;
}
@media(max-width:768px){
    .about .content .about_cont .about_info .about_main {
        width: 100vw;
        top: 40%;
    }
    .about .content .about_cont .about_info .about_main .rolling .sub_rolling {
        position: absolute;
        top: -100px;
        display: none;
    }
    .about .content .about_cont .about_info .about_main .rolling .main_rolling ul li {
        font-size: 2.5em;
        letter-spacing: 3px;
        text-align: center;
    }
}
/* about - 메인텍스트 */
.about .content .about_cont .about_info .about_main .main_text {}
.about .content .about_cont .about_info .about_main .main_text .items {
    display: none;
    width: 950px;
    box-sizing: border-box;
}
.about .content .about_cont .about_info .about_main .main_text .items .title {
    width: 100%;
    height: max-content;
    margin: 20px 0 10px 0;
    padding: 3px 10px;
    font-family: 'S-CoreDream-6Bold';
    font-size: 2em;
    color: #1d3487;
    background-color: #fff;
    box-sizing: border-box;
    transition: 0.5s;
    opacity: 0;
}
.about .content .about_cont .about_info .about_main .main_text .items .title p {
    margin: 0 auto;
}
.about .content .about_cont .about_info .about_main .main_text .items.show .title {
    transition-delay: 0.2s;
    opacity: 1;
} 
.about .content .about_cont .about_info .about_main .main_text .items .title .typing_text::after {
    content: "_";
    display: inline-block;
    animation: cursor2 0.5s linear 0s infinite;
    transform: translate(-3px, 0);
}
@keyframes cursor2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.about .content .about_cont .about_info .about_main .main_text .items > .text {
    margin-top: 20px;
    font-family: 'S-CoreDream-4Regular';
    font-size: 1.5em;
    text-align: center;
    line-height: 28px;
}
.about .content .about_cont .about_info .about_main .main_text .items .btn_view {
    width: max-content;
    margin: 40px auto 0 auto;
}

.about .content .about_cont .about_info .about_main .main_text .items .btn_view a {
    height: 45px;
    padding: 0 30px;
    line-height: 41px;
    text-align: center;
    border-radius: 25px;
    font-family: 'S-CoreDream-6Bold';
    font-size: 1.2em;
    color: #fff;
    border: 2px solid #fff;
    box-sizing: border-box;
    cursor: pointer;
}
.about .content .about_cont .about_info .about_main .main_text .items .btn_view a:hover {
    color: #1d3487;
    background-color: #fff;
}
@media(max-width:768px) {
    .about .content .about_cont .about_info .about_main .main_text .items {
        width: 100%;
    }
    .about .content .about_cont .about_info .about_main .main_text .items > .text {
        padding: 0 3%;
        font-size: 1.1em;
    }
}
/* about - 메인텍스트 첫번째 */
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(1) {
    padding: 0 10px 0 100px;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(1) .title p {
    width: 296px;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(1) > .text {
    opacity: 0;
    transition: 1s;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(1).show > .text {
    opacity: 1;
    transition-delay: 0.5s;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(1) .main {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    margin-top: 30px;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(1) .main .item {
    flex: 1;
    height: 130px;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(1) .main .item .img {
    position: relative;
    width: 95px;
    height: 95px;
    margin: 0 auto;
    opacity: 0;
    transition: 1s;
    transform: translate(0, 10px);
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(1).show .main .item .img {
    opacity: 1;
    transition-delay: 0.8s;
    transform: translate(0, 0);
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(1) .main .item .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(1) .main .item .text {
    display: block;
    margin-top: 5px;
    font-family: 'S-CoreDream-6Bold';
    font-size: 1.3em;
    text-align: center;
    opacity: 0;
    transition: 1s;
    transform: translate(0, -10px);
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(1).show .main .item .text {
    opacity: 1;
    transition-delay: 0.8s;
    transform: translate(0, 0);
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(1) .btn_view {
    opacity: 0;
    transition: 1s;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(1).show .btn_view{
    opacity: 1;
    transition-delay: 1.1s;
}

/* about - 메인텍스트 두번째 */
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) {
    padding: 0 10px 0 50px;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) .title p {
    width: 255px;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) > .text {
    opacity: 0;
    transition: 1s;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(2).show > .text {
    opacity: 1;
    transition-delay: 0.5s;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) .main {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    margin-top: 30px;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) .main .item {
    flex: 1;
    height: 160px;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) .main .item .img {
    position: relative;
    width: 95px;
    height: 95px;
    margin: 0 auto;
    opacity: 0;
    transition: 1s;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(2).show .main .item .img {
    opacity: 1;
    transition-delay: 0.8s;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) .main .item .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 74%;
    height: 66%;
    object-fit: contain;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) .main .item .text {
    display: block;
    margin-top: 10px;
    font-family: 'S-CoreDream-6Bold';
    font-size: 1.3em;
    text-align: center;
    opacity: 0;
    transition: 0.8s;
    transform: translate(0, -10px);
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(2).show .main .item .text {
    opacity: 1;
    transition-delay: 1.5s;
    transform: translate(0, 0);
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) .btn_view {
    opacity: 0;
    transition: 1s;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(2).show .btn_view{
    opacity: 1;
    transition-delay: 1.8s;
}
/* about - 메인텍스트 세번째 */
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) {
    padding: 0 5px 0 0;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .title p {
    width: 250px;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) > .text {
    opacity: 0;
    transition: 1s;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3).show > .text {
    opacity: 1;
    transition-delay: 0.5s;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .main {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    margin-top: 50px;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .main .item {
    position: relative;
    flex: 1;
    height: 200px;
    padding: 30px 15px 20px 15px;
    border: 1px solid #fff;
    border-radius: 3px;
    box-sizing: border-box;
    opacity: 0;
    transition: 1s;
    transform: translate(300px, 0);
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3).show .main .item {
    opacity: 1;
    transform: translate(0, 0);
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3).show .main .item:nth-child(1) { transition-delay: 0.6s; }
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3).show .main .item:nth-child(2) { transition-delay: 0.7s; }
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3).show .main .item:nth-child(3) { transition-delay: 0.8s; }
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3).show .main .item:nth-child(4) { transition-delay: 0.9s; }
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3).show .main .item:nth-child(5) { transition-delay: 1.0s; }
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3).show .main .item:nth-child(6) { transition-delay: 1.1s; }

.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .main .item .count {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -20px);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: #fff;
    border-radius: 100%;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .main .item .count span {
    font-family: 'S-CoreDream-8Heavy';
    font-size: 1.3em;
    color: #1d3487;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .main .item .img {
    position: relative;
    width: 95px;
    height: 95px;
    margin: 0 auto;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .main .item .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .main .item .text {
    display: block;
    font-family: 'S-CoreDream-6Bold';
    font-size: 1.3em;
    text-align: center;
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .btn_view {
    opacity: 0;
    transition: 1s;
    transform: translate(0, 10px);
}
.about .content .about_cont .about_info .about_main .main_text .items:nth-child(3).show .btn_view{
    opacity: 1;
    transition-delay: 1.5s;
    transform: translate(0, 0);
}

@media(max-width:768px){
    .about .content .about_cont .about_info .about_main .main_text .items .title {
        margin: 0 0 10px 0;
    }
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(1),
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(2),
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(3)
     {
        padding: 0;
    }
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(1) .title p,
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) .title p,
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .title p
    {
        width: 100%;
        text-align: center;
        font-size: 0.8em;
    }
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .text {
        display: none;
    }
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(1) .main, 
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) .main,
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .main
    {
        gap: 5px;
        flex-wrap: wrap;
    }
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) .main .item,
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .main .item
    {
        flex: unset;
    }
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .main .item {
        width: 28%;
        height: 140px;
    }
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(1) .main .item .text,
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) .main .item .text,
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .main .item .text
    {
        font-size: 1em;
    }
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(1) .main .item .img, 
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) .main .item .img,
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .main .item .img
    {
        width: 100%;
        height: 55px;
    }
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(1) .main .item .img img,
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(2) .main .item .img img,
    .about .content .about_cont .about_info .about_main .main_text .items:nth-child(3) .main .item .img img
    {
        width: 85%;
        height: 75%;
        object-fit: contain;
    }
}


/* about - mobile */
/* .about_mo {
    height: 700px;
}
.about_mo .content {
    position: relative;
    height: 100%;
}
.about_mo .content .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.about_mo .content .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_mo .content .about_main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: #fff;
} */




/* .about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide {
    opacity: 0 !important;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide > h3 {
    font-family: 'S-CoreDream-6Bold';
    font-size: 2.5em;
    height: 50px;
    overflow: hidden;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide > h3 p {
    opacity: 0;
    transform: translate(0, 60px);
    transition: 1s;
    text-align: center;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.swiper-slide-active > h3 > p {
    opacity: 1;
    transform: translate(0, 0);
} */
/* about - mo title */
/* .about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide .title {
    width: 100%;
    height: 30.5px;
    margin-top: 5px;
    padding: 3px 5px;
    font-size: 1.3em;
    box-sizing: border-box;
    color: #1d3487;
    background-color: #fff;
    opacity: 0;
    transition: 1s;
    overflow: hidden;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.swiper-slide-active .title {
    opacity: 1;
    transition-delay: 0.8s;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide .title .typing_text {
    display: flex;
    justify-content: center;
    height: 100%;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide .title .typing_text .box {
    width: max-content;
    height: 100%;
    overflow: hidden;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide .typing_text .box p {
    position: relative;
    opacity: 0;
    width: 0%;
    height: 100%;
    padding-right: 15px;
    box-sizing: border-box;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide .typing_text .box p::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 4px;
    background-color: #1d3487;
    animation: cursor 0.5s linear 0s infinite;
}

.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.swiper-slide-active .typing_text .box p {
    animation: typing 1s linear 1.5s 1 forwards;
}*/
@keyframes typing {
    0% {
        opacity: 1;
        width: 0%;
    }
    20% {
        opacity: 1;
        width: 0%;
    }
    100% {
        opacity: 1;
        width: 100%;
    }
    
}
@keyframes cursor {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
} 

/* about - mo text */
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide .text {
    margin-top: 15px;
    font-size: 0.9em;
    text-align: center;
    white-space: nowrap;
}
/* about - mo main */
/* .about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide .main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin-top: 30px;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide .main .img {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide .main .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide .main .txt {
    display: block;
    font-size: 0.9em;
    line-height: 16px;
    text-align: center;
    white-space: nowrap;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide .btn_view {
    width: 150px;
    margin: 20px auto 0 auto;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide .btn_view a {
    padding: 5px 0;
    font-family: 'S-CoreDream-6Bold';
    font-size: 1em;
    text-align: center;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 25px;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide .btn_view a:hover {
    color: #1d3487;
    border: 2px solid #1d3487;
    background-color: #fff;
} */


/* about - mo 첫번쨰 아이템 */
/* .about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.fr_item .main {
    padding: 0 20px;
    box-sizing: border-box;
    gap: 10px;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.fr_item .main .img img {
    width: 85%;
} */
/* about - mo 첫번째 아이템 애니메이션 모음*/
/* .about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.fr_item .text {
    opacity: 0;
    transition: 1s;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.fr_item .main .item .img {
    opacity: 0;
    transition: 1s;
    transform: translate(0, 5px);
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.fr_item .main .item .txt {
    opacity: 0;
    transition: 1s;
    transform: translate(0, -5px);
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.fr_item.swiper-slide-active .text {
    opacity: 1;
    transition-delay: 1.5s;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.fr_item.swiper-slide-active .main .item .img {
    opacity: 1;
    transition-delay: 1.8s;
    transform: translate(0, 0);
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.fr_item.swiper-slide-active .main .item .txt {
    opacity: 1;
    transition-delay: 1.8s;
    transform: translate(0, 0);
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.fr_item .btn_view {
    opacity: 0;
    transition: 1s;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.fr_item.swiper-slide-active .btn_view {
    opacity: 1;
    transition-delay: 2.1s;
} */
/* about - mo 두번째 아이템 */
/* .about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.sc_item .main {
    padding: 0 20px;
    box-sizing: border-box;
    gap: 10px;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.sc_item .main .img img {
    width: 85%;
    height: 62%;
    object-fit: contain;
} */
/* about - mo 두번째 아이템 애니메이션 모음*/
/* .about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.sc_item .text {
    opacity: 0;
    transition: 1s;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.sc_item .main .img img {
    opacity: 0;
    transition: 1s;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.sc_item .main .txt {
    opacity: 0;
    transform: translate(0, 5px);
    transition: 1s;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.sc_item.swiper-slide-active .text {
    opacity: 1;
    transition-delay: 1.5s;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.sc_item.swiper-slide-active .main .img img {
    opacity: 1;
    transition-delay: 1.8s;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.sc_item.swiper-slide-active .main .txt {
    opacity: 1;
    transform: translate(0, 0);
    transition-delay: 2.1s;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.sc_item .btn_view {
    opacity: 0;
    transition: 1s;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.sc_item.swiper-slide-active .btn_view {
    opacity: 1;
    transition-delay: 2.4s;
} */
/* about - mo 세번쨰 아이템 */
/* .about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.th_item .main .img img {
    width: 65%;
} */
/* about - mo 세번째 아이템 애니메이션 모음*/
/* .about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.th_item .text {
    opacity: 0;
    transition: 1s;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.th_item .main .item {
    opacity: 0;
    transition: 1s;
    transform: translate(0, 30px);
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.th_item.swiper-slide-active .text {
    opacity: 1;
    transition-delay: 1.5s;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.th_item.swiper-slide-active .main .item {
    opacity: 1;
    transform: translate(0, 0);
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.th_item.swiper-slide-active .main .item:nth-child(1) {transition-delay: 1.5s;}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.th_item.swiper-slide-active .main .item:nth-child(2) {transition-delay: 1.6s;}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.th_item.swiper-slide-active .main .item:nth-child(3) {transition-delay: 1.7s;}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.th_item.swiper-slide-active .main .item:nth-child(4) {transition-delay: 1.8s;}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.th_item.swiper-slide-active .main .item:nth-child(5) {transition-delay: 1.9s;}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.th_item.swiper-slide-active .main .item:nth-child(6) {transition-delay: 2s;}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.th_item .btn_view {
    opacity: 0;
    transition: 1s;
}
.about_mo .content .about_main .about_swiper_mo .swiper-wrapper .swiper-slide.th_item.swiper-slide-active .btn_view {
    opacity: 1;
    transition-delay: 2.3s;
} */

/* about - mo 커스텀 불릿 */
.about_mo .content .about_main .about_mo_page {
    display: flex;
    flex-flow: column;
    position: absolute;
    top: 40px;
    left: 20px;
    width: max-content;
}
.about_mo .content .about_main .about_mo_page > span {
    display: block;
    width: max-content;
    height: max-content;
    padding: 3px 10px;
    color: #fff;
    background-color: transparent;
}


/* portfolio */
.portfolio {
    position: relative;
    padding: 90px 0 0 0;
    height: auto;
    background-color: #fff;
    z-index: 10;
    box-sizing: border-box;
}
.portfolio > h2 {
    font-family: 'S-CoreDream-6Bold';
    font-size: 3.8em;
    color: #10193a;
    text-align: center;
}
.portfolio .content {
}
/* portfolio - 커스텀 페이지네이션 */
.portfolio .content .port_menu {
    margin-top: 10px;
}
.portfolio .content .port_menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.portfolio .content .port_menu ul .swiper-pagination-bullet {
    width: max-content;
    height: max-content;
    padding: 0 5px;
    font-size: 1.2em;
    color: #949494;
    border-radius: 0;
    background-color: transparent;
    cursor: pointer;
    opacity: 1;
}
.portfolio .content .port_menu ul .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: #1d3487;
    border-bottom: 1px solid #1d3487;
}
/* portfolio - 메인 */
.portfolio .content .port_box {
    position: relative;
    width: 100%;
    padding: 0 165px;
    box-sizing: border-box;
}
.portfolio .content .port_box .portfolio_swiper {
    overflow: hidden;
    width: 100%;
    margin: 30px 0 0 0;
}
.portfolio .content .port_box .portfolio_swiper .swiper-wrapper {
}
.portfolio .content .port_box .portfolio_swiper .swiper-wrapper .swiper-slide {
    width: 100% !important;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
}
.portfolio .content .port_box .portfolio_swiper .swiper-wrapper .swiper-slide .items {
    position: relative;
    /* height: 320px;
    overflow: hidden;
    transition: all 0.4s ease; */
}
/* .portfolio .content .port_box .portfolio_swiper .swiper-wrapper .swiper-slide .items a {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: padding 0.4s ease;
} */
/* .portfolio .content .port_box .portfolio_swiper .swiper-wrapper .swiper-slide .items:hover {
    height: 380px;
    transform: translateY(-30px);
} */
.portfolio .content .port_box .portfolio_swiper .swiper-wrapper .swiper-slide .items:hover a {
    /* padding-top: 30px;
    padding-bottom: 30px; */
}
/* .portfolio .content .port_box .portfolio_swiper .swiper-wrapper .swiper-slide .items:hover .img{
 height: 100%;   
}
.portfolio .content .port_box .portfolio_swiper .swiper-wrapper .swiper-slide .items img{
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
} */


.portfolio .content .port_box .portfolio_swiper .swiper-wrapper .swiper-slide .items .text {
    padding: 5px 0 0 0;
    /* position: absolute;
    bottom: 10px;
    left: 20px; */
}
.portfolio .content .port_box .portfolio_swiper .swiper-wrapper .swiper-slide .items .text p {
    font-family: 'S-CoreDream-6Bold';
    font-size: 1.6em;
    line-height: 20px;
}
.portfolio .content .port_box .portfolio_swiper .swiper-wrapper .swiper-slide .items .text span {
    font-family: 'S-CoreDream-2ExtraLight';
    font-size: 1.2em;
}


/* portfolio - btn */
.portfolio .content .port_box .port_btn {}
.portfolio .content .port_box .port_btn > div.swiper-button-disabled {
    opacity: 0.5;
}
.portfolio .content .port_box .port_btn .port_prev,
.portfolio .content .port_box .port_btn .port_next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 40px;
    cursor: pointer;
}
.portfolio .content .port_box .port_btn .port_prev {
    left: 50px;
}
.portfolio .content .port_box .port_btn .port_next {
    right: 50px;
}


.portfolio .content .port_more {
    width: 300px;
    margin: 40px auto 0 auto;
}
.portfolio .content .port_more a {
    padding: 10px 0;
    text-align: center;
    font-family: 'S-CoreDream-6Bold';
    font-size: 1.3em;
    color: #1d3487;
    border: 2px solid #1d3487;
    border-radius: 25px;
    box-sizing: border-box;
}
.portfolio .content .port_more a:hover {
    color: #fff;
    background-color: #1d3487;
}

/* project */
.project {
    /* height: 100vh; */
}
.project .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    height: 100%;
}
.project .content .main_cont {
    width: 100%;
    flex: 1;
    text-align: center;
}
.project .content .main_cont > div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    height: 100%;
}

.project .content .main_cont > div .title {
    width: 0;
    height: 81px;
    font-family: 'S-CoreDream-6Bold';
    font-size: 3.8em;
    color: #10193a;
    transition: 2s;
    overflow: hidden;
}
.project.on .content .main_cont > div .title {
    width: 640px;
}
.project .content .main_cont > div .title p::after {
    content: "_";
    display: inline-block;
    animation: cursor 0.5s linear 0s infinite;
    transform: translate(-10px, 0);
}
@keyframes cursor {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.project.on .content .main_cont > div .title {
    opacity: 1;
}
.project .content .main_cont > div .text {
    margin-top: 20px;
    font-size: 1.7em;
    line-height: 28px; 
    color:#949494;
    opacity: 0;
    transition: 1s;
}
.project.on .content .main_cont > div .text {
    opacity: 1;
    transition-delay: 1.3s;
}
.project .content .main_cont > div .project_cont {
}
.project .content .main_cont > div .project_cont ul {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1205px;
    margin-top: 100px;
    gap: 170px;
}
.project .content .main_cont > div .project_cont ul .item {
    position: relative;
}
.project .content .main_cont > div .project_cont ul .item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translate(0, -50%);
    display: block;
    width: 38px;
    height: 73px;
    background: url("/images/main/icon01.png") no-repeat center;
    opacity: 0;
    transition: 1s;
}
.project .content .main_cont > div .project_cont ul .item:first-child::after {
    display: none;
}
.project.on .content .main_cont > div .project_cont ul .item::after {
    opacity: 1;
    transition-delay: 2.1s;
}
.project .content .main_cont > div .project_cont ul .item .img {
    width: 95px;
    height: 115px;
    margin: 0 auto;
    opacity: 0;
    transition: 1s;
}
.project.on .content .main_cont > div .project_cont ul .item .img {
    opacity: 1;
    transition-delay: 1.6s;

}
.project .content .main_cont > div .project_cont ul .item .img img {
    height: 100%;
    object-fit: contain;
}

.project .content .main_cont > div .project_cont ul .item > p {
    font-family: 'S-CoreDream-6Bold';
    font-size: 1.8em;
    color: #10193a;
    opacity: 0;
    transition: 1s;
    transform: translate(0, -30px);
}
.project.on .content .main_cont > div .project_cont ul .item > p {
    opacity: 1;
    transition-delay: 1.9s;
    transform: translate(0, 0);
}

/* banner */
.banner {
    position: relative;
    width: 100%;
    color: #fff;
    /* background-color: #10193a; */
    
}
.banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url(/images/common/footer_banner.jpg) no-repeat center center;
    background-size: cover;
    filter: grayscale(1) brightness(0.8);
    transition: all 1s;
}
.banner:hover::before {
    filter: grayscale(0) brightness(1);
}
.banner .banner_cont {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1245px;
    height: 280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.banner .banner_cont .banner_text {
    font-size: 2.2em;
}


.banner .banner_cont .banner_btn {
    /* margin-top: 40px;
    position: relative; */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.banner .banner_cont .banner_btn.show {
    opacity: 1;
    
}
.banner .banner_cont .banner_btn a {
    width: 142px;
    padding: 8px 0;
    font-size: 1.5em;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 25px;
    box-shadow: inset 0px 4px 4px #FFFFFF24;
    pointer-events: auto;
}

@media(max-width:1280px){
     /* banner */
     .banner::before {
        filter: grayscale(0) brightness(1);
    }
    .banner .banner_cont {
        position: static;
        flex-direction: column-reverse;
        width: 100%;
        height: 150px;
        max-width: auto;
        padding: 15px 0;
        gap: 10px;
        background: url(/images/common/m/footer_banner.jpg) no-repeat center center;
        background-size: cover;
    }
    .banner .banner_cont .banner_text {
        font-size: 1.1em;
    }
    .banner .banner_cont .banner_btn {
        margin-top: 10px;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        opacity: 1;
        pointer-events:auto;
    }
    .banner .banner_cont .banner_btn a {
        width: 142px;
        padding: 5px 0;
        font-size: 1em;
    }
}

/* 태블릿 */
@media (max-width: 1024px) {
    /* visual - 텍스트 타이핑 */
    .visual .content .main_text {
        left: 80px;
    }
    /* visual_  */
    .visual_questions {}
    .visual_questions .title {
        left: 80px;
    }
    /* visual - 슬라이드 */
    .visual .content .main_swiper {
        height: 100%;
    }
    .visual .content .main_swiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.5);
    }
}

/* 모바일 */
@media (max-width: 768px) {
    /* visual */
    .visual .content {
        height: 80vw;
    }
    /* visual - 텍스트 타이핑 */
    .visual .content .main_text {
        top: 90px;
        left: 20px;
    }
    .visual .content .main_text .text_typing > p {
        width: 220px;
        font-size: 2.7em;
        word-break: keep-all;
    }
    .visual .content .main_text .sub_text {
        margin-top: 15px;
        font-size: 1.3em;
    }
    /* visual - 서브슬라이드 */
    .visual .content .sub {
        width: 90vw;
        right: auto;
        left: 20px;
        bottom: 20px;
        height: 25px;
    }
    .visual .content .sub .sub_swiper .swiper-slide {
        font-size: 0.8em;
    }
    .visual .content .sub .sub_swiper .swiper-slide span {
        width: 18px;
    }
    .visual .content .sub .sub_swiper .swiper-slide.slide01 span {width: 26px;}
    .visual .content .sub .sub_swiper .swiper-slide.slide02 span {width: 18px;}
    .visual .content .sub .sub_swiper .swiper-slide.slide03 span {width: 18px;}
    .visual .content .sub .sub_swiper .swiper-slide.slide04 span {width: 20px;}
    .visual .content .sub .sub_swiper .swiper-slide.slide05 span {width: 26px;}
    /* visual - 슬라이드 버튼 */
    .visual .content .visual_btn .swiper_prev,
    .visual .content .visual_btn .swiper_next {
        display: none;
    }
    /* visual - questions */
    .visual_questions {
        margin: 50px 0 20px;
    }
    .visual_questions .title {
        position: relative;
        display: inline-block;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, 0);
        padding: 5px 15px 5px 55px;
        font-size: 1.1em;
        line-height: 20px;
        border: 1px solid #191919;
    }
    .visual_questions .title::before {
        left: 11px;
        width: 28px;
        height: 28px;
        font-size: 16px;
        line-height: 29px;
    }
    .visual_questions .title:hover {
        color: #191919;
        background-color: #fff;
    }
    .visual_questions .title:hover::before {
        color: #191919;
        background-color: #e1e1e1;
    }
    .visual_questions .text_box {
        display: block;
        position: static;
        top: auto;
        left: auto;
        transform: none;
        border: none;
        margin-top: 20px;
        padding: 0;
        font-size: 0.9em;
        letter-spacing: -0.5px;
        background-color: transparent;
    }
    .visual_questions .text_box > div {
        margin-bottom: 10px;
    }
    .visual_questions .text_box > div .mo_margin {
        display: inline-block;
        margin-top: 10px;
    } 
    .visual_questions .text_box > div .color_effect_mo {
        font-family: 'S-CoreDream-7ExtraBold';
        color: #1d3487;
    }
    .visual_questions .text_box .img {
        position: static;
        bottom: auto;
        left: auto;
        transform: none;
        width: 75%;
        height: auto;
        margin: 30px auto;
    }
    .visual_questions .text_box .close {
        display: none;
    }

    /* work */
    .work {
        padding: 30px 0;
        background: none;
    }
    .work .content .img {
        width: 85%;
        height: auto;
        overflow: inherit;
    }
    .work .content .img img {
        position: static;
        left: auto;
        bottom: auto;
    }
    .work .content .text {
        width: 100%;
        font-size: 2em;
    }
    .work .content .text > div {
        height: 45px;
        line-height: 45px;
    }
    .work .content .text > div.text02 {
        align-items: center;
        flex-flow: column;
        gap: 0;
        height: auto;
        line-height: auto;
    }
    .work .content .text > div.text02 .rolling_text {
        height: 45px;
        line-height: 43px;
        padding: 0 30px;
        color: #21bf82;
        border: 2px solid #1d3487;
        box-sizing: border-box;
        overflow: hidden;
    }
    .work .content .text > div.text02 .rolling_text > ul {
        height: 100%;
        
    }


    .work .content .text > div.rolling_text {
        padding: 0 10px;
    }
    .work .content .text > div.rolling_text > ul {
        height: 100%;
        
    }
    .work .content .btn {
        margin: 20px auto;
    }
    .work .content .btn a {
        height: 36px;
        padding: 0 20px;
        line-height: 32px;
        font-size: 1.1em;
    }


    /* portfolio */
    .portfolio {
        padding: 60px 0 0 0;
    }
    .portfolio > h2 {
        font-size: 1.9em;
    }
    /* portfolio - 커스텀 페이지 네이션 */
    .portfolio .content .port_menu {
        margin-top: 10px;
    }
    .portfolio .content .port_menu ul {
        gap: 5px;
    }
    .portfolio .content .port_menu ul .swiper-pagination-bullet {
        padding: 0 5px;
        font-size: 1em;
    }
    /* portfolio - 메인 */
    .portfolio .content .port_box {
        padding: 0 30px;
    }
    .portfolio .content .port_box .portfolio_swiper {
        margin: 20px 0 0 0;
    }
    .portfolio .content .port_box .portfolio_swiper .swiper-wrapper .swiper-slide {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 5px;
    }
    .portfolio .content .port_box .portfolio_swiper .swiper-wrapper .swiper-slide .items .text {
        padding: 3px 0 0 0;
    }
    .portfolio .content .port_box .portfolio_swiper .swiper-wrapper .swiper-slide .items .text p {
        font-size: 1.3em;
        line-height: 20px;
    }
    .portfolio .content .port_box .portfolio_swiper .swiper-wrapper .swiper-slide .items .text span {
        font-size: 1.1em;
    }
    /* portfolio - btn */
    .portfolio .content .port_box .port_btn {
        display: none;
    }
    .portfolio .content .port_more {
        width: 150px;
        margin: 20px auto 0 auto;
    }
    .portfolio .content .port_more a {
        padding: 5px 0;
        font-size: 1em;
        border-radius: 25px;
    }
    .portfolio .content .port_more a:hover {
        color: #fff;
        background-color: #1d3487;
    }

    /* project */
    .project {
        /* height: 560px; */
    }
    .project .content .main_cont > div .title {
        height: 40px;
        font-size: 1.9em;
        opacity: 0;
    }
    .project .content .main_cont > div .title p::after {
        content: "_";
        display: inline-block;
        animation: cursor 0.5s linear 0s infinite;
        transform: translate(-10px, 0);
    }
    .project.on .content .main_cont > div .title {
        opacity: 1;
        width: 310px;
    }
    .project .content .main_cont > div .text {
        margin-top: 10px;
        font-size: 1em;
        line-height: 20px; 
    }
    .project.on .content .main_cont > div .text {
        transition-delay: 0.3s;
    }

    .project .content .main_cont > div .project_cont {
    }
    .project .content .main_cont > div .project_cont ul {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: auto;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 25px;
        gap: 40px;
    }
    .project .content .main_cont > div .project_cont ul .item {
        width: 135px;
    }
    .project .content .main_cont > div .project_cont ul .item::after {
        width: 20px;
        height: 37px;
        background: url("/images/main/icon01.png") no-repeat center;
        background-size: cover;
    }
    .project .content .main_cont > div .project_cont ul .item:nth-child(3) {
        order: 4;
    }
    .project .content .main_cont > div .project_cont ul .item:nth-child(4) {
        order: 3;
    }

    .project .content .main_cont > div .project_cont ul .item:nth-child(2)::after {
        top: 50%;
        left: -30px;
        transform: translate(0, -50%);
    }
    .project .content .main_cont > div .project_cont ul .item:nth-child(3)::after {
        top: -35px;
        left: 50%;
        transform: translate(-50%, 0) rotate(90deg);
    }
    .project .content .main_cont > div .project_cont ul .item:nth-child(4)::after {
        top: 50%;
        left: auto;
        right: -30px;
        transform: translate(0, -50%) rotate(180deg);
    }
    .project.on .content .main_cont > div .project_cont ul .item::after {
        opacity: 1;
        transition-delay: 1.2s;
    }
    .project .content .main_cont > div .project_cont ul .item .img {
        width: 55px;
        height: 65px;
    }
    .project.on .content .main_cont > div .project_cont ul .item .img {
        transition-delay: 0.6s;
    }

    .project .content .main_cont > div .project_cont ul .item > p {
        font-size: 1.1em;
    }
    .project.on .content .main_cont > div .project_cont ul .item > p {
        transition-delay: 0.9s;
    }

   
}