@font-face {
  font-family: 'EcuyerDax';
  src: url('../fonts/EcuyerR0902.woff') format('woff'),
    url('../fonts/EcuyerR0902.ttf') format('truetype');
}

@font-face {
  font-family: 'Garamond';
  src: url('../fonts/eb-garamond-v9-latin-regular.woff') format('woff'),
    url('../fonts/eb-garamond-v9-latin-regular.ttf') format('truetype');
}

body {
  margin: 0;
  /* padding: 72px 0 0 0; */
  font-family: 'Garamond', serif;
  letter-spacing: .5px;
  font-weight: 300;
  color: rgba(0, 0, 0, .75);
  font-size: 16px;
  -webkit-font-smoothing: subpixel-antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.masonry {
  -webkit-column-count: 1;
  column-count: 1;
  -webkit-column-gap: 10px;
  column-gap: 0.625rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.container {
  padding: 0.625rem 1.25rem;
}

.masonry__item {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  border-radius: 1px;
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, .1);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, .1);
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-perspective: 1;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.masonry__item:hover {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, .8);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, .8);
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

@media only screen and (min-width: 700px) {
  .masonry {
    -webkit-column-count: 2;
    column-count: 2;
  }
}

@media only screen and (min-width: 1100px) {
  .masonry {
    -webkit-column-count: 4;
    column-count: 4;
  }
}

.nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 2;
  padding: 1.25rem 2.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, .25);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, .25);
}

.nav,
.nav * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.nav__logo {
  font-family: 'EcuyerDax', serif;
  font-weight: 400;
  font-size: 18px;
  padding-top: 2px;
  margin: 0;
  text-transform: uppercase;
  border-top-style: double;
  border-bottom-style: double;
  display: inline-block;
  color: #282828;
}

.nav__menu {
  float: right;
  line-height: 32px;
  vertical-align: bottom;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.menu--item {
  border-bottom: 1px solid #fff;
  margin-left: 14px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.menu--item:hover {
  border-bottom: 1px solid #282828;
}

.menu__inner {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.nav__menu:hover .menu__inner {
  opacity: 1;
  pointer-events: all;
}

.menu__inner span {
  margin-left: 10px;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.menu__inner span:hover {
  color: #ff6464;
}

.headline {
  text-align: center;
  background: #eee;
  color: rgba(0, 0, 0, .75);
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, .1);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, .1);
  padding: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.headline__name {
  margin: 0 0 16px 0;
  padding: 0 0 16px 0;
  position: relative;
  font-family: 'EcuyerDax', serif;
  font-weight: 400;
  font-size: 1.625rem;
  text-transform: uppercase;
  display: inline-block;
}

.headline--nodek .headline__name {
  margin: 0;
}

.headline__name:after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ff6464;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.headline__location {
  margin: 0;
  font-size: 18px;
}

.headline__next,
.headline__prev {
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 10px;
  border: 1px solid;
  font-size: 3em;
  width: 20px;
  height: 20px;
  line-height: 7px;
  font-weight: 100;
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, .1);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, .1);
  border-radius: 1px;
  color: rgba(0, 0, 0, 7.5);
  text-decoration: none;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.headline__next:hover,
.headline__prev:hover {
  background: #ff6464;
  border: 1px solid #fff;
  color: #fff;
}

.headline__prev {
  right: auto;
  left: 40px;
}

.footer {
  position: relative;
  background: #ff6464;
  min-height: 200px;
  text-align: center;
  padding: 60px 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.footer .headline {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-top: 0;
  color: rgba(255, 255, 255, .95);
  padding: 40px 40px 20px 40px;
}

.footer .headline__name:after {
  background: rgba(255, 255, 255, .5) !important;
}

.footer form {
  width: 100%;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0;
  max-width: 800px;
  margin: 0 auto;
}

.footer form input,
.footer form textarea {
  border: none;
  outline: none;
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(255, 255, 255, .25);
  margin-bottom: 10px;
  border-radius: 1px;
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, .1);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, .1);
  font-family: 'Garamond', serif;
  font-weight: 300;
  color: rgba(255, 255, 255, .95);
  font-size: 16px;
  outline: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.footer form input:focus,
.footer form textarea:focus,
.footer form button:focus {
  border-bottom: 1px solid #eee;
  outline: none !important;
}

.footer form input::-webkit-input-placeholder,
.footer form textarea::-webkit-input-placeholder {
  font-family: 'Garamond', serif;
  font-weight: 300;
  color: rgba(255, 255, 255, .75);
}

.footer form input {
  width: calc(50% - 5px);
  float: left;
}

.footer form input:nth-child(1) {
  margin-right: 10px;
}

.footer form textarea {
  min-height: 120px;
  resize: none;
}

.footer form button {
  float: right;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 1px;
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, .1);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, .1);
  color: rgba(255, 255, 255, .95);
  background: rgba(255, 255, 255, .25);
  font-size: 16px;
  font-family: 'Garamond', serif;
  font-weight: 300;
  padding: 10px 20px;
  cursor: pointer;
}

