@charset "UTF-8";
/*@import url("../webfonts/Barkentina/stylesheet.css");*/
/*@import url("../webfonts/HurmeGeometric-SmBd/stylesheet.css");*/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
}
html, body {
	width: 100%;
	height:100%;
	margin: 0;
	background-color: #07294b;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* PAGE COVER & SPINNER STYLES */
.page-cover {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  pointer-events: none;
  background: #07294b;
}
/*SPINNER STYLES*/
.page-cover-loading,
.page-cover-loading:after {
  width: 32px;
  height: 32px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  border-radius: 50%;
  z-index: 100;
}
.page-cover-loading {
  background-color: transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.2);
  border-right: 5px solid rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid rgba(0, 0, 0, 0.2);
  border-left: 5px solid #eee;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-iteration-count:infinite;
  animation-iteration-count:infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-name: animsition-loading;
  animation-name: animsition-loading;
}
@-webkit-keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*END SPINNER STYLES*/
.page-cover.hide {
  display: flex;
  opacity: 1;
  transition: opacity 1.0s;
}
.page-cover.show {
  display: hidden;
  opacity: 0;
  transition: opacity 1.0s;
}
/*END PAGE COVER STYLES*/

/* LAZYSIZES lazy-load styles */

/* fade image in after load */
.lazyload,
.lazyloading {
  /*opacity: 0;*/
}
.lazyloaded {
  /*opacity: 1;*/
  /*transition: opacity 0.4s 0.25s;*/
}
/* END LAZYSIZES  */
.more_button {
	position: fixed;
	top: calc(100% - 192px);
	right: 0;
	left: 0;
	width: 52px;
	height: 42px;
	margin: 0 auto;
	text-decoration: none;
	background-image: url(../images/mmaid_arrow_W.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
/* bm use this to prevent wrapping on specific blocks of text  */
span.avoidwrap {
	display:inline-block;
}
  span.nowrap {
    white-space: nowrap;
  }
  span.bullet {
    font: 29px HurmeGeometric-SmBd;
    line-height: inherit;
  }
  span.pipe {
    font: inherit !important;
    padding: 0 18px;
  }
  span.tilde {
    padding: 12px;
    font: 19px/200% HurmeGeometric-SmBd;
    font-size: inherit;
    line-height: inherit;
  }
  .split-word {
    overflow: hidden;
    line-height: inherit;
  }
  span.italic .split-word {
    padding-right: 2px;
}
/* NEW HEADER - interior page */
  header {
   position: fixed;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    padding: 0;
    color: #fff;
    background-color: #07294b;
    border-top: 3px solid #07294b;
    border-bottom: 3px solid #fff;
    z-index: 4;
  }
  /* LOGO BOX Styles - interior page fixed logo container */
  .logo-box {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    width: auto;
    height: 84px;
    padding: 0 24px 0 24px;
    background-color: #07294b;
    z-index: 3;
    border
  }
  .logo-box .logo {
    display: block;
    position: relative;
    width: 91px;
    margin: 5px 0 0 0;
    order: 0;
    overflow: hidden;
  }
 .logo-box .logo img {
    width: 91px;
    height: auto;
  }
.logo video {
    position: absolute;
    bottom: 3px;
    left: 0;
    height: 72px;
    width: auto;
    z-index: -1;
    filter: brightness(120%);
  }
  /* END Logo Box */

.portfolio.logo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: all 0.3s ease;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.nav_active_label {
    position: fixed;
    font: 15px HurmeGeometric-SmBd;
/*    color: #3cbef6;*/
    right: 136px; 
    text-align: right;
    text-transform: uppercase;
}

  /* NEW HAMBURGER */
  /* Icon 1 */
  #nav-icon1{
    width: 42px;
    height: 23px;
    position: relative;
    margin: 0 48px;
    /*margin: 0 0 0 auto;*/
     align-self: center; 
    /* margin: 50px auto; */
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    order: 2;
    /*border: 1px solid white;*/
  }

  #nav-icon1 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    right: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }

  #nav-icon1 span:nth-child(1) {
    top: 0px;
    width: 34px;
  }

  #nav-icon1 span:nth-child(2) {
    top: 10px;
    width: 56px
  }

  #nav-icon1 span:nth-child(3) {
    top: 20px;
    width: 34px;
  }

  #nav-icon1.open span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  #nav-icon1.open span:nth-child(2) {
    opacity: 0;
    right: 60px;
  }

  #nav-icon1.open span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  /* END NEW HAMBURGER */
	
