.destination-container {
	width: 100%;
	height: 12vh;
	background: #ffcc0000;
	display: flex;
	align-items: center;
	justify-content: center;
}
.des-nav  {
	/* width: 100%; */
	/* margin-top: 10px/ */
	background: #fcfcfc;
	border-radius: 60px;
	padding: 15px;
	box-shadow: 0 20px 20px rgba(0, 0, 0, 0.829);
	display: flex;
	align-items: center;
	justify-content: center;
}
.des-nav ul li {
	display: inline-block;
	list-style: none;
	font-size: 2rem;
	padding: 0 10px;
	margin: 0 20px;
	cursor: pointer;
	position: relative;
}
.des-nav ul li:after {
	content: "";
	width: 0;
	height: 3px;
	background: #ffcc00;
	position: absolute;
	left: 0;
	bottom: -10px;
	transition: 0.5s;
}
.des-nav ul li:hover::after {
	width: 100%;
}


@media screen and (max-width: 768px) {
	
	.destination-container {
		height: auto; /* Adjust height to fit content */
	}
	
	.des-nav  {
		padding: 20px; /* Reduce padding for smaller screens */
	}
	
	.des-nav ul {
		flex-direction: column;
		margin-left: 0;
		margin-top: 0; /* Remove margin-top for better spacing */
	}
	
	.des-nav ul li {
		display: block;
		text-align: center;
		margin: 10px 0; /* Adjust margin for better spacing */
		padding: 10px; /* Add padding for better touch interaction */
	}
	
	.des-nav ul li:after {
		bottom: 0; /* Adjust position of the underline */
	}
}