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

/*-------------------------------------------------------------*/
/* Topnav  */

.topnav{
	height: 40px;
	/* background-color: #426a90; */
	background-color: #152e57;
	position: fixed;
    width: 100%;
    z-index: 999999;
	top: 0px;
	color: white;
	line-height: 2;
	max-width: 960px;
	/* margin: 0 auto; */
	padding: 0 calc((100% - 960px) / 2);
	/* box-sizing: content-box; */
	/* box-shadow: 0px 0px 8px 2px #00000085; */
}

.topnav-area {
	float: right;
	display: flex;
	height: 40px;
}

.topnav-link {
	width: 20%;
	text-align: center;
	padding: 5px 18px;
	position: relative;
	display: flex;
    flex-direction: column;
	align-items: center;
    justify-content: space-between;
}

.topnav-link:hover {
	background-color: #426880;
}

.topnav-link:active {
	background-color: #187bad;
}

.topnav-icon {
	height: 16px;
    padding: 0px 24px;
	opacity: 0.7;
}

.topnav-link:hover .topnav-icon, .topnav-link:hover .topnav-title, .topnav-dropdown:hover{
	opacity: 1;
}

.topnav-title {
	/* height: 10px; */
    font-size: 0.7rem;
    color: white;
	opacity: 0.7;
	line-height: 1;
}

.topnav-icon.active, .topnav-title.active{
	opacity: 1;
	/* filter: drop-shadow(0px 3px 2px black); */
}

.topnav-text {
	display: inline-block;
	/* position: absolute; */
	padding: 0px 12px;
	vertical-align: top;
}

.topnav-dropdown {
	/* display: inline-block; */
	background-color: #152e57;
	background-image: url("../images/keyboard_arrow_right_light.png");
    background-position-x: right;
    background-position-y: top;
    background-size: 20px;
    background-repeat: no-repeat;
    /* width: 60px; */
    /* height: 32px; */
}

.topnav-dropdown:hover {
	background-color: #426880;
	background-image: url("../images/keyboard_arrow_down_light.png");
}

.topnav-dropdown .topnav-icon {
	/* padding-right: 22px; */
}

.topnav-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 230px;
  box-shadow: 0px 8px 12px 0px rgba(0,0,0,0.2);
  z-index: 1;
  top: 40px;
  left: 0px;
}

@media (min-width: 550px) {
	.topnav-dropdown:hover .topnav-dropdown-content {
		display:block;
	}
}

#topnavmenu-ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: white;
}

.topnavmenu-li {
  /* float: left; */
  margin-bottom: 0px;
}

.topnav-dropdown-content a {
  color: black;
  padding: 4px 8px;
  text-decoration: none;
  display: block;
  text-align: left;
  cursor: pointer;
  background-color: white;
  font-size: 14px;
}

.topnav-dropdown-content a:hover {
	/* background-color: #f1f1f1; */
	color:#159adc;
	border-bottom: none;
}

.topnav hr {
	margin: 8px;
}

.topnav p {
	color: black;
    font-size: 14px;
    margin: 8px 0px 8px 8px;
    text-align: left;
}

.badge {
    position: absolute;
    width: 10px;
    height: 10px;
    bottom: 26px;
    right: 36px;
    border-radius: 50%;
    background: red;
    color: white;
    box-sizing: border-box;
    font-size: 8px;
}

@media (max-width: 1280px) {
	.topnav-dropdown-content {
	  right: 0px;
	  left: unset;
	}
}