/* MAIN NAV elements */
a {
	text-decoration: none;
	color: #FFFFFF;
}
a:hover {
  color: #3cbef6;
}
.c-hamburger {
	position: fixed;
	top: 0;
	right: 0;
	font-size: 36px;
	margin-top: 8px;
	margin-right: 14px;
	z-index: 5;
}
.nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 3;
	width: 100%;
	max-width: 480px;
	height: 0;
	background: #309dd6;
	border-left: 3px solid white;
	overflow-x: hidden;
	transition: height 0.6s ease;
}
.nav-fullheight {
	position: fixed;
	/*width: 100%;*/
	height: 100%;
	transition: height 0.6s ease;
}
/* provides click area to close nav on click anywhere in window*/
.nav-fullheight:before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
}
.nav ul {
	color: rgba(255,255,255,1.00);
	font: 26px/200% HurmeGeometric-SmBd !important;
	text-align: left;
	/*display: inline-block;*/
	position: relative;
	margin: 0 auto;
	list-style-type: none !important;
	top: 96px;
	z-index: 1;
}
.nav ul li {
	margin: -4px 0 0 0;
	opacity: 1;
	transition: all 0.9s ease;
	padding-left: 96px;
}
.nav ul li.hidden {
	opacity: 0;
	-webkit-transform: translateX(60px);
	-moz-transform: translateX(60px);
	-ms-transform: translateX(60px);
	-o-transform: translateX(60px);
	transform: translateX(60px);
}
.nav ul li > a {
	display: block;
	/*width: 108px;*/
	padding: 0 0 0 0;
	margin: 0 auto 12px;
	opacity: 0.9;
	/*transform: translateX(-32px);*/
	transition: all 0.9s ease;
}
.nav ul li a:hover,
.nav ul li.subs a:hover {
	color: #07294b;
	opacity: 1;
	transition: all 0.5s ease;
}

.nav ul li.active > a {
	color: #07294b;
/*  pointer-events: none;*/
}
footer ul li.active > a {

}
.nav ul li.active a:hover {
	background-color: rgba(72,117,172,0);
	padding: 0 0 0 0;
	cursor: default;
}
.nav ul li a span {
	display: block;
	position: absolute;
	opacity: 0;
	-webkit-transform: translateX(-48px);
	-moz-transform: translateX(-40px);
	-ms-transform: translateX(-40px);
	-o-transform: translateX(-40px);
	transform: translateX(-48px);
	transition: all 0.3s ease-out;
}
.nav ul li a span:before {
	content: " » ";
	font-size: 36px;
	position: relative;
	top: -2px;
}
.nav ul li a:hover span {
	opacity: 1;
	-webkit-transform: translateX(-18px);
	-moz-transform: translateX(-24px);
	-ms-transform: translateX(-24px);
	-o-transform: translateX(-24px);
	transform: translateX(-24px);
}
.nav ul li.active > a {
  /*pointer-events: none;*/
  cursor: pointer !important;
}
/*.nav ul li.active a span {
    display: block;
    position: absolute;
    opacity: 1;
    -webkit-transform: translateX(-24px);
    transform: translateX(-24px);
}*/

