body, html {
	height: 100%;
	margin: 0;
  
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 300;
	color: #000;
}



p, h3, h4, h5 {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
}


p {
	font-weight: 300;
}

a {
	color: #000;
	transition: all 0.2s;
}

a:hover {
	color: silver;
	text-decoration: none;
	transition: all 0.2s;
}

h1 {
	font: 5.5rem freight-display-pro,serif;
	line-height: 4.5rem;
	font-weight: 300;
	font-style: normal;
}

h2 {
	font-family: freight-display-pro,serif;
	font-weight: 300;
	font-style: normal;
	line-height: 2.3rem;
}

h2.divider {
	font-weight: 300;
	font-size: 2.6rem;
	line-height: 2.6rem;
}

h3 {
	font: 2.8rem freight-display-pro,serif;
	line-height: 2.3rem;
	font-weight: 300;
	font-style: normal;
}

h5 {
	text-transform: uppercase;
	font-weight: 300;
	font-size: 0.9rem;
	letter-spacing: 2px;
}

h6 {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 0.7rem;
	margin: 0 0 5px;
	line-height: 1rem;
}

.font-weight-medium {
	font-weight: 500;
}

.contact p {
	margin-bottom: 0;
}

.contact h5 {
	font-weight: 500;
	font-size: 0.8rem;
	letter-spacing: 0px;
}






/* @group FEATURE DIVIDERS */

.feature-vertext {
	text-orientation: mixed;
	writing-mode: vertical-lr;
	transform: rotate(-180deg);

	font-weight: 500;
	text-transform: uppercase;
	font-size: 0.9rem;
}

.feature-pullout {
	font: 1.4rem freight-display-pro,serif;
	font-style: normal;
	font-weight: 400;
}


/* @end */







/* @group NAVBAR */

#navbar {
  background-color: #FFF; /* Black background color */
  position: fixed; /* Make it stick/fixed */
  /*top: -60px;*/ /* Stay on top */
  top: 0px; /* Stay on top */
  width: 100%; /* Full width */
  transition: top 0.2s; /* Transition effect when sliding down (and up) */
  z-index: 5;
  padding: 15px 25px 14px;
}

.navbar-logo img {
	height: 28px;
}





/* nav button */

.burger {
  display: flex;
  outline: none;
  width: 28px;
  height: 28px;
  border: 0px;
  padding: 12px 0px 0px;
  background: transparent;
  transition: all 250ms ease-out;
  cursor: pointer;
}

.burger:before, .burger:after {
  content: '';
  width: 28px;
  height: 1px;
  position: absolute;
  background: #000;
  transition: all 250ms ease-out;
  will-change: transform;
}

.burger:before {
  transform: translateY(-4px);
}

.burger:after {
  transform: translateY(4px);
}

/* line transition */

.active.burger:before {
  transform: translateY(0) rotate(45deg);
}

.active.burger:after {
  transform: translateY(0) rotate(-45deg);
}





/* Menu */

.menu {
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: white;
	visibility: hidden;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	opacity: 0;
	z-index: 4;
}

.menu.open {
	visibility: visible;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	opacity: 1;
}

.nav a {
	color: #000;
	text-align: center;
	font: 2.2rem/2.4rem freight-display-pro,serif;
	font-weight: 300;
	font-style: normal;
	margin-top: 8px;
	margin-bottom: 8px;
}

.nav a:hover {
	text-decoration: none;
	color: silver;
}






/* @end */









/* @group SPACERS */

.spacer-lg {
	height: 100px;
}

.spacer-md {
	height: 60px;
}

.spacer-sm {
	height: 40px;
}

/* @end */



/* @group MISC */

.z-fore {
	z-index: 1;
}

.spec-tab {
	left: 82px;
	position: absolute;
}

.vl {
  border-left: 1px solid #000;
  height: 130px;
  width: 1px;
}






/* @end */






/* @group SHOWREEL */


.showreel {
	margin-top: 57px;
}



