@charset "utf-8";

.main .go-top {
  top: inherit;
  bottom: 40px;
}

.main.fp-viewing-page5 .go-top {
  top: inherit;
  bottom: 285px;
}

.main-section {
  overflow: hidden;
  background-color: #fff;
  z-index: 0;
}

.main-visual {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
  z-index: 10;
  background-color: var(--color-gray1);
}

.main-visual .arr-down {
  position: absolute;
  left: 50%;
  bottom: 30px;
  margin-left: -23px;
  width: 46px;
  height: 36px;
  z-index: 10;
}

.main-visual .arr-down a {
  display: block;
  width: 46px;
  height: 36px;
  background: url(../images/main/ic_scroll_down.svg) center no-repeat;
  text-indent: -9999px;
  text-align: left;
  overflow: hidden;
}

.main-visual .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-gray1);
}

.main-visual .swiper-slide video {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
}

.visual-copy {
  width: 100%;
  max-width: 1200px;
  margin: 80px auto 0 auto;
  text-align: left;
  padding: 0 80px;
  position: relative;
  z-index: 10;
}

.visual-copy .main-copy {
  font-size: 82px;
  font-weight: 800;
  line-height: 1.19em;
  color: #fff;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s 0.4s;
}

.main-visual .swiper-slide.swiper-slide-active .main-copy {
  transform: translateY(0);
  opacity: 1;
}

/* 2023-05-02 추가 */

.visual-swiper-control {
  position: absolute;
  left: 50%;
  margin-left: -600px;
  bottom: 80px;
  color: #fff;
  display: flex;
  align-items: center;
  z-index: 100;
}

.visual-progressbar {
  width: 80px;
  height: 3px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
  transition: .3s opacity;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 14px;
}

.visual-progressbar .bar {
  display: block;
  content: '';
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
}

.visual-progressbar.play .bar {
  animation: barMotion 5s forwards linear;
}

