/* Visual */
.visual {
  overflow:hidden;
  height:100vh;
  background-color: #fff;
  position: relative;
}

.visual .swiper-container {
  height:100%;
}

.visual .swiper-wrapper {
  height:100%;
}

.visual .swiper-slide {
  overflow:hidden;
  height:100%;
}

.visual .background {
    height:100%;
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
    transition-property: transform;
    transition-timing-function: linear;
    transition-delay: 1s;
    transition-duration: 0s;
    transform: scale(1.1);
    background-color: #ccc;
}

.visual .swiper-slide.swiper-slide-active .background {
    transition-delay: 0s;
    transition-duration: 5s;
    transform: scale(1);
}

.visual .swiper-container-initialized {
  opacity: 1;

}
.swiper.swiper-container-initialized,
.swiper.swiper-container-initialized .swiper-pagination{
 -webkit-transform: none; transform: none; opacity: 1;
}

.visual .background--1 {
  background-image: url('/img/main/visual1.png');
}

.visual .background--2 {
  background-image: url('/img/main/visual2.png');
}

.visual .background--3 {
  background-image: url('/img/main/visual3.png');
}

.visual .background--4 {
  background-image: url('/img/main/visual4.png');
}

.visual .context {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width:100%;
  height:100%;
  max-width:1320px;
  margin:0 auto;
  padding:0 20px;
  text-align: center;
  position: absolute;
  top:0;
  left:0;
  bottom:0;
  right:0;
}

.visual .context .tit {
  font-size:5.6rem;
  color:#fff;
  font-weight:400;
  line-height:1.3;
  margin-bottom:40px;
}

.visual .context .tit span {
  font-weight:900;
  color:#1fb8df;
}

.visual .context .txt {
  font-size:2.2rem;
  color:#ffffff;
  line-height:2;
}

.visual .context .txt span {
  font-weight:700;
  color:#1fb8df;
}

.visual .pagination-control {
  position: absolute;
  width:240px;
  bottom:200px;
  left:50%;
  transform: translateX(-50%);
  z-index:100;
  color:#fff;
  display: flex;
  align-items:center;
  justify-content: center;
}

.swiper-progress-bar {
  position: relative;
  width:160px;
  display: block;
  z-index: 1;
  height: 2px;
  overflow: hidden;
}

.swiper-progress-bar.active .slide_progress-bar{
   opacity: 1;
}

.swiper-progress-bar.animate .slide_progress-bar::after {
  transition: width linear;
  transition-delay: unset;
  width: 100%;
  transition-duration: 5s;
}

.slide_progress-bar {
  position: absolute;
  height: 2px;
  background: #888;
  width: auto;
  clear: both;
  opacity: 0;
  /* bottom: 45px; */
  left: 0;
  right: 0;
  display: flex;
  align-items:center;
  justify-content: center;
}

.slide_progress-bar:after {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  height: 100%;
  width: 0;
  content: "";
  transition: 0.1s width linear;
}

.swiper-pagination {
  position: absolute;
  top:0;
}

.swiper-pagination-current,
.swiper-pagination-total {
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  line-height:1;
  font-weight:700;
}

.swiper-pagination-current {
  left:0;
}

.swiper-pagination-total {
  right:0;
}


/* Large devices (desktops, less than 1200px) - lg */
@media (max-width: 1200px) {

  .visual .context .tit {
    font-size:4rem;
    margin-bottom:24px;
  }

  .visual .context .txt {
    font-size:1.8rem;
    line-height:1.4;
  }

  .visual .pagination-control {
    bottom:150px;
  }

}
/* Medium devices (tablets, less than 1024px) - md */
@media (max-width: 1024px) {

  .visual {
    height:580px;
  }

  /* .visual .pagination-control {
    bottom:120px;
  } */

}
/* Small devices (landscape phones, less than 767px) - sm */
@media (max-width: 767px) {

  .visual {
    height:100vh;
  }

  .visual .context .tit {
    font-size:2.6rem;
    margin-bottom:12px;
  }

  .visual .context .txt {
    font-size:1.6rem;
  }

  .visual .pagination-control {
    display: none;
  }

  /* .visual .pagination-control {
    display: none;
  } */

}
/* Extra small devices (portrait phones, less than 500px) - xl */
@media (max-width: 500px) {

}