/* Only shows on Chrome */
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
    .chrome {
        property: value;
    }
}

.playpause {
    background-image:url(../images/misc/play-button-w.svg);
    background-repeat:no-repeat;
    width:15%;
    height:15%;
    position:absolute;
    left:0%;
    right:0%;
    top:0%;
    bottom:0%;
    margin:auto;
    background-size:contain;
    background-position: center;
	cursor: pointer;
	transition: .3s ease-in-out;
}

.playpause:hover {
	opacity: 0.6;
}





/* @end */







/* @group HEADER */

.header {
	/* Full height */
	height: 95vh;
	max-height: 95vh;
	width: 100%;
	position: relative;
  	overflow: hidden;
}


.header-bg video, .header-bg iframe {
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.header-bg img {
	-webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
	
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.embed-responsive-item {
	object-fit: cover;
}

.header-vid video {
  /* override other styles to make responsive */
  width: 100%    !important;
  height: auto   !important;
  background-color: white;
  display: block;
}

.overlay-contain {
	position: relative;
	text-align: center;
}

/* Centered text */
.txt-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}





header .home-logo {
  position: relative;
  z-index: 2;
  visibility: visible;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	opacity: 1;
}

.home-logo img {
	width: 85%;
}



.bg-black {
	background-color: black;
}


/* @end */





/* @group VIDEO */

/* Hide Play button + controls on iOS */
/*video::-webkit-media-controls {
    display:none !important;
}*/


/* @end */



/* @group PROJECTS */


.big-wave-w {
	z-index: -1;
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
	margin-top: -65px;
}

.big-wave-w #W {
	width: 75%;
	position: relative;
	float: right;
	margin-right: -95px;
}



.bubble-circle {
	z-index: -1;
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
	margin-top: -120px;
}

.bubble-circle #bubba {
	width: 600px;
	position: relative;
	float: right;
	margin-right: -150px;
}



.waterwall-w {
	z-index: -1;
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
	margin-top: -65px;
}

.waterwall-w #W {
	width: 80%;
	position: relative;
	margin-left: -250px;
}



.bonsai-b {
	z-index: -1;
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
	margin-top: -120px;
}

.bonsai-b #B {
	width: 44%;
	position: relative;
	float: right;
	margin-right: -80px;
}



.gargoyle-g {
	z-index: -1;
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
	margin-top: -181px;
}

.gargoyle-g #G {
	width: 40%;
	position: relative;
	float: right;
	margin-right: -10px;
}


.penguin-p {
	z-index: -1;
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
	margin-top: -175px;
}

.penguin-p #P {
	width: 55%;
	position: relative;
	margin-left: -280px;
}



.vitrum-v {
	z-index: -1;
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
	margin-top: -65px;
}

.vitrum-v #V {
	width: 60%;
	position: relative;
	margin-left: 30px;
}



.esperance-e {
	z-index: -1;
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
	margin-top: -160px;
}

.esperance-e #E {
	width: 50%;
	position: relative;
	margin-left: -120px;
}


.lunar-dragon-r {
	z-index: -1;
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
	margin-top: -130px;
}

.lunar-dragon-r #R {
	width: 35%;
	position: relative;
	margin-left: 40px;
}


.halo-o {
	z-index: -1;
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
	margin-top: -250px;
}

.halo-o #O {
	width: 55%;
	position: relative;
	float: right;
	margin-right: -110px;
}


.lancea-c {
	z-index: -1;
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
	margin-top: -130px;
}

.lancea-c #C {
	width: 35%;
	position: relative;
	margin-left: -70px;
}

.bunjil-j {
	z-index: -1;
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
	margin-top: -170px;
}

.bunjil-j #J {
	width: 14%;
	position: relative;
	float: right;
	margin-right: 160px;
}





/* @end */








/* @group TECH DETAIL */

.tech-container {
	position: absolute;
	z-index: -1;
}

.tech-container img {
	width: 9px;
}

/* @end */






/* @group HOVERGRID */

