.custom-navbar {
	border-bottom: 1px solid #cbcbcb;
	margin-bottom: 20px;
}
.custom-navbar ul {
	margin: -20px auto 15px;
	max-width: 966px;
	list-style: none;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: space-around;
}

.custom-navbar ul li a {
	font-weight: bold;
	color: #999999;
	font-size: 16px;
	position: relative;
}
.custom-navbar ul li a:hover {
	color: #c75354;
}

.custom-navbar ul li a:hover:after {
	content: '\f0d7';
	color: #ccc;
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	margin:0px 0px 0px 10px;
	text-decoration:none;
	position: absolute;
	bottom: -26px;
	right: 50%;
	transform: translateX(50%);

}
.custom-navbar .mobile-toggle {
	display: none;
}

@media only screen and (max-width: 64em) {

	.custom-navbar ul {
		display: block;
		padding: 12px 15px;
		margin: 0;
		box-shadow: 0 5px 7px rgba(0, 0, 0, 0.15);
	}
	.custom-navbar .mobile-toggle {
		display: block;
		padding: 0 15px;
		margin-top: -30px;
	}
	.custom-navbar ul li{
	    padding: 14px 0;
	}
	.custom-navbar ul li:not(:last-child){
		border-bottom: 1px solid #d1cfcd;
	}

	.custom-navbar ul li a:hover:after {
		content: '';
	}

	.custom-navbar .mobile-toggle h3 {
		font-family: 'Knockout';
		text-transform: uppercase;
		color: #313131;
		font-size: 32px;
		font-weight: 400;
		margin: 8px 0;
		cursor: pointer;
		letter-spacing: 0.05em;
	}
	.custom-navbar .mobile-toggle h3 i {
		margin-left: 5px;
	    font-size: 15px;
	    position: relative;
	    bottom: 6px;

	}
	.custom-navbar .mobile-closed {
		display: none;
	}
}

@media only screen and (max-width: 1025px) and (min-width: 40.063em){
	.custom-navbar .mobile-toggle {
		margin-top: 0;
	}
}