@charset "UTF-8";

/* -----------------------------------------------------------------------------

  HAMBURGER ICONS COMPONENT - from here: https://github.com/callmenick/Animating-Hamburger-Icons
  
----------------------------------------------------------------------------- */
/**
 * Toggle Switch Globals
 *
 * All switches should take on the class `c-hamburger` as well as their
 * variant that will give them unique properties. This class is an overview
 * class that acts as a reset for all versions of the icon.
 */
.c-hamburger {
  display: block;
  position: relative;
  right: -16px;
  z-index: 99;
  overflow: hidden;
  padding: 0;
  width: 72px;
  height: 52px;
  background-color: transparent;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border-style: none;
  cursor: pointer;
  transform: scale(0.75);
  -webkit-transition: background 0.1s;
  transition: background 0.1s;
  pointer-events: all;
}
.c-hamburger:focus {
	outline: none;
}
.c-hamburger:hover {
  filter: brightness(10);
}
/* middle line */
.c-hamburger span {
  display: block;
  position: absolute;
  top: 22px;
/*  left: 9px;*/
/*  left: 12px;*/
  left: 10px;
  right: 9px;
/*  height: 6px;*/
  height: 3px;
/*  height: 2px;*/
  background: #2b3d1c;
}
/* top & bottom lines */
.c-hamburger span::before, .c-hamburger span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
/*	height: 6px;*/
  height: 3px;
/*  height: 2px;*/
	background-color: #2b3d1c;
	content: "";
}
/* space between the lines */
.c-hamburger span::before {
/*	top: -13px;*/
/*  top: -10px;*/
  top: -8px;
}
.c-hamburger span::after {
/*	bottom: -13px;*/
/*  bottom: -10px;*/
  bottom: -8px;
}
/**
 * Style 2
 * 
 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
 * down to center and transform into an "x".
 */
.c-hamburger span {
	-webkit-transition: background 0s 0.1s;
	transition: background 0s 0.1s;
}
/*.c-hamburger span::before, .c-hamburger span::after {
	-webkit-transition-duration: 0.1s, 0.1s;
	transition-duration: 0.1s, 0.1s;
	-webkit-transition-delay: 0.1s, 0s;
	transition-delay: 0.1s, 0s;
}*/
.c-hamburger span::before, .c-hamburger span::after {
  transition-duration: 0.1s, 0.1s;
  transition-delay: 0.1s, 0s;
}
.c-hamburger span::before {
	-webkit-transition-property: top, -webkit-transform;
	transition-property: top, transform;
}
.c-hamburger span::after {
	-webkit-transition-property: bottom, -webkit-transform;
	transition-property: bottom, transform;
}
/* active state, i.e. menu open */
.c-hamburger.is-active {
  /* transform: scale(0.7); */
  right: 13px;
}
.c-hamburger.is-active span {
	background: none;
}
.c-hamburger.is-active span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.c-hamburger.is-active span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.c-hamburger.is-active span::before, .c-hamburger.is-active span::after {
	-webkit-transition-delay: 0s, 0.1s;
	transition-delay: 0s, 0.1s;
	background-color: #fff;
}
@media screen and (max-width: 1024px) {
.c-hamburger {
/*	width: 48px;*/
/*	height: 48px;*/
}
/*.c-hamburger {
  width: 54px;
  height: 48px;
  scale: 125%;
  right: -6px;
}*/
.c-hamburger:focus {
	outline: none;
}
/* middle line */
.c-hamburger span {
/*  height: 4px;*/
}
/* top & bottom lines */
.c-hamburger span::before, .c-hamburger span::after {
/*	height: 4px;*/
}
.c-hamburger span::before {
/*	top: -10px;*/
}
.c-hamburger span::after {
/*	bottom: -10px;*/
}
/* Style 2 Hamburger to "x" (htx) is identical for large & small hamburgers */
}


