/*--------------------------------------------------
	Showcase Portfolio
---------------------------------------------------*/

/* Indica scroll botón animado */
#hide_button_bw {
	position: fixed;
	bottom: 18%;
	left: 50%;
	transform: translateX(-50%);
	/* z-index: -1; */
	transition: all 1s cubic-bezier(0.68, 0, 0.265, 1) 0.1s;
	opacity: 1;
	z-index: 9;
}

#hide_button_bw.show-button {
	bottom: 135px;
	opacity: 1;
}

.arrow {
	width: 40px;
	height: 50px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.circle {
	width: 30px;
	height: 40px;
	opacity: 1;
}

.line {
	width: 2.5px;
	height: 10px;
	background-color: #f3bc44;
	position: absolute;
	top: 10px;
	left: 18.5px;
	animation: moveDown 2s infinite ease-in-out;
}

@keyframes moveDown {
	0% {
		top: 10px;
	}

	50% {
		top: 30px;
	}

	100% {
		top: 10px;
	}
}

#hide_button_bw {
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

#hide_button_bw.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* ------ */

/* Body */
.my_body_classes {
	background-color: #202020;
}

/* Main */
.content_portfolio {
	background-color: #202020;
}

.scroll_effect_panel {
	background-color: #202020;
}


/* Texto titulo portada */
.stack_marquee_text {
	position: absolute;
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 9999;
}

.item_stack_text {
	position: relative;
	margin-top: 5%;
	margin-right: 30%;
	overflow: hidden;
}

.stack_text {
	position: relative;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.767);
	font-size: 200px;
	line-height: 290px;
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	transform: translateY(150%);
	/*text-transform: uppercase;*/
}


/* Texto Subtitulo portada */
.subtitle_item {
	position: relative;
	width: 100%;
	margin-bottom: -10%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-end;

}

.subtitle_wrapper {
	position: relative;
	width: auto;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	transform: translateY(-150%);
}

.subtitle_text {
	font-size: 40px;
	line-height: 50px;
	font-weight: 400;
	font-family: "PPEditorial_New", sans-serif;
	font-style: italic;
	color: #ffffff;
}

/* Slide vertical - reveal images */
.slides_image {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	position: relative;
	z-index: 1;
}

