@charset "utf-8";
/*
layout.css for supported in all modern browsers 
ie11.0, chrome 29.0, safari 10, firefox 22.0, opera 48  
By xetemplate(https:xetemplate.com) 
*/

/* ------------------------------------------------------------------------------------------------------------------ */
/* Swiper sldier 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-swiper {
	overflow: hidden;
    background-color: #000;
}
.xet-swiper .xet-swiper-container {
	width: 100%;
    height: calc(100vh);
}
.xet-swiper .swiper-slide {
    overflow: hidden;
}
.xet-swiper .swiper-img {
    width: 100%;
    height: 100%;
}
/* fade일때 이미지 크기 효과 */
.xet-swiper.fade .swiper-img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transition: all 15.5s ease-out;
    -webkit-transition: all 15.5s ease-out;
}
.xet-swiper.fade .swiper-slide.swiper-slide-active .swiper-img {
    transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.xet-swiper .swiper-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.35);
}
.xet-swiper .swiper-caption .xet-btn {
    border: 1px solid #e1e1e1;
    color: #fff;
}
.xet-swiper .swiper-caption h2 {
    position: relative;
    font-size: 32px;
}
.xet-swiper .swiper-caption h2,
.xet-swiper .swiper-caption h6 {    
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.xet-swiper .swiper-caption > div > * {
    opacity: 0;
    transform: translateY(25px);
    -webkit-transform: translateY(25px);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.xet-swiper .swiper-slide.swiper-slide-active .swiper-caption > div > * {
    opacity: 1;
    transform: none;
}
.xet-swiper .swiper-slide.swiper-slide-active .swiper-caption > div > *:nth-child(1) {
    transition-delay: 1s;
    -webkit-transition-delay: 1s;
}
.xet-swiper .swiper-slide.swiper-slide-active .swiper-caption > div > *:nth-child(2) {
    transition-delay: 1.25s;
    -webkit-transition-delay: 1.25s;
}
.xet-swiper .swiper-slide.swiper-slide-active .swiper-caption > div > *:nth-child(3) {
    transition-delay: 1.5s;
    -webkit-transition-delay: 1.5s;
}

/*  네비게이션 버튼 */
.xet-swiper .xet-swiper-navigation {
    display: flex;
    position: absolute;
    bottom: 60px;
    right: 0;
    z-index: 10;
}
.xet-swiper .xet-swiper-navigation > button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    opacity: 1;
    height: 60px;
    width: 60px;
    color: #fff;
    border: 0;
    background-color: rgba(255,255,255,0.23);
    -webkit-appearance: none;
    text-shadow: none;
    transition:all 0.1s ease-in;
    -webkit-transition:all 0.1s ease-in;
}
.xet-swiper .xet-swiper-navigation > button i {
	line-height: inherit;
}
.xet-swiper .xet-swiper-navigation .xet-swiper-play,
.xet-swiper .xet-swiper-navigation .xet-swiper-stop {
    background-color: rgba(255,255,255,0.43);
}
.xet-swiper .xet-swiper-navigation .xet-swiper-prev {
    border-radius: 10px 0 0 0;
    -webkit-border-radius: 10px 0 0 0;
}
.xet-swiper-next.swiper-button-disabled, 
.xet-swiper-prev.swiper-button-disabled {
    cursor: auto;
    pointer-events: none;
    background-color: rgba(255,255,255,0.2);
}

/* 페이징 - fraction */
.xet-swiper .xet-swiper-fraction {
	z-index: 10;
	position: absolute;
    top: auto !important;
	left: 16px;
	bottom: 60px !important; 
    width: auto !important;
    height: 60px;
    display: flex;
    align-items: center;
	color: #ccc;
}

/* 페이징 - 프로그레스 */
.xet-swiper .xet-swiper-progressbar {
    z-index: 10;
	position: absolute;
    top: auto !important;
	left: 0;
	bottom: 60px !important; 
    width: 100%;
    height: 1px !important;
	color: #ccc;
    background: rgba(255,255,255,0.5);
}
.xet-swiper .xet-swiper-progressbar>span {
    display: block;
    width: 0%;
    height: 1px;
    background-color: #ff6600;
}
    /* Dark Mode */ 
    .xet-layout-wrp.dark .xet-swiper .xet-swiper-progressbar {
        background-color: rgba(255,255,255,0.3);
    }


/* 메인 Notice 사용 옵션에 따라 */
.xet-layout-wrp.off-notice .xet-swiper .xet-swiper-progressbar {
	bottom: 0 !important; 
}
.xet-layout-wrp.off-notice .xet-swiper .xet-swiper-navigation {
    bottom: 0 !important;
}
.xet-layout-wrp.off-notice .xet-swiper .xet-swiper-fraction {
    bottom: 0 !important;
}

/* LG 
---------------------------------------------------------------------------- */
@media (min-width: 992px) {	
	.xet-swiper .xet-swiper-container {}
	.xet-swiper .swiper-caption {
        align-items: center;
        justify-content: flex-start;
        padding: 0 30px;
        text-align: left;
    }
    .xet-swiper .swiper-caption>div {
        width: 50%;
        padding-right: 30px;
    }    
    .xet-swiper .xet-swiper-next:hover,
    .xet-swiper .xet-swiper-prev:hover {
        background-color: rgba(255,255,255,0.9);
        color: #1b1b1b;
    }
    .xet-swiper .xet-swiper-fraction {
        left: 30px !important;
    }    

	
	
}
/* XL
---------------------------------------------------------------------------- */
@media (min-width: 1200px) {  
	.xet-swiper .swiper-caption {
        padding: 0 30px;
    }
    .xet-swiper .swiper-caption h2 {
        font-size: 48px;
    }
    .xet-swiper .xet-swiper-fraction {
        left: 30px !important;
    } 
}

/* xXL
---------------------------------------------------------------------------- */
@media (min-width: 1400px) {  
	.xet-swiper .swiper-caption {
        padding: 0 40px;
    }
    .xet-swiper .xet-swiper-fraction {
        left: 40px !important;
    } 
}