.footer form button:hover {
  color: #282828;
  background: #eee;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .9);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
  /* -webkit-transition: background-image 0.4s ease-in-out;
  -o-transition: background-image 0.4s ease-in-out;
  transition: background-image 0.4s ease-in-out; */
}

.lightbox__next,
.lightbox__prev,
.lightbox__close {
  opacity: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 10px;
  border: 1px solid;
  font-size: 3em;
  width: 45px;
  height: 45px;
  line-height: 12px;
  font-weight: 100;
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, .75);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, .75);
  border-radius: 1px;
  color: rgba(255, 255, 255, 7.5);
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(0, 0, 0, .75);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.lightbox__next:hover,
.lightbox__prev:hover,
.lightbox__close:hover {
  background: #ff6464;
  color: #fff;
  border: 1px solid #fff;
}

.lightbox__next {
  right: 15px;
}

.lightbox__prev {
  left: 15px;
}

.lightbox__close {
  width: auto;
  top: 15px;
  left: 15px;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  font-size: 24px;
  line-height: 22.5px;
}

.icons-hidden .lightbox__next,
.icons-hidden .lightbox__prev,
.icons-hidden .lightbox__close {
  opacity: 0;
}

footer form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #eee inset !important;
  -webkit-text-fill-color: #282828 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.feature.feature--home {
  background: #fff;
  padding: 10px 10px 0 10px;
}

.feature__item {
  width: calc(100% / 3 - 6.7px);
  float: left;
  padding-bottom: calc(100% / 3 - 6.7px);
  position: relative;
  margin-bottom: 10px;
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, .1);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, .1);
  border-radius: 1px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.feature__item:nth-child(2),
.feature__item:nth-child(5),
.feature__item:nth-child(8) {
  margin-right: 10px;
  margin-left: 10px;
}

.feature.feature--home::after {
  content: "";
  clear: both;
  display: block;
}

.item--coming {
  pointer-events: none;
  overflow: hidden;
}

.item--coming .item--image {
  filter: blur(4px);
}

.item--coming:after {
  content: "IN THE WORKS";
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  background: #9ba0a3;
  color: #fff;
  /* border: 2px solid #9ba0a3; */
}

.item--image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.item--title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(40, 40, 40, .9);
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  cursor: pointer;
  border-top: 1px solid transparent;
}

.feature__item:hover {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, .8);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, .8);
}

.feature__item:hover .item--title {
  padding: 10px 20px;
  background: rgba(40, 40, 40, 1);
  border-top: 4px solid #ff6464;
}

.news__item {
  background: #000;
  width: calc(50% - 5px);
  position: relative;
  padding-bottom: calc(66.74% / 2);
  float: left;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  opacity: 0;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  transition: all .3s;
}

.news__item:nth-child(3) {
  -webkit-animation-delay: 1.65s;
  animation-delay: 1.65s;
}

.news__item:hover {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, .8);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, .8);
}

.news__item.item--special-1 {
  margin-right: 10px;
}

.news__item.item--special-1:after,
.news__item.item--special-2 .play-icon {
  content: "";
  width: 25%;
  height: 25%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, .5));
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, .5));
  opacity: 0;
  transition: all .3s;
  pointer-events: none;
}

.news__item:hover.item--special-1:after,
.news__item:hover.item--special-2 .play-icon {
  opacity: 1;
}

.news__item.item--special-2 .play-icon {
  background-image: url('../assets/video.svg');
  width: 20%;
  height: 20%;
  pointer-events: all;
  cursor: pointer;
}

