/* main slider */
.main_station{
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.wrapper-slider {
  position: relative;
  width: 100%;
  margin: auto;
}
.wrapper-slider .item {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-inline: 2rem;
}

.wrapper-slider .item picture:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1;
}
.wrapper-slider .item picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrapper-slider .parent-text {
  width: 100%;
  top: 70%;
  transform: translateY(-50%);
  position: relative;
  z-index: 2;
  color: white;
}
.wrapper-slider .parent-text .info-text {
  display: flex;
  flex-direction: column;
  gap: 38px;
  font-size: 72px;
  font-weight: 300;
}
.info-text > div:nth-of-type(1){
  line-height: 1;
}
.info-text > div:nth-of-type(2){
  line-height: 1.3;
}
.info-text >div:nth-of-type(1) span{
  color: #E0EAFF;
  font-weight: 700;
}
.info-text >div:nth-of-type(2){
  font-size: 26px;
  font-family: "Pretendard Variable";
  font-weight: 200;
}
.info-text >div:nth-of-type(2) span{
  font-weight: 500;
}

/* pagination */
.swiper-pagination{
  max-width: 1400px;
  width: 95% !important;
  margin: 0 auto;
}
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 100;
  bottom: 15rem !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  pointer-events: auto;
  justify-content: flex-start;
}


.wrapper-slider .swiper-pagination .svg-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.wrapper-slider .swiper-pagination .svg-icon path {
  fill: white;
}
.wrapper-slider .swiper-pagination .swiper-pagination-bullet {
  color: white;
  opacity: 1;
  width: initial;
  height: initial;
  background: transparent;
}
.wrapper-slider .swiper-pagination .swiper-pagination-bullet button {
  background: transparent;
  border: 0;
  display: flex;
  cursor: pointer;
}
.wrapper-slider .swiper-pagination .bullet-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper-slider .swiper-pagination .icon {
  position: absolute;
  z-index: 1;
}

.percentage {
  --colorf3: #001F60;
  --color13: #001F60;
  width: 3.4rem;
  aspect-ratio: 1;
  mask: radial-gradient(transparent 55%, black 60% 100%);
  -webkit-mask: radial-gradient(transparent 55%, black 60% 100%);
  transition: opacity 0.6s ease;
  opacity: 0;
  background: conic-gradient(
  transparent 0,
  transparent var(--p),
  #c9d6d7 0
  ),
  conic-gradient(
  var(--colorf3),
  #001F60,
  #001F60,
  #001F60,
  var(--colorf3)
  ),
  conic-gradient(transparent, transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.percentage.show {
  opacity: 1;
}
.percentage .number {
  width: 80%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  color: var(--color13);
}
/* 진행바 */
.main_station .swiper-progress-bar {
  position: absolute;
  bottom: 12rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1400px;
  width: 95%;
  height: 4px;
  background: rgba(255,255,255,0.3);
  overflow: hidden;
  border-radius: 2px;
  z-index: 10;
}

.main_station .swiper-progress-bar .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  transition: width 0.1s linear;
}

/* tour */
.gallery-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.gallery-flex{
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.gallery-single {
  position: relative;
}

.gallery-single .swiper-slide img {
  object-fit: cover;
  border-radius: 20px;
}

.gallery-single.swiper{
  max-width: 1400px;
  margin-left: initial;
  margin-right: initial;
  /* height: 545px; */
  border-radius: 20px;
}
/* 썸네일 */
.gallery-nav {
  display: flex;
  width: 100%;
}
.gallery-nav .swiper-wrapper {
  display: flex;
  justify-content: space-between;
}
.gallery-nav .swiper-slide {
  /* flex: 1 1 calc((100% - (5 * 1%)) / 6);
  max-width: calc((100% - (5 * 1%)) / 6); */
  margin-right: 1%;
}
.gallery-nav .swiper-slide img {
  width: 230px;
  height: 130px;
  object-fit: cover;
  border-radius: 20px;
  transition: opacity 0.3s ease;
  border: 3px solid transparent;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.gallery-arrow_img_wrap{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery-nav .swiper-slide-thumb-active img {
  border-color: #F6AD3C;
}
/* Swiper 전역 충돌 방지 (gallery 한정 범위 적용) */
.gallery-single .swiper-slide {
  opacity: 0;
  transition: opacity 1s ease;
}

.gallery-single .swiper-slide-active {
  opacity: 1;
  z-index: 2;
}

.gallery-single .swiper-slide-prev,
.gallery-single .swiper-slide-next {
  opacity: 0;
  z-index: 1;
}
@media (max-width: 1500px) and (max-height: 800px) {
  .wrapper-slider .parent-text{
    top: 60%;
  }
}
@media (max-width: 1280px) and (max-height: 800px){
  .wrapper-slider .parent-text{
    top: 60%;
  }
}
@media screen and (max-width: 1280px) {
  .wrapper-slider .parent-text .info-text{
    font-size: 6vw;
    gap: 3.5vw;
  }
  .info-text >div:nth-of-type(2){
    font-size: 2vw;
  }
}
@media screen and (max-width: 900px) {
  .wrapper-slider .parent-text .info-text{
    font-size: 8.5vw;
  }
  .info-text > div:nth-of-type(1){
    line-height: 1.2;
  }
  .info-text >div:nth-of-type(2) {
    font-size: 3.5vw;
  }
  .gallery-nav .swiper-slide img{
    height: 95px;
  }
}
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 600px) {
  
  
}
@media screen and (max-width: 500px) {
  
  
}
@media screen and (max-width: 430px) {
  
}
@media screen and (max-width: 350px) {
  
}
