header {
	display: flex;
	justify-content: space-between;
	position: fixed;
	top: 1%;
	left: 5%;
	width: 90%;
	height: clamp(48px, 6vh, 200px);
	padding: 10px 0;
	z-index: 20;
	background: linear-gradient(200deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 0 50px 1px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 20%);
}

.post_header_menu {
	visibility: hidden;
	display: flex;
	justify-content: space-evenly;
	position: fixed;
	top: calc(clamp(48px, 6vh, 200px) + 30px + 1%);
	left: 5%;
	width: 90%;
	height: clamp(36px, 5vh, 50px);
	z-index: 19;
	background: linear-gradient(290deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: 0.5s;
	border-radius: 0 0 16px 16px;
	box-shadow: 0 0 100px -5px black;
}

.post_header_menu ul {
	display: flex;
	justify-content: space-evenly;
	flex-direction: row;
	align-items: center;
	width: 90%;
	list-style: none;
	padding: 0;
}

.post_header_menu ul i {
	color: white;
}

.mobile_header_button {
	text-decoration: none;
	color: white;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Mukta', sans-serif;
}

.mobile_header_button:hover {
    font-weight: 600;
}

.main_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0 3%;
}

.container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.logos {
	display: flex;
	transition: 0.5s
}

.logos a {
	margin-right: 30%;
	display: flex;
	align-items: center;
}

.logos img {
	height: 50px;
}

.navbar {
	padding: 0;
}

.navbar ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.navbar ul li {
	display: inline-block;
	text-align: center;
	margin-left: 8px;
	width: auto;
}

.navbar ul li a {
	color: white;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}

.header_button {
	position: relative;
	padding: 14px;
	color: white;
	border-radius: 6px;
	transition: 0.7s;
	transition-delay: .2s;
}

.header_button:after {
	content: "";
	position: absolute;
	top: 70%;
	left: 50%;
	height: 2px;
	width: 0;
	border: none;
	background: white;
	transition: 0.2s ease-out;
}

.header_button:hover:after {
	width: 80%;
	left: 10%;
}

.empty_button {
	padding: 5px 22px;
	text-decoration: none;
	border: 2px solid white;
	border-radius: 10px;
	transition: 0.2s;
}

.empty_button:hover {
	background: white;
	color: black;
}

.navbar ul li a.full_button {
	padding: 5px 22px;
	text-decoration: none;
	border: 2px solid white;
	color: black;
	background: white;
	border-radius: 10px;
	transition: 0.4s;
}

.navbar ul li a.full_button:hover {
	background: transparent;
	color: white;
}

.mobile_dropdown {
	display: none;
	border: 0;
	position: relative;
	margin-left: 30px;
}

.dropdown {
	position: relative;
	display: inline-block;
	margin-left: 30px;
}

.dropbtn, .mobile_dropbtn {
	padding: 7px 16px;
	text-decoration: none;
	cursor: pointer;
	background-color: white;
	color: black;
	border-radius: 5px;
	border: 2px solid white;
	font-family: 'Mukta', sans-serif;
	font-size: 12px;
	font-weight: 600;
	transition: 0.7s;
}

.dropbtn:hover, .mobile_dropbtn:hover {
	border-color: #fff;
	background-color: transparent;
	color: white;
	transition: 0.5s;
}

.dropdown-content, .mobile_dropdown_content {
	display: none;
	position: absolute;
	right: 0;
	min-width: 160px;
	z-index: 1;
	box-shadow: 1px 1px 7px 0 rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	background-color: #f9f9f9;
	font-weight: 500;
}

.dropdown-content a, .mobile_dropdown_content a {
	display: block;
	padding: 12px 16px;
	text-decoration: none;
	border-radius: 10px;
	color: black;
	font-size: 13px;
}

.dropdown-content a:hover, .mobile_dropdown_content a:hover {
	background-color: #E3E3E3;
}

.dropdown:hover .dropdown-content, .mobile_dropdown:hover .mobile_dropdown_content {
	display: block;
}

.day_night_shifter {
	top: 50%;
	left: 50%;
	z-index: 1;
}

.day_night_shifter input {
	display: none;
}

.day_night_shifter input + label {
	display: block;
	position: relative;
	width: 45px;
	height: 15px;
	padding: 7px;
	cursor: pointer;
	border-radius: 60px;
	background: rgba(0, 0, 0, 0.25);
	transition: all 1s ease;
}

.day_night_shifter input + label:before {
	content: "";
	display: inherit;
	position: absolute;
	left: 10px;
	width: 16px;
	height: 15px;
	box-shadow: 0 0 65px rgba(255, 255, 255, 0.5);
	border-radius: inherit;
	background: #fff;
	transition: all 1s ease;
}

.day_night_shifter input:checked + label {
	background: rgba(0, 0, 0, 1);
}

.day_night_shifter input:checked + label:before {
	left: 33px;
	box-shadow: 0 0 65px rgba(253, 196, 114, 0.5);
	background: #fff;
}

@media screen and (max-width: 900px) {
	header {
		border-radius: 16px 16px 0 0;
		border-bottom: none;
	}

	.main_container {
		margin: 0 4%;
	}

	.post_header_menu {
		visibility: visible;
		top: calc(clamp(48px, 6vh, 200px) + 20px + 1%);
		border: 2px solid rgba(255, 255, 255, 20%);
		border-top: none;
	}

	.navbar ul li:nth-child(1), .navbar ul li:nth-child(2), .navbar ul li:nth-child(3), .navbar ul li:nth-child(4) {
		visibility: hidden;
		display: none;
	}
}

@media screen and (max-width: 550px) {
	.logos img {
		height: 50px;
	}

	.logos a {
		margin-right: 20%;
	}

	header .main_container,
	.main_container .container {
		padding: 0;
	}
}

@media screen and (max-width: 450px) {
	header,
	.post_header_menu {
		left: 2.5%;
		width: 95%;
	}

	.dropdown {
		margin-left: 0;
	}

	.container {
		padding: 0 3% 0 1%;
	}

	.logos a {
		margin-right: 10%;
	}

	.post_header_menu ul {
		padding: 0;
	}
}

@media screen and (max-width: 385px) {
    .logos img {
		height: 40px;
	}
	
	.post_header_menu ul li a, .post_header_menu ul i {
		font-size: 12px;
	}
}