/* Intro */
.intro {
  padding:80px 0px;
}

.intro .tit {
  font-size:4rem;
  font-weight:300;
}

.intro .tit span {
  font-weight:700;
  color:#1fb8df;
}

.intro .txt {
  font-size:1.8rem;
  line-height:1.7;
  font-weight:300;
  color:#333333;
  margin-bottom:40px;
}

.intro .txt:last-child {
  margin-bottom:0px;
}

.intro__direction {
  display:flex;
  flex-wrap: wrap;
}

.intro__left,
.intro__right {
  width:50%;
  overflow: hidden;
}
/* Large devices (desktops, less than 1200px) - lg */
@media (max-width: 1200px) {

  .intro {
    padding:60px 0px;
  }

  .intro .tit {
    font-size:2.8rem;
  }

  .intro .txt {
    font-size:1.6rem;
    margin-bottom:24px;
  }

}
/* Medium devices (tablets, less than 1024px) - md */
@media (max-width: 1024px) {

  .intro__left {
    margin-bottom:30px;
  }

  .intro__left, .intro__right {
    width:100%;
  }

}
/* Small devices (landscape phones, less than 767px) - sm */
@media (max-width: 767px) {

  .intro {
    padding:40px 0px;
  }

  .intro__left {
    margin-bottom:22px;
  }

  .intro .tit {
    font-size:2.2rem;
  }

  .intro .txt {
    font-size:1.5rem;
    margin-bottom:12px;
  }

}
/* Extra small devices (portrait phones, less than 500px) - xl */
@media (max-width: 500px) {

}


/* Business */
.business {
  width:100%;
  height:480px;
  background-image: url('/img/main/business-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  position: relative;
  overflow: hidden;
}

.business-container {
  width:100%;
  height:100%;
  position: relative;
}

.business-inner {
  width:100%;
  height:100%;
  display: flex;
}

.business__left {
  width:600px;
  position:relative;
  z-index:10;
}

.business__right {
  width:calc(100% - 600px);
  position: relative;
  height:100%;
}

.business__left li {
  height:240px;
  /* background-color: rgba(0,0,0,.7); */
  border-bottom:1px solid rgba(213,213,213,.5);
  font-size:0px;
  cursor:pointer;
  transition:all .3s ease;
  position: relative;
}
.business__left li:before{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,.3);
  opacity: 0;
  content:'';
  transition: .5s;
}
.business__left li.on:before{
  opacity: 1;
}
/* .business__left li.on {
  background-color: #67be8d;
} */

.business__left li.bg01{
  background: url('/img/sub/sv1.png')no-repeat center center /cover;
}
.business__left li.bg02{
  background: url('/img/sub/sv2.png')no-repeat center center /cover;
}

.business__left .txt {
  padding:40px;
  width:100%;
  height:100%;
  display: flex;
  align-items: flex-end;
}

.business__left p {
  font-size:2.8rem;
  color:#fff;
}

.business__right li {
  width:100%;
  height:100%;
  position: absolute;
  top:50%;
  left: 0;
  transform: translateY(-50%);
  font-size:0px;
  opacity:0;
  transition:opacity .3s ease;
}

.business__right li::before {
  content:"";
  display: block;
  position: absolute;
  width:100vw;
  height:100%;
  top:0;
  right:0;
  bottom:0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index:1;
}

.business__right .vg--1::before {
  background-image: url('/img/sub/sv1.png');
}

.business__right .vg--2::before {
  background-image: url('/img/sub/sv2.png');
}


.business__right li.active {
  opacity:1;
}

.business__right .box {
  max-width:970px;
  width:100%;
  height:100%;
  padding:0px 80px;
  position: relative;
  z-index:2;
  display:flex;
  flex-direction: column;
  justify-content: center;
}

.business__right h2 {
  font-size:4rem;
  font-weight:700;
  color:#fff;
  line-height:1.4;
}

