.slideshow {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	overflow: hidden;
	position: relative;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	transition: all 0.2s ease;
}

.slideshow_infos {
	top: 50%;
	left: 50%;
	margin: 0;
	z-index: 2;
	border: none;
	outline: none;
	display: flex;
	position: absolute;
	align-items: center;
	flex-direction: column;
	justify-content: flex-end;
	height: calc(100% - 200px);
	padding: 160px 20px 40px 20px;
	transform: translate(-50%, -50%);
	width: clamp(0%, calc(100% - 40px), var(--boxed_md));
}

.slideshow_info {
	gap: 42px;
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	flex-grow: 1;
	outline: none;
	display: none;
	align-items: center;
	flex-direction: column;
	justify-content: space-between;
}

.slideshow_info_centered {
	gap: 42px;
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	flex-grow: 1;
	outline: none;
	display: none;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.selected_info {
	display: flex!important;
}

.slideshow_info_img {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	max-width: 200px;
	transition: all 0.2s ease;
}

.slideshow_info_title {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: center;
	color: var(--cor1);
	word-break: break-word;
	transition: all 0.2s ease;
	text-align: -webkit-center;
	font: 600 42px/50px 'Inter', sans-serif;
	font-variation-settings: 'wght' 600, 'opsz' 42;
}

.slideshow_info_title_sp {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	color: var(--cor1);
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	word-break: break-word;
	transition: all 0.2s ease;
	text-align: -webkit-center;
	-webkit-box-orient: vertical;
	font: 600 42px/50px 'Inter', sans-serif;
	font-variation-settings: 'wght' 600, 'opsz' 42;
}

.slideshow_info_descs {
	gap: 42px;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: wrap;
	width: fit-content;
	align-items: center;
	justify-content: space-between;
}

.slideshow_info_desc {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: center;
	color: var(--cor3);
	word-break: break-word;
	transition: all 0.2s ease;
	text-align: -webkit-center;
	font: 300 20px/28px 'Inter', sans-serif;
	font-variation-settings: 'wght' 300, 'opsz' 20;
}

.slideshow_medias {
	margin: 0;
	padding: 0;
	z-index: 1;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	height: 100dvh;
	position: relative;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.slideshow_medias_small,
.slideshow_medias_small_sp {
	margin: 0;
	padding: 0;
	z-index: 1;
	width: 100%;
	height: 19vw;
	border: none;
	outline: none;
	display: flex;
	min-height: 300px;
	max-height: 350px;
	position: relative;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.slideshow_medias_small::after {
	top: 0;
	left: 0;
	width: 100%;
	content: "";
	height: 100%;
	display: flex;
	position: absolute;
	background-color: rgba(var(--cor10), 0.4);
}

.slideshow_medias_small_sp::after {
	top: 0;
	left: 0;
	width: 100%;
	content: "";
	height: 100%;
	display: flex;
	position: absolute;
	backdrop-filter: blur(8px);
	background-color: rgba(var(--cor10), 0.2);
}

.slideshow_media {
	top: 50%;
	left: 50%;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	display: none;
	object-fit: cover;
	position: absolute;
	transform: translate(-50%, -50%);
}

.selected_media {
	display: block!important;
}

@media screen and (max-width: 983px) {
	.slideshow_info_title,
	.slideshow_info_title_sp {
		font: 600 32px/40px 'Inter', sans-serif;
		font-variation-settings: 'wght' 600, 'opsz' 32;
	}
}

@media screen and (max-width: 768px) {
	.slideshow_medias_small_sp {
		display: none;
	}
}