.slides_image .list_image {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.slides_image .slide_image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	/* Cambiado de 100vw a 100% */
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.slide_image .background_image {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	will-change: transform;
	background-size: cover;
}

.background_image video {
	filter: grayscale(80%) brightness(.8) contrast(110%) saturate(120%) blur(0);
}

.image_properties_one {
	object-fit: cover;
	width: 100%;
	/* Cambiado de 100vw a 100% */
}

.slide_image .content_image {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
	top: 40%;
	left: 5%;
	box-sizing: border-box;
	position: relative;
	/* Para que el contenido absoluto esté posicionado relativo a este contenedor */
}

.title_content {
	position: absolute;
	text-align: left;
	margin: 0;
	font-size: 200px;
	line-height: 220px;
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	color: #fff;
}




/* Estilos para la Grid */
.grid_wrap_item {
	background-color: #202020;
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.grid {
	display: grid;
	width: 100%;
	padding-left: 45px;
	padding-right: 45px;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	grid-auto-rows: 250px;
	gap: 45px;
	grid-auto-flow: dense;
}

.grid-item {
	overflow: hidden;
	/* border-radius: 12px; */
}

.grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Estilos personalizados por tamaño */
.horizontal_3_2 {
	grid-column: span 3;
	grid-row: span 2;
}

.vertical_1_2 {
	grid-row: span 1;
	grid-row: span 2;
}

.square_2_2 {
	grid-column: span 2;
	grid-row: span 2;
}

.square_1_1 {
	grid-column: span 1;
	grid-row: span 1;
}

.square_2_1 {
	grid-column: span 2;
	grid-row: span 1;
}

.square_4_2 {
	grid-column: span 4;
	grid-row: span 2;
}

/* --- */

.wrap_grid_item {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.box_grid_item {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.box_grid_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease, filter 0.6s ease;
	will-change: transform, filter;
	filter: brightness(1) contrast(1) saturate(1) grayscale(100%);
}

/* Efecto al pasar el mouse */
.box_grid_item:hover img {
	transform: scale(1.05);
	filter: brightness(.5) contrast(1.2) saturate(1.3) grayscale(0%);
}


/* Media Query */
@media screen and (max-width: 1600px) {

	.square_4_2,
	.square_2_1,
	.horizontal_3_2,
	.vertical_1_2,
	.square_2_2,
	.square_1_1 {
		grid-column: span 1;
		grid-row: span 1;
	}

	.item_stack_text {
		margin-top: 5%;
		margin-right: 30%;
	}

	.stack_text {
		font-size: 130px;
		line-height: 180px;
	}

	.subtitle_text {
		font-size: 24px;
		line-height: 40px;
	}
}


@media screen and (max-width: 420px) {
	.grid {
		padding-left: 10px;
		padding-right: 10px;
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
		grid-auto-rows: 200px;
		gap: 15px;
		grid-auto-flow: dense;
	}

	.square_4_2,
	.square_2_1,
	.horizontal_3_2,
	.vertical_1_2,
	.square_2_2,
	.square_1_1 {
		grid-column: span 3;
		grid-row: span 2;
	}

	.item_stack_text {
		margin-top: 5%;
		margin-right: 0;
	}

	.stack_text {
		font-size: 80px;
		line-height: 130px;
	}

	.subtitle_text {
		font-size: 20px;
		line-height: 30px;
	}

}




/* Titulos de las imagenes */
.grid_caption {
	position: absolute;
	bottom: 0;
	padding: 12px 16px;
	transition: all 0.4s ease;
	opacity: 0;
	transform: translateY(10px);
}

.grid_caption.left {
	left: 0;
	font-size: 26px;
	line-height: 35px;
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	color: #fff;
	/* border-top-right-radius: 8px; */
}

.grid_caption.right {
	font-family: "PPEditorial_New", sans-serif;
	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
	font-style: italic;
	color: #ffffff;
	right: 5px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 8px;
}

.box_grid_item:hover .grid_caption {
	opacity: 1;
	transform: translateY(0);
}

/* --- */






/* Sección del título y subtítulo */
.reveal_effect {
	width: 100vw;
	height: 40vh;
	padding: 0 clamp(0, 12vw, 20rem);
	display: grid;
	place-content: center;
	text-align: center;
}

/* Estilo del texto animado */
.text_reveal {
	font-size: 80px;
	line-height: 85px;
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	margin: 0;
}

.titul_serifa {
	font-family: "PPEditorial_New", sans-serif;
	font-weight: 200;
	font-size: 80px;
	line-height: 85px;
	font-style: italic;
	color: #ffffff;
}

/* Párrafo */
.p_effect {
	position: relative;
	width: 100vw;
	height: auto;
	margin-top: -4%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.box_reveal_effect {
	position: relative;
	width: 50%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;

}

/* Estilo del párrafo animado */
.p_reveal {
	width: auto;
	max-width: 100%;
	font-size: 20px;
	line-height: 30px;
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	letter-spacing: 1px;
}

/* ------------ */
.box_title_autumn2024 {
	background-color: #202020;
	width: 100%;
	max-width: 100%;
	position: relative;
	padding-top: 10%;
	padding-bottom: 7%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 1;
}

.item_wrapper_subtitle_autumn2024 {
	position: relative;
	margin-top: 1%;
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.wrapper_subtitle_autumn2024 {
	position: relative;
	margin-right: 5%;
}

.subtitle_autumn2024 {
	position: relative;
	font-family: "PPEditorial_New", sans-serif;
	font-weight: 200;
	font-size: 20px;
	line-height: 30px;
	font-style: italic;
	color: #F33A3A;
}



/* Media Query */
@media screen and (max-width: 1600px) {
	.text_reveal {
		font-size: 50px;
		line-height: 60px;
	}

	.titul_serifa {
		font-size: 50px;
		line-height: 60px;
	}

	.p_reveal {
		font-size: 18px;
		line-height: 26px;
	}

	.subtitle_autumn2024 {
		font-size: 16px;
		line-height: 22px;
		letter-spacing: 0;
	}
}

@media screen and (max-width: 420px) {
	.text_reveal {
		font-size: 28px;
		line-height: 28px;
	}

	.titul_serifa {
		font-size: 28px;
		line-height: 28px;
	}

	.p_reveal {
		font-size: 12px;
		line-height: 18px;
	}

	.p_effect {
		margin-top: -100px;
	}

	.subtitle_autumn2024 {
		font-size: 14px;
		line-height: 18px;
		letter-spacing: 0;
	}

	.item_wrapper_subtitle_autumn2024 {
		margin-top: 5%;
		width: 100%;
	}

	.box_reveal_effect {
		width: 90vw;

	}
}

.image_properties {
	width: 100%;
	cursor: pointer;
	filter: grayscale(100%) contrast(110%) brightness(80%);
	transform: scale(1);
	transition: all 0.5s 0s ease;
}

.image_properties:hover {
	filter: grayscale(0) contrast(100%) brightness(100%);
	transform: scale(1.03);
	transition: all 0.3s 0s ease;
}

/* Titulos texto fotos */
.box_text_street {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	pointer-events: none;
	overflow: hidden;
	box-sizing: border-box;
}

.item_text_street {
	position: relative;
	width: 100%;
	margin-bottom: 2%;
}

.titul_text_street {
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 18px;
	margin-left: 5%;
	opacity: 0;
	/*text-transform: uppercase;*/
	transition: all 0.5s ease;
}

.box_text_street_g {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	pointer-events: none;
	overflow: hidden;
	box-sizing: border-box;
}

.item_text_street_g {
	position: relative;
	width: 100%;
	margin-bottom: 30%;
}

.titul_text_street_g {
	font-family: 'barlow_condensedblack';
	font-size: 184px;
	color: #fff;
	margin-left: 5%;
	opacity: 0;
	/*text-transform: uppercase;*/
	transition: all 0.5s ease;
}

.image_wrap:hover .titul_text_street {
	bottom: 10%;
	opacity: 1;
	transform: translateY(-30px);
}

.image_wrap:hover .titul_text_street_g {
	bottom: 10%;
	opacity: 1;
	transform: translateY(-30%);
}

.subtitul_box_text_street {
	position: absolute;
	display: flex;
	align-items: flex-end;
	bottom: -50px;
	left: 0;
	justify-content: center;
	pointer-events: none;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 9;
}

.subtitul_text_street {
	font-size: 16px;
	color: #858585;
}

.text_street_1 {
	color: #858585;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 14px;
}

.text_street_2 {
	color: #858585;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-size: 14px;
}

/* Galería de imágenes */
.scroll_effect_panel {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

.background_color_sec_head {
	background-color: #323232;
	width: 100%;
	max-width: 100%;
	height: 100vh;
}

/* --- */


/* Media Query */
@media screen and (max-width: 420px) {
	.zoom_wrapper_gallery_op1 {
		width: 90%;
	}

}

/* Swipper slider */
body,
div {
	margin: 0;
	padding: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

/* ============ Full Page Slider ================= */
.creative-showcase--slider .swiper-slide {
	position: relative;
	overflow: hidden;
	width: 100%;
	min-height: 100vh;
	padding: 80px 0;
}

.creative-showcase--slider .swiper-slide .slide-bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.creative-showcase--slider .swiper-slide .overlay-dark:before {
	opacity: .3;
	background: #1d1d1d;
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	pointer-events: none;
}

.creative-showcase--slider .swiper-slide .video-container {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.creative-showcase--slider .swiper-slide .video-container video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center center;
	object-position: center center;
}

.swiper-slide .slide-bg .slide-container {
	max-width: 1320px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 7;
	padding-left: 15px;
	padding-right: 15px;
}

.slide-bg .slide-container .slide-row {
	display: flex;
	flex-wrap: wrap;
}

.slide-container .slide-row .slider-content {
	flex: 0 0 auto;
	width: 91.66666667%;
	margin-left: 8.33333333%;
	padding-left: 15px;
	padding-right: 15px;
}

.slider-content .slide-subtitle {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 30px;
	margin-top: 0px;
}

.slider-content .slide-heading {
	font-size: 100px;
	color: #fff;
	margin: 0px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: .2rem;
}

.slider-content .slide-heading a {
	text-decoration: none;
	color: #fff;
	outline: none;
}

.slider-content .slide-heading a span {
	display: inline-block;
}

.overlay-light .slider-content .slide-heading a {
	color: #000;
}

.overlay-light .slider-content .slide-subtitle {
	color: #000;
}

.creative-showcase--slider .creative-button--wrapper .swiper-button-prev,
.creative-showcase--slider .creative-button--wrapper .swiper-button-next {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	top: auto;
	color: #fff;
	z-index: 9;
	cursor: pointer;
	width: auto;
	bottom: 30px;
	font-weight: 300;
	font-size: 16px;
	letter-spacing: 0.5px;
	line-height: normal;
}

.creative-showcase--slider .creative-button--wrapper .swiper-button-next {
	right: 120px;
}

.creative-showcase--slider .creative-button--wrapper .swiper-button-prev {
	left: 120px;
}

.creative-showcase--slider .creative-button--wrapper .swiper-button-next:after,
.creative-showcase--slider .creative-button--wrapper .swiper-button-prev:after {
	display: none;
}

.creative-showcase--slider .creative-button--wrapper .swiper-button-prev i {
	margin-right: 25px;
}

.creative-showcase--slider .creative-button--wrapper .swiper-button-next i {
	margin-left: 25px;
}

.creative-showcase--slider .banner-horizental .swiper-pagination {
	bottom: 40px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: auto;
}

.creative-showcase--slider .banner-horizental .swiper-pagination-bullet {
	background: transparent;
	margin: 0 10px !important;
}

.creative-showcase--slider .banner-horizental .path {
	display: none;
}

.creative-showcase--slider .banner-horizental .swiper-pagination-bullet-active .path {
	display: inline-block !important;
	stroke-dasharray: 1000;
	stroke-dashoffset: 0;
	-webkit-animation: dash linear 10s;
	animation: dash linear 10s;
	-webkit-animation-iteration-count: unset;
	animation-iteration-count: unset;
}

@keyframes dash {
	0% {
		stroke-dashoffset: 1000;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

/* ====================== Responsive Ipad =============================== */
@media (max-width: 991px) {
	.slide-container .slide-row .slider-content {
		flex: 0 0 auto;
		width: 100%;
		margin-left: 0px;
	}

	.slider-content .slide-heading {
		font-size: 72px;
	}

	.creative-showcase--slider .banner-horizental .swiper-pagination {
		display: none;
	}

	.creative-showcase--slider .creative-button--wrapper .swiper-button-prev {
		left: 15px;
	}

	.creative-showcase--slider .creative-button--wrapper .swiper-button-next {
		right: 15px;
	}

}

/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
	.slide-container .slide-row .slider-content {
		padding-left: 0px;
		padding-right: 0px;
	}

	.slider-content .slide-heading {
		font-size: 40px;
	}

	.slider-content .slide-subtitle {
		margin-bottom: 15px;
	}
}

/* Icono en el puntero del mouse */
.text_floatstreet {
	position: absolute;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 333333;
	top: 0;
	left: 0;
	background-size: cover;
	opacity: 0.1;
	backdrop-filter: blur(3px);
	background-color: rgba(241, 241, 241, 0.5);
	border-radius: 50%;
}

.text_floatstreet img {
	width: 35px;
	height: 35px;
}

/* --- */