
.swiper-container .slide_txt {
	position: absolute;
	left: 50%;
	top: 50%;
	box-sizing: border-box;
	width: 90%;
	padding: 0 2.0rem;
	transform: translate(-50%, -60%);
	z-index: 10;
}
.swiper-container .slide_txt > .new_badge {
	display: inline-block;
	transform: translateY(20px);
	opacity: 0;
	transition: 1.2s 0.6s;
	border: 1px solid #fff;
	border-radius: 1000px;
	padding: 4px 20px;
	margin-bottom: 16px;
}
.swiper-container .slide_txt > .new_badge > p {
    font-family: NanumMyeongjo;
    font-size: 16px;
    font-weight: 700;
	color: #fff;
	margin: 0;
}
.swiper-container .slide_txt > h4 {
    font-family: NanumMyeongjo;
    font-size: 50px;
    font-weight: 700;
	color: #fff;
	transform: translateY(20px);
	opacity: 0;
	transition: 1.2s 0.6s;
}
.swiper-container .slide_txt > p {
    color: #fff;
    font-family: NanumMyeongjo;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    white-space: pre-line;
	transform: translateY(20px);
	opacity: 0;
	transition: 1.2s 0.8s;

}
.swiper-container .swiper-slide-active .slide_txt > .new_badge,
.swiper-container .swiper-slide-active .slide_txt > h4,
.swiper-container .swiper-slide-active .slide_txt > p {
	transform: translateY(0);
	opacity: 1;
}

.swiper-container .img-box {
  	display: block;
	height: 100vh;
	overflow: hidden;
}
.swiper-container img {
    width: 100%;
    height: 100%;
	transform: scale(1.05);
	transition: 3s 0.3s;
}
.swiper-container .swiper-slide-active img {
	transform: scale(1.0);
}
.swiper-container .all-box {
	position: absolute;
	display: inline-flex;
	width: 90%;
	height: 50px;
	left: 51%;
	bottom: 10px;
	box-sizing: border-box;
	padding: 0 20px;
	transform: translate(-50%, -50%);
	z-index: 20;
}
.swiper-container .progress-box {
	position: relative;
	width: 160px;
	height: 50px;
	z-index: 11;
}
.autoplay-progress {
	position: absolute;
	left: 30px;
	top: 8px;
	z-index: 10;
	width: 100px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.3);
}

.autoplay-progress svg {
	--progress: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	stroke-width: 4px;
	stroke: #fff;
	fill: none;
	stroke-dashoffset: calc(100 * (1 - var(--progress)));
	stroke-dasharray: 100;
}

/* stroke-dashoffset은 선의 테두리가 얼마나 이동하는지 결정 progress라는 변수를 사용하여 계산되어진 값이 들어감 100은전체길이 
   stroke-dasharray는 선의 테두리를 구성하는 선 조각의 길이를 설정 전체길이가 100
 */
.swiper-container .swiper-pagination {
	display: flex;
	color: #fff;
	justify-content: space-between;
	position: static;
	text-align: left;
    font-family: "NanumMyeongjo";
    font-weight: 400;
	font-size: 14px;
}
.swiper-container .arrow-box {
	position: relative;
	width: 80px;
	height: 50px;
    margin-left: 16px;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
	width: 18px;
	height: 18px;
	top: 0;
	margin-top: 0;
	background: url(https://www.century21cc.co.kr/views/res/imgs/common/icon-arrow-left-fff.svg) no-repeat center / 100%;
}

.swiper-container .swiper-button-next {
	background-image: url(https://www.century21cc.co.kr/views/res/imgs/common/icon-arrow-right-fff.svg);
}
.swiper-container .swiper-button-next::after,
.swiper-container .swiper-button-prev::after {
	font-size: 0;
}





@media (min-width: 1025px) and (max-width: 1699px) {
	.swiper-container .slide_txt {
		left: 50%;
	  }
	  .swiper-container .slide_txt > h4 {
		font-size: 36px;
	  }
	  .swiper-container .slide_txt > p {
		font-size: 16px;
	  }
	  .swiper-container .all-box {
		bottom: 30px;
		height: 30px;
	  }
	  .swiper-container .swiper-pagination  {
		font-size: 14px;
	  }
		.swiper-container .img-box {
			height: auto;
		}

}
@media (min-width: 768px) and (max-width: 1024px) {
	.swiper-wrapper{
		height: auto !important;
	}
	.swiper-container .slide_txt > h4 {
		font-size: 36px;
	  }
	  .swiper-container .slide_txt > p {
		font-size: 16px;
	  }
    .swiper-container .all-box {
        bottom: 46px;
        height: 30px;
	}
	.swiper-container .img-box {
	  height: 760px;
  	}


}

@media screen and (max-width: 767px) {
	.swiper-container .slide_txt {
		left: 45%;
		top: 40%;
	}
	.swiper-container .slide_txt > h4 {
		font-size: 26px;
	}
	.swiper-container .slide_txt > p {
		margin-top: 20px;
		font-size: 14px;
		line-height: 24px;
		white-space: normal;
	}
	.swiper-container .all-box {
		bottom: 30px;
		height: 30px;
	}
	.swiper-container .img-box {
		height: auto;
	}
	.swiper-container .swiper-pagination  {
		font-size: 14px;
	}
	.swiper-container .slide_txt > .new_badge > p {
		font-size: 14px;
	}
}



