/* ==========================================================================
   CUSTOM VERTICAL SLIDER - Seccion de experiencias con slider vertical
   ========================================================================== */

/* ----------------------------------------------------------------------------
   Estilos base
   ---------------------------------------------------------------------------- */

#experiencesSec {
	position: relative;
	overflow: hidden;
}
#experiencesSec .row {
    display: block;
}
#experiencesSec .expSlider {
	position: relative;
	height: 100vh;
}
#experiencesSec .expSlider .slide {
	display: flex;
	align-items: flex-end;
	padding-top: 128px;
	padding-bottom: calc(80px + 87px + 128px);
	pointer-events: none;
	opacity: 0;
	transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
	position: absolute;
	inset: 0;
	z-index: 1;
}
#experiencesSec .expSlider .slide .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	height: 100%;
	z-index: 2;
}
#experiencesSec .expSlider .slide.active {
	pointer-events: auto;
	opacity: 1;
}
#experiencesSec .expSlider .slide .content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 50%;
	max-width: 652px;
}
#experiencesSec .expSlider .slide .content .title {
	margin: 0;
	font-family: "Playfair Display";
	font-size: 4rem;
	color: #ffffff;
	font-weight: 400;
	line-height: 5rem;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(100%);
	transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}
#experiencesSec .expSlider .slide.active .content .title {
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 0s;
}
#experiencesSec .expSlider .slide .content p {
	margin: 0;
	font-size: 1rem;
	color: #ffffff;
	font-weight: 400;
	line-height: 1.5rem;
	opacity: 0;
	transform: translateY(100%);
	transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}
#experiencesSec .expSlider .slide.active .content p {
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 0.2s;
}
#experiencesSec .expSlider .slide .content .exploreBtn {
	align-self: flex-start;
	border-color: #ffffff;
	color: #ffffff;
	opacity: 0;
	transform: translateY(100%);
	transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}
#experiencesSec .expSlider .slide.active .content .exploreBtn {
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 0.4s;
}
#experiencesSec .expSlider .slide .content .exploreBtn:hover {
	border-color: #00a8b5;
	background-color: #00a8b5;
	color: #ffffff;
}
#experiencesSec .expSlider .slide .content .exploreBtn img.arrow {
	filter: brightness(0) invert(1);
}
#experiencesSec .expSlider .slide .image {
	width: 50%;
	max-width: 652px;
	height: 100%;
	opacity: 0;
	transform: translateY(25%);
	transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}
#experiencesSec .expSlider .slide.active .image {
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 0s;
}
#experiencesSec .expSlider .slide .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#experiencesSec .expSlider .slide .bgImage {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}
#experiencesSec .expSlider .slide .bgImage::before {
	pointer-events: none;
	content: "";
	background: rgb(42 42 42 / 24%);
	background: linear-gradient(0deg, rgba(42, 42, 42, 0.24) 0%, rgba(42, 42, 42, 0.24) 100%);
	position: absolute;
	inset: 0;
	z-index: 2;
}
#experiencesSec .expSlider .slide .bgImage img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.1);
	transition: transform 1.2s cubic-bezier(.445, .05, .55, .95), opacity 1.2s cubic-bezier(.445, .05, .55, .95);
}
#experiencesSec .expSlider .slide.active .bgImage img {
	transform: scale(1);
}
#experiencesSec .expSlider .slide .bgImage video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	inset: 0;
	transform: scale(1.1);
	transition: transform 1.2s cubic-bezier(.445, .05, .55, .95), opacity 1.2s cubic-bezier(.445, .05, .55, .95);
}
#experiencesSec .expSlider .slide.active .bgImage video {
	transform: scale(1);
}
#experiencesSec .expSlider .bottomNav {
	width: 100%;
	bottom: 128px;
	position: absolute;
	z-index: 2;
}
#experiencesSec .expSlider .bottomNav .itemsBox {
	display: block;
}
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist {
	display: flex;
	gap: 20px;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: calc(25% - 15px);
	color: #ffffff;
	cursor: pointer;
}
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item .num {
	font-size: 1rem;
	color: #ffffff;
	font-weight: 400;
	line-height: 1.5rem;
}
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item .title {
	font-size: 1.4375rem;
	color: #A7A7A7;
	font-weight: 600;
	line-height: 1.75rem;
	transition: 0.3s;
}
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item.active .title {
	color: #ffffff;
}
#experiencesSec .expSlider .bottomNav .itemsBox .item .progressBar {
	height: 3px;
	background: rgba(255,255,255,0.24);
	overflow: hidden;
}
#experiencesSec .expSlider .bottomNav .itemsBox .item .progressBar .progress {
	width: 0%;
	height: 100%;
	background: #ffffff;
	border-radius: 0px;
}
#experiencesSec .expSlider .bottomNav .itemsBox .item.active .progressBar .progress {
	min-width: 1%;
}

