@charset "utf-8";
/* CSS Document */



/* 특정 요소 애니메이션 적용 */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-in-out;
}


/* gsap 관련 애니메이션 */
.gsap-expand-section{

	margin-left: auto !important;
	margin-right: auto !important;

}


.reveal-left {
  visibility: hidden;
  position: relative;
  overflow: hidden; 
}


.reveal-left img {
  object-fit: cover;
  transform-origin: left;
}

.reveal-right{
  visibility: hidden;
  position: relative;
  overflow: hidden; 
}

.reveal-right img {
  object-fit: cover;
  transform-origin: right;
}

.cards-box-wrapper {
	position: relative;
	align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
	padding: 0 15%;
	padding-bottom: 3rem;
}

.cards-box {
	display: flex;
	justify-content: center;
	position: relative;
	
}

.cards-box .card {
	width: 100%;
	max-width: 1140px;
	cursor: pointer;
	border:0;
}

.cards-box .card.hide {
	visibility: hidden;
}

.cards-box .card:not(.hide) {
	position: absolute;
	top: 0;
  
	transition: all 1.0s cubic-bezier(0.42, 0, 0.58, 1);	
  transform: translate(0, -50%);
	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
}

.elementor-editor-active .cards-box .card:not(.hide){
  position:relative;
}

.cards-box .card:not(.hide)[data-slide='0'] {
	transform: translate(0px, 0px) scale(1);
	z-index: 6;
	opacity: 1;
}

.cards-box .card:not(.hide)[data-slide='1'] {
	transform: translate(0px, 40px) scale(0.95);
	z-index: 5;
	opacity: 0.9;
}

.cards-box .card:not(.hide)[data-slide='2'] {
	transform: translate(0px, 80px) scale(0.9);
	z-index: 4;
	opacity: 0.8;
}

.cards-box .card:not(.hide)[data-slide='3'] {
	transform: translate(0px, 120px) scale(0.85);
	z-index: 3;
	opacity: 0.7;
}

.cards-box .card:not(.hide)[data-slide='4'] {
	transform: translate(0px, 160px) scale(0.8);
	z-index: 2;
	opacity: 0.6;
}

.cards-box .card:not(.hide)[data-slide='5'] {
	transform: translate(0px, 200px) scale(0.75);
	z-index: 1;
	opacity: 0.5;
}

.cards-box .card:not(.hide)[data-slide='0'] {
	transition: all 1.0s cubic-bezier(0.18, 0.98, 0.45, 1);
}
	
	/* 스택 내비게이션 버튼 공통 스타일 */
.stack-nav {
  position: absolute;
  width: 100%;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
}

.stack-nav button {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  border: none;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.stack-nav button:hover {
  background-color: #333;
  transform: scale(1.1);
}

.stack-nav button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.stack-nav button.disabled:hover {
  transform: none;
  background-color: #000;
}

/* 이전 버튼 위치 */
.stack-nav .stack-prev {
  left: 10px;
}

/* 다음 버튼 위치 */
.stack-nav .stack-next {
  right: 10px;
}

/* 버튼 내 아이콘 스타일 */
.stack-nav button span {
  display: block;
  font-size: 28px;
  font-weight: bold;
  line-height: 0;
  padding-bottom: 4px;
}
  

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

@media (min-width: 1400px) {}


/* sigle break point */

@media (min-width: 576px) and (max-width: 767.98px) {}

@media (min-width: 768px) and (max-width: 991.98px) {}

@media (min-width: 992px) and (max-width: 1199.98px) {}

@media (min-width: 1200px) and (max-width: 1399.98px) {}

/* Between breakpoints */

