/*Skip navigation link*/
.skip-link {
	position: absolute;
	top: 5px;
	left: 5px;
	padding: 10px 16px;
	background-color: white;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	z-index: 100;

}

.skip-link:focus {
	clip: auto;
	overflow: unset;
}

/*Desktop navigation*/
.nav {
	display: none;
	flex-shrink: 0;
}

/*Mobile navgiation*/
.mobile-nav {
	display: flex;
	flex-shrink: 0;
	width: 100%;
}

.mobile-nav .nav__list {
	list-style: none;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	padding: 0 40px;
	height: 100%;
	width: 100%;
}

.mobile-nav .nav__toggle button {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	background-color: #101F59;
	outline: 1px solid #101F59;
	border: none;
	border-radius: 12px;
	cursor: pointer;
}

.mobile-nav .nav__toggle button:focus,
.mobile-nav .nav__toggle button:hover {
	background-color: #F6ED4E;
	outline: 2px solid #101F59;
}

.mobile-nav .nav__toggle svg {
	fill: white;
	width: 30px;
	height: 30px;
}

.mobile-nav .nav__toggle button:focus svg,
.mobile-nav .nav__toggle button:hover svg {
	fill: #101F59;
}

.mobile-nav .nav--members a {
	display: inline-flex;
	align-items: center;
	padding: 12px 18px;
	min-width: auto;
	border-radius: 15px;
	outline-width: 1px;
}

.mobile-nav .nav--members a:focus,
.mobile-nav .nav--members a:hover {
    background-color: #F6ED4E;
    outline: 2px solid #101F59;
}

.mobile-nav .nav--members a:focus svg path,
.mobile-nav .nav--members a:hover svg path {
	fill: #101F59;
}

/* Primary navigation */
.mobile-nav.nav--primary {
	height: 80px;
}

.mobile-nav.nav--primary .nav__logo img  {
	width: auto;
	height: auto;
	max-width: 120px;
	max-height: 70px;
}

/* Secondary navigation */
.mobile-nav.nav--secondary {
	flex-direction: column;
	background-color: #101F59;
}

.mobile-nav.nav--secondary .nav__list .nav__item {
	display: none;
}

.mobile-nav.nav--secondary .nav__list.active .nav__item {
	display: block;
}

/* Secondary navigation - upper tier */
.mobile-nav.nav--secondary .nav__list.active:first-of-type {
	padding-top: 20px;
}

.mobile-nav.nav--secondary .nav__list:first-of-type {
	column-gap: 15px;
}

.mobile-nav.nav--secondary .nav__list:first-of-type .nav__item {
	padding-bottom: 12px;
}

.mobile-nav.nav--secondary .nav__list:first-of-type #SearchForm_SearchForm fieldset {
	margin: 0;
}

.mobile-nav.nav--secondary .nav__list:first-of-type #SearchForm_SearchForm fieldset input {
	background-color: white;
	border: none;
	font-size: 18px;
}

.mobile-nav.nav--secondary .nav__list:first-of-type .btn.btn--secondary-xl {
	padding: 12px 32px;
	min-width: auto;
	background-color: white;
	color: #101F59;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
}

.mobile-nav.nav--secondary .nav__list:first-of-type .btn.btn--secondary-xl:hover,
.mobile-nav.nav--secondary .nav__list:first-of-type .btn.btn--secondary-xl:focus {
	background-color: #101F59;
    outline: 2px solid #F6ED4E;
    color: #F6ED4E;
    font-weight: 700;
}

/* Secondary navigation - lower tier */
.mobile-nav.nav--secondary .nav__list:last-of-type {
	align-items: unset;
	flex-direction: column;
	padding: 0;
}

.mobile-nav.nav--secondary .nav__list.active:last-of-type {
	padding-bottom: 12px;
}

.mobile-nav.nav--secondary .nav__list:last-of-type .nav__link-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 40px;
}

.mobile-nav.nav--secondary .nav__list:last-of-type .nav__link-wrapper > .nav__link[aria-current="page"] {
	position: relative;
}