.news__item.item--special-2.active .play-icon {
  opacity: 0;
  pointer-events: none;
}

.feature.feature--home.feature--special-1 {
  padding: 0 10px 10px 10px;
  padding: 40px 15% 40px 15%;
  background: #eee;
  margin-bottom: 10px;
}

.news__item .item--image {
  object-fit: cover;
  outline: none;
}

.news__item .item--title {
  transition: all .3s;
  pointer-events: none;
}

.news__item .item--next,
.news__item .item--prev {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 50px;
  height: 50px;
  color: #fff;
  z-index: 2;
  transform: translate(0, -50%);
  padding: 10px;
  border: 1px solid;
  font-size: 3em;
  width: 20px;
  height: 20px;
  line-height: 7px;
  font-weight: 100;
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, .1);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, .1);
  border-radius: 1px;
  background: transparent;
  transition: all .3s;
  user-select: none;
  opacity: 0;
}

.news__item .item--next {
  left: auto;
  right: 10px;
}

.news__item .item--next:hover,
.news__item .item--prev:hover {
  cursor: pointer;
  background: rgba(40, 40, 40, .9);
}

.news__item:hover .item--next,
.news__item:hover .item--prev {
  opacity: 1;
}

.news__item.item--special-1 .item--image {
  pointer-events: none;
  background-color: #000;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all .3s;
  opacity: 0;
  cursor: default;
}

.news__item.item--special-1 .item--image.active {
  pointer-events: all;
  opacity: 1;
}

.news__item.item--special-1 .item--image.active.cover {
  background-size: cover;
}

.news__item .item--image-link {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5em;
  max-width: 200px;
}

.news__item .item--image-link:hover {
  text-decoration: underline;
}

.news__item:hover .item--title {
  padding: 10px 20px;
}

.feature.feature--about {
  background: #fff;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1000px;
  margin: 10px auto 0 auto;
  font-size: 1.2em;
  /* box-shadow: 0px 0px 1px rgba(0,0,0,.25); */
  ;
}

.feature.feature--about:after {
  content: "";
  display: block;
  clear: both;
}

.feature.feature--about p {
  margin: 0 0 20px 0;
}

.feature.feature--about img {
  margin: 0 20px 20px 0;
  float: left;
  width: 100%;
  height: auto;
  max-width: 252px;
}

@media (max-width: 960px) {
  .nav {
    padding: 20px 10px;
  }

  .feature.feature--home {
    padding: 10px 0 0 10px;
  }

  .feature__item {
    width: calc(50% - 10px);
    float: left;
    padding-bottom: calc(55% - 10px);
  }

  .feature__item:nth-child(1),
  .feature__item:nth-child(3),
  .feature__item:nth-child(5),
  .feature__item:nth-child(7) {
    margin-right: 10px;
    margin-left: 0;
  }

  .feature__item:nth-child(2),
  .feature__item:nth-child(4),
  .feature__item:nth-child(6),
  .feature__item:nth-child(8) {
    margin-right: 0;
    margin-left: 0;
  }

  .feature.feature--home.feature--special-1 {
    padding: 40px;
  }

  .news__item .item--image-link {
    font-size: 1.3em;
    max-width: 172px;
  }
}

@media (max-width: 660px) {
  .feature.feature--home {
    padding: 10px 10px 0 10px;
  }

  .feature__item {
    width: 100%;
    float: left;
    padding-bottom: 105%;
  }

  .news__item {
    width: 100%;
    padding-bottom: 66.74%;
    margin: 0;
  }

  .news__item.item--special-1 {
    margin-bottom: 10px;
  }

  .feature.feature--home.feature--special-1 {
    padding: 40px 20px;
  }

  .news__item .item--next,
  .news__item .item--prev,
  .news__item.item--special-2 .play-icon {
    opacity: 1;
  }

  .news__item .item--title {
    padding: 10px 20px;
  }
}