@media (max-width: 550px) {
	.topnav {
		top: unset;
		bottom: 0px;
		height: 50px;
	}
	.topnav-link {
		padding: 7px 0px;
	}
	.topnav-icon {
		height: 22px;
		padding: 0px 0px;
	}
	.topnav-title {
		font-size: 0.6rem;
	}
	.container {
		margin-top: 52px !important;
	}
	#nav-mobile-background, #nav-mobile-ul {
		top: 0px !important;
	}
	/* .topnav-dropdown .topnav-icon{ */
		/* padding-right: 18px; */
	/* } */
	.topnav-area {
		float: unset;
		height: 50px;
	}
	.topnav-dropdown {
		background-image: unset;
		width: 20%;
		/* height: 50px; */
	}
	.topnav-dropdown:hover {
		background-image: unset;
	}
	.topnav-dropdown-content {
		display: block;
		position: fixed;
		top: unset;
		bottom: -600px;
		width: 100%;
		animation-duration: 0.5s;
		animation-fill-mode: forwards;
		z-index: 18;
		box-shadow: 0px -2px 6px 0px rgba(0,0,0,0.2);
		border-top: 1px solid #e2e2e2;
	}
	.topnav-dropdown-content a {
	  padding: 6px 12px;
	  font-size: 15px;
	}
	.badge {
		bottom: 34px;
		right: 26px;
	}
	
	@-webkit-keyframes topnavDown {
		0%		{bottom: 0px;}
		100%	{bottom: -600px;}
	}

	@keyframes topnavDown {
		0%		{bottom: 0px;}
		100%	{bottom: -600px;}
	}

	@-webkit-keyframes topnavUp {
		0%		{bottom: -600px;}
		100%	{bottom: 0px;}
	}

	@keyframes topnavUp {
		0%		{bottom: -600px;}
		100%	{bottom: 0px;}
	}

}

/*-------------------------------------------------------------*/

/*-------------------------------------------------------------*/
/* Nav Bar Menu */

.nav-menu {
	height: 56px;
    position: fixed;
    width: 100%;
    background-color: white;
    z-index: 22;
	top: 40px;
	box-shadow: 0px 0px 8px #0000002b;
    left: 0;
	padding: 0 calc((100% - 960px) / 2);
	font-family: 'Roboto', Arial !important;
	box-sizing: border-box;
}

.nav-mobile-title {
	display: none;
	color: #686868
}

.nav-desktop-title {
	display: block;
	color: #686868
}

.nav-mobile-titleIcon {
	height: 27px;
    padding-right: 16px;
	vertical-align: middle;
}

.nav-mobile-menuLogo {
	height: 16px;
    padding-right: 16px;
	padding-top: 4px;
}

.nav-desktop-menuIcon {
	height: 30px;
	padding-left: 4px;
}

.nav-desktop-menuLogo {
	height: 18px;
	padding-left: 4px;
}


@media (max-width: 970px) {
	.nav-desktop-menuIcon {
			padding-left: 0px;
		}
}

@media (max-width: 550px) {
	.nav-menu {
		top: 38px;
	}
	.nav-mobile-title {
		display: inline-flex;
		align-items: center;
	}
	.nav-desktop-title {
		display: none;
	}
}

@media (max-width: 550px) {
	.nav-menu {
		top: 0;
	}
}



.menu{
	width: 100%;
    background-color: rgb(255, 255, 255);
    height: 40px;
	line-height: 1;
	margin-bottom: 10px;
	margin-top: 6px;
	font-family: 'Montserrat', sans-serif;
	/* font-weight: 600; */
}

.menu a.active{
	background-color:white;
	color:rgb(65,65,65);
}

#menu-ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu-li {
	float: left;
	margin-bottom: 0px;
	line-height: 1.3;
}

.menu-li a, .dropbtn {
	display: inline-block;
	color: #666;
	/* text-align: center; */
	margin: 12px 28px 12px 0px;
	padding-bottom: 4px;
	/* text-decoration: none; */
	/* background-color: #f7f7f7; */
	/* border-bottom: 2px solid #ffffff00; */
	font-weight: 600;
}

.menu-li-icon a{
	margin-top: 7px;
}

.menu-search {
	float: right;
	display: flex;
    align-items: center;
    height: 48px;
}



.menu-search-box {
	width: 180px;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
    padding: 4px 8px !important;
	height: 30px !important;
	border: 0px solid #f7f7f7 !important;
	border-right: 0px !important;
	border-radius: 4px 0px 0px 4px !important;
	background-color: #ececec !important;
}

.menu-search-button {
	height: 30px;
	padding: 0px 8px;
	margin-right: 0px;
	margin-bottom: 0px;
	border-radius: 0px 4px 4px 0px;
    background-color: #ececec;
	border: 0px;
}

