/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/*---------------------------------------------------
    Brand Variables
    Centralized brand configuration
    Colors should be updated from style-guide.html
  ---------------------------------------------------*/
/* App Name */
/* Note: This is defined in scripts/config.js for JavaScript usage */
/* Logo Paths (files under /images/) */
/* Colors */
/* TODO: Update these colors from style-guide.html when available */
/* Base Colors */
/* Gray Scale */
/* Brand Colors */
/* Primary brand color */
/* Additional colors from style-guide.html should be added here */
/* Example structure:
@primaryColor: #xxxxxx;
@secondaryColor: #xxxxxx;
@accentColor: #xxxxxx;
*/
@font-face {
  font-family: 'Roboto';
  font-weight: 400;
  src: local('Roboto-Regular'), url(../fonts/Roboto-Regular.woff) format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-weight: 700;
  src: local('Roboto-Bold'), url(../fonts/Roboto-Bold.woff) format('woff');
}
/* Dimensions */
/* Colors are now defined in brand-variables.less */
/* Basics */
* {
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden !important;
  background-color: #fff;
  min-width: 320px;
}
html,
body,
table,
input,
textarea,
select,
button {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  font-weight: 400;
}
body {
  position: relative;
}
a,
button {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  border: none;
}
a {
  color: #ff781b;
  transition: all 0.2s;
}
a:hover {
  color: #4a4a4a;
}
button,
.button {
  display: block;
  background-color: #ff781b;
  color: #fff;
  padding: 20px 0;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
button:hover,
.button:hover {
  background-color: #4a4a4a;
  color: #fff;
}
.disabled {
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  -webkit-opacity: 0.3;
  opacity: 0.3;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
  filter: alpha(opacity=30);
  pointer-events: none;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
h1 {
  font-size: 28px;
  line-height: 32px;
  font-weight: 400;
}
p {
  margin: 20px 0;
}
p.byline {
  margin: 5px 0 0 0;
  color: #9b9b9b;
}
p.byline .skew {
  background-color: #ff781b;
  color: #fff;
  display: inline-block;
}
p.byline .skew .unskew {
  display: block;
  padding: 1px 10px 0 2px;
}
.centered {
  text-align: center;
}
/* Forms */
input[type="text"],
input[type="email"],
textarea {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  line-height: auto;
  padding: 10px 0 10px 10px;
  width: 100%;
  margin: 0;
}
input[type="text"]:hover,
input[type="email"]:hover,
textarea:hover {
  border-color: #4a4a4a;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #ff781b;
}
input[type="checkbox"] {
  margin-right: 10px;
}
textarea {
  resize: none;
  height: 156px;
}
label {
  line-height: 25px;
}
.checkboxes {
  text-align: left;
  width: 170px;
  display: block;
}
/* Tooltip */
.tooltip {
  position: relative;
}
.tooltip > span {
  position: absolute;
  top: 100%;
  font-size: 12px;
  line-height: 16px;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  transition: all 0.2s;
  pointer-events: none;
}
.tooltip > span.skew {
  background-color: black;
  color: #fff;
  display: block;
}
.tooltip > span.skew .unskew {
  display: block;
  padding: 1px 10px 0 2px;
}
.tooltip:hover span {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
/* Icons */
.icon {
  background-size: 50px 50px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.icon.facebook {
  background-image: url('/images/icon-facebook.png');
}
.icon.twitter {
  background-image: url('/images/icon-twitter.png');
}
.icon.email {
  background-image: url('/images/icon-email.png');
}
.icon.instagram {
  background-image: url('/images/icon-instagram.png');
}
.icon.ios {
  background-image: url('/images/icon-ios.png');
}
.icon.android {
  background-image: url('/images/icon-android.png');
}
.icon.web {
  background-image: url('/images/icon-web.png');
}
.icon.tablet {
  background-image: url('/images/icon-tablet.png');
}
.icon.phone {
  background-image: url('/images/icon-phone.png');
}
.icon.enterprise {
  background-image: url('/images/icon-enterprise.png');
}
.icon.discovery {
  background-image: url('/images/icon-service-discovery.png');
}
.icon.design {
  background-image: url('/images/icon-service-design.png');
}
.icon.technicalDirection {
  background-image: url('/images/icon-service-technical-direction.png');
}
.icon.development {
  background-image: url('/images/icon-service-development.png');
}
.icon.testing {
  background-image: url('/images/icon-service-testing.png');
}
.icon.deployment {
  background-image: url('/images/icon-service-deployment.png');
}
.icon.goToMarket {
  background-image: url('/images/icon-service-go-to-market.png');
}
.icon.maintenance {
  background-image: url('/images/icon-service-maintenance.png');
}
.icon.platform {
  width: 30px;
  margin-right: 10px;
  height: 50px;
  display: inline-block;
  transition: all 0.2s;
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  -webkit-opacity: 0.2;
  opacity: 0.2;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=20);
  filter: alpha(opacity=20);
}
.icon.platform:hover {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
  filter: alpha(opacity=70);
}
.icon.menu {
  background-image: url('/images/icon-menu.png');
  background-position: 5px 50%;
}
/* Logos */
.logo {
  background-repeat: no-repeat;
  background-image: url('/images/logo.png');
}
.logo.true {
  background-image: url('/images/logo-true.png');
}
.logo.brushfire {
  background-image: url('/images/logo-brushfire.png');
}
.logo.softwareOps {
  background-image: url('/images/logo-software-ops.png');
}
.logo.alliedcode {
  background-image: url('/images/logo-alliedcode.png');
}
/* Randomly Loaded Items */
.testimonial1,
.testimonial2,
.testimonial3,
.logo1,
.logo2,
.logo3 {
  display: none;
}
.showItem {
  display: inherit;
}
/* Layout */
.skew {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: skew(-27deg, 0deg);
  -moz-transform: skew(-27deg, 0deg);
  -ms-transform: skew(-27deg, 0deg);
  -o-transform: skew(-27deg, 0deg);
  transform-origin: 100% 0%;
  moz-transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -o-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
.skew > .unskew {
  -webkit-transform: skew(27deg, 0deg);
  -moz-transform: skew(27deg, 0deg);
  -ms-transform: skew(27deg, 0deg);
  -o-transform: skew(27deg, 0deg);
  transform-origin: 100% 0%;
  moz-transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -o-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
header li,
.sidebar li {
  list-style: none;
}
header li a,
.sidebar li a {
  line-height: 50px;
  display: inline-block;
  color: #d8d8d8;
  padding: 0 10px;
  height: 50px;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
header li a:hover,
.sidebar li a:hover,
header li a.on,
.sidebar li a.on {
  color: #ff781b;
}
header .social,
.sidebar .social {
  position: absolute;
  font-size: 0;
}
header .social li,
.sidebar .social li {
  display: inline-block;
}
header .social li a,
.sidebar .social li a {
  line-height: 200px;
  width: 40px;
  padding: 0;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
  filter: alpha(opacity=70);
}
header .social li a:hover,
.sidebar .social li a:hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
header {
  position: absolute;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  overflow: visible;
  /* Menu */
}
header .menu {
  display: none;
  position: fixed;
  height: 50px;
  width: 75px;
}
header .logo {
  display: block;
  position: absolute;
  left: 30px;
  width: 138px;
  height: 50px;
  background-image: url('/images/header-logo.png');
  background-size: 138px auto;
  background-position: 0 50%;
  background-repeat: no-repeat;
}
header .logo.symbol {
  width: 40px;
}
header > div {
  background-color: #000;
  position: absolute;
  width: calc(24.5% * 4);
  height: inherit;
  transition: width 0.2s;
}
header .nav {
  display: block;
  position: absolute;
  padding: 0;
  left: 200px;
  right: 200px;
  text-align: center;
}
header li {
  display: inline-block;
  position: relative;
  overflow: visible;
}
header li:hover .popupNav {
  pointer-events: all;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
header li a {
  display: block;
}
header .social {
  position: absolute;
  right: calc(30px * 2);
}
header .popupNav {
  position: absolute;
  left: -10px;
  top: 100%;
  background-color: #4a4a4a;
  padding: 15px 0 20px 0;
  pointer-events: none;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  transition: all 0.2s;
  max-height: 70vh;
  overflow-y: auto;
}
header .popupNav li {
  display: block;
  line-height: 25px;
  padding: 0 10px;
}
header .popupNav li a {
  height: auto;
  line-height: inherit;
  font-size: 14px;
  overflow: visible;
  white-space: nowrap;
  text-align: left;
}
.intro {
  position: absolute;
  top: 0;
  width: 100%;
  height: 450px;
  background-color: #e3e3e3;
  z-index: 2;
  overflow: hidden;
}
.intro > .skew {
  position: absolute;
  z-index: 0;
  height: 100%;
  background-color: #f3f3f3;
  width: calc(24.5% * 4);
}
.intro .columns {
  height: 100%;
}
.intro .columns > .skew {
  height: 100%;
}
.intro .columns > .skew .unskew {
  height: 100%;
}
.intro .columns > .skew:first-child p {
  padding: 0 60px;
}
.intro .columns > .skew:nth-child(2) .copy {
  position: relative;
}
.intro .columns .logo,
.intro .columns .graphic {
  width: calc(24.5%*3);
  height: inherit;
  background-size: 221px auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.intro .columns.project .logo {
  background-position: 85% 50%;
}
.intro .columns .divider span {
  display: block;
  position: absolute;
  right: 0;
  top: calc(50px + 80px);
  bottom: 80px;
  border-right: 1px solid #d8d8d8;
}
.intro .columns .copy {
  display: table;
  width: calc(24.5%*3);
  height: 100%;
}
.intro .columns .copy .inner {
  padding-top: 50px;
  display: table-cell;
  vertical-align: middle;
}
.grid,
.columns {
  position: absolute;
  right: 0;
  width: 100%;
}
.grid > div,
.columns > div {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  width: 24.5%;
}
.grid > div:first-child,
.columns > div:first-child {
  left: 0;
}
.grid > div:nth-child(2),
.columns > div:nth-child(2) {
  left: 24.5%;
}
.grid > div:nth-child(3),
.columns > div:nth-child(3) {
  left: calc(24.5% * 2);
}
.grid > div:nth-child(4),
.columns > div:nth-child(4) {
  left: calc(24.5% * 3);
}
.grid > div:nth-child(5),
.columns > div:nth-child(5) {
  left: calc(24.5% * 4);
}
.grid.split > div,
.columns.split > div {
  width: calc(24.5% * 2);
}
.grid.split > div:first-child,
.columns.split > div:first-child {
  left: 0;
}
.grid.split > div:nth-child(2),
.columns.split > div:nth-child(2) {
  left: calc(24.5% * 2);
}
.grid.project > div:first-child,
.columns.project > div:first-child,
.grid.services > div:first-child,
.columns.services > div:first-child {
  display: none;
}
.grid.project > div:nth-child(2),
.columns.project > div:nth-child(2),
.grid.services > div:nth-child(2),
.columns.services > div:nth-child(2) {
  left: calc(24.5% * 0.5);
  width: calc(24.5% * 2.3);
}
.grid.project > div:nth-child(3),
.columns.project > div:nth-child(3),
.grid.services > div:nth-child(3),
.columns.services > div:nth-child(3) {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: calc(50px + 20px);
  left: calc(24.5% * 2.5);
  width: calc(24.5% * 1.5);
  text-align: right;
}
.grid.project > div:nth-child(3) img,
.columns.project > div:nth-child(3) img,
.grid.services > div:nth-child(3) img,
.columns.services > div:nth-child(3) img {
  height: 100%;
  width: auto;
}
.grid.project > div ul li,
.columns.project > div ul li,
.grid.services > div ul li,
.columns.services > div ul li {
  font-size: 14px;
}
.grid.project > div ul li a,
.columns.project > div ul li a,
.grid.services > div ul li a,
.columns.services > div ul li a {
  display: block;
  padding-left: 30px;
  line-height: 20px;
  color: #f3f3f3;
}
.grid.project > div ul li a:hover,
.columns.project > div ul li a:hover,
.grid.services > div ul li a:hover,
.columns.services > div ul li a:hover,
.grid.project > div ul li a.on,
.columns.project > div ul li a.on,
.grid.services > div ul li a.on,
.columns.services > div ul li a.on {
  color: #ff781b;
}
.grid.project.testimonials > div:nth-child(2),
.columns.project.testimonials > div:nth-child(2),
.grid.services.testimonials > div:nth-child(2),
.columns.services.testimonials > div:nth-child(2) {
  left: 24.5%;
  padding-right: 40px;
  left: calc(24.5% * 0.8);
  width: calc(24.5% * 2.2);
}
.grid.services > div:nth-child(2),
.columns.services > div:nth-child(2) {
  width: calc(24.5% * 3.1);
}
.grid.services h1,
.columns.services h1 {
  text-align: center;
}
.grid {
  top: 0;
  height: 100%;
  overflow: hidden;
}
.grid > div {
  height: 100%;
  border-right: 1px solid #e3e3e3;
}
.columns.bottom > div {
  padding: calc(450px + 10px) 30px 20px 20px;
}
.columns.bottom > div.thumbnails {
  padding-left: 0;
  padding-right: 0;
  padding-top: 450px;
}
.columns.bottom > div.thumbnails .thumbnail {
  width: 100%;
  height: 200px;
  background-color: #d8d8d8;
  position: relative;
  overflow: hidden;
}
.columns.bottom > div.thumbnails .thumbnail:after {
  content: "";
  position: absolute;
  width: 150%;
  height: 120%;
  left: -50%;
  background-image: url('../images/_portfolio-thumbnail.jpg');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  -webkit-transform: skew(calc(-27deg * -1), 0deg);
  -moz-transform: skew(calc(-27deg * -1), 0deg);
  -ms-transform: skew(calc(-27deg * -1), 0deg);
  -o-transform: skew(calc(-27deg * -1), 0deg);
  transform-origin: top right;
}
.gallery {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: calc(450px + 10px) 10px 10px 10px;
  position: relative;
  z-index: 1;
}
.gallery > * {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  position: relative;
  float: left;
  display: inline-block;
}
.gallery > * img {
  width: 100%;
  height: auto;
}
.gallery > * .byline {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-bottom: none;
  display: block;
  color: #000;
  padding: 10px 10px 10px 20px;
  text-align: center;
  transition: all 0.2s;
}
.gallery > * .byline .skew {
  display: block;
}
.gallery > *.service {
  color: #000;
  line-height: 0;
  display: flex;
  flex-direction: column;
}
.gallery > *.service .description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-top: none;
  padding: 20px;
  flex-grow: 1;
}
.gallery > *.service h2,
.gallery > *.service p {
  line-height: initial;
}
.gallery > *.service p {
  margin-top: 10px;
  font-size: calc(16px * 0.9);
  line-height: calc(20px * 1.2);
  margin-bottom: auto;
}
.gallery > *.service .button {
  margin-top: 20px;
  margin-bottom: 0;
  line-height: 24px;
  height: 24px;
}
.gallery > *.textbox {
  padding: 10px;
}
.gallery > *.textbox.copy .inner p {
  text-align: left !important;
}
.gallery > *.textbox .border {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  display: flex;
  font-size: calc(16px * 0.9);
  line-height: calc(20px * 1.2);
}
.gallery > *.textbox .border > * {
  flex: 1;
}
.gallery > *.textbox .border .inner {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px;
}
.gallery > *.textbox .border .inner.icon {
  background-size: 75px 65px;
  background-position: left 10px top 35px;
  padding-left: 100px;
}
.gallery > *.textbox .border .inner.logo {
  background-size: 150px 130px;
  background-position: left 20px top 20px;
  padding-left: 200px;
}
.gallery > *.textbox .border .inner h2 {
  margin-bottom: 20px;
}
.gallery > *.textbox .border .inner p {
  margin: 20px 0;
}
.gallery > *.textbox .border .inner p:last-child {
  margin-bottom: 0;
}
.gallery > *.textbox .border .inset {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background-color: #f3f3f3;
  margin: 20px;
  padding: 30px;
}
.gallery > *.textbox .border .inset.float {
  float: right;
  display: inline;
  max-width: 390px;
  margin: -20px -20px 30px 30px;
}
.gallery > *.textbox .border .inset.float img {
  margin-bottom: 20px;
}
.gallery > *:hover .byline {
  background-color: #ff781b;
  border-color: #ff781b;
  color: #fff;
}
.gallery.full > * {
  float: none;
  width: 100%;
}
.gallery.half > * {
  width: 50%;
}
.gallery.third > * {
  width: 33.3%;
}
.gallery.services {
  display: flex;
  align-items: stretch;
  padding-bottom: 0;
}
.gallery p {
  margin: 0;
}
.headshot {
  width: 175px;
  height: 175px;
  margin: 0 auto 20px auto;
  -webkit-border-top-right-radius: 50%;
  -webkit-border-bottom-right-radius: 50%;
  -webkit-border-bottom-left-radius: 50%;
  -webkit-border-top-left-radius: 50%;
  -moz-border-radius-topright: 50%;
  -moz-border-radius-bottomright: 50%;
  -moz-border-radius-bottomleft: 50%;
  -moz-border-radius-topleft: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #d8d8d8;
  overflow: hidden;
}
.cta {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 0 20px 20px 20px;
  position: relative;
  z-index: 1;
}
.cta button {
  width: 100%;
}
/* Sidebar */
.sidebar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background-color: rgba(216, 216, 216, 0);
  transition: background-color 0.2s;
  overflow: hidden;
  pointer-events: none;
}
.sidebar .inner {
  position: absolute;
  left: calc(-240px);
  top: 0;
  bottom: 0;
  width: 240px;
  transition: left 0.2s;
  background-color: #000;
  overflow-y: auto;
}
.sidebar .inner .nav > li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.sidebar .inner .nav > li a {
  padding: 20px;
}
.sidebar .inner .nav a {
  display: block;
  line-height: 20px;
  height: auto;
  font-size: 20px;
}
.sidebar .inner .nav .nav {
  height: auto;
  padding-bottom: 0;
}
.sidebar .inner .nav .nav li a {
  padding: 20px 20px 20px 40px;
}
.sidebar .inner .social {
  position: static;
  height: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.sidebar .inner .social li {
  width: 33.3%;
}
.sidebar .inner .social li a {
  width: 100%;
}
/* Media Queries */
@media screen and (max-width: 1025px) {
  /* Dimensions */
  /* Basics */
  html,
  body,
  table,
  input,
  select,
  textarea,
  button {
    font-size: 14px;
    line-height: 18px;
  }
  textarea {
    height: 148px;
  }
  /* Layout */
  header {
    transition: left 0.2s;
    left: 0;
    position: absolute;
  }
  header .menu {
    display: block;
    position: absolute;
  }
  header .logo,
  header .nav,
  header .social {
    display: none;
  }
  header > div {
    width: 75px;
  }
  .intro > .skew {
    width: calc(30% * 4);
  }
  .intro .columns > .skew:nth-child(2) .copy {
    left: -50px;
  }
  .intro .columns > .skew:nth-child(2) .copy .inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  .grid > div,
  .columns > div {
    width: 30%;
  }
  .grid > div:nth-child(2),
  .columns > div:nth-child(2) {
    left: 30%;
  }
  .grid > div:nth-child(3),
  .columns > div:nth-child(3) {
    left: calc(30% * 2);
  }
  .grid > div:nth-child(4),
  .columns > div:nth-child(4) {
    left: calc(30% * 3);
  }
  .grid > div:nth-child(5),
  .columns > div:nth-child(5) {
    left: calc(30% * 4);
  }
  .grid.split > div,
  .columns.split > div {
    width: calc(30% * 2);
  }
  .grid.split > div:nth-child(2),
  .columns.split > div:nth-child(2) {
    left: calc(30% * 2);
  }
  .grid.project > div:first-child,
  .columns.project > div:first-child,
  .grid.services > div:first-child,
  .columns.services > div:first-child {
    display: none;
  }
  .grid.project > div:nth-child(2),
  .columns.project > div:nth-child(2),
  .grid.services > div:nth-child(2),
  .columns.services > div:nth-child(2) {
    left: calc(30%/3);
    width: calc(30% * 1.9);
  }
  .grid.project > div:nth-child(3),
  .columns.project > div:nth-child(3),
  .grid.services > div:nth-child(3),
  .columns.services > div:nth-child(3) {
    padding-top: 50px;
    left: calc(30% * 1.7);
    width: calc(30% * 1.2);
  }
  .grid.project > div .divider,
  .columns.project > div .divider,
  .grid.services > div .divider,
  .columns.services > div .divider {
    display: none;
  }
  .grid.project.testimonials > div:nth-child(2),
  .columns.project.testimonials > div:nth-child(2),
  .grid.services.testimonials > div:nth-child(2),
  .columns.services.testimonials > div:nth-child(2) {
    left: calc(30%/3);
    padding-right: 40px;
    width: calc(30% * 3);
  }
  .grid.project.testimonials > div:nth-child(3),
  .columns.project.testimonials > div:nth-child(3),
  .grid.services.testimonials > div:nth-child(3),
  .columns.services.testimonials > div:nth-child(3) {
    left: calc(30% * 2.2);
  }
  .grid.services > div:nth-child(2),
  .columns.services > div:nth-child(2) {
    width: calc(30% * 4);
  }
  .gallery > *.textbox .border .inner {
    padding: 30px;
  }
  .gallery > *.textbox .border .inner.icon {
    background-position: left 10px top 25px;
    padding-left: 100px;
  }
  .gallery > *.half,
  .gallery > *.third > * {
    width: 50%;
  }
  /* Sidebar */
  body.showSidebar .sidebar {
    background-color: rgba(216, 216, 216, 0.7);
    pointer-events: auto;
  }
  body.showSidebar .sidebar > * {
    left: 0;
  }
  body.showSidebar header {
    left: 240px;
  }
  body.showSidebar header .menu {
    background-image: url('/images/icon-close.png');
  }
}
@media screen and (max-width: 820px) {
  /* Dimensions */
  /* Basics */
  p {
    margin: 10px 0;
  }
  h1 {
    font-size: 20px;
    line-height: 24px;
  }
  /* Forms */
  .checkboxes {
    margin: 0 auto;
  }
  /* Layout */
  .intro {
    height: 300px;
    text-align: center;
  }
  .intro > .skew {
    width: calc(45% * 3);
  }
  .intro .columns > .skew {
    height: calc(300px/2);
  }
  .intro .columns > .skew:nth-child(2) .copy {
    left: 0;
  }
  .intro .columns.subNav .skew {
    height: 100%;
  }
  .intro .columns.subNav .skew p {
    padding: 0 10px;
  }
  .intro .columns .copy {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .intro .columns .copy .inner {
    padding: 0;
  }
  .intro .columns .copy .inner p {
    padding-right: 0 !important;
  }
  .intro .columns .copy .inner p.optional {
    display: none;
  }
  .intro .columns .logo {
    text-align: center;
    width: 100%;
    background-size: 150px auto;
    background-position: 50% bottom !important;
  }
  .intro .columns.project .logo {
    background-size: contain;
  }
  .grid > div,
  .columns > div {
    width: 45%;
  }
  .grid > div:nth-child(2),
  .columns > div:nth-child(2) {
    left: 45%;
  }
  .grid > div:nth-child(3),
  .columns > div:nth-child(3) {
    left: calc(45% * 2);
  }
  .grid > div:nth-child(4),
  .columns > div:nth-child(4) {
    left: calc(45% * 3);
  }
  .grid > div:nth-child(5),
  .columns > div:nth-child(5) {
    left: calc(45% * 4);
  }
  .grid.split > div,
  .columns.split > div,
  .grid.project > div,
  .columns.project > div {
    width: 100% !important;
    position: static;
    -webkit-transform: skew(0deg, 0deg);
    -moz-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
    -o-transform: skew(0deg, 0deg);
    transform-origin: top right;
  }
  .grid.split > div > .unskew,
  .columns.split > div > .unskew,
  .grid.project > div > .unskew,
  .columns.project > div > .unskew {
    -webkit-transform: skew(0deg, 0deg);
    -moz-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
    -o-transform: skew(0deg, 0deg);
    transform-origin: top right;
  }
  .grid.project > div:nth-child(2),
  .columns.project > div:nth-child(2),
  .grid.services > div:nth-child(2),
  .columns.services > div:nth-child(2) {
    height: 60%;
    padding-top: 60px;
  }
  .grid.project > div:nth-child(3),
  .columns.project > div:nth-child(3),
  .grid.services > div:nth-child(3),
  .columns.services > div:nth-child(3) {
    height: 40%;
    left: 0;
    padding: 0 0 10px 0;
    text-align: center;
  }
  .grid.services > div:nth-child(2),
  .columns.services > div:nth-child(2) {
    width: calc(45% * 1.9);
    height: 100%;
  }
  .columns.bottom {
    padding-top: 300px;
  }
  .columns.bottom > div {
    width: 100% !important;
    display: block;
    position: static;
    height: auto;
    padding: 5px 20px 20px 20px;
  }
  .columns.bottom > div.skew {
    -webkit-transform: skew(0deg, 0deg);
    -moz-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
    -o-transform: skew(0deg, 0deg);
    transform-origin: top right;
  }
  .columns.bottom > div.skew > .unskew {
    -webkit-transform: skew(0deg, 0deg);
    -moz-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
    -o-transform: skew(0deg, 0deg);
    transform-origin: top right;
  }
  .gallery {
    padding: calc(300px + 10px) 10px 10px;
  }
  .gallery > * {
    width: 100% !important;
    float: none;
    padding: 0 0 10px 0;
  }
  .gallery > *.textbox {
    padding: 0 0 10px 0;
  }
  .gallery > *.textbox .border {
    flex-direction: column;
  }
  .gallery > *.textbox .border .inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 15px;
  }
  .gallery > *.textbox .border .inner > * {
    order: 4;
  }
  .gallery > *.textbox .border .inner h2 {
    margin-bottom: 10px;
  }
  .gallery > *.textbox .border .inner p {
    margin: 15px 0;
  }
  .gallery > *.textbox .border .inner h2:nth-child(2),
  .gallery > *.textbox .border .inner h2:nth-child(2) + p {
    order: 1;
  }
  .gallery > *.textbox .border .inner.icon,
  .gallery > *.textbox .border .inner.logo {
    background-size: 75px 65px;
    background-position: left 50% top 10px;
    padding-left: 30px;
    padding-top: 90px;
  }
  .gallery > *.textbox .border .inset {
    margin: 0 10px 10px 10px;
    padding: 15px;
  }
  .gallery > *.textbox .border .inset.float {
    float: none;
    display: block;
    max-width: none;
    margin: 10px 0;
    order: 3;
  }
  .gallery.services {
    flex-direction: column;
  }
  body.project .intro {
    height: 600px;
  }
  body.project .intro .columns > .skew {
    height: calc(600px/2);
  }
  body.project .gallery {
    padding: calc(600px + 10px) 10px 10px;
  }
  .gallery.third > * {
    width: 50%;
  }
  .headshot {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px auto;
  }
}