/************************************************************************/
/************************************************************************/
/* nav styles*/
/************************************************************************/
/************************************************************************/
/*.c-hamburger {
	position: relative;
	font-size: 36px;
	z-index: 99;
	pointer-events: all;
}*/
/*.nav_active_label {
position: fixed;
font: bold 16px sans-serif;
color: rgba(0,0,0,1.00);
top: 98px;
right: 24px;
text-align: left;
transform: rotate(90deg);
z-index: 10;
}*/
/*.nav_active_label {
  position: absolute;
	font: bold 18px Arial;
  color: #fff;
  top: 52px;
  right: -4px;
  text-align: left;
  transform-origin: 0% 50%;
  transform: rotate(90deg);
  z-index: 10;
  pointer-events: all;
}*/
.nav_active_label {
/*  position: absolute;*/
/*  font: bold 23px Arial;*/
/*	font: 16px Arial;*/
/*	font: 15px D-DIN Condensed;*/
font: normal 14.5px/90% din-2014-narrow;
  color: #fff;
  top: 52px;
  right: -4px;
  text-align: left;
/*  transform-origin: 0% 50%;*/
/*  transform: rotate(90deg);*/
  z-index: 99;
  pointer-events: all;
}
.nav_active_label a {
	padding: 8px 0;
}
.nav_active_label a.white {
  color: white;
}
.nav_active_label.about:after {
    content: 'ABOUT';
}
.nav_active_label.location:after {
    content: 'LOCATION';
}
.nav_active_label.availabilities-existing:after {
    content: 'AVAILABILITIES:\A EXISTING';
/*    white-space: pre-wrap;*/
}
.nav_active_label.availabilities-build-to-suit:after {
    content: 'AVAILABILITIES:\A BUILD-TO-SUIT';
/*    white-space: pre-wrap;*/
}
.nav_active_label.foodhub-84:after {
    content: 'VENUE FOR FOOD & BEVERAGE INDUSTRY';
}
.nav_active_label.contact:after {
    content: 'CONTACT';
}
nav {
position: fixed;
top: -100%;
right: 0;
z-index: 98;
/*width: 100vw;*/
/*height: 100vh;*/
pointer-events: all;
}
/*.nav {
position: fixed;
top: -100%;
right: 0;
z-index: 98;
width: 30%;
min-width: 340px;
height: 100%;
overflow: auto;
opacity: 0;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}*/
.nav {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  z-index: 98;
  width: 30%;
  min-width: 340px;
  height: 100%;
  overflow: auto;
/*  opacity: 0;*/
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* background-color: rgba(215,25,32,1.00); */
}
.nav a {
    color: #fff;
    text-decoration: none;
}
.nav-fullheight {
  position: fixed;
  /* top: 0; */
  /* right: 0; */
  transform: translateX(0);
  opacity: 1;
}
.nav-fullheight:before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: -1;
}
nav .column {
  display: flex;
  justify-content: center;
  padding: 128px 0 0 0;
  /* width: 30%; */
  width: auto;
/*  min-width: 30%;*/
  min-width: 386px;
  height: 100%;
  overflow: hidden;
  /* background: #ed1c24; */
  background: #385816;
  /* border-left: 16px solid #fff; */
}
/*.nav ul {
	list-style: none;
	color: #fff;
}*/
.nav ul {
  list-style: none;
  color: #fff;
  position: relative;
  left: -8%;
}
.nav ul li {
	margin-top: 18px;
}
.nav ul li.sub {
	margin-top: 9px;
    padding-left: 23px;
}
.nav ul li .nav-wrap {
	line-height: 100%;
    margin-top: 9px;
    margin-bottom: 9px;
}
.nav ul li a {
/*    font: 19px sans-serif;*/
/*	font: 42px HK Compression Heavy Condensed;*/
font: 27px DM Serif Display;
	letter-spacing: 0.01rem;
  text-decoration: none;
}
/*.nav ul li a span {
	display: block;
	position: absolute;
	opacity: 0;
	-webkit-transform: translateX(-40px);
	-moz-transform: translateX(-40px);
	-ms-transform: translateX(-40px);
	-o-transform: translateX(-40px);
	transform: translateX(-40px);
  -webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}*/
/*.nav ul li a span:before {
  display: block;
  position: relative;
  top: 25px;
  right: 22px;
  content: "•";
  transform: scale(1.5);
  line-height: 1px;
}*/
/*.nav ul li a span:before {
  display: block;
  position: absolute;
  right: 0;
  content: "•";
  transform: scale(3);
}*/
/*.nav ul li a:hover span {
	opacity: 1;
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	-ms-transform: translateX(-20px);
	-o-transform: translateX(-20px);
	transform: translateX(-20px);
}*/
.nav ul li.active a,
.nav ul li:hover a {
/*	color: #000;*/
}
/*.nav li:before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 25px;
  width: 25px;
  border-radius: 0;
  background-color: #EB8222;
  opacity: 0;
  transform: translate(-48px, 25%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}*/
.nav li:before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 16px;
  width: 16px;
  margin-top: 7px;
  border-radius: 0;
  /* background-color: white; */
  background-color: #EB8222;
  opacity: 0;
  transform: translate(-48px, 25%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.nav li:hover::before,
.nav li.active::before {
	opacity: 1;
/*	transform: translate(-40px, 25%);*/
transform: translate(-32px, 25%);
	transition: transform 0.5s ease, opacity 1.0s ease;
}
.nav ul li.active,
.footer-nav ul li.active {
	pointer-events: none;
}
/*.nav ul li a.active span {
	opacity: 1;
	color: #fff;
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	-ms-transform: translateX(-20px);
	-o-transform: translateX(-20px);
	transform: translateX(-20px);
}*/
/*.nav ul li a.inactive span {
	opacity: 0;
	-webkit-transform: translateX(-40px);
	-moz-transform: translateX(-40px);
	-ms-transform: translateX(-40px);
	-o-transform: translateX(-40px);
	transform: translateX(-40px);
}*/
@media screen and (max-width: 900px) {
	.nav_active_label {
/*		display: none;*/
	}
	nav .column {
	padding: 48px;
}
.nav ul li a span:before {
  display: none;
}
}
/************************************************************************/
/************************************************************************/
/* end nav styles*/
/************************************************************************/
/************************************************************************/