/*nav sub-styles*/
.nav ul li.subs {
	margin-bottom: 12px;
}
.nav ul li.subs a {
	margin: 0;
  cursor: pointer !important; /*line added 9-21-21*/
}
.nav ul ul {
	color: rgba(255,255,255,1.00);
	font: 26px/200% HurmeGeometric-SmBd !important;
	text-align: left;
	/*display: inline-block;*/
	position: relative;
	/*margin: 0 auto;*/
	margin: 0 auto;
	list-style-type: none !important;
	top: 0;
	z-index: 1;
}
.nav ul ul li {
	margin: -4px 0 0 0;
	opacity: 1;
	transition: all 0.9s ease;
	padding-left: 36px;
}
.nav ul ul li a {
	margin: 0;
}
.nav-copy p {
  font: 17px/170% HurmeGeometric-SmBd !important;
  opacity: 0.9;
}
/* additional Portfolio Grid styles */
#portfoliolist {
	top: 84px;
	background: transparent;
}

/*/////////////////////////////*/

/* for bouncing arrows */
.bounce {
  animation: MoveUpDown 1.5s linear infinite;}

@keyframes MoveUpDown {
  0%, 100% {
/*  transform: translate(-50%, -15%);*/
transform: translate(0, -10%);
  }
  50% {
  transform: translate(0, 10%);
  }
}

/* FROM ABOUT*/
  .copy-box {
    display: inline-block;
    color: #fff;
    width: 100%;
    margin: 48px 0.5%;
    padding: 0 0 0 5%;
  }
  .copy-box h1,
  .copy-box h2 {
    font: 19px/200% HurmeGeometric-SmBd;
    color: #ffffff;
    margin: 24px 0 0 0;
  }
  .copy-box h1:nth-of-type(1)
  .copy-box h2:nth-of-type(1) {
    color: #3cbef6;
  }
  .copy-box h1 span,
  .copy-box h2 span {
    font: 28px/150% HurmeGeometric-SmBd;
  }
/*  .copy-box h2 span.big-type {
    font: 28px/150% HurmeGeometric-SmBd;
  }*/
.copy-box p {
    font: 17px/160% HurmeGeometric-SmBd;
    margin: 0;
    padding: 0;
    max-width: 840px;
  }
  .copy-box:first-child p {
      max-width: 860px;
    }
  .copy-box p:nth-of-type(1) {
    /*margin-top: -4px;*/
  }
  /* END FROM ABOUT*/
  /*/////////////////////////////*/
/* buttons with video backgrounds */
  .copy-box .button {
    background-image: ;
    background-size: ;
    background-position: ;
    background-color: transparent;
    border:2px solid #fff;
    display:inline-block;
    position: relative;
    cursor:pointer;
    color:#fff;
    font: 19px HurmeGeometric-SmBd;
    text-decoration:none;
    margin: 24px 0 0 0;
    padding: 8px 16px;
    overflow: hidden;
  }
  .logo video {
/*    position: absolute;
    width: 160px;
    height: 50px;
    top: 0;
    left: 0;
    z-index: -1;*/
  }
  .copy-box .button video,
  .sky-form .button video {
    position: absolute;
    width: 160px;
    height: 50px;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .copy-box .button:hover video,
  .sky-form .button:hover video {
    opacity: 0.5;
  }
  .copy-box .button:hover {
    /*background-color:#5cbf2a;*/
  }
  .copy-box .button:active {
    position:relative;
    top:1px;
  }
/*/////////////////////////////*/
/* FROM FOODHUB*/
.copy-box h3 {
  font: 16px/120% HurmeGeometric-SmBd;
  margin-bottom: 12px;
}
.copy-box h3 span {
  font: 24px/150% HurmeGeometric-SmBd;
}
.copy-box ul {
  list-style-type: none;
  margin-top: 12px;
}
.copy-box ul h3 {
  font: 24px/120% HurmeGeometric-SmBd;
  margin-bottom: 12px;
}
.copy-box ul li {
  font: 17px/160% HurmeGeometric-SmBd;
  margin: 0;
  padding: 0;
}
.copy-box ul p {
  font: 19px/237% HurmeGeometric-SmBd;
  margin: 0;
  padding: 0;
  line-height: 140%;
}


.contact-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
  width: 100%;
  height: 100%;
  /*margin: 12px 0 0 0;*/
  padding: 6px 0 12px 0 !important;
}
.contact-menu p {
  font: 19px HurmeGeometric-SmBd;
  padding: 0 0 0 0 !important;
}
.contact-menu .button {
  margin: 12px 18px 12px 0;
  z-index: 1;
}
.get-in-touch {
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 0;
  left: 0;
  /*width: 95%;*/
  max-width: 1600px;
  margin: 0 auto;
}
.get-in-touch .copy-box {
  width: 100%;
/*  margin: 0 auto !important;
  padding: 0 0 48px 5% !important;*/
  margin: 0 auto;
  /*padding: 0 0 0 5%;*/
  padding: 0 0 0 10%;
  border-left: none;
}
.get-in-touch .copy-box h2:nth-of-type(1),
.get-in-touch .copy-box h2:nth-of-type(2) {
  color: #3cbef6;
  border-top: 3px solid white;
  max-width: 840px;
  padding-top: 24px;
  margin: 0;
}
.get-in-touch .copy-box h2 a {
  border-top: none;
}
.get-in-touch .copy-box h2 a:hover {
  opacity: 0.65;
}
.get-in-touch .copy-box h2.link {
    border-top: none;
    max-width: 840px;
    padding-top: 0;
}
.get-in-touch .copy-box p {
    font: 17px/130% HurmeGeometric-SmBd;
    margin-top: 0;
   }
   /*?*/
