.navigation{
	width: 100%;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	opacity: 1 !important;
	z-index: 500;
	transform: translateZ(0px) !important;
	z-index: 5000 !important;
	pointer-events: all !important;
}
.upper_nav{
	width: 100%;
	height: 3rem;
	background: #333;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row wrap;
	padding: 0px 70px;
	font-size: 0.9rem;
}
.upper_nav .left,.upper_nav .right{
	display: flex;
	justify-content: center;
	align-items: center;
}
.upper_nav .left .option{
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0px 15px;
}
.upper_nav .left .option i{
	margin-right: 8px;
}
.upper_nav .right ul{
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
}
.upper_nav .right ul li{
	margin: 0px 15px;
}
.upper_nav a{
	text-underline-offset: 1.5px;
	color: #fff;
	font-size: 0.9rem;
}
.upper_nav a i{
	font-size: 1rem;
}

/* --------------------------- Bottom Part ------------------------------- */


.bottom_nav{
	width: 100%;
	height: 5.4rem;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 0 0 70px;
	background: #fff;
}
.bottom_nav .header-review{
	gap: 8px;
	padding: 0.4rem 1.6rem;
	border-radius: 88rem;
	background-color: #f5f5f5;
	height: auto;
}
.bottom_nav .header-review p{
	font-size: 0.8rem;
}
.bottom_nav .header-review .review-star-wrap{
	gap: 2px;
	color: rgb(255, 162, 22);
}
.bottom_nav div{
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.6rem;
}
.bottom_nav ul{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	list-style: none;
}
.bottom_nav ul li{
	margin: 0px 15px;
	transition: 0.5s;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	position: relative;
}
.bottom_nav ul li:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 2px;
	background: var(--blue);
	transition: 0.5s;
}
.bottom_nav ul li:hover:before, .bottom_nav ul li.active:before{
	width: 100%;
}
.bottom_nav ul li.active a{
	color: var(--blue);
}
.bottom_nav a{
	text-decoration: none;
	color: #000;
	font-size: 0.8rem;
}
.bottom_nav button i{
	margin-left: 10px;
}
.bottom_nav button{
	height: 100%;
	padding: 0px 40px;
	outline: none;
	border: none;
	background: var(--blue);
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	cursor: pointer;
	position: relative;
	left: 0px;
}
.bottom_nav .menu_bar_mob{
	display: none;
}

/* Footer CSS */
footer{
	color: var(--light);
}
footer .logoBox{
	margin-bottom: 1rem;
}
.footer_grid{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2.4rem;
}

.footer_social ul{
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1rem;
	list-style: none;
}
footer a{
	color: var(--light);
	text-decoration: none;
	display: block;
	transition: 0.4s;
}
footer a:hover{
	color: var(--secondary);
}
.footer_col_1 h4{
	font-weight: 500;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}
.footer_nav ul{
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}
/* Footer CSS */


@media only screen and (max-width: 1180px){
	.bottom_nav .header-review{
		display: none;
	}
}
@media only screen and (max-width: 992px){
	.footer_grid{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 600px){
	.navigation{
		z-index: 50000;
	}
	.upper_nav{
		display: none;
	}

		/* --------------------------- Bottom Part ------------------------------- */

	.bottom_nav{
		width: 100%;
		height: 4.5rem;
		box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0px 20px;
		position: relative;
		z-index: 2000;
	}
	.bottom_nav .menu_bar_mob{
		display: block;
		width: 24px;
		height: 30px;
		background: transparent;
		position: relative;
	}
	.bottom_nav .menu_bar_mob .bar{
		width: 100%;
		height: 2px;
		background: #000;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		transition: 0.5s;
	}
	.bottom_nav .menu_bar_mob .bar.bar1{
		top: 25%;
	}
	.bottom_nav .menu_bar_mob .bar.bar2{
		top: 50%;
	}
	.bottom_nav .menu_bar_mob .bar.bar3{
		top: 75%;
	}
	.bottom_nav .menu_bar_mob.active .bar.bar1{
		top: 50%;
		transform: translate(-50%,-50%) rotate(45deg);
	}
	.bottom_nav .menu_bar_mob.active .bar.bar3{
		top: 50%;
		transform: translate(-50%,-50%) rotate(-45deg);
	}
	.bottom_nav .menu_bar_mob.active .bar.bar2{
		left: 100%;
		opacity: 0;
	}
	.bottom_nav .midBox{
		position: fixed;
		top: 4.5rem;
		left: -500px;
		width: 100%;
		height: auto;
		background: var(--dark);
		z-index: 100;
		padding: 40px 0px;
		transition: 1s;
	}
	.bottom_nav .midBox.active{
		left: 0;
	}
	.bottom_nav .midBox ul{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: space-around;
		align-items: center;
		flex-direction: column;
		margin-top: 0rem;
		gap: 2rem;
	}
	.bottom_nav ul li:hover:before, .bottom_nav ul li.active:before{
		width: 100%;
	}
	.bottom_nav ul li.active a{
		color: var(--white);
	}
	.bottom_nav .midBox ul a{
		color: #fff;
	}
	
	.bottom_nav button{
		position: fixed;
		top: 92vh;
		left: 150%;
		transform: translateX(-50%);
		width: 90%;
		height: 50px;
		z-index: 150;
		transition: 1s;
	}
	.bottom_nav button.active{
		left: 50%;
	}

	/* Footer CSS */
	.footer_grid{
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}