.business__right p {
  color:#fff;
  font-size:1.8rem;
  margin-top:40px;
  line-height:1.5;
}


/* Large devices (desktops, less than 1200px) - lg */
@media (max-width: 1200px) {

  .business__left {
    width:400px;
  }

  .business__right {
    width:calc(100% - 400px);
  }

  .business__left .txt {
    padding:22px;
  }

  .business__left p {
    font-size:2rem;
  }

  .business__right .box {
    padding:0px 60px;
  }

  .business__right h2 {
    font-size:2.8rem;
  }

  .business__right p {
    font-size:1.6rem;
    margin-top:22px;
  }




}
/* Medium devices (tablets, less than 1024px) - md */
@media (max-width: 1024px) {


  .business {
    height:auto;
  }

  .business-inner {
    flex-wrap: wrap;
  }

  .business__left {
    width:100%;
    order:2;
    /* position:absolute;
    top:0;
    left:0; */
  }

  .business__left .txt {
    padding:20px 15px;
  }

  .business__right {
    width:100%;
    height:420px;
    order:1;
  }

  .business__left li {
    height:auto;
  }

  .business__right .box {
    /* height: auto; */
  }

  .business__right li::before {
    height:calc(100% + 124px);
  }



}
/* Small devices (landscape phones, less than 767px) - sm */
@media (max-width: 767px) {

  .business__left p {
    font-size:1.6rem;
  }

  .business__right .box {
    padding:0px 15px;
  }

  .business__right h2 {
    font-size:2.2rem;
  }

  .business__right p {
    font-size:1.4rem;
    margin-top:18px;
  }


}
/* Extra small devices (portrait phones, less than 500px) - xl */
@media (max-width: 500px) {

}

/* .pop-up-layout{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,.5);
}


@media (max-width : 576px){
  .pop-up-layout{
    width: 60vw;
  }

}

/* .pop-up-layout .pop-up-cont{
  position: relative;
  max-width: 93.75%;
} */

/*
.pop-up-layout .pop-up-cont{
  position: relative;
  max-width: 93.75%;

  display: flex;
  gap: 100px;              
  align-items: center;
}


@media (max-width : 576px) {
  .pop-up-layout .pop-up-cont{
    flex-direction: column;
    align-items: center;
  }
}

.pop-up-layout .closed-btn{
  position: absolute;
  right: 0px;
  top: -35px;
  width: 30px;
  height: 30px;
  content: '';
  cursor: pointer;
  background: url(/en/img/main/btn_modal_close.png)no-repeat center center;
} */


.pop-up-layout{
  position: fixed;
  inset: 0;
  z-index: 10001;
  background-color: rgba(0,0,0,.5);
  /* ⭐ 스크롤 생성 */
  overflow-y: auto;
  padding: 60px 20px;
}

/* 팝업 컨텐츠 */
.pop-up-layout .pop-up-cont{
  position: relative;
  max-width: 93.75%;
  margin: 0 auto;

  display: flex;
  gap: 100px;
  align-items: center;
  justify-content: center;
}

/* 닫기 버튼 (항상 보이게 화면 기준 고정) */
.pop-up-layout .closed-btn{
  position: fixed;
  top: 20px;
  right: 20px;

  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10002;

  background: url(/en/img/main/btn_modal_close.png) no-repeat center;
  background-size: contain;
}

@media (max-width: 576px){

  /* 이미지 2개만 세로 정렬 */
  .pop-up-layout .pop-up-cont{
    flex-direction: column;
    gap: 30px;
  }
}

.article-link {
  position: relative;
}

.article-link span{
  position: absolute;
  top : 80%;
  left : 50%;
  transform: translateX(-50%);
  font-size : 3rem;
}

.article-link span{
  position: absolute;
  top : 80%;
  left : 50%;
  transform: translateX(-50%);
  font-size : 2.5rem;
  font-weight: 600;
}


@media (max-width : 576px) {
  .article-link span{
    font-size : 1.2rem;
  }
}

.article-link span a{
  text-decoration: underline;
  color: #000 !important;
}