@media (max-width: 550px) {
	.menu-search {
		float: unset;
		margin: 12px;
		bottom: 15px;
		position: absolute;
	}
	.menu-search-box {
		width: 226px;
		height: 42px !important;
	}
	.menu-search-button {
		height: 42px;
		padding: 0px 14px;
	}
}



.menu-search-button:hover {
    background-color: #eeeeee;
}

.menu-search-button:active {
    background-color: #e4e4e4;
}

#nav-desktop-ul .menu-section {
	float: right;
}


#nav-desktop-ul .menu-button {
	margin-top: 4px !important;
	margin-right: 0px;
}

.menu-right {
	float: right;
	display: flex;
    align-items: baseline;
}

.dropbtn {
  cursor: default;
}

.menu-li a:hover, .dropdown:hover .dropbtn {
  /* background-color: #f1f1f1; */
  /* border-bottom: 1px solid #004687; */
  /* text-decoration: underline; */
  /* color:#159adc; */
  color: var(--blue3);
}

.menu-li.dropdown {
  display: inline-block;
}

#nav-desktop-ul .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 12px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  cursor: pointer;
  background-color: white;
}

.dropdown-content a:hover {
	/* background-color: #f1f1f1; */
	color:#159adc;
	border-bottom: none;
}

#nav-desktop-ul .dropdown:hover .dropdown-content {
  display: block;
}

#nav-desktop{
	display: block;
}

#nav-mobile{
	display: none;
}

.hamburger{
	height: 34px;
    padding: 6px;
    cursor: pointer;
    /* background-color:rgba(0, 0, 0, 0.8); */
	/* filter: invert(0); */
	position: absolute;
    right: 10px;
	top: 3px;
	display: none;
}

.hamburger:hover{
	/* background-color: #f5f5f5; */
}

#nav-mobile-background{
	display: none;
	top: 0px;
    position: fixed;
    width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	/* box-shadow: 1px 1px 10px rgb(80,80,80); */
	/* overflow-y: auto; */
	left: 0;
	/* min-width: 200px; */
	animation-duration: 0.5s;
	z-index: 10;
}

#nav-mobile-ul{
	/* display: none; */
	display: block;
	top: 0px;
    position: fixed;
    width: 75%;
	height: calc(100% - 32px);
	background-color: rgb(255, 255, 255);
	box-shadow: 1px 1px 10px rgb(80,80,80);
	overflow-y: auto;
	left: -750px;
	min-width: 200px;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	z-index: 10;
	border-right: 1px solid #e2e2e2;
}


@-webkit-keyframes menuFromLeft {
	0%		{left: -750px;}
	100%	{left: 0px;}
}

@keyframes menuFromLeft {
	0%		{left: -750px;}
	100%	{left: 0px;}
}

@-webkit-keyframes menuToLeft {
	0%		{left: 0px;}
	100%	{left: -750px;}
}

@keyframes menuToLeft {
	0%		{left: 0px;}
	100%	{left: -750px;}
}

#nav-mobile-ul li {
  float: none;
  display: block;
  /* border-bottom: 1px solid #dadada; */
}

#nav-mobile-ul li a, #nav-mobile-ul .dropbtn {
  display: block;
  color: #666;
  text-align: left;
  padding: 12px 16px;
  text-decoration: none;
  background-color: #ffffff;
  /* width: 200px; */
}

#nav-mobile-ul .dropdown-content {
  display: block;
  /* position: none !important; */
  /* background-color: #f9f9f9; */
  /* min-width: 160px; */
  /* box-shadow: none; */
}

#nav-mobile-ul .dropdown a {
  color: #969696;
}

#nav-mobile-ul .dropdown-content a {
  padding: 12px 32px;
  color: #666;
}

#icon-close{
	display: none;
	z-index: 11;
	filter: invert(0);
}

#nav-mobile{
	display: none;
}

#nav-desktop{
	display: block;
}

.hamburger{
	display: none;
}

.active-page {
	/* border-bottom: 2px solid #1eaedb !important; */
    /* color: #1eaedb !important; */
	color: var(--blue3) !important;
}

