main .countdown {
	background-image: url('images/count.png');
	background-repeat: no-repeat;
	background-size: cover;
	padding: 2rem;
	animation: fadeIn 1s ease-out;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 5px !important;
	background-position: center;
	justify-content: space-around;
	align-items: center;
}

.countdown {
	display: flex !important;
	flex-wrap: wrap;
	justify-content: center;
}

main .countdown__wrapper {
	display: flex;           /*flex-wrap: wrap;*/
	gap: .8rem;
	align-items: center;
	width: 100%;
	justify-content: center;
	margin-bottom: 2rem;
}

main .countdown__segment {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	width: 20%;
}

main .countdown__label {
	font-size: 18px;
	color: #fff;
	text-align: center;
	font-weight: 700;
}

main .countdown__value {
	background: linear-gradient(to bottom, #44091e 0%, #34040a 100%, #44091e);
	border: 5px solid #fff;
	outline: 3px solid #712;
	border-radius: 15px;
	min-height: clamp(70px, 18vw, 150px);
	display: grid;
	place-items: center;
	font-size: 1.2rem;
	font-weight: bold;
	box-shadow: var(--timer-shadow);
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
	color: #fff;
	width: 100%;
}

main .countdown__value::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
}

main .countdown__value:hover {
	transform: translateY(-2px);
}

main .countdown__separator {
	font-size: 5.5rem;
	font-weight: bold;
	margin-top: 2rem;
	animation: pulse 2s infinite;
	color: #fff;
	text-align: center;
	display: none;
}

main .countdown__info {
	width: 100%;
	color: #fff;
	text-align: center;
	line-height: 40px;
	margin: 0px;
}

main .countdown__date {
	font-size: 35px;
	font-weight: bold;
	line-height: 40px;
	margin: 20px 0;
	font-weight: 800;
}

main .countdown__year {
	font-size: 40px;
	opacity: 0.8;
	margin: 10px 0;
	font-weight: 800;
}

main .countdown__text {
	line-height: 40px;
	font-size: 35px;
	color: #fff;
	font-weight: 800;
	margin: 10px 0;
}

@media (min-width:776px) {
	main .countdown__label {
		font-size: 25px;
	}

}

@media (min-width:900px) {
	main .countdown__wrapper {
		gap: 0.25rem;
	}

	main .countdown__separator {
		display: block;
	}

	main .countdown__wrapper {
		display: grid;
		width: 70%;
		grid-template-columns: repeat(7, 0.7fr);
	}

	main .countdown__info {
		width: 25%;
		text-align: center;
		margin-top: 2rem;
	}

	main .countdown__value {
		font-size: 5.5rem;
	}

	main .countdown__segment {
		width: auto;
	}

}

/*  */
.schedule-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
	opacity: 0;
	padding: 0 !important;
}

.schedule-card {
	cursor: pointer;
}

.schedule-card p {
	font-size: 20px;
	margin: 10px;
	line-height: 28px;
}

.schedule-content.open {
	min-height: 40px;           /* Adjust based on your content height */
	max-height: 300px;
	opacity: 1;
	padding: 10px !important;
}

/*  */
.image-slider {
	width: 100%;
	margin: 40px auto;
}

.image-slider img {
	width: 100px;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-slider .slick-slide {
	display: flex !important;
	justify-content: center;
	padding: 10px;
}

.image-slider .slick-dots {
	margin-top: 40px !important;
	bottom: -40px !important;
}

.slick-dots .slick-active {
	background: #712 !important;
	border-radius: 50%;
	color: #fff !important;
}

.slick-dots li button:before {
	background: #712 !important;
	border-radius: 50%
}

.slick-dots li button:before {
	background: #712 !important;
	color: #712 !important;
}

.footer-top-menu {
	list-style: none;
}

footer a {
	text-decoration: none;
	color: #fff;
}