.site-header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
	transition: all 0.3s ease-in-out;

	.header-inner {
		position: relative;

		.site-logo {

			a {
				display: block;
				max-width: 150px;

				img {
					width: 100%;
				}

				.sticky-logo {
					display: none;
				}
			}
		}

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

			.menu-wrapper {
				display: flex;
				align-items: center;
				justify-content: center;
				position: relative;

				@media(max-width: 991px) {
					display: block;
				}

				&:before {
					content: '';
					display: block;
					position: absolute;
					top: 0;
					left: 0;
					width: 100%;
					height: 100%;
					background-color: rgba(0, 0, 0, 0.75);
					z-index: 99;
					opacity: 0;
					visibility: hidden;
					transition: all 0.5s ease-in-out;
				}
			}

			.nav-right {
				margin-left: 50px;

				.nav-btn {
					background: #fff;
					box-shadow: 0px 20px 30px 0px rgba(79, 35, 35, 0.15);
					color: $color__theme;
					display: inline-block;
					padding: 7px 37px;
					font-weight: 600;
					border-radius: 30px;
					font-size: 14px;
					border: 2px solid transparent;

					&:hover {
						background: $color__theme;
						color: #fff;
					}
				}
			}

			&.nav-two {
				.nav-right {
					.nav-btn {
						background: transparent;
						color: #fff;
						border: 2px solid #fff;
						box-shadow: none;
						padding: 6px 37px;

						&:hover {
							background: #fff;
							color: $color__theme-2;
							border-color: #fff;
						}

						@media(max-width: 991px) {
							border-color: $color__theme-2;
							color: $color__theme-2;

							&:hover {
								color: #fff;
								background-color: $color__theme-2;
								border-color: $color__theme-2;
							}
						}

						&.style-two {
							background-color: rgba(255, 255, 255, 0.1);
							border-color: rgba(255, 255, 255, 0.3);
							color: #fff;
							padding: 9px 37px;

							&:hover {
								background: #fff;
								color: $color__theme-2;
							}

							@media(max-width: 991px) {
								border-color: $color__theme-2;
								color: $color__theme-2;
							}
						}
					}
				}

				.site-main-menu {
					li {
						.sub-menu {
							li {
								a {

									&:hover,
									&.current_page {
										color: $color__theme-2;
									}
								}
							}
						}
					}
				}
			}
		}
	}

	.site-mobile-logo {
		display: none;
	}

	.site-main-menu {
		margin: 0;
		padding: 0;
		list-style: none;
		display: flex;

		li {
			margin: 0 23px;
			position: relative;
			padding: 36px 0;
			transition: all 0.3s ease-in-out;

			&:last-child {
				margin-right: 0;
			}

			> a {
				color: #fff;
				font-size: 15px;
				font-weight: 500;
				position: relative;

				&:after {
					content: '';
					position: absolute;
					bottom: -2px;
					width: 0;
					height: 1px;
					background: #fff;
					opacity: 1;
					transition: all 0.3s ease-in-out;
					left: 0;
				}

				&:hover,
				&.current_page {

					&:after {
						width: 100%;
						opacity: 1;
					}
				}
			}


			&.menu-item-has-children {

				&:after {
					// content: "\33";
					position: absolute;
					right: -18px;
					top: 50%;
					transform: translateY(-50%);
					font-family: eleganticons;
					font-size: 10px;
					font-weight: 700;
					color: #fff;
					font-size: 14px;
					transition: all 0.3s ease-in-out;
				}

				&:hover {
					&:after {
						color: $color__theme;
					}
				}
			}

			.sub-menu {
				display: block;
				margin: 0;
				padding: 23px 30px;
				list-style: none;
				background: #fff;
				box-shadow: 0px 0px 36px 4px rgba(79, 35, 35, 0.1);
				position: absolute;
				top: 110%;
				left: 0;
				min-width: 250px;
				visibility: hidden;
				opacity: 0;
				transition: all 0.3s ease-in-out;
				z-index: 999999;
				border-radius: 4px;

				li {
					display: block;
					margin: 0;
					padding: 0;

					&.menu-item-has-children {

						&:after {
							content: "\35";
							right: 0px;
							color: #333;
						}

						.sub-menu {
							left: 105%;
							top: 0;
							visibility: hidden;
							opacity: 0;
						}

						&:hover {
							.sub-menu {
								top: -23px;
								visibility: visible;
								opacity: 1;
							}
						}
					}


					a {
						display: block;
						padding: 3px 0;
						color: #ccc;
						font-size: 14px;
						font-weight: 500;

						&:after {
							display: none;
						}

						&:hover,
						&.current_page {
							color: $color__theme
						}
					}


					&:last-child {
						a {
							border-bottom: 0;
						}
					}
				}
			}

			&:hover {
				.sub-menu {
					opacity: 1;
					visibility: visible;
					top: 100%;
				}
			}
		}
	}

	.nav-dark {
		.site-main-menu {
			li {
				a {
					color: #2b2350;

					&:after {
						display: none;
					}

					&:hover,
					&.current_page {
						color: $color__theme;


					}
				}

				&.menu-item-has-children {

					&:after {
						color: #2b2350;

					}
				}
			}
		}
	}

	&.header-five {
		.header-inner {
			.site-nav {
				.menu-wrapper {
					justify-content: space-between;
					position: relative;
					width: 80%;

					@media(max-width: 991px) {
						width: 100%;
						display: block;
					}
				}

				.nav-right {

					@media(max-width: 991px) {
						display: block;
						text-align: left;
					}

					.nav-btn {
						background: transparent;
						color: #fff;
						box-shadow: none;
						border: 2px solid rgba(255, 255, 255, 0.302);
						border-radius: 4px;
						padding: 7px 24px;
						font-size: 16px;

						&:hover {
							background: #fff;
							border-color: #fff;
							color: $color__theme-2;

						}

						@media(max-width: 991px) {
							border-color: $color__theme-2;
							color: $color__theme-2;

							&:hover {
								color: #fff;
								background: $color__theme-2;
							}
						}
					}
				}
			}
		}

		.site-main-menu {
			li {
				a {
					color: #2b2350;

					&:after {
						display: none;
					}

					&:hover,
					&.current_page {
						color: $color__theme-2;


					}
				}

				&.menu-item-has-children {

					&:after {
						color: #2b2350;

					}
				}

				.sub-menu {
					li {
						a {

							&:hover,
							&.current_page {
								color: $color__theme-2;
							}

						}

					}
				}
			}
		}
	}

	&.header-six {
		.header-inner {
			.site-nav {
				justify-content: space-between;

				.nav-right {
					.nav-btn {
						background: transparent;
						border: 2px solid #efbbd9;
						color: $color__theme-4;
						box-shadow: none;

						&:hover {
							background: $color__theme-4;
							color: #fff;
							border-color: $color__theme-4;

						}
					}

					.login-btn {
						color: #646479;
						margin-right: 15px;
						font-weight: 500;

						i {
							margin-right: 5px;
						}

						&:hover {
							color: $color__theme-4
						}
					}
				}
			}
		}


		.site-main-menu {
			li {
				> a {
					color: $color__primary;

					&:hover {
						color: $color__theme-4;
					}
				}

				.sub-menu {
					li a {

						&:hover,
						&.current_page {
							color: $color__theme-4;
						}
					}
				}
			}
		}
	}

	&.header-seven {
		.header-inner {
			.site-nav {
				.menu-wrapper {
					justify-content: space-around;;
					position: relative;
					width: 80%;

					@media(max-width: 991px) {
						width: 100%;
					}
				}

				.nav-right {
					margin-left: 0;

					@media(max-width: 991px) {
						margin-left: 20px;
					}

					.nav-btn {
						background: transparent;
						color: #fff;
						box-shadow: none;
						border: 2px solid rgba(255, 255, 255, 0.302);
						border-radius: 4px;
						padding: 7px 24px;
						font-size: 16px;

						&:hover {
							background: #fff;
							border-color: #fff;
							color: $color__theme-5;

						}

						@media(max-width: 991px) {
							color: $color__theme-5;
							border-color: $color__theme-5;
						}
					}
				}
			}
		}

		.site-main-menu {
			li {
				a {
					color: #fff;

					&:after {
						display: none;
					}

					&:hover,
					&.current_page {
						color: $color__theme-5;


					}
				}

				&.menu-item-has-children {

					&:after {
						color: #2b2350;

					}
				}

				.sub-menu {
					li {
						a {

							&:hover,
							&.current_page {
								color: $color__theme-5;
							}

						}

					}
				}
			}
		}

		&.pix-header-fixed {
			.site-main-menu {
				li {
					a {
						color: #333;

						&:hover {
							color: $color__theme-5;
						}
					}

					&.menu-item-has-children {

						&:after {
							color: #2b2350;

						}
					}

				}
			}

			.header-inner {
				.site-nav {
					.nav-right {
						.nav-btn {
							border-color: $color__theme-5;
							color: $color__theme-5;


							&:hover {
								background: $color__theme-5;
								color: #fff;
							}
						}
					}
				}
			}
		}
	}

	&.header-eight {
		.toggle-menu {
			.bar {
				background: #0b0b0b;
			}
		}

		.header-inner {
			.site-nav {
				justify-content: space-between;

				.nav-right {
					.nav-btn {
						background: $color__theme-6;
						border: 2px solid $color__theme-6;
						color: #fff;
						box-shadow: none;
						border-radius: 4px;
						box-shadow: 0px 10px 20px 0px rgba(11, 176, 112, 0.3);

						&:hover {
							background: transparent;
							color: $color__theme-6;
							box-shadow: none;
						}
					}

				}
			}
		}


		.site-main-menu {
			li {
				> a {
					color: $color__primary;

					&:hover {
						color: $color__theme-6;

						&:after {
							background: $color__theme-6;

						}
					}
				}

				.sub-menu {
					li a {

						&:hover,
						&.current_page {
							color: $color__theme-6;
						}
					}
				}
			}
		}
	}

	&.header-nine {
		background: #fff;
		box-shadow: 0px 10px 20px 0px rgba(14, 3, 52, 0.08);

		.toggle-menu .bar {
			background: #1a133b;
		}

		.site-main-menu {
			li {
				padding: 26px 0;

				a {
					color: #615f6b;

					&:after {
						display: none;
					}

					&:hover,
					&.current_page {
						color: $color__theme-7;


					}
				}

				&.menu-item-has-children {
					&:after {
						color: #615f6b;

					}
				}
			}
		}

		.header-inner .site-nav {
			.nav-right {
				.nav-btn {
					box-shadow: none;
					border-radius: 6px;
					background: $color__theme-7;
					border: 1px solid $color__theme-7;
					color: #fff;
					padding: 4px 30px;
					font-weight: 500;

					&:hover {
						background: transparent;
						color: $color__theme-7;
					}
				}
			}
		}

	}

	&.header-hosting {

		.site-main-menu {
			li {

				a {
					color: #fff;

					&:after {
						display: none;
					}

					&:hover,
					&.current_page {
						color: $color__theme-8;


					}
				}

				.sub-menu {
					li a {

						&:hover,
						&.current_page {
							color: $color__theme-8;
						}
					}
				}

			}
		}

		&.pix-header-fixed {
			.site-main-menu {
				li {
					a {
						color: #2c234d;

						&:hover {
							color: $color__theme-8;
						}
					}

					&.menu-item-has-children {

						&:after {
							color: #2b2350;

						}
					}

				}
			}

			.header-inner {
				.site-nav {
					.nav-right {
						.nav-btn {
							border-color: $color__theme-8;
							color: $color__theme-8;


							&:hover {
								background: $color__theme-8;
								color: #fff;
							}
						}
					}
				}
			}
		}

		.header-inner .site-nav {
			.nav-right {
				.nav-btn {
					box-shadow: none;
					border-radius: 30px;
					background: transparent;
					border: 2px solid rgba(255, 255, 255, 0.302);
					color: #fff;
					padding: 4px 41px;

					&:hover {
						background: $color__theme-8;
						border-color: $color__theme-8;
						color: #fff;
					}

					@media(max-width: 991px) {
						border-color: $color__theme-8;
						color: $color__theme-8;
					}
				}
			}
		}

	}

	&.header-travel {
		border-bottom: 1px solid rgba(255,255,255,0.059);

		.toggle-menu {
			.bar {
				background: #fff !important;
			}
		}

		.site-main-menu {
			li {
				padding: 26px 0;
			}
		}

		.header-contact-info {
			color: #fff;
			font-size: 14px;

			i {
				margin-right: 10px;
				font-size: 16px;
			}
		}

		&.pix-header-fixed {
			.header-contact-info {
				color: $color__primary;
			}

			.toggle-menu {
				.bar {
					background: #2b2350 !important;
				}
			}
		}

		
	}

}