@media (max-width: 750px) {
	.active-page {
		border-bottom: unset !important;
	}
}

.active-page-topnav {
	/* border-bottom: 2px solid #17abda !important; */
	background-color: #0e3e68;
}

@media (max-width: 550px) {
	.active-page-topnav {
		/* border-top: 2px solid #17abda !important; */
	}
}

@media (max-width: 550px) {
	#nav-mobile {
		display: block;
	}
	#nav-desktop {
		display: none;
	}
	.hamburger {
		display: block;
	}
	.menu{
		height: 0px;
		margin-bottom: 0px;
	}
	
}

@media (min-width: 550px) {
	#icon-menu{
		display: none;
	}
	.hamburger{
		display: none !important;
	}
}


/*-------------------------------------------------------------*/
/* Tabs */

.section-nav {
	display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    box-shadow: inset 0 -1px 0 #e1e4e8;
    justify-content: space-between;
	/* box-shadow: inset -7px 0 9px -7px rgba(0,0,0,0.4); */
    /* border-bottom: 1px solid #d4d4d4; */
	/* background-color: #fdfdfd; */
}

.section-nav-body {
	display: flex;
}

.section-nav-item {
	padding: 8px 16px;
    font-size: 14px;
    line-height: 30px;
    color: #1b1f23;
    text-align: center;
    white-space: nowrap;
    background-color: initial;
    border: 0;
    border-bottom: 2px solid rgba(209,213,218,0);
    transition: border-bottom-color .36s ease-in;
	cursor: pointer;
	/* border-right: 1px solid #dbdbdb; */
}

.section-nav-item:hover {
	text-decoration: none;
	color: inherit;
    border-bottom-color: #d1d5da;
    outline: 1px dotted transparent;
    outline-offset: -1px;
    transition-timing-function: ease-out;
    transition-duration: .12s;
}

.section-nav-item.selected {
	font-weight: 600;
    border-bottom-color: #84a1d2;
    outline: 1px dotted transparent;
    outline-offset: -1px;
}

.tabcontent, .tabcontent-v2 {
	animation: fadeEffect 0.5s;
	padding: 8px;
}

.tabcontent {
	display: none;
}

.tabcontent-v2 {
	display: block;
}

.tabcontent h2, .tabcontent-v2 h2 {
	margin-top: 8px;
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

@media (max-width: 550px) {
	.section-nav-shadow {
		box-shadow: inset -8px 0 7px -6px rgba(0,0,0,0.3);
	}
	.section-nav-item {
		padding: 8px 8px;
	}
}

/*-------------------------------------------------------------*/

/*-------------------------------------------------------------*/
/* Go to Top */

#goToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: rgb(0 0 0 / 38%);
  color: white; 
  cursor: pointer; 
  padding: 6px 10px; 
  border-radius: 6px; 
  font-size: 14px; 
  animation: fadeEffect 1s;
}

#goToTop:hover {
  background-color: #555;
}

@media (max-width: 550px) {
	#goToTop {
		bottom: 70px;
		right: 16px;
	}
}

/*-------------------------------------------------------------*/

/*-------------------------------------------------------------*/
/* Inner Menu */

.innerMenu-anchor {
    position: relative;
}

.innerMenu-surface {
	box-shadow: 0 5px 5px -3px rgba(0,0,0,.2), 0 8px 10px 1px rgba(0,0,0,.14), 0 3px 14px 2px rgba(0,0,0,.12);
	min-width: 90px;
	max-width: 280px;
	border-radius: 4px;
	box-sizing: border-box;
	background-color: white;
	display: block;
    position: absolute;
}

.innerMenu-position {
	right: 34px;
}

.innerMenu-list {
	padding: 8px 0;
	list-style-type: none;
	line-height: 1.5rem;
	font-size: 0.8rem;
}

.innerMenu-list-item {
	height: 32px;
	padding: 0 12px;
	cursor: pointer;
	display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
	margin: 0px;
}

.innerMenu-list-item:hover {
	background-color: #ececec;
}

.innerMenu-list-item__text {
	
}

/*-------------------------------------------------------------*/