@media (max-width: 699px) {
  body {
    /* padding-top: 64px; */
  }

  .nav {
    padding: 20px 10px;
  }

  .nav__logo {
    font-size: 12px;
  }

  .nav__menu {
    line-height: 24px;
    font-size: 14px;
  }

  .headline {
    padding: 40px 60px;
  }

  .headline__next {
    right: 10px;
  }

  .headline__prev {
    left: 10px;
  }

  .footer {
    padding: 60px 10px;
  }

  .footer .headline {
    padding: 40px 0 20px 0;
  }

  .footer form input {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .feature.feature--about img {
    float: none;
    max-width: 100%;
    margin: 0 auto 20px auto;
  }

  .headline__name {
    font-size: 20px;
  }
}

.nav,
.headline,
.feature__item,
.masonry,
footer,
.feature--about,
.lightbox,
.feature.feature--home.feature--special-1 {
  opacity: 0;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.headline {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

.feature.feature--home.feature--special-1 {
  -webkit-animation-delay: 1.35s;
  animation-delay: 1.35s;
}

.feature__item,
.masonry,
.feature--about {
  -webkit-animation-delay: .45s;
  animation-delay: .45s;
}

.feature__item:nth-child(2) {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.feature__item:nth-child(3) {
  -webkit-animation-delay: .75s;
  animation-delay: .75s;
}

.feature__item:nth-child(4) {
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
}

.feature__item:nth-child(5) {
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s;
}

.feature__item:nth-child(6) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.feature__item:nth-child(7) {
  -webkit-animation-delay: 1.35s;
  animation-delay: 1.35s;
}

.feature__item:nth-child(8) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.feature__item:nth-child(9) {
  -webkit-animation-delay: 1.65s;
  animation-delay: 1.65s;
}

footer {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.homepage footer {
  -webkit-animation-delay: 1.65s;
  animation-delay: 1.65s;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

/* Home */
.footer,
.headline__name:after {
  background: #9ba0a3;
}

/* About */
.about .footer,
.about .headline__name:after {
  background: #4d6a89;
}

/* Brooklyn Townhouse */
.feature__item:nth-child(1):hover .item--title {
  border-top: 4px solid #8b959c;
}

.brooklyn-townhouse .footer,
.brooklyn-townhouse .headline__name:after,
.brooklyn-townhouse .headline__next:hover,
.brooklyn-townhouse .headline__prev:hover,
.brooklyn-townhouse .lightbox__next:hover,
.brooklyn-townhouse .lightbox__prev:hover,
.brooklyn-townhouse .lightbox__close:hover {
  background: #8b959c;
}

/* Union Square Loft */
.feature__item:nth-child(2):hover .item--title {
  border-top: 4px solid #635f6a;
}

.union-square-loft .footer,
.union-square-loft .headline__name:after,
.union-square-loft .headline__next:hover,
.union-square-loft .headline__prev:hover,
.union-square-loft .lightbox__next:hover,
.union-square-loft .lightbox__prev:hover,
.union-square-loft .lightbox__close:hover {
  background: #635f6a;
}

/* Five Boroughs Taproom */
.feature__item:nth-child(3):hover .item--title {
  border-top: 4px solid #60706c;
}

.five-boroughs-taproom .footer,
.five-boroughs-taproom .headline__name:after,
.five-boroughs-taproom .headline__next:hover,
.five-boroughs-taproom .headline__prev:hover,
.five-boroughs-taproom .lightbox__next:hover,
.five-boroughs-taproom .lightbox__prev:hover,
.five-boroughs-taproom .lightbox__close:hover {
  background: #60706c;
}

/* Floridian Estate */
.feature__item:nth-child(4):hover .item--title {
  border-top: 4px solid #8094a5;
}

.floridian-estate .footer,
.floridian-estate .headline__name:after,
.floridian-estate .headline__next:hover,
.floridian-estate .headline__prev:hover,
.floridian-estate .lightbox__next:hover,
.floridian-estate .lightbox__prev:hover,
.floridian-estate .lightbox__close:hover {
  background: #8094a5;
}

/* TRIBECA DUPLEX */
.feature__item:nth-child(5):hover .item--title {
  border-top: 4px solid #958f84;
}

.tribeca-duplex .footer,
.tribeca-duplex .headline__name:after,
.tribeca-duplex .headline__next:hover,
.tribeca-duplex .headline__prev:hover,
.tribeca-duplex .lightbox__next:hover,
.tribeca-duplex .lightbox__prev:hover,
.tribeca-duplex .lightbox__close:hover {
  background: #958f84;
}

/* BROOKLYN CONDO */
.feature__item:nth-child(6):hover .item--title {
  border-top: 4px solid #b3b7be;
}

.feature__item:nth-child(7):hover .item--title {
  border-top: 4px solid #8b959c;
}

.feature__item:nth-child(8):hover .item--title {
  border-top: 4px solid #635f6a;
}

.feature__item:nth-child(9):hover .item--title {
  border-top: 4px solid #60706c;
}

.brooklyn-condo .footer,
.brooklyn-condo .headline__name:after,
.brooklyn-condo .headline__next:hover,
.brooklyn-condo .headline__prev:hover,
.brooklyn-condo .lightbox__next:hover,
.brooklyn-condo .lightbox__prev:hover,
.brooklyn-condo .lightbox__close:hover {
  background: #b3b7be;
}

.hamburger {
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  position: absolute;
  top: 22px;
  right: 10px;
  line-height: 10px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.hamburger-box {
  width: 28px;
  height: 19px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 28px;
  height: 1px;
  background-color: #282828;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/* Spring */
.hamburger--spring .hamburger-inner {
  top: 2px;
  -webkit-transition: background-color 0s 0.13s linear;
  -o-transition: background-color 0s 0.13s linear;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 9px;
  -webkit-transform: translate(0, .5px);
  -ms-transform: translate(0, .5px);
  transform: translate(0, .5px);
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 19px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
  -o-transition-delay: 0.22s;
  transition-delay: 0.22s;
  background-color: transparent;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

@media (max-width: 590px) {
  .nav__menu {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 64px;
    height: 64px;
    overflow: hidden;
    background: #fff;
    opacity: 0;
    -webkit-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
    pointer-events: none;
  }

  .nav__menu.is-active {
    opacity: 1;
    pointer-events: all;
  }

  .hamburger {
    opacity: 1;
    pointer-events: all;
  }
}


.pragmatic__gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  gap: 0.8rem;
  padding: 10px;
  width: 95vw;
}

.wrapper__item {
  height: 45vh;
  cursor: pointer;
  position: relative;
  flex: 1 1 auto;
  /* min-width: 20%; */
  min-width: 30vw;
}

.image__item {
  /* object-fit: cover; */
  object-fit: fill;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.vp-records .image__item {
  object-fit: fill;
  width: 100%;
  height: 100%;
  object-position: center;
}

.historic,
.mamaroneck,
.vp-records {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vp-records .large__item {
  height: 45vh;
}

.vp-records .wrapper__item {
  max-width: 42%;
}

@media (max-width: 600px) {
  .vp-records .wrapper__item {
    max-width: unset;
  }
}

/* @media (min-width: 900px) {

  .mamaroneck .wrapper__item {
    height: 30vh;
    max-width: 30vw;
    min-width: 20%;
  }

} */

@media (min-width: 576px) {
  .historic .wrapper__item {
    max-width: 45vw;
    min-width: 20%;
  }
}

@media (min-width: 769px) {
  .mamaroneck .wrapper__item {
    height: 30vh;
    max-width: 30vw;
    min-width: 20%;
  }
}

@media (min-width: 992px) {
  .medium__item {
    height: 48vh;
  }

  .wrapper__item {
    max-width: 31vw;
    min-width: 20%;
  }
  .historic .wrapper__item {
    height: 45vh;
    max-width: 35vw;
  }

  .mamaroneck .wrapper__item {
    height: 45vh;
    max-width: 30vw;
    min-width: 20%;
  }
}

@media (min-width: 1180px) {
  .vp-records .large__item {
    height: 60vh;
  }

  .historic .wrapper__item {
    /* height: 35vh; */
    max-width: 35vw;
  }

  .mamaroneck .wrapper__item {
    height: 45vh;
    min-width: 20%;
  }

  .wrapper__item {
    max-width: 35vw;
    min-width: 20%;
  }
}

@media (min-width: 1400px) {
  .mamaroneck .wrapper__item {
    height: 45vh;
    min-width: 20%;
  }
}





/* @media (max-width: 1024px) {
  .historic .wrapper__item {
    max-width: 45vw;
  }
} */

/* Desde los 900 va el break (responsive que se adapte al size que pueda, mientras va fijo*/


/**
 Breaking changes:
  >= 1400
  >= 1200
  >= 992
  >= 768
  >= 576
*/