.logo-sticky {
	display: none;
}

.pix-header-fixed {
	top: 0;
	left: 0;
	right: 0;
	position: fixed;
	z-index: 999999;
	box-shadow: 0px 10px 20px 0px rgba(79, 35, 35, 0.08);
	animation: stickySlideDown .65s cubic-bezier(.23, 1, .32, 1) both;
	background: #fff;

	.header-inner {

		.site-logo {
			padding: 18px 0;

			.logo-sticky {
				display: block;
			}

			.logo-main {
				display: none;
			}
		}

		.site-nav {
			.nav-right {
				.nav-btn {
					background: transparent;
					color: $color__theme;
					box-shadow: none;
					border-color: $color__theme;

					&:hover {
						background: $color__theme;
						color: #fff;

					}

					
				}
			}

			&.nav-two {
				.nav-right {

					.nav-btn,
					.nav-btn.style-two {
						border-color: $color__theme-2;
						color: $color__theme-2;

						&:hover {
							background: $color__theme-2;
							color: #fff;
							border-color: $color__theme-2;
						}
					}
				}

				.site-main-menu {
					li {
						a {

							&:hover,
							&.current_page {
								color: $color__theme-2;
							}
						}
					}
				}
			}
		}
	}

	.site-main-menu {

		li {
			padding: 28px 0;

			&.menu-item-has-children:after {
				color: #333;
			}

			a {
				color: #333;

				&:after {
					display: none;
				}

				&:hover,
				&.current_page {
					color: $color__theme;

					&:before,
					&:after {
						background: $color__theme;
					}
				}
			}

		}
	}

	.site-logo {
		.main-logo {
			display: none;
		}

		.sticky-logo {
			display: block;
		}
	}

	&.header-five {
		.header-inner {
			.site-nav {

				.nav-right {
					.nav-btn {
						color: $color__theme-2;
						border: 2px solid $color__theme-2;

						&:hover {
							background: $color__theme-2;
							border-color: $color__theme-2;
							color: #fff;
						}
					}
				}
			}
		}
	}
}