.get-in-touch footer .copy-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 6px 0 12px 0 !important;
    border-left: none;
    border-top: 3px solid white;
}
 .get-in-touch footer .copy-box p {
    font: 19px/120% HurmeGeometric-SmBd;
    margin: 0;
    padding: 0 !important;
    max-width: 840px;
  }
 .get-in-touch footer .copy-box p:nth-of-type(1) {
    margin-top: 0;
}
 .get-in-touch footer .copy-box p.active a,
 .get-in-touch footer .copy-box p:hover a {
    /*color: #3cbef6;*/
    /*pointer-events: none;*/
  }
  footer a {
    color: #ffffff;
  }
  footer a:hover,
  footer ul li.active > a {
    color: #3cbef6 !important;
  }
/*  footer a.active {
    pointer-events: none !important;
  }*/
/*/////////////////////////////*/
/* END FROM FOODHUB*/
.footer_portfolio {
	display: inline-block;
	position: relative;
	width: 100%;
	min-height: 100%;
	background-color: #000;
}
.footer_portfolio #portfoliolist {
	top: 140px;
	width: 75%;
}
/* NEW FOOTER */
  div.footer-line {
    border-top: 3px solid white;
  }
footer {
    width: 100%;
    max-width: 1600px;
    min-height: 87px;
    margin: 0 auto;
    /*padding: 0 0 0 5%;*/
    padding: 0 0 0 10%;
    font: 26px/120% HurmeGeometric-SmBd;
    color: #fff;
    background-color: #07294b;
}
footer .copy-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border-left: none;
    border-top: 3px solid white;
}
  footer .copy-box p {
    font: 26px/120% HurmeGeometric-SmBd;
    margin: 0;
    padding: 0 !important;
    max-width: 840px;
  }
  footer .copy-box p:nth-of-type(1) {
    margin-top: 0;
}
  footer .copy-box p a {
    padding: 0 !important;
    margin: 0 !important;
  }
.linkedin-icon {
  width: 32px;
  max-width: 32px;
}
  /*Footer ul styles 10/4*/
