
/* #Navigation
================================================== */

.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 10px 0;
	box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;	
	/* background-color: #fff; */

	background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
	padding: 10px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
	background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}


.navigation-wrap{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}


.navbar{
	padding: 0;
}
.navbar-brand img{
	height: 48px;
	width: 39;
	display: block;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
	border: none;
	box-shadow: none;
}
.navbar-light .navbar-toggler-icon {
	width: 24px;
	height: 17px;
	background-image: none;
	position: relative;
	border-bottom: 1px solid #000;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after, 
.navbar-light .navbar-toggler-icon:before{
	width: 24px;
	position: absolute;
	height: 1px;
	background-color: #000;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}
.nav-link{
	color: #212121 !important;
	font-weight: 500;
    transition: all 200ms linear;
}
.nav-item:hover .nav-link{
    color: #2E3192 !important;
	/* color: var(--secondary-500) !important; */
}
.nav-item.active .nav-link{
	/* color: var(--secondary-500) !important; */
    border: 2px solid #2E3192;
    border-radius: 15px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    color: #2E3192 !important;
}
.nav-link {
	position: relative;
	padding: 5px 0 !important;
	display: inline-block;
}
/* .nav-item:after{
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 1px;
	content: '';
	background-color: var(--secondary-500);
	opacity: 0;
    transition: all 200ms linear;
} */
.nav-item:hover:after{
	/* bottom: 0; */
	opacity: 1;
}
.nav-item.active:after{
	/* bottom: 0; */
	opacity: 1;
}
/* .nav-item.active:hover:after{
	opacity: 0;
} */
.nav-item{
	position: relative;
    transition: all 200ms linear;
}

.dropdown-toggle::after {
	display: none;
}

.dropdown-item {
	padding: 3px 15px;
	color: #212121;
	border-radius: 2px;
    transition: all 200ms linear;
}
.dropdown-item:hover, 
.dropdown-item:focus {
	color: #fff;
	background-color: var(--primary-200);
}

/* #Media
================================================== */

@media (max-width: 991px) { 
	.nav-item:after{
		display: none;
	}
	
	
	
	.dropdown-toggle[aria-expanded="true"]::after{
		transform: rotate(90deg);
		opacity: 0;
	}


}


/****************************************************************
// language switcher */
.language-switcher{
	/* background: var(--gradient-g5); */
	background-color: #ffcc66;
	padding: .8px;
}
.language-switcher:hover,
.language-switcher:focus{
	box-shadow: none;
}
.language-switcher .inner-btn{
    position: relative;
	/* background: white; */
	color: #36249b;
    padding: 3px 10px 0 10px;
    z-index: 1;
}
.language-switcher .inner-btn::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 6px;
    background: var(--color-style-g5);
    transition: opacity 500ms ease;
    z-index: -1;
    opacity: 0;
}

/****************************************************************
// navbar services */
.nav-services .divider-line{
    width: 7px;
    background-color: white;
    transform: skewX(30deg);
    height: 101%;
}
.nav-services .our-store{
	background: var(--gradient-g1);
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	clip-path: polygon(0 0, 100% 0%, 78% 100%, 0% 100%);
    transform: translateX(10px);
}
.nav-services .client-area{
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	clip-path: polygon(0 100%, 400px calc(100% - 800px), 100% 0, 100% 100%);
}




/****************************************************************
// mobile menu */
.navbar .mobile-social{
    display: flex;
    flex-direction: column;
	justify-content: center;
	text-align: center;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}
.navbar .mobile-social a{
	font-size: 14px;
	text-decoration: none;
	color: var(--primary-200);
}
.navbar .mobile-social a.m-social-link{
	font-size: 18px;
}
.navbar .mobile-social a.main-links{
	color: var(--white);
}
.navbar .mobile-social a.main-links.clinet-area{
	border-top-left-radius: 20px;

}
@media screen and (max-width: 991px) {
	.nav-container{
		max-width: 100% !important;
		padding: 0 !important;
	}
	.navbar-pages li a{
		font-size: 18px !important;
	}
}



/****************************************************************
// nav drop menu */
.nav-dropdown-menu{
	position: relative;
}
.nav-dropmenu{
	display: none;
}
.nav-dropmenu ul{
	list-style: none;
}
.nav-dropmenu ul li{
	margin-bottom: 10px;
}
.nav-drop-link{
	text-decoration: none;
	color: #000;
	text-wrap: nowrap;
}
.nav-drop-link:hover{
    color: #2E3192 !important;
	/* color: var(--secondary-500) !important; */
}
@media screen and (min-width: 991px) {
	
	.nav-dropmenu{
		position: absolute;
		background: #fff;
		box-shadow: 0px 1px 11px -6px;
		border-radius: 4px;
		top: 35px;
		padding: 10px 20px;
		min-width: 200px;
		z-index: 1000;
	}
	.nav-dropmenu ul{
		padding: 0;
	}
}