.mask-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 3333;
	top: 0;
	left: 0;
}

.close-menu {
	display: none;
}

.home-color-two {
	.return-to-top {
		&:hover {
			&:after {
				transform: scale(1.07);
				background: $color__theme-2;
				box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
			}

			> i {
				text-shadow: 0px -50px #fff, 0px 0px #fff;

			}
		}
	}
}

@media (max-width: 991px) {

	.toggle-menu {
		position: absolute;
		left: 0;
		width: 26px;
		top: 50%;
		transform: translateY(-50%);
		display: block;
		height: 24px;

		.bar {
			width: 18px;
			height: 2px;
			display: block;
			float: left;
			margin: 3px auto;
			transition: all 0.3s ease-in-out;
			background: #fff;

			&:nth-child(2) {
				width: 24px;
			}
		}
	}

	.site-header {
		.header-inner {
			text-align: center;
			padding: 15px 0;

			.site-nav {
				.nav-right {
					margin-left: 20px;

					.nav-btn {
						padding: 8px 22px;
					}
				}
			}
		}

		.site-mobile-logo {
			display: block;
		}

		.site-main-menu {
			li {
				margin: 0 15px;
			}
		}

		.site-logo {
			display: none;
		}

		&.header-two {
			&.toggle-light {
				.toggle-menu .bar {
					background: #fff;
				}
			}
		}

		&.header-five, &.header-six {
			.toggle-menu .bar {
				background: #333;
			}
		}
	}


	.site-header {
		.site-nav {
			position: fixed;
			width: 320px !important;
			height: 100vh;
			background: #fff;
			top: 0;
			left: -100%;
			display: block !important;
			transition: all 0.5s ease-in-out;
			overflow: scroll;
			box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);

			.site-main-menu {
				display: block;
				width: 100%;
				padding-bottom: 20px;
				text-align: left;

				li {
					padding: 0;
					margin: 0;
					border-bottom: 1px solid #f1f2f3;

					&:first-child {
						border-top: 1px solid #f1f2f3;
					}

					a {
						display: block;
						color: #888888;
						padding: 6px 35px;
						font-weight: 400;

						&:after {
							display: none;
						}
					}

					&.menu-item-has-children {
						position: relative;

						&:after {
							display: none;
						}

						a:hover,
						&:focus {
							color: $color__theme;
						}

						i {
							position: absolute;
							top: 6px;
							right: 20px;
							display: block;
							width: 30px;
							height: 30px;
							text-align: center;
							line-height: 30px;
							z-index: 222;
						}

						.sub-menu {
							position: static;
							box-shadow: none;
							opacity: 1;
							width: auto;
							visibility: visible;
							background: transparent;
							padding: 0;
							display: none;
							transition: none;

							li {
								padding: 0;

								&:first-child {
									border-top: 1px solid #f1f2f3;
								}

								&:last-child {
									border-bottom: none;
									padding-bottom: 0;
								}

								a {
									color: #888888;
									font-weight: 400;
									padding: 5px 35px 5px 45px;
								}

								&.menu-item-has-children {
									.sub-menu {
										opacity: 1;
										visibility: visible;
										position: relative;
										left: 0;
										top: auto;

										li {
											a {
												padding-left: 60px;
											}
										}
									}

									&:after {
										content: "\33";
										color: #fff;
									}


								}
							}
						}
					}
				}
			}

			.nav-right {
				// display: none;

				text-align: left;
				padding-left: 13px;
			}

			&.nav-two {
				.site-main-menu {
					li.menu-item-has-children {

						&:hover,
						&:focus {
							color: $color__theme-2;

							&:after {
								color: $color__theme-2;
							}
						}

						a {

							&:hover,
							&:focus {
								color: $color__theme-2;
							}
						}
					}

				}
			}
		}

		&.header-two {
			.toggle-menu .bar {
				background: $color__primary;
			}
		}
	}

	.header-inner {
		.site-mobile-logo {
			img {
				max-height: 30px;
				transition: all 0.3s ease-in-out;
			}
		}
	}

	.pix-header-fixed {
		.toggle-menu {
			top: 30px;

			.bar {
				background: #333;
			}
		}

		.site-main-menu {
			li {
				a {
					color: #fff;
				}

				&.menu-item-has-children:after {
					color: #fff;
				}
			}
		}

		.header-inner .site-logo {
			padding: 12px 0;
		}

		&.header-two {
			&.toggle-light {
				.toggle-menu .bar {
					background: #000;
				}
			}
		}
	}

	.sidebar-open {
		.site-header {
			.site-nav {
				left: 0;
			}
		}

		.menu-wrapper:before {
			opacity: 1;
			visibility: visible;
		}
	}

	.close-menu {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		top: 0;
		text-align: right;
		width: 100%;
		left: 0;
		padding: 2px;
		padding: 30px 20px;

		i {
			font-size: 36px;
			color: $color__primary;
		}

		span {
			font-size: 15px;
		}
	}


	.header-dark {
		.toggle-menu .bar {
			background: $color__primary;
		}
	}
}

@media (max-width: 420px) {
	.site-header .site-nav {
		width: 100% !important;
	}
}