@charset "utf-8";

.section {
  height: 100vh !important;
  position: relative;
}

/* 첫 번째 섹션 배경 슬라이더 */
.section0 {
  position: relative;
  overflow: hidden;
}

/* Swiper 배경 슬라이더 스타일 */
.bg-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.bg-swiper .swiper-slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 5s ease-in-out;
}

.bg-swiper .swiper-slide-active {
  transform: scale(1.1);
}

/* 슬라이드 컨텐츠 오버레이 */
.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.slide-navigation {
}

.slide-nav-btn {
  width: 37px;
  height: 3px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slide-nav-btn:hover,
.slide-nav-btn.active {
  background: rgba(255, 255, 255, 1);
}

.scroll-indicator {
  position: absolute;
  right: 7%;
  bottom: -77px;
  transform: translateY(-50%);
  display: flex;
  align-items: start;
  z-index: 1000;
}

.scroll-text {
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: center;
  white-space: nowrap;
  margin-top: 24px;
  letter-spacing: 1px;
}

.scroll-line-container {
  position: relative;
  width: 1px;
  height: 160px;
}
.scroll-line-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: rgba(255, 255, 255, 0.9);
  animation: fillLine 5s ease-in-out infinite;
}

@keyframes fillLine {
  0% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

/* 다른 섹션들 스타일 */
.section1,
.section2,
.section3{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* height: 100vh; */
 }

 .section_inner {
   width: 100%;
   height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 /* Swiper 커스텀 페이지네이션 숨김 */
.bg-swiper .swiper-pagination {
  display: none;
}

.ms1_box1_wrap {
  position: absolute;
  bottom: 5%;
}

.ms1_box1 {
  background: #2277b4be;
  border-radius: 20px;
  width: 235px;
  height: 110px;
}

.ms1_box1 {
  background: #2277b4be;
  backdrop-filter: blur(10px);
  border: 1px solid#2277b4be;
  transition: all 0.3s ease;
}

.ms1_box1:hover {
  background: #3599e0be;
  transform: translateY(-5px);
}

.ms1_box1 img {
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
}

.ms1_box1:hover img {
  transform: scale(1.1) rotate(5deg);
}
.bottom-service-section {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.288);
  padding: 20px 0;
  backdrop-filter: blur(10px);
  z-index: 30;
  width: 100%;
}

.bottom-service-section .ms2_box1 {
  background-color: #344872;
  border-radius: 30px;
  padding: 10px 20px;
  transition: 0.2s all ease;
}
.ms2_box1:hover{
  background-color: rgba(75, 110, 182, 0.81);
}
.slide-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 0;
  pointer-events: none;
  z-index: 10;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: all;
}

.slide-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.slide-prev {
  left: 250px;
}

.slide-next {
  right: 250px;
}

.section3 .s3_content {
  width: 1270px;
}

.section3 .left {
  width: 48%;
  height: 100%;
}
.section3 .left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section3 .right {
  width: 45%;
  padding: 39px 40px;
}

.section3 .icon_wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fff;
}

.section3 .icon_wrap i {
  color: #1d7dc1;
}
.map_content {
  height: 83vh;
}
.main_map {
  width: 1270px;
  margin: 0 auto;
  height: 46%;
}
/*.s3_content {*/
/*  height: 60%;*/
/*}*/
.root_daum_roughmap {
  width: 100% !important;
  height: 100% !important;
}
.root_daum_roughmap .wrap_map {
  position: relative;
  height: 100% !important;
}

.wrap_controllers {
  display: none;
}
/* 모바일 반응형 */
@media (max-width: 768px) {
  .bottom-service-section {
    bottom: 0;
    padding: 20px 0;
  }

  .bottom-service-section .ms1_box1_wrap {
    flex-direction: column;
    gap: 15px !important;
  }

  .bottom-service-section .ms1_box1 {
    min-width: 200px;
    padding: 15px 25px;
  }
  .slide-arrow {
    width: 20px;
    /* height: 50px; */
  }

  .slide-prev {
    left: 20px;
  }

  .slide-next {
    right: 20px;
  }

  .slide-arrow img {
    width: 100%;
    /* width: 20px; */
    /* height: 20px; */
    height: 100%;
  }
}
/* mobile */
@media screen and (max-width: 766px) {



  #section0 .slide-content{
    height:87vh;
  }
  .ms1_box1_wrap{
margin:0 auto;
  }
.ms1_box1{
  width: 30%;
  height: 77px;
}
  .ms1_box1:nth-child(4) {
    margin-left: calc(16.666% + 5px);
  }
  .ms1_box1 img{
    width:27px;
    height:auto;
  }

  .scroll-line-container {
    position: relative;
    width: 1px;
    height: 128px;
  }
  .map_content {
    height: 76vh;
  }
  .main_map {
    width: 90%;
    margin: 0 auto;
    height: 33%;
  }
  .section3 .s3_content {
    width: 90%;
    margin: 0 auto;
  }
  .section3 .right {
    width: 45%;
    padding: 12px;
  }
  .section3 .icon_wrap {
    width: 24px;
    height: 24px;
  }
  .m_slide4{
    background-position : 57% !important;
  }
  .m_slide5{
    background-position : 30% !important;
  }
  .m_slide6{
    background-position : 50% !important;
  }


}

/* tablet 세로기준 */
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .bottom-service-section {
    bottom: 0;
    padding: 20px 0;
  }

  .bottom-service-section .ms1_box1_wrap {
    flex-direction: column;
    gap: 15px !important;
  }

  .bottom-service-section .ms1_box1 {
    min-width: 200px;
    padding: 15px 25px;
  }
  .slide-arrow {
    width: 20px;
    /* height: 50px; */
  }

  .slide-prev {
    left: 20px;
  }

  .slide-next {
    right: 20px;
  }

  .slide-arrow img {
    width: 100%;
    /* width: 20px; */
    /* height: 20px; */
    height: 100%;
  }
  #section0 .slide-content{
    height:87vh;
  }
  .ms1_box1_wrap{
    margin:0 auto;
  }
  .ms1_box1 {
    width: 136px;
    height: 101px;
  }
  /*.ms1_box1:nth-child(4) {*/
  /*  margin-left: calc(16.666% + 5px);*/
  /*}*/
  .ms1_box1 img{
    width:27px;
    height:auto;
  }

  .scroll-line-container {
    position: relative;
    width: 1px;
    height: 128px;
  }
  .map_content {
    height: 76vh;
  }
  .main_map {
    width: 90%;
    margin: 0 auto;
    height: 33%;
  }
  .section3 .s3_content {
    width: 90%;
    margin: 0 auto;
  }
  .section3 .right {
    width: 100%;
    padding: 12px;
  }
  .section3 .icon_wrap {
    width: 24px;
    height: 24px;
  }

}

/* 태블릿 아이패드미니 가로부터 ~ , 노트북 : 11인치  ~ 15인치 */
@media screen and (min-width: 1025px) and (max-width: 1440px) {

}