.mobile-nav.nav--secondary .nav__list:last-of-type .nav__link-wrapper > .nav__link[aria-current="page"]::after {
	content: "";
	position: absolute;
	left: -16px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background-color: #F6ED4E;
	border-radius: 50%;
}

.mobile-nav.nav--secondary .nav__list:last-of-type button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: flex;
	align-items: center;
	padding: 0;
	background-color: transparent;
	border: none;
	cursor: pointer;
}

.mobile-nav.nav--secondary .nav__list:last-of-type button:hover svg path[fill="white"],
.mobile-nav.nav--secondary .nav__list:last-of-type button:focus svg path[fill="white"] {
	fill: #F6ED4E;
}

.mobile-nav.nav--secondary .nav__list:last-of-type button[aria-expanded="true"] svg.svg__plus {
	display: none;
}

.mobile-nav.nav--secondary .nav__list:last-of-type button svg.svg__minus {
	display: none;
}

.mobile-nav.nav--secondary .nav__list:last-of-type button[aria-expanded="true"] svg.svg__minus {
	display: block;
}

.mobile-nav.nav--secondary .nav__list:last-of-type .nav__link {
	font-size: 20px;
	color: white;
	text-decoration: none;
}

.mobile-nav.nav--secondary .nav__list:last-of-type .nav__link.active,
.mobile-nav.nav--secondary .nav__list:last-of-type .nav__link:hover,
.mobile-nav.nav--secondary .nav__list:last-of-type .nav__link:focus {
	font-weight: 700;
	color: #F6ED4E;
}

/*Sub navigation*/
.mobile-nav.nav--secondary .nav__list:last-of-type .nav__list-sub {
	display: none;
	list-style: none;
	padding-left: 0;
	background-color: white;
}

.mobile-nav.nav--secondary .nav__list:last-of-type .nav__list-sub.active {
	display: block;
}

.mobile-nav.nav--secondary .nav__list:last-of-type .nav__list-sub .nav__link {
	display: block;
	padding: 10px 40px;
	color: #101F59;
}

.mobile-nav.nav--secondary .nav__list:last-of-type .nav__list-sub .nav__link[aria-current="page"] {
	padding-left: 36px;
	border-left: 4px solid #101F59;
	font-weight: 700;
}

/*Table of Contents*/
.toc-nav li a {
	padding: 6px;
	border-radius: 2px;
    color: #101F59;;
    line-height: 32px;
    text-decoration: underline;
}

.toc-nav li a:hover,
.toc-nav li a:focus {
	outline: 2px solid #101F59;
    background-color: white;
}

