.custom-navbar {
	position: relative;
	border-bottom: 1px solid #cbcbcb;
	margin: 0 0 50px;
	background-color: #0e618a;
}
.custom-navbar a {
	border-bottom: none;
}
.custom-navbar .inner {
	margin: 0px auto;
    max-width: 985px;
    list-style: none;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-around;
    padding: 12px 15px;
	position: relative;
	z-index: 5;
}

.custom-navbar ul.primary-list {
	flex: 1;
	display: flex;
	align-items: center;
	margin: 0;
	white-space: nowrap;
	list-style: none;
	justify-content: space-between;
}

.custom-navbar ul.primary-list li {
	margin: 0;
	padding: 0 12px;
}

.custom-navbar ul li a {
	font-family: "futura-pt",sans-serif;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
}

.custom-navbar .overflow {
	position: absolute;
	z-index: 15;
	top: 0;
	right: 0;
	display: flex;
	justify-content: right;
	align-items: center;
	height: 100%;
}

@media (max-width: 640px) {
	.custom-navbar .overflow {
		justify-content: center;
		width: 100%;
	}
}

.custom-navbar .overflow button {
	margin: 0;
	padding: 8px 12px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1em;
	color: #FFF;
	background-color: transparent;
}

@media (max-width: 640px) {
	.custom-navbar .overflow button {
		font-weight: 600;
	}
}

.custom-navbar .overflow ul {
	position: absolute;
	right: 0px;
	bottom: 0;
	margin: 0;
	padding: 12px 24px;
	width: 100%;
	list-style: none;
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s;
	z-index: 1;
}
@media (min-width: 640px) {
	.custom-navbar span.mobile-caption {
		display: none;
	}
}
@media (max-width: 640px) {
	.custom-navbar .overflow ul {
		width: calc(100% + 1.875rem);
		padding: 12px 35px;
	}
	.custom-navbar span.desktop-caption {
		display: none;
	}
}

.custom-navbar .overflow.open ul {
	opacity: 1;
	pointer-events: all;
	background-color: #0e618a;
	border: 1px solid #cbcbcb;
}