footer .copy-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
  margin: 0;
  padding: 12px 0;
}
footer .copy-box li {
  list-style-type: none;
  font: 19px/120% HurmeGeometric-SmBd;
  margin: 0;
  padding: 8px 0 !important;
  max-width: 840px;
}
footer .copy-box li a {
  padding: 8px 0;
}
footer .copy-box ul li.social-icon {
  position: relative;
  left: 10%;
  padding: 4px 12px !important;
}
.next,
.back {
  all: unset;
  display: inline-block;
  font: 27px/120% HurmeGeometric-SmBd;
  cursor: pointer;
}
.next:hover {
  color: #3cbef6;
}
.next {
  margin: 24px 0 18px;
}
.next:after {
  content: " > ";
  font-size: 32px;
  position: relative;
  top: 3px;
  left: 4px;
}
.back {
  left: -16px;
  margin: 24px 0;
}
.back:before {
  content: " <";
  font-size: 32px;
  position: relative;
  top: 3px;
  padding-right: 16px;
}
/* END footer ul styles */
  .bottom-video {
    position: relative;
    width: 100vw;
    height: 32px;
    overflow: hidden;
    /*border: 1px solid white;*/
  }
  .bottom-video video {
    width: 100% !important;
    min-width: 1920px !important;
    height: auto !important;
  }
  .bottom-video.alt video {
    width: 100% !important;
    min-width: 1px !important;
    height: auto !important;
    position: absolute;
    bottom: -48px;
    left: 0;
  }
/*ROYALSLIDER CSS*/
.royalSlider img {
	width: 100%;
	/*min-width: 1024;*/
	height: auto;
	margin: auto;
}
#awards_slider {
	position: fixed;
    left: 0;
    top: 0;
    right: 0;
	bottom: 0;
	width: auto;
	height: auto;
	z-index: 0;
	opacity: 0;
   -webkit-transition: opacity 2s ease-out;
   -moz-transition: opacity 2s ease-out;
   -o-transition: opacity 2s ease-out;
   -ms-transition: opacity 2s ease-out;
   transition: opacity 2s ease-out;
}
#awards_slider.load {
    opacity: 1;
}
.royalslider {
	position: fixed;
    left: 0;
    top: 0;
    right: 0;
	bottom: 0;
	width: auto;
	height: auto;
	z-index: 0;
	opacity: 0;
   -webkit-transition: opacity 2s ease-out;
   -moz-transition: opacity 2s ease-out;
   -o-transition: opacity 2s ease-out;
   -ms-transition: opacity 2s ease-out;
   transition: opacity 2s ease-out;
}
.royalslider.load {
    opacity: 1;
}
.columns .column.two-wide {
  width: calc((100%/3) * 2);
  flex-grow: 2;
}
/* CASE STUDY PAGES body.case-study */
.hero-section {
	position: relative;
  width: 100vw;
  height: calc(100vh - 240px);
}
.overview-container {
  position: relative;
  width: 100%;
  background-color: #07294b;
  color: #ffffff;
}
.overview {
	position: relative;
	font-family: HurmeGeometric-SmBd;
  background-color: #07294b; 
  color: #ffffff;
	max-width: 1600px;
  margin: 0 auto;
  padding: 32px 0 32px 0;
}
.overview .columns {
  display: flex;
  flex-direction: row;
  width: 99%;
  /*padding: 0 0 48px 5%;*/
  padding: 0 0 48px 10%;
  border-left: none;
  max-width: 1400px;
}
.overview .columns .column {
  width: calc(100%/2);
  padding: 24px 5%;
}
.overview .columns .column.one-wide {
  padding: 13px 24px 24px;
}
.overview .columns .column.two-wide {
  width: calc((100%/3) * 2);
  flex-grow: 2;
}
.overview .columns .column:first-child {
  padding: 24px 56px 0 0;
}
.overview-container a * {
  /*color: black;*/
  /*text-decoration: underline;*/
}
.overview-container a:hover {
  color: black;
}
.overview h1,
.overview h2 {
  font-size: 28px;
  /*letter-spacing: 2px;*/
  font-weight: normal;
  line-height: 120%;
  margin-bottom: 28px;
}
.overview h1 span {
  color: #3cbef6;
}
.overview h1 span.subtitle,
.overview h2 span.subtitle {
  font-size: 17px;
  line-height: 160%;
  color: #fff;
}
.overview h3,
.exhibits h3 {
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 15px;
  margin: 24px 0 8px;
  display: block;
  position: relative;
  z-index: 3;
}
.overview p {
	/*font-size: 12px;*/
	font-size: 14px;
	/*margin-bottom: 24px;*/
	line-height: 140%;
	/*max-width: 1024px;*/
}