.hovergrid {
width:100%;
height:auto;
float:left;
overflow:hidden;
position:relative;
text-align:center;
cursor:default;
background-color: #000;

}

.hovergrid .subdue {
width:100%;
height:100%;
position:absolute;
top:0;
left:0;
/*background-color:rgba(0,0,0,0.2);*/
}

.hovergrid .overlay {
width:100%;
height:100%;
position:absolute;
overflow:hidden;
top:0;
left:0;
opacity:0;
-webkit-transition:all .8s ease;
transition:all .8s ease;
}

.hovergrid:hover .overlay {
opacity:1;
filter:alpha(opacity=100);
}

.hovergrid img {
height: 100%;
width: 100%;
object-fit: cover;
-webkit-transition:all .8s ease;
transition:all .8s ease;
}

.vidhover img {
-webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
}


.hovergrid h4, .hovergrid p {
font-size: 13px;
text-transform: uppercase;
letter-spacing: 1.3px;
margin: 0;
-webkit-transition: all .8s ease;
transition: all .8s ease;
line-height: 16px;
}


.hovergrid i {
opacity:0;
filter:alpha(opacity=100);
-webkit-transition:all .8s ease;
transition:all .3s ease;
display: block;
height: 0;
}

.hovergrid:hover i {
opacity:1;
filter:alpha(opacity=100);
-webkit-transition:all .8s ease;
transition:all .3s ease;
margin-bottom: 50px;
}

.hovergrid p {
opacity:1;
display: block;
height: 0;
-webkit-transition:all .6s ease;
transition:all .6s ease;
}

.hovergrid:hover p {
opacity:1;
-webkit-transition:all .6s ease;
transition:all .6s ease;
margin-bottom: 20px;
}



.hovergrid.video-feature p {
opacity:1;
display: block;
height: 0;
-webkit-transition:all .6s ease;
transition:all .6s ease;
}



/* @end */




/* @group GALLERY */

.gallery {
	margin-top: 57px;
}

/* @end */




/* @group CONTACT */

.embed-container { 
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%; 
	height: auto;
}

.embed-container iframe, .embed-container object, .embed-container embed { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}

.map {
    -webkit-filter: grayscale(100%);
       -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
         -o-filter: grayscale(100%);
            filter: grayscale(100%);
}

/* @end */





/* Bootstrap 4 breakpoints */
 
 
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {  


}



 
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768px) {  

h1 {
	line-height: 7rem;
	font-size: 9rem;
}

h2 {
	font-size: 4.4rem;
	line-height: 4.3rem;
}

h2.divider {
	font-size: 5rem;
	line-height: 4.5rem;
}

h5 {
	font-size: 1.0rem;
}



.nav a {
	font: 4rem/4rem freight-display-pro,serif;
	font-weight: 300;
	font-style: normal;
	margin-top: 12px;
	margin-bottom: 12px;
}




.spacer-lg {
	height: 140px;
}

.spacer-md {
	height: 80px;
}

.spacer-sm {
	height: 40px;
}

.multi-col {
	column-count: 2;
	column-gap: 40px;
}



.neg-marg-lg {
	margin-bottom: -50px;
}



.kelpy {
	margin-top: -130px;
}






}

 
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 

h1 {
	line-height: 9rem;
	font-size: 12rem;
}

.big-wave-w #W {
	width: 65%;
	margin-right: -160px;
}

.vitrum-v {
	margin-top: -215px;
}


.kelpy h1 {
	line-height: 10rem;
	font-size: 15rem;
}




}

 
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  
    
}


/* Landscape devices */
@media only screen 
  and (orientation: landscape)
   {

}

/* Portrait devices */
@media only screen 
  and (orientation: portrait)
   {


}


/* Landscape devices */
@media only screen 
  and (orientation: landscape) and (max-width: 850px)
   {


}



/* ONLY Small devices (phones, portrait, less than 576px) */
@media only screen 
  and (orientation: portrait) and (max-width: 576px) {


}





