@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
/* .noto-sans-<uniquifier> {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
} */

:root{
	/* NAVIGATION BAR APPEARANCE */
	--nvb-height: 75px;
	--nvb-menuitem-height: 40px;
	--nvb-bgcolor: #03759f;
	--nvb-bgcolor-shade: #03759f;
	--nvb-link-color: white;
	--nvb-link-color-hover: var(--color-logo-green-bright);
	--nvb-brand-font-size: 28px;
	--nvb-menu-font-size: 18px;
	--nvb-submenu-font-size: 16px;
	--nvb-submenu-top-border: 1px solid #0885af;
}

.nvb-space-reserve{
	position: relative;
	width: 100%;
	height: var(--nvb-height);
}

.nvb-nav-topband,
.nvb-nav-main{
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	height: var(--nvb-height);
	background-color: var(--nvb-bgcolor);
}

.nvb-nav-topband{
	z-index: 1;
	box-shadow: 0px 0px 5px 5px var(--nvb-bgcolor-shade);
}

.nvb-nav-main{
	max-width: var(--body-max-width);
	margin: 0 auto;
	font-family: "Noto Sans", sans-serif;
	font-size: var(--nvb-menu-font-size);
	z-index: 3;
}

.nvb-logo-brand{
	position: relative;
	width: fit-content;
	max-width: fit-content;
	height: var(--nvb-height);
	font-size: 20px;
	font-weight: 700;
	color: var(--nvb-link-color);
	line-height: var(--nvb-height);
	padding: 0 5px;
	display: inline-block;
}

.nvb-logo-brand img{
	margin: auto 0;
	vertical-align: middle;
}

.corp-name-2{
	display: unset;
}

.nvb-menu-toggle{
	font-size: 32px;
	color: var(--nvb-link-color);
	display: none;
}

.nvb-menu{
	position: relative;
	height: var(--nvb-height);
	float: right;
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	gap: 15px;
}

.nvb-menu > li{
	position: relative;
	padding: 0 5px;
	line-height: var(--nvb-height);
}

.nvb-menu > li a:active,
.nvb-menu > li a:link,
.nvb-menu > li a:visited{
	position: relative;
	color: var(--nvb-link-color);
	text-decoration: none;
	font-weight: 500;
	white-space: nowrap;
}

.nvb-menu > li a:hover{
	color: var(--nvb-link-color-hover);
}

.nvb-menu-prod, .nvb-menu-serv{
	position: absolute;
	left: 0px;
	min-width: 160px;
	border-radius: 0 0 5px 5px;
	background-color: var(--nvb-bgcolor);
	box-shadow: 1px 2px 4px var(--nvb-bgcolor-shade);
	padding: 0 5px;
	font-size: var(--nvb-submenu-font-size);
	line-height: 2.0;
	z-index: 2;
	opacity: 0.25;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.3s ease;
	/* 	Optional: Using max-height in dropdown menu animation by visibility method
		max-height: 0px;
		visibility: hidden;
		overflow-y: hidden;
		transition: max-height 0.2s ease;
	*/
}

.nvb-menu > li.li-prod:hover .nvb-menu-prod,
.nvb-menu > li.li-serv:hover .nvb-menu-serv{
	opacity: 1;
	transform: scaleY(1);
	/* 	Optional: Using max-height in dropdown menu animation by visibility method
		max-height: 200px;
		visibility: visible;
		overflow-y: auto;
	*/
	/* Add a "display:block" for coupling with "display:none" in mobile mode only */
	display: block;
}

.nvb-menu-prod > li, .nvb-menu-serv > li{
	list-style: none;
	border-top: var(--nvb-submenu-top-border);
	display: block;
}

.nvb-menu-prod > li a, .nvb-menu-serv > li a{
	display: block;
}

.nvb-prod-arrow, .nvb-serv-arrow{
	width: 22px;
	height: 100%;
	line-height: var(nvb-height);
	text-align: center;
	color: var(--nvb-link-color);
	transition: all 0.3s ease;
}

.nvb-menu li.li-prod:hover .nvb-prod-arrow,
.nvb-menu li.li-serv:hover .nvb-serv-arrow{
	transform: rotate(180deg);
}

.nvb-menu li a:hover + .nvb-prod-arrow,
.nvb-menu li a:hover + .nvb-serv-arrow{
	color: var(--nvb-link-color-hover);
}

/* ------------------- */
/* --- Sub menu(s) --- */
/* ------------------- */
.nvb-has-submenu{
	position: relative;
}

.nvb-menu-serv-item3{
	position: absolute;
	left: calc(100% + 5px);
	top: 0px;
	min-width: 160px;
	border-radius: 5px;
	background-color: var(--nvb-bgcolor);
	box-shadow: 1px 2px 4px var(--nvb-bgcolor-shade);
	padding: 0 5px;
	font-size: var(--nvb-submenu-font-size);
	line-height: 2.0;
	z-index: 2;
	opacity: 0;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.3s ease;
}

.nvb-menu-serv-item3 > li{
	list-style: none;
	border-top: var(--nvb-submenu-top-border);
	display: block;
}
.nvb-menu-serv-item3 > li:first-child{
	border-top: none;
}

.nvb-has-submenu:hover .nvb-menu-serv-item3{
	opacity: 1;
	transform: scaleY(1);
	/* Add a "display:block" for coupling with "display:none" in mobile mode only */
	display: block;
}

.nvb-has-submenu > a .nvb-serv-imex-arrow{
	width: 22px;
	height: 100%;
	line-height: 2.0;
	text-align: center;
	color: var(--nvb-link-color);
	transition: all 0.3s ease;
}

.nvb-has-submenu > a:hover .nvb-serv-imex-arrow{
	color: var(--nvb-link-color-hover);
	transform: rotate(180deg);
}

.nvb-has-submenu:hover .nvb-serv-imex-arrow{
	transform: rotate(180deg);
}

/* ------------------------------------------------------------------- */
/* --------------------------MEDIA QUERY/IES-------------------------- */
/* ------------------------------------------------------------------- */
@media screen and (max-width: 850px){
	.nvb-nav-main{
		height: auto;
	}
	
	@media (orientation: landscape){
		.nvb-space-reserve{
			display: none;
		}

		.nvb-nav-topband{
			position: relative;
			display: none;
		}
		
		.nvb-nav-main{
			position: relative;
			height: auto;
		}
	}
	
	.nvb-logo-brand{
		display: block;
	}
	
	.nvb-menu-toggle{
		position: absolute;
		top: 0px;
		right: 15px;
		height: var(--nvb-height);
		line-height: var(--nvb-height);
		cursor: pointer;
		display: block;
	}
	
	.nvb-menu{
		position: relative;
		height: auto;
		display: none;
		float: none;
	}
	
	.nvb-menu > li{
		width: 100%;
		display: block;
		line-height: 200%;
	}
	.nvb-menu > li:last-child{
		display: none;
	}
	
	.nvb-menu > li > a:only-child{
		display: block;
	}
	
	.nvb-menu-prod, .nvb-menu-serv{
		position: relative;
		display: none;
	}
	
	.nvb-menu-serv-item3{
		position: relative;
		left: 0px;
		right: 0px;
		display: none;
	}
	
	.resp{
		display: block;
	}
}

@media screen and (max-width: 352px){
	.corp-name-2{
		display: none;
	}
}