@keyframes barMotion {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.visual-swiper-paging.swiper-pagination-progressbar {
  width: 80px;
  height: 3px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
  transition: .3s opacity;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 14px;
}

.visual-swiper-paging.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.visual-swiper-control .swiper-pagination {
  display: flex;
  align-items: center;
  margin-right: 30px;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

.visual-swiper-control .swiper-pagination .current-page,
.visual-swiper-control .swiper-pagination .total-page {
  width: 24px;
  text-align: center;
}

.visual-swiper-control .btn-swiper-prev,
.visual-swiper-control .btn-swiper-next,
.visual-swiper-control .btn-swiper-stop {
  width: 20px;
  height: 20px;
  text-align: left;
  text-indent: -9999px;
  overflow: hidden;
  margin: 0 5px;
}

.visual-swiper-control .btn-swiper-prev {
  background: url(../images/main/i_slider_prev_next.svg) 0 0 no-repeat;
}

.visual-swiper-control .btn-swiper-next {
  background: url(../images/main/i_slider_prev_next.svg) -30px 0 no-repeat;
}

.visual-swiper-control .btn-swiper-stop {
  background: url(../images/main/i_slider_stop.svg) center 0 no-repeat;
}

.visual-swiper-control .btn-swiper-stop.on {
  opacity: 0.3;
}

.main-visual .arr-down {
  opacity: 1;
  animation: arrMotion 1.5s infinite;
}

@keyframes arrMotion {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: translate(0, -10px);
    opacity: 0.5;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.main-section .main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
}

.main-title {
  font-size: 48px;
  line-height: 1.3em;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.main-title-sub {
  font-size: 18px;
  line-height: 1.44em;
  margin-top: 16px;
  color: var(--color-gray3);
}

.main-section .go-more {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 1.45em;
  font-weight: 600;
}

.main-section .go-more .i-go {
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  border: 2px solid #212126;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  margin-left: 12px;
}

.main-section .go-more .i-go:before,
.main-section .go-more .i-go:after {
  display: block;
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
}

.main-section .go-more .i-go:before {
  background: url(../images/main/i_go_arr.svg) center -36px no-repeat;
  transform: translateX(-30px);
  transition: transform 0.2s 0.1s;
}

.main-section .go-more .i-go:after {
  background: url(../images/main/i_go_arr.svg) center 0 no-repeat;
  transition: transform 0.2s;
}

.main-section .go-more:hover .i-go {
  background-color: var(--color-blue1);
  border: 0;
}

.main-section .go-more:hover .i-go:before {
  transform: translateX(0);
}

.main-section .go-more:hover .i-go:after {
  transform: translateX(36px);
}

.fp-scroller {
  transition-duration: 500ms !important;
}

.sec-intro {
  background-color: #fff;
}

.sec-intro .main-inner {
  max-width: 100%;
}

.intro-title {
  position: relative;
  margin: 0 auto 42px auto;
  max-width: 1200px;
}

.intro-title .go-more {
  position: absolute;
  right: 0;
  bottom: 0;
}

.main-intro-slider {
  position: relative;
  overflow: hidden;
  margin: 0 -80px;
}

.main-intro-slider img {
  border-radius: 10px;
  position: absolute;
  width: auto;
}

.sec-service .main-inner {
  position: relative;
}

.service-title .go-more {
  margin-top: 32px;
}

.main-service-list {
  max-width: 894px;
  height: 588px;
  position: relative;
  transform: translate(0, -158px);
  margin-bottom: -158px;
  margin-left: auto;
}

.main-service-list li {
  width: 282px;
  height: 282px;
  position: absolute;
}

.main-service-list a {
  display: block;
  height: 100%;
  padding: 65px 0 0 0;
  position: relative;
  background-color: #F6F8FC;
  border-radius: 10px;
  box-sizing: border-box;
  font-weight: 700;
  transition: all 0.3s;
  overflow: hidden;
}

.main-service-list a:before {
  display: block;
  content: '';
  box-sizing: border-box;
  width: 132px;
  height: 132px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
}

.main-service-list a:after {
  display: block;
  content: '';
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff url(../images/main/i_go_arr_blue.svg) center center no-repeat;
  position: absolute;
  right: 30px;
  bottom: 30px;
  transition: right 0.3s;
  opacity: 0;
}

.main-service-list .cloud a:before {
  background-image: url(../images/main/i_service_cloud.png);
}

.main-service-list .ai a:before {
  background-image: url(../images/main/i_service_ai.png);
}

.main-service-list .hosting a:before {
  background-image: url(../images/main/i_service_hosting.png);
}

.main-service-list .data a:before {
  background-image: url(../images/main/i_service_data.png);
}

.main-service-list .s-name {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  position: absolute;
  left: 30px;
  bottom: 30px;
}

.main-service-list a:hover,
.main-service-list a:active {
  background-color: var(--color-blue1);
}

.main-service-list a:hover .s-name,
.main-service-list a:active .s-name {
  color: #fff;
}

.main-service-list a:hover:after,
.main-service-list a:active:after {
  opacity: 1;
}

.main-service-list .cloud a:hover:before {
  background-image: url(../images/main/i_service_cloud_on.png);
}

.main-service-list .ai a:hover:before {
  background-image: url(../images/main/i_service_ai_on.png);
}

.main-service-list .hosting a:hover:before {
  background-image: url(../images/main/i_service_hosting_on.png);
}

.main-service-list .data a:hover:before {
  background-image: url(../images/main/i_service_data_on.png);
}

.main-service-list .cloud {
  left: 306px;
  top: 0;
}

.main-service-list .ai {
  left: 0;
  top: 226px;
}

.main-service-list .hosting {
  left: 306px;
  top: 306px;
}

.main-service-list .data {
  left: 612px;
  top: 80px;
}

.sec-news .main-inner {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.sec-news .go-more {
  position: absolute;
  right: 0;
  top: 32px;
}

.news-title {
  margin-bottom: 50px;
}

.main-news-list ul {
  display: flex;
  margin: 0 -12px;
}

.main-news-list ul li {
  width: 384px;
  margin: 0 12px;
}

.main-news-list a {
  display: flex;
  flex-direction: column;
}

.main-news-list .photo {
  position: relative;
  height: 0;
  padding-top: 57.29%;
}

.main-news-list .photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  transition: all 0.3s;
}

.main-news-list .title {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 16px;
  font-weight: 700;
}

.main-news-list .date {
  margin-top: auto;
  font-size: 16px;
  line-height: 1.5em;
  color: #AAAAAE;
  font-weight: 500;
}

.main-news-list a:hover .photo img {
  top: -10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.main-news-list a:hover .title {
  color: var(--color-blue1);
}

/* popup */
.overlay{display:none;position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;z-index:10;background-color: rgba(0,0,0,0.5);}
.overlay.show{display: block;}
/* notice popup */
.popup-notice {display:none;position: fixed;left: 50%;top: 50%;width:949px;height:90%;overflow-y: auto;box-sizing: border-box;background-color: #fff;box-shadow: 0 2px 4px 0 rgb(0 0 0 / 33%);transform: translate(-50%, -50%);-webkit-transform: translate(-50%, -50%);-moz-transform: translate(-50%, -50%);-ms-transform: translate(-50%, -50%);-o-transform: translate(-50%, -50%);transition:width 0.5s;-webkit-transition:width 0.5s;-moz-transition:width 0.5s;-ms-transition:width 0.5s;-o-transition:width 0.5s; z-index: 99;padding: 40px;}
.popup-notice.show {display:block;}
.popup-notice .popup-header, .popup-notice.privacy .popup-contents .pr-intro, .popup-notice.privacy .popup-contents .title-pr + p, .popup-notice.privacy .popup-contents .change-pr-area, .popup-notice.privacy .popup-contents .change-pr-area li>h4 + p, .popup-notice.privacy .popup-contents .change-pr-area li>.bx-change-pr{margin-bottom: 7px;}
.popup-notice .popup-header{padding-top:20px;}
.popup-notice .popup-header .popup-title{font-size:24px;line-height:1.46em;}
.popup-notice.privacy .popup-contents{font-size:14px;line-height:1.25em;}
.popup-notice.privacy .popup-contents .title-pr{font-size:14px;font-weight:400;}
.popup-notice.privacy .popup-contents .title-pr:last-of-type{margin-top:16px;}
.popup-notice.privacy .popup-contents .title-pr + p{padding-left:7px;line-height:1.42em;}
.popup-notice.privacy .popup-contents .change-pr-area{font-size:10px;}
.popup-notice.privacy .popup-contents .change-pr-area li{margin-top: 6px;}
.popup-notice.privacy .popup-contents .change-pr-area li:first-child {margin-top:0;}
.popup-notice.privacy .popup-contents .change-pr-area li>h4.tit-change-pr{font-size:14px;;font-weight: 400;margin-bottom:2px;}
.popup-notice.privacy .popup-contents .change-pr-area li>h4.tit-change-pr + p {font-size:14px;padding-left:7px;}
.popup-notice.privacy .popup-contents .pr-thanks{margin-top:16px;}
.popup-notice.privacy .popup-contents .change-pr-area .bx-change-pr{display: flex;flex-direction:row;}
.popup-notice.privacy .popup-contents .change-pr-area .bx-change-pr>.bx-change-cont{display:flex;flex-direction:column;width:50%;padding-right:9px;}
.popup-notice.privacy .popup-contents .change-pr-area .bx-change-pr>.bx-change-cont + .bx-change-cont{padding-right:0;padding-left:9px;}
.popup-notice.privacy .popup-contents .change-pr-area .bx-change-pr .bx-change-cont>strong{font-size:12px;line-height:1.42em;background-color:#777;color:#fff;text-align:center;padding:2px 0 1px;}
.popup-notice.privacy .popup-contents .change-pr-area .bx-change-pr .bx-change-cont>strong + p{padding:4px 5px;line-height:1.8;min-height:64px;word-wrap:break-word;word-break:keep-all;}
.popup-notice.privacy .popup-footer .btn-pop-footer-close{display:flex;min-width:150px;height:33px;margin:10px auto;justify-content: center;}
.popup-notice .btn-pop-close{position: absolute;top:20px;right:20px;width:20px;height:20px;background: url(../images/contents/i_close_popup.png) no-repeat center center;background-size:20px 20px;}

/* mobile ******************************************************************* */

@media all and (max-width: 1360px) {
  .main-section .main-inner {
    margin: 0 80px;
  }

  .visual-swiper-control {
    left: 80px;
    margin-left: 0;
  }
}

@media all and (max-width: 1240px) {
  .popup-notice{width:960px;}
}

@media all and (max-width: 1099.99px) {

  html:not(.no-js) [data-aos=fade-up] {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }

  .main-section [data-aos][data-aos-delay="300"].aos-animate,
  .main-section [data-aos][data-aos-delay="400"].aos-animate,
  .main-section [data-aos][data-aos-delay="500"].aos-animate {
    transition-delay: 0s;
  }

  .main-section [data-aos][data-aos-delay="600"].aos-animate {
    transition-delay: 0.1s;
  }

  .main-section [data-aos][data-aos-delay="700"].aos-animate {
    transition-delay: 0.2s;
  }

  .main-section [data-aos][data-aos-delay="800"].aos-animate {
    transition-delay: 0.3s;
  }

  .visual-copy {
    padding: 0 20px;
  }

  .main-section .main-inner {
    padding: 120px 0;
    margin: 0 20px;
  }

  .main-intro-slider {
    margin: 0 -20px;
  }

  .main-section {
    height: auto !important;
  }

  .main-section .main-inner {
    padding: 40px 0;
  }

  .fp-tableCell {
    height: auto !important;
  }

  .fp-scrollable {
    height: auto !important;
    overflow: auto;
    position: inherit;
  }

  .main-visual {
    position: relative;
  }

  .sec-visual,
  .sec-visual .fp-tableCell,
  .sec-visual .main-visual {
    height: 580px !important;
  }

  .main-visual .arr-down {
    display: none;
  }

  .visual-copy {
    margin: 0;
  }

  .visual-copy .main-copy {
    font-size: 46px;
    line-height: 1.3em;
  }

  .visual-swiper-control {
    left: 20px;
    margin-left: 0;
    bottom: 32px;
    right: 20px;
  }

  .visual-swiper-control .btn-swiper-prev {
    margin: 0 0 0 auto;
  }

  .visual-swiper-control .btn-swiper-next {
    margin: 0 0 0 10px;
  }

  .visual-swiper-control .swiper-pagination {
    font-size: 16px;
  }

  .main-title {
    font-size: 26px;
    line-height: 1.3em;
  }

  .main-title-sub {
    font-size: 16px;
    line-height: 1.5em;
    margin-top: 12px;
  }

  .sec-intro .main-inner {
    padding-top: 60px;
  }

  .intro-title {
    margin-bottom: 40px;
  }

  .intro-title .go-more {
    position: relative;
    margin-top: 28px;
  }

  .main-section .go-more {
    font-size: 15px;
    height: 24px;
  }

  .main-section .go-more .i-go {
    width: 22px;
    height: 22px;
    margin-left: 8px;
    border-width: 1.5px;
    border: none;
    background: url(../images/main/i_go_line.svg) 0 0 no-repeat;
  }

  .main-section .go-more .i-go:before,
  .main-section .go-more .i-go:after {
    width: 10px;
    height: 10px;
    background-size: 100% auto;
    margin: -5px 0 0 -5px;
  }

  .main-section .go-more .i-go:before {
    background-position: 0 -23px;
    transform: translateX(-22px);
  }

  .main-section .go-more .i-go:after {
    background-position: 0 0;
  }

  .main-section .go-more:hover .i-go {
    background-image: none;
  }

  .main-section .go-more:hover .i-go:before {
    transform: translateX(0);
  }

  .main-section .go-more:hover .i-go:after {
    transform: translateX(22px);
  }

  .service-title {
    margin-bottom: 10px;
  }

  .service-title .go-more {
    margin-top: 28px;
  }

  .main-service-list {
    width: auto;
    transform: none;
    margin: -6px;
    display: flex;
    flex-wrap: wrap;
    max-width: calc(100% + 12px);
    height: auto;
    padding-bottom: 60px;
  }

  .main-service-list li {
    position: relative;
    left: initial !important;
    top: initial !important;
    width: calc(50% - 12px);
    height: calc(50vw - 12px - 20px);
    margin: 6px;
  }

  .main-service-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .main-service-list a:before {
    width: 160px;
    height: 160px;
    transform: translateY(-9px);
  }

  .main-service-list li:nth-child(1) a,
  .main-service-list li:nth-child(3) a {
    transform: translateY(60px);
  }

  .main-service-list .s-name {
    font-size: 15px;
    line-height: 1.6em;
    left: 16px;
    bottom: 14px;
  }

  .sec-news .main-inner {
    padding-bottom: 80px;
    margin: 0 20px;
  }

  .news-title {
    margin-bottom: 32px;
  }

  .main-news-list ul {
    display: block;
  }

  .main-news-list ul li {
    width: auto;
    margin-bottom: 40px;
  }

  .main-news-list .title {
    margin: 16px 0 6px;
    font-size: 16px;
    line-height: 1.5em;
  }

  .main-news-list .date {
    font-size: 14px;
    line-height: 1.71em;
  }

  .sec-news .go-more {
    position: relative;
    left: initial;
    top: initial;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .popup-notice{width:600px;}
  .popup-notice.privacy .popup-contents .change-pr-area .bx-change-pr{flex-direction:column;}
  .popup-notice.privacy .popup-contents .change-pr-area .bx-change-pr>.bx-change-cont{width:100%;padding-right:0;}
  .popup-notice.privacy .popup-contents .change-pr-area .bx-change-pr>.bx-change-cont + .bx-change-cont{margin-top:6px;padding-left:0;}
  .popup-notice.privacy .popup-contents .change-pr-area .bx-change-pr .bx-change-cont>strong + p{min-height:auto;padding:4px 0;}

}
@media all and (max-width:640px){
  .popup-notice{width:95%;padding:20px;}
}
@media all and (max-width: 532px) {
  .main-service-list a:before {
    width: 80px;
    height: 80px;
    transform: translateY(-9px);
  }

  .main-service-list a:after {
    right: 16px;
    bottom: 16px;
    width: 20px;
    height: 20px;
    background-size: 10px auto;
    background-image: url(../images/main/i_go_arr_blue_m.svg);
    background-position: 55% center;
  }
}
