.slideshow {
	padding: 0;
	width: 100%;
	border: none;
	height: auto;
	outline: none;
	display: flex;
	overflow: hidden;
	margin: 0 0 48px 0;
	position: relative;
	border-radius: 32px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	transition: all 0.2s ease;
}

.slideshow_infos {
	left: 0;
	top: 50%;
	margin: 0;
	z-index: 2;
	border: none;
	outline: none;
	display: flex;
	padding: 20px;
	position: absolute;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	width: calc(100% - 40px);
	transform: translateY(-50%);
}

.slideshow_info {
	gap: 24px;
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: none;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.selected_info {
	display: flex!important;
}

.slideshow_info_title {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	text-align: center;
	color: var(--cor13);
	word-break: break-word;
	transition: all 0.2s ease;
	text-align: -webkit-center;
	font: normal 60px/72px Calistoga-Regular;
}

.slideshow_info_title_sp {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: center;
	color: var(--cor13);
	word-break: break-word;
	transition: all 0.2s ease;
	text-align: -webkit-center;
	width: clamp(0%, 100%, 520px);
	font: normal 48px/60px Calistoga-Regular;
}

.slideshow_info_title_sp span {
	color: var(--cor23)!important;
}

.slideshow_medias {
	margin: 0;
	padding: 0;
	z-index: 1;
	width: 100%;
	height: 35vw;
	border: none;
	outline: none;
	display: flex;
	min-height: 400px;
	max-height: 500px;
	position: relative;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.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: 700px) {
	.slideshow {
		border-radius: 0;
		margin: 0 0 48px -20px;
		width: calc(100% + 40px);
	}
	.slideshow_info_title,
	.slideshow_info_title_sp {
		font: normal 42px/50px Calistoga-Regular;
	}
}