.main_h {
	position: fixed;
	top: 0px;
	max-height: 90px;
	z-index: 999;
	width: 100%;
	overflow: hidden;
	top: -100px;
	padding-bottom: 6px;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	transform: translateY(0%);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	background:rgb(255, 255, 255);
	box-shadow:0 1px 10px rgba(31, 50, 63, 0.25);
}

.open-nav {
	max-height: 400px !important;
}

.open-nav .mobile-toggle {
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
}

.sticky {
	background-color: rgba(255, 255, 255, 0.98);
	opacity: 1;
	top: 0px;
}

.logo {
	float: left;
	display: block;
	margin: 16px 0;
	width: auto;
	height: 58px;
    background-image: url(../images/john-militello-logo.png);
	background-repeat: no-repeat;
}

nav {
	float: right;
	padding: 35px 0 0 0;
}


nav ul {
	list-style: none;
	overflow: hidden;
	text-align: right;
	float: right;
}



nav ul li {
	display: inline-block;
	margin-left: 20px;
	line-height: 1.5;
}

nav ul a {
	color: #999999;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.15em;
}

nav ul a:hover, nav ul a.active {
	color: #ec6134;
}

.mobile-toggle {
	display: none;
	cursor: pointer;
	font-size: 20px;
	position: absolute;
	right: 22px;
	top: 30px;
	width: 30px;
	-webkit-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
}


.mobile-toggle span {
	width: 30px;
	height: 4px;
	margin-bottom: 6px;
	background: #453851;
	display: block;
}

.row {
	width: 100%;
	max-width: 940px;
	margin: 0 auto;
	position: relative;
	padding: 0 2%;
}

* {
	box-sizing: border-box;
}

@media only screen and (max-width: 960px) {
nav ul a {
	color: #999999;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.15em;
}

.logo {
	float: left;
	display: block;
	margin: 16px 0;
	width: auto;
	height: 58px;
	background-image: url(../images/john-militello-logo.png);
	background-repeat: no-repeat;
}

nav {
	float: right;
	padding: 35px 0 0 0;
}
}

@media only screen and (max-width: 790px) {

nav {
	width: 100%;
}
nav ul {
	padding-top: 0;
	margin-bottom: 0;
	float: left;
	text-align: center;
	width: 100%;
}
nav ul li {
	width: 100%;
	padding: 10px 0;
	margin: 0;
}
nav ul a {
	color: #999999;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.15em;
}
.mobile-toggle {
	display: block;
}
}

@-webkit-keyframes scroll {
 0% {
 opacity: 1;
 -webkit-transform: translateY(0);
 transform: translateY(0);
}
 100% {
 opacity: 0;
 -webkit-transform: translateY(20px);
 transform: translateY(20px);
}
}

@keyframes scroll {
 0% {
 opacity: 1;
 -webkit-transform: translateY(0);
 -ms-transform: translateY(0);
 transform: translateY(0);
}
 100% {
 opacity: 0;
 -webkit-transform: translateY(20px);
 -ms-transform: translateY(20px);
 transform: translateY(20px);
}
}