@charset "utf-8";
/* CSS Document */


.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 90px;
  height: 65px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.c-hamburger:focus {
  outline: none;
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 32px;
  left: 27px;
  right: 29px;
  height: 5px;
  background: #000;
}
.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #000;
  content: "";
}
.c-hamburger span::before {
  top: -11px;
}
.c-hamburger span::after {
  bottom: -11px;
}
.c-hamburger--htx {
  background-color: #fff;
}
.c-hamburger--htx span {
  transition: background 0s 0.3s;
}
.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}
.c-hamburger--htx span::before {
  transition-property: top, transform;
}
.c-hamburger--htx span::after {
  transition-property: bottom, transform;
}
/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  background-color: #fff;
}
.c-hamburger--htx.is-active span {
  background: none;
}
.c-hamburger--htx.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}
.c-hamburger--htx.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  transition-delay: 0s, 0.3s;
}
.navMenuHamburger {
	z-index:1;
	visibility:hidden;
	position:absolute;
	right:0;
}

.navMenu {
	width:100%;
	height: 90px;
	z-index: 1111111111111;
	position: fixed;
	top: 0;
  -ms-transition: transform 0.2s ease-out;
  -moz-transition: transform 0.2s ease-out;
  -webkit-transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
}
.navMenuTopWhiteSpace {
	width: 100%;
  height: 0;
  background: #fff;
}
@media (min-width:421px) {
	.navMenuTopWhiteSpace {
	   height: 45px;
  }
}
.navMenuLeft {
	width: 7%;
	height: 90px;
	float: left;
}
.navMenuLeftWhiteSpace {
	background-color: #FFF;
	width: 100%;
	height: 65px;
	float: left;
}
.navMenuLeftTransparentSpace {
	width: 100%;
	height: 25px;
	float: left;
}

.navMenuCenter {
	z-index:1;
	position: relative;
	width: 188px;
	height: 90px;
	float:left;
}
.navMenuLogoWhiteSpace {
	background-color: #FFF;
	width: 188px;
	height: 12px;
	float: left;
}
.navMenuLogoContainer {
	float: left;
}
.navMenuLogoContainer, .navMenuLogo {
	width: 188px;
	height: 78px;
}

.navMenuAltRight {
	background-color:#FFF;
	visibility:hidden;
	position:absolute;
}

.navMenuRight {
	overflow: hidden;
	height: 90px;
}
.navMenuLinksContainer {
	background-color: #FFF;
	width: 100%;
	height: 65px;
	float: right;
	display:block;
}
.navMenuLink {
	float: right;
	padding: 10px 0px;
    margin: 15px;
    border-top: 2px solid white;
}
.navMenuLink a {
	color: #000000;
  font-size: 12pt;
  font-family: 'Apercu-Bold';
  text-transform: uppercase;
}
.navMenuLink:hover {
  border-top: 2px solid black;
}
.navMenuLink:hover a{
	color: black;
	text-decoration: none;
}

.navContact {
	margin-right: 9%;
}
.navMenuRightTransparentSpace{
	width:100%;
	height:25px;
	float:left;
}


@media (max-width: 1140px){
.navMenuHamburger {
	visibility:visible;
}
.navMenu {
	height:auto;
}
.navMenuAltRight {
	position:relative;
	visibility:visible;
	overflow: hidden;
	width:auto;
	height: 68px;
}
.navMenuRight {
	width: 100%;
	height:auto;
	float:left;
	overflow:hidden;
	margin-top: 0px;

}
.navMenuRightTransparentSpace{
	visibility:hidden;
	display: none;
}
.navMenuLinksContainer {
	z-index:0;
	display:none;
	overflow:hidden;
	background-color: #FFF;
	width: 100%;
	height: 450px;
	float: none;
	position:absolute;
	top: 0;
	padding-top: 90px;
	text-align:center;
}
.navMenuLink {
	width:100%;
	float:left;
	text-align:center;
	padding: 10px 0px;
	margin: 0;
    border-top:none;
}
.navMenuLink:hover {
    border-top:none;
}
.navMenuLink a{
    border-top: 2px solid white;
}
.navMenuLink a:hover {
    border-top:2px solid black;
}
.navBuilding {
	position:absolute;
	top:90px;
}
.navWaterfront {
	position:absolute;
	top:140px;
}
.navGowanus {
	position:absolute;
	top:190px;
}
.navGallery {
	position:absolute;
	top:240px;
}
.navAvailability {
	position:absolute;
	top:290px;
}
.navTeam {
	position:absolute;
	top:340px;
}
.navContact {
	position:absolute;
	top:390px;
	margin-right: 0;
}
}

@media (max-width: 728px){
.c-hamburger {
  width: 90px;
  height: 48px;
}
.c-hamburger span {
  top: 26px;
  left: 30px;
  right: 30px;
  height: 4px;
}
.c-hamburger span::before,
.c-hamburger span::after {
  height: 4px;
}
.c-hamburger span::before {
  top: -8px;
}
.c-hamburger span::after {
  bottom: -8px;
}

.navMenu {
	height: 66px;
}
.navMenuLeft {
	height: 66px;
}
.navMenuLeftWhiteSpace {
	height: 48px;
}
.navMenuLeftTransparentSpace {
	height: 18px;
}
.navMenuAltRight {
	height: 51px;
}
.navMenuCenter {
	width: 130px;
}
.navMenuLogoContainer, .navMenuLogo {
	width: 130px;
	height: 54px;
}
.navMenuLogoWhiteSpace {
	width: 130px;
}

}

@media (max-width: 420px){
.navMenuHamburger {
	right: 7px;
}
.navMenuLeft {
	width: 6%;
}
.c-hamburger {
  width: 77px;
  height: 48px;
}
.c-hamburger span {
  top: 26px;
  left: 30px;
  right: 16px;
  height: 4px;
}
}