/*/////////////////////////////*/
/* THIS IS FOR OVERALL PAGE BACKLINK ROLLOVERS*/
a.backlink:hover {
  color: #3cbef6;
}




section ul {
	list-style-type: none;
	margin-top: 8px;
}
section ul li {
	/*font: 12px/237% HurmeGeometric-SmBd;*/
	font: 15px/237% HurmeGeometric-SmBd;
	/*margin: 0 0 0 16px;*/
	padding: 0;
	line-height: 140%;
}
.italic {
	font-style: italic;	
}
.italic p {
	margin-bottom: 8px;
}
.exhibits h1, .exhibits h2, .exhibits h3, .exhibits h4, .exhibits p {
	padding: 0 56px 0 56px;
}
h3.margin_bottom {
	margin-bottom: 24px;
}
h3.margin_top {
	margin-top: 72px;
}
.exhibits {
	position: relative;
	font-family: HurmeGeometric-SmBd;
	color: #000;
	background-color: #fff;
  width: 100%;
  margin: 0 auto;
	padding: 32px 0;
  padding: 32px 0 96px 0;
}
.exhibits.content {
  max-width: 1600px;
}
.exhibits .content {
  position: relative;
  font-family: HurmeGeometric-SmBd;
  color: #000;
  /*background-color: #fff;*/
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}
.exhibits h1,
.exhibits h2,
.exhibits h3,
.exhibits h4,
.exhibits p {
  /*padding: 0 0 0 320px;*/
  /*max-width: 1200px;*/
  font: 15px HurmeGeometric-SmBd;
}
.exhibits a {
  color:  #000;
}
.exhibits h3 {
	margin: 64px 0 48px 0;
  /*padding: 0 0 0 5% !important;*/
  padding: 0 0 0 10% !important;
}
.exhibits img {
	display: block;
	position: relative;
	width: 900px;
	max-width: 90%;
	height: auto;
	margin: 0 auto;
}
p.tagline {
	/*font: 64px 'Bembo Italic';*/
  font: 48px/160% HurmeGeometric-SmBd;
	text-align: center;
}
/*sup style for buro hq superscript*/
sup {
    vertical-align: super;
    font-size: 75%;
}

/* VIDEO SITE DEMO STYLES - iMac & Laptop video containers */
.video-container, .video-container-laptop {
    display: block;
    position: relative;
}
.video-container img, .video-container-laptop img {
  display: block;
  position: relative;
  max-width: 90%;
  height: auto;
  margin: 0 auto;
}
.video-container .video {
    display: block;
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 624px;
    max-width: 64%;
    height: auto;
    box-sizing: border-box;
    border: 12px solid black;
}
.video-container-laptop .video {
    display: block;
    position: absolute;
    /*top: 72px;*/
    left: -12px;
    right: 0;
    margin: 0 auto;
    width: 624px;
    max-width: 62%;
    height: auto;
    box-sizing: border-box;
    border: 12px solid black;
}

