*{
	--green: #7FEF9F;
	--black: #011C16;
}

.fade-image-slider {
	position: relative;
}

.image-container {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
	border: 12px solid black;
	border-radius: 1rem;
}

.fade-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: opacity 0.5s ease;
	opacity: 0;
}

.fade-slide:first-child {
	opacity: 1;
}

.titles {
	position: absolute;
	bottom: 1.25rem;
	right: 1.25rem;
	display: flex;
	flex-direction: column;
	background-color: var(--black);
	color: white;
	padding: 0.5rem;
	border-radius: 0.5rem;
	min-width: 200px;
}

.title-inner{
	font-size: 12px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.title-collection{
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.title-collection .fade-title:first-child {
	margin-top: 0.5rem;
}

.fade-title {
	background: transparent;
	color: var(--green);
	border: none;
	padding: 4px 8px;
	border-radius: 4px;
	cursor: pointer;
	transition: all 300ms ease;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
}

.circle-sm{
	height: 0.25rem;
	width: 0.25rem;
	border-radius: 99rem;
	background-color: var(--green);
	transition: all 300ms ease;
}

.fade-title.active .circle-sm, .fade-title:hover .circle-sm{
	background-color: var(--black);
}

.fade-title.active, .fade-title:hover{
	background-color: var(--green);
	color: var(--black);
}

.title-collection {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.title-collection.active {
    max-height: 200px; /* Adjust to the expected height or use auto for dynamic content */
}

.accordion-arrow svg {
    transition: transform 0.3s ease-in-out;
}

.accordion-arrow svg.rotated {
    transform: rotate(180deg);
}