@charset "utf-8";
/* CSS Document */
header {
	display: none;
}
.main_menu.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 10004;
	background: #6d499b;
}
.sticky .top_menu_sec {
	padding: 5px 0px;
}
header {
	/* background: #6d499b; */
	width: 100%;
	/* box-shadow: rgba(50, 50, 93, 0.8) 0px 50px 100px -20px, rgba(0, 0, 0, 0.8) 0px 30px 60px -30px; */
	padding: 20px 10px;
}
header  .container {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	display: flex;
	position: relative;
	justify-content: space-between;
	align-items: center;
}
.logo {
	font-weight: bold;
	font-size: 1.25rem;
}
nav ul {
	list-style: none;
	display: flex;
	gap: 1.5rem;
	font-size: 1rem;
}
a {
	text-decoration: none;
}
nav ul li a {
	font-size: 16px;
	font-weight: 400;
	color: #FFF;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	padding: 10px 0px;
	position: relative;
	text-decoration: none !important;
    transition: all 0.5s ease;
}
nav ul li a:hover {
    color: #FFF;
}
nav ul li a::after {
	position: absolute;
	content: '';
	background: #FFF;
	width: 0%;
	height: 2px;
	left: 0;
	bottom: 0;
	transition: all 0.5s ease;
}
nav ul li a:hover::after {
    width: 100%;
}
#burger {
	display: none;
}

@media (max-width: 768px) {
#burger {
    box-sizing: initial;
    display: block;
    width: 2rem;
    color: white;
    cursor: pointer;
    margin-bottom: 0.5em;
}
#burger:focus {
    border: none;
    outline: none;
}
nav {
	position: absolute;
	right: 0;
	top: 6em;
	background: #6d499b;
	min-width: 15em;
	padding: 2em;
	box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
	clip-path: circle(0% at 100% 0);
	transition: all 500ms ease-in-out;
}
nav.show {
    clip-path: circle(200% at 100% 0);
    transition-duration: 300ms;
}
nav ul {
    flex-direction: column;
}
}