@media only screen and (min-width: 1400px) {
/*nav.nav ul {
	font: 22px/200% HurmeGeometric-SmBd;
}*/
/*.nav ul {
	font: 22px/200% HurmeGeometric-SmBd;
}*/
.hero-section {
	height: calc(100% - 224px);
}
.more_button {
	top: calc(100% - 268px);
}
#portfoliolist {
	top: 96px;
}
.overview, .exhibits {
	position: relative;
	font-family: HurmeGeometric-SmBd;
	/*padding: 40px 320px 40px 320px;*/
}
h2, h3, p {
	/*padding: 0 0px 0 320px;*/
}
.exhibits h1,
.exhibits h2,
.exhibits h3,
.exhibits h4,
.exhibits p {
  /*padding: 0 0 0 320px;*/
  padding: 0 0 0 196px;
  max-width: 1200px;
}
.exhibits img {
	width: 1160px;
	max-width: 100%;
}
.video-container img {
    width: 1200px;
  max-width: 100%;
}
.video-container .video {
    top: 64px;
    width: 832px;
}
.video-container-laptop .video {
  top: 94px;
  width: 832px;
}
footer {
  max-width: 1600px;
}
}
@media screen and (max-width: 900px) {
header {
/*padding: 0 12px;*/
}
.logo-box {
  padding: 0 12px;
  height: 85px;
}
.logo-box .logo {
  display: block;
  width: 64px;
  /*height: 43px;*/
  margin: 4px 0 0 0;
}
.logo-box .logo img {
  width: 64px;
  height: auto;
}
#nav-icon1 {
  transform:scale(0.8);
  margin: 0 12px 0 48px;
}
.nav_active_label {
    /*font: 11px HurmeGeometric-SmBd;*/
    max-width: 180px;
    right: 84px;
}
#portfoliolist {
	top: 92px;
}
.columns .column.two-wide,
.overview .columns .column.two-wide {
  width: 100%;
  /*margin-top: 24px;*/
}
.overview .columns {
  flex-direction: column;
}
.overview .columns .column {
  width: 100% !important;
}
.overview .columns .column.one-wide {
/*  padding: 0 24px 24px 0;*/
  padding: 28px 24px 24px 0;
}
/* headlines */
.copy-box h1,
.copy-box h2 {
    font: 19px/140% HurmeGeometric-SmBd;
    margin: 24px 0;
    padding: 0 0 24px 0;
  }
.copy-box h1 span,
.copy-box h2 span {
  font: 28px/116% HurmeGeometric-SmBd;
}
.copy-box p {
  font: 19px/140% HurmeGeometric-SmBd;
  padding: 0 0 12px 0;
}
/* end headlines */
.video-container .video {
    top: 32px;
    border: 8px solid black;
}
.video-container-laptop .video {
  top: 11%;
  width: 560px;
  max-width: 63%;
}
footer .copy-box * {
  /*font: 21px/100% HurmeGeometric-SmBd;*/
}
}
@media screen and (max-width: 640px) {
p.tagline {
	/*font: 36px 'Bembo Italic';*/
  font: 36px/120% HurmeGeometric-SmBd;
	margin-top: 16px;
}
.c-hamburger {
	margin-right: 0px;
	margin-top: 0px;
	margin-left: 0px;
}

.nav ul {
	top: 96px;
}

.nav ul li {
	padding-left: 64px;
}
.video-container .video {
    top: 24px;
    border: 6px solid black;
}
.video-container-laptop .video {
    display: none;
    max-width: 62%;
    /*border: 6px solid black;*/
}
.exhibits h2, .exhibits h3, .exhibits h4, .exhibits p {
  padding: 0 32px 0 32px;
}
#portfoliolist {
	top: 106px;
}
.footer_portfolio {
	padding-bottom: 200px;
}
}
@media screen and (max-width: 480px) {
.video-container .video {
    /*display: none;*/
    top: 16px;
    border: 6px solid black;
}
.video-container-laptop .video {
    /*display: none;*/
    left: -4px;
}
.contact-menu p {
  font: 19px HurmeGeometric-SmBd;
  padding: 12px 0 0 0 !important;
}
}
@media screen and (max-width: 360px) {
header .logo {
	width: 72px;
}
header h1 {
	width: 148px;
	margin-left: 72px;
	margin-top: 14px;
	font-size: 24px;
}
/*header .subtitle {
	float: left;
	font: 13px HurmeGeometric-SmBd;
	margin-left: 0px;
	margin-top: 2px;
}*/
/*.nav_active_label {
	font: 14px HurmeGeometric-SmBd;
	top: 74px;
	left: 72px;
}*/
/*#portfoliolist h2 {
	font: 14px HurmeGeometric-SmBd;
}*/
p.tagline {
	font: 32px HurmeGeometric-SmBd;
}
@media only screen and (max-width: 360px) {
.video-container .video {
    top: 9px;
    border: 4px solid black;
}
}
