header {
	align-content: center;
}

div#navbarNavAltMarkup ul {
	display: flex;
	margin: 0;
	padding: 0;
	gap: 24px;
	margin-right:auto;
	margin-left:auto;
}

header .navbar {
	border-radius: 4px;
	background: rgba(35, 36, 54, 0.9);
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(6px);
	margin-top: 24px;
	padding: 30px 40px;
}

header .navbar-brand {
	height: 60px;
	align-content: center;
}

header img {
	max-width: 109.231px;
}

header .navbar-nav {
	gap: clamp(
		0.625rem,
		-2.0833rem + 3.6111vw,
		2.25rem
	); /* @1920 36px @1200 10px */
}

header li {
	display: flex;
	gap: 12px;
	align-items: center;
}

header li:hover a {
	color: var(--yellow-orange);
}

.current-menu-item a {
	color: var(--yellow-orange);
}

header a {
	color: var(--white, #fff);
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-decoration: none;
}

header .cta {
	width: 150px;
}

header div.sm_desk {
	display: none;
}

header div.tab {
	display: none;
}

header div.mob {
	display: none;
}

.navbar .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .navbar-toggler:focus {
	color: white;
	box-shadow: none;
}

header div.lg_desk {
    display: flex;
	width: 23%;
	justify-content: end;
}

header div.lg_desk,
header div.tab,
header div.mob,
header div.sm_desk
{
	flex-direction: row;
    gap: 12px;
	flex-wrap: wrap;
}

header .logo_cta {
    max-width:110px;
}


@media (max-width: 1799px) {
	header div.sm_desk {
		display: flex;
	}

	header div.lg_desk {
		display: none;
	}

	header .navbar {
		padding: 30px 20px;
	}
}
@media all and (max-width:1366px){
    header a {
        font-size: 14px;
    }
}
@media (min-width: 1200px) {
	header .menu-item-has-children:hover .sub-menu {
		display: flex;
	}
}

@media (max-width: 1199px) {
    .navbar-collapse,
    .navbar-collapse > .d-flex{
        margin-top:25px;
    }
	header {
		background: linear-gradient(180deg, rgba(28, 29, 43, 0) 100%, #1a3b62 100%),
			linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
			#232436;
	}

	header button.btn-burger {
		border: none;
	}

	header li {
		min-height: unset;
		align-items: start;
	}

	header div.tab {
		margin-left: auto;
		margin-right: 24px;
	}

	div#navbarNavAltMarkup ul {
		flex-direction: column;
	}

	header div.sm_desk {
		display: none;
	}

	header div.tab {
		display: flex;
	}

	.logo_cta {
		width: unset;
	}
}

@media (max-width: 767px) {
	header .navbar-light {
		padding: 20px;
	}

	header .contact_bar {
		flex-direction: column;
		align-items: baseline;
	}

	header .cta {
		width: 150px;
	}
}

@media (max-width: 575px) {
	header div.tab {
		display: none;
	}

	header div.mob {
		display: flex;
		margin: 24px 0 0;
	}
}