@media all and (min-width: 1400px) {
	/*Desktop navigation*/
	.nav {
		display: flex;
		width: 100%;
	}

	.nav__list {
		list-style: none;
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		margin: 0;
		padding: 0;
		height: 100%;
	}

	.nav__item {
		display: flex;
		padding-left: 0;
		padding-right: 0;
		width: auto;
		height: auto;
	}

	.nav__list.active .nav__item {
		display: flex;
	}

	.nav__link {
		display: flex;
		align-items: center;
		padding: 20px 18px;
		height: 100%;
		color: white;
		font-size: 20px;
		font-weight: 400;
		text-decoration: none;
	}

	/* Primary navigation */
	.nav--primary {
		height: 100px;
	}

	.nav--primary .nav__list {
		width: 100%;
		padding-left: 36px;
		padding-right: 36px;
	}

	.nav--primary a {
		display: inline-flex;
	}

	.nav--primary a:focus,
	.nav--primary a:hover {
		font-weight: bold;
	}

	.nav--primary a svg {
		height: 36px;
		width: 36px;
	}

	.nav--primary .nav__logo {
		display: flex;
		align-items: center;
		padding-left: 0;
		text-decoration: none;
	}

	.nav--primary .nav__logo a {
		display: inline-flex;
		align-items: center;
	}

	.nav--primary .nav__logo a svg {
		height: 36px;
		width: 36px;
		margin-right: 15px;
	}

	.nav--primary .nav__logo a:focus svg circle,
	.nav--primary .nav__logo a svg:hover circle {
		fill: #0C1E5F;
	}

	.nav--primary .nav__logo a:focus svg path,
	.nav--primary .nav__logo a svg:hover path {
		fill: #F6ED4E;
	}

	.nav--primary .nav__logo img {
		width: auto;
		height: auto;
		max-width: 395px;
		max-height: 80px;
	}

	.nav--primary .nav--members a {
		display: inline-flex;
		align-items: center;
		padding-left: 26px;
		padding-right: 26px;
		font-size: 18px;
		text-decoration: none;
	}

	.nav--primary .nav--members a:focus,
	.nav--primary .nav--members a:hover {
	    background-color: #F6ED4E;
	    outline: 2px solid #101F59;
	    color: #101F59;
	}

	.nav--primary .nav--members a:focus svg path,
	.nav--primary .nav--members a:hover svg path {
		fill: #101F59;
	}

	.nav--primary .nav--members a span {
		padding-left: 9px;
	}

	.nav--primary .nav--members a svg {
		height: 20px;
		width: 22px;
	}

	/*Social Media*/
	.nav.nav--primary .nav__list--social {
		display: inline-flex;
		width: auto;
		padding-left: 0;
		padding-right: 0;
	}

	.nav.nav--primary .nav__list--social svg {
		width: 30px;
		height: 30px;
		fill: #101F59;
	}

	.nav.nav--primary .nav__list--social a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 30px;
		height: 30px;
		border-radius: 50%;
		outline: 2px solid transparent;
	}

	.nav.nav--primary .nav__list--social a:focus,
	.nav.nav--primary .nav__list--social a:hover {
		outline: 2px solid #101F59;
		background-color: #101F59;
	}

	.nav.nav--primary .nav__list--social a:focus svg,
	.nav.nav--primary .nav__list--social a:hover svg {
		fill: #F6ED4E;
	}

	.nav.nav--primary .nav__list--social a .instagram path {
		fill: #101F59;
		stroke: #101F59;
	}

	.nav.nav--primary .nav__list--social a:focus .instagram path,
	.nav.nav--primary .nav__list--social a:hover .instagram path {
		fill: #F6ED4E;
		stroke: #F6ED4E;
	}

	.nav.nav--primary .nav__list--social li {
		padding-right: 16px;
	}

	.nav.nav--primary .nav__list--social li:last-of-type {
		padding-right: 0;
	}

	/* Secondary navigation */
	.nav--secondary {
		height: 92px;
		background: #0C1E5F;
		border-bottom: 3px solid #F6ED4E;
	}

	.nav--secondary .nav__list {
		justify-content: space-between;
		margin: 0 auto;
		width: 1200px;
	}

	.nav--secondary .nav__link {
		position: relative;
		border-radius: 24px;
		outline: 3px solid transparent;
	}

	.nav--secondary .nav__link[aria-current="page"]::after {
		content: "";
		position: absolute;
		left: 2px;
		top: 50%;
		transform: translateY(-50%);
		width: 8px;
		height: 8px;
		background-color: #F6ED4E;
		border-radius: 50%;
	}

	.nav--secondary .nav__link:focus,
	.nav--secondary .nav__link:hover {
		font-weight: 700;
		outline: 3px solid #F6ED4E;
	}

	/* Tertiary navigation */
	.nav--tertiary {
		border-bottom: 0.1px solid #101F59;
	}

	.nav--tertiary .nav__list {
		justify-content: flex-start;
		column-gap: 24px;
		margin: 0 auto;
		padding-top: 5px;
		padding-bottom: 5px;
		width: 1200px;
	}

	.nav--tertiary .nav__link {
		padding: 12px 16px;
		color: #101F59;
	}

	.nav--tertiary .nav__link:focus,
	.nav--tertiary .nav__link:hover,
	.nav--tertiary .nav__link[aria-current="page"] {
		background-color: #F6ED4E;
		border-radius: 12px;
		border: 2px solid #101F59;
	}

	/*Mobile navgiation*/
	.mobile-nav {
		display: none;
	}
}