/* ----------------------------------------------------------------------------
   Desktop Grande (1501px - 1600px)
   ---------------------------------------------------------------------------- */

@media only screen and (min-width: 1501px) and (max-width: 1600px) {

#experiencesSec .expSlider .slide 					{ padding-top: 100px; padding-bottom: calc(70px + 87px + 100px); }
#experiencesSec .expSlider .bottomNav 				{ bottom: 100px; }

}

/* ----------------------------------------------------------------------------
   Desktop (1366px - 1500px)
   ---------------------------------------------------------------------------- */

@media only screen and (min-width: 1366px) and (max-width: 1500px) {

#experiencesSec .expSlider .slide 					{ padding-top: 100px; padding-bottom: calc(70px + 70px + 100px); }
#experiencesSec .expSlider .bottomNav 				{ bottom: 100px; }
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item { gap: 10px; }
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item .title { font-size: 1.125rem; line-height: 1.4375rem; }

}

/* ----------------------------------------------------------------------------
   Desktop Pequeno (961px - 1365px)
   ---------------------------------------------------------------------------- */

@media only screen and (min-width: 961px) and (max-width: 1365px) {

#experiencesSec .expSlider .slide 					{ padding-top: 70px; padding-bottom: calc(50px + 63px + 70px); }
#experiencesSec .expSlider .slide .container 		{ gap: 15px; }
#experiencesSec .expSlider .slide .content 			{ gap: 15px; width: 100%; }
#experiencesSec .expSlider .slide .content .title 	{ font-size: 2.1875rem; line-height: 2.5rem; }
#experiencesSec .expSlider .slide .content p 		{ font-size: 0.875rem; line-height: 1.25rem; }
#experiencesSec .expSlider .slide .image 			{ width: 100%; height: 100%; }
#experiencesSec .expSlider .bottomNav 				{ bottom: 70px; }
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item { gap: 10px; }
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item .num { font-size: 0.875rem; line-height: 1.25rem; }
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item .title { font-size: 1rem; line-height: 1.25rem; }

}

/* ----------------------------------------------------------------------------
   Tablet (768px - 960px)
   ---------------------------------------------------------------------------- */

@media only screen and (min-width: 768px) and (max-width: 960px) {

#experiencesSec .expSlider .slide 					{ padding-top: 50px; padding-bottom: calc(50px + 63px + 50px + 54px); }
#experiencesSec .expSlider .slide .container 		{ gap: 15px; }
#experiencesSec .expSlider .slide .content 			{ gap: 15px; width: 100%; }
#experiencesSec .expSlider .slide .content .title 	{ font-size: 2.1875rem; line-height: 2.5rem; }
#experiencesSec .expSlider .slide .content p 		{ font-size: 0.875rem; line-height: 1.25rem; }
#experiencesSec .expSlider .slide .image 			{ width: 100%; height: 370px; }
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist { width: -moz-fit-content; width: fit-content; display: flex; }
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item { width: calc((100vw - (15px * 2)) / 3 - (40px / 3)); flex: none; gap: 10px; }
#experiencesSec .expSlider .bottomNav 				{ bottom: calc(50px + 54px); }
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item .num { font-size: 0.875rem; line-height: 1.25rem; }
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item .title { font-size: 0.875rem; line-height: 1.25rem; }

}

/* ----------------------------------------------------------------------------
   Mobile (max-width: 767px)
   ---------------------------------------------------------------------------- */

@media only screen and (max-width: 767px) {

#experiencesSec .expSlider .slide 					{ padding-top: 50px; padding-bottom: calc(50px + 63px + 50px + 54px); }
#experiencesSec .expSlider .slide .container 		{ flex-direction: column-reverse; justify-content: flex-start; align-items: flex-start; gap: 15px; }
#experiencesSec .expSlider .slide .content 			{ gap: 15px; width: 100%; }
#experiencesSec .expSlider .slide .content .title 	{ font-size: 2.1875rem; line-height: 2.5rem; }
#experiencesSec .expSlider .slide .content p 		{ font-size: 0.875rem; line-height: 1.25rem; }
#experiencesSec .expSlider .slide .image 			{ width: 100%; height: 270px; }
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist { width: -moz-fit-content; width: fit-content; display: flex; }
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item { width: calc((100vw - (15px * 2)) / 2 - (20px / 2)); flex: none; gap: 10px; }
#experiencesSec .expSlider .bottomNav 				{ bottom: calc(50px + 54px); }
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item .num { font-size: 0.875rem; line-height: 1.25rem; }
#experiencesSec .expSlider .bottomNav .itemsBox .itemlist .item .title { font-size: 0.875rem; line-height: 1.25rem; }

}
