/* Style sheet for Luminous Hilt  */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

a {
  background: 0 0; }

a:active, a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: .67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code, kbd, pre, samp {
  font-family: monospace,monospace;
  font-size: 1em; }

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button, select {
  text-transform: none; }

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  width: 70px;
  cursor: pointer; }

button[disabled], html input[disabled] {
  cursor: default; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0; }

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto; }

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: 700; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td, th {
  padding: 0; }

@font-face {
  font-family: 'Bank Gothic';
  src: url("../font/bankgothiclightbt.woff");
  src: local("../font/bankgothiclightbt"), url("../font/bankgothiclightbt.woff") format("woff"), url("../font/bankgothiclightbt.ttf") format("truetype"); }
/* Neat 1.7.0.pre
 * http://neat.bourbon.io
 * Copyright 2012–2014 thoughtbot, inc.
 * MIT License */
/**
 * Disable all deprecation warnings. Defaults to `false`. Set with a `!global` flag.
 *
 * @type Bool
 */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit; }

/**
 * Makes an element a outer container by centring it in the viewport, clearing its floats, and setting its `max-width`.
 *
 * Although optional, using `outer-container` is recommended. The mixin can be called on more than one element per page, as long as they are not nested.
 *
 * @param {Number} $local-max-width ($max-width) - Max width to be applied to the element. Can be a percentage or a measure.
 *
 * @example scss
 *  .element {
 *    @include outer-container(100%);
 *  }
 *
 * @example css
 *  .element {
 *    *zoom: 1;
 *    max-width: 100%;
 *    margin-left: auto;
 *    margin-right: auto;
 *  }
 *
 *  .element:before, .element:after {
 *    content: " ";
 *    display: table;
 *  }
 *
 *  .element:after {
 *    clear: both;
 *  }
 */
/**
 * Changes the display property used by other mixins called in the code block argument.
 *
 * @param {String} $display (block) - Display value to be used within the block. Can be `table` or `block`.
 *
 * @example scss
 *   @include display(table) {
 *    .display-table {
 *      @include span-columns(6);
 *     }
 *   }
 *
 * @example css
 *   // CSS
 *   .display-table {
 *      display: table-cell;
 *      ...
 *   }
 */
/**
 * Changes the direction property used by other mixins called in the code block argument.
 *
 * @param {String} $direction (left-to-right) - Layout direction to be used within the block. Can be `left-to-right` or `right-to-left`.
 *
 * @example scss
 *   @include direction(right-to-left) {
 *    .right-to-left-block {
 *      @include span-columns(6);
 *     }
 *   }
 *
 * @example css
 *   // CSS
 *   .right-to-left-block {
 *     float: right;
 *      ...
 *   }
 */
.gigantic, .huge, .large, .bigger, .big, h1, h2, h3, h4, .spot, h5, h6 {
  color: #f6921e;
  font-weight: 500; }

.gigantic {
  font-size: 110px;
  line-height: 1.09;
  letter-spacing: -2px; }

.huge, h1 {
  font-size: 68px;
  line-height: 1.05;
  letter-spacing: -1px; }

.large, h2 {
  font-size: 42px;
  line-height: 1.14; }

.bigger, h3 {
  font-size: 26px;
  line-height: 1.38; }

.big, h4, .spot {
  font-size: 22px;
  line-height: 1.38; }

.small, small {
  font-size: 10px;
  line-height: 1.2; }

p, .pocket li {
  margin: 0 0 20px 0; }

em {
  font-style: italic; }

strong {
  font-weight: bold; }

hr {
  border: solid #ddd;
  border-width: 1px 0 0;
  clear: both;
  margin: 10px 0 30px;
  height: 0; }

.accent {
  color: #f6921e; }

a {
  color: #f6921e;
  text-decoration: none;
  outline: 0; }

a:hover, a:focus {
  color: #fac280; }

::selection {
  background: #FFF498; }

::-moz-selection {
  background: #FFF498; }

img::selection {
  background: transparent; }

img::-moz-selection {
  background: transparent; }

body {
  -webkit-tap-highlight-color: #FFF498; }

* {
  margin: 0;
  padding: 0;
  line-height: normal; }

body {
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Bank Gothic";
  color: #bebebe;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

main {
  border-right-color: #575757;
  border-bottom-color: #575757;
  border-top-color: #575757;
  border-left-color: #575757;
  border-left-style: solid;
  border-bottom-style: solid;
  border-right-style: solid;
  border-top-style: solid;
  border-top-width: 4px;
  border-bottom-width: 3px;
  border-right-width: 2px;
  border-left-width: 6px;
  background-color: #626261;
  height: 280px;
  width: 750px;
  margin: 5px 0 0;
  overflow: hidden;
  padding: 0 0 0 3px;
  position: absolute;
  top: 270px;
  right: 30px; }

.row {
	height: 30px;
	padding: 0;
	text-align: center;
	width: 680px;
}

.row input {
	width: 15px;
}
.content {
  background-image: url(../img/background.jpg);
  border: 1px solid #ccc;
  box-shadow: 3px 5px 10px #777;
  height: 700px;
  margin: 0.5em auto;
  position: relative;
  transition-duration: 1s;
  width: 980px;
  z-index: 0; }

.logo {
  height: 317px;
  position: absolute;
  top: 103px;
  left: 55px;
  width: 256px; }

.slogan {
  display: inline-block;
  position: absolute;
  top: 140px;
  right: 5px;
  bottom: 15px;
  left: 300px; }
  .slogan h4, .slogan .spot {
    font-weight: normal;
    margin-top: -2.65em;
    color: #666; }

.legal {
 /* margin-top: 10px;*/
  position: absolute;
  right: 30px;
  bottom: 0; }

.open {
  padding-left: 190px;
  -webkit-transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s; }

.menuSlide {
  -webkit-transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  z-index: 0; }

.sidebar {
  background-color: #626261;
  border-right: 1px solid #666;
  bottom: 0;
  padding: 30px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: -190px;
  -webkit-transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  width: 180px;
  z-index: 0; }
  .sidebar .menu {
    list-style: none; }
    .sidebar .menu a {
      color: rgba(255, 255, 255, 0.8);
      display: block;
      font-family: "Bank Gothic";
      font-size: 16px;
      font-synthesis: antialiased;
      margin-bottom: 16px;
      text-decoration: none;
      -webkit-font-smoothing: antialiased; }
      .sidebar .menu a:hover {
        color: white; }

.menuOpen {
  left: 0px; }
  
.mar-b-20 {
    margin-bottom: 20px;
}

.toggle {
  border: none;
  color: #000;
  font-size: 30px;
  height: 20px;
  position: fixed;
  top: 2px;
  left: 20px;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  width: 25px;
  z-index: 0; }

.toggleOpen {
  left: 200px; }

.bannerOpen {
  margin-left: 95px; }

@media (max-width: 990px) {
  .sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0px;
    z-index: 0; }

  .toggle {
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
    z-index: 2; }

  .menuSlide {
    background-color: #fff;
    left: 0px;
    overflow-x: auto;
    position: fixed;
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
    z-index: 1; }

  .open {
    left: 190px;
    margin-left: 50px;
    overflow-x: hidden;
    padding-left: 50px;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s; }
  .bannerOpen {
	  margin-left: 285px; }}

#pc {
  height: auto;
  margin: 0 auto;
  padding: 0 0.25em;
  width: 610px; }

/* Contact Styling */
form {
  border: 1px solid red;
  padding: 3px;
  max-width: 68em;
  margin-left: auto;
  margin-right: auto; }
  form::after {
    clear: both;
    content: "";
    display: table; }
  form div {
    padding: 4px 5px; }

.line {
  max-width: 68em;
  margin-left: auto;
  margin-right: auto; }
  .line::after {
    clear: both;
    content: "";
    display: table; }

label, .spacer {
  margin: 0;
  padding: 0;
  width: 140px; }

option {
  color: #000;
  font-family: "Bank Gothic";
  font-size: 12px;
  margin: 0;
  padding: 0;
  width: 90px; }

label {
  color: #fff;
  font-family: "Bank Gothic";
  font-size: 12px;
  margin: 0;
  padding: 0 5px 0 0; }

input, textarea {
  background-color: #D7D7D7;
  border: 1px solid #404040;
  color: #000;
  font-family: "Bank Gothic";
  margin: 0;
  outline: none;
  padding: 2px;
  padding-right: 0;
  width: 150px;}

textarea {
	outline: none;
	width: 290px;
}

.pocket .path, .spot .path {
  color: #888;
  display: inline-block;
  font-size: 37px;
  padding-bottom: 10px; }

.spot {
  height: 200px;
  margin: 2.5em auto;
  width: 480px; }
  .spot .left {
    float: left; }
  .spot h4, .spot .spot {
    color: #fff;
    padding: 0.5em 0; }
  .spot .right {
    float: right; }

.pocket {
  height: 100%;
  margin: 5px;
  padding: 5px 10px;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all; }
  .pocket p, .pocket li, .pocket span {
    color: #fff; }
  .pocket li {
    margin-left: 20px; }

.container {
  background-color: #fff;
  min-height: 600px;
  margin: 1em auto;
  max-width: 978px;
  position: relative;
  top: 200px;
  bottom: 1em; }

.banner {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  width: 980px;
  padding: 0;
  position: fixed;
  top: 0;
  left: 50%;
   -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  z-index: 0; }
  .banner img {
    float: left; }
  .banner h4, .banner .spot {
    margin-top: -2.65em;
    color: #666; }

.page {
  background: #fff;
  border-bottom: 0;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-top: 0;
  color: #000;
  height: auto;
  overflow: auto;
  padding: 1em;
  position: static;
  -webkit-transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  width: 978px;
  z-index: 0; }
  .page li {
    margin-left: 20px; }

@media (max-width: 980px) {
  .page {
    max-width: 978px; } }
.name {
  display: none;
  position: relative;
  top: 20px;
  right: 60px;
  left: auto;
  text-align: center;
  -webkit-transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s; }

.nameOpen {
  padding-left: 96px; }

.year {
  float: right; }

.work-unit {
  margin-bottom: 2em;
  max-width: 978px;
  max-width: 68em;
  margin-left: auto;
  margin-right: auto; }
  .work-unit:after {
    content: "";
    display: table;
    clear: both; }

.work {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  padding-top: 10px;
  text-align: center; }
  .work:last-child {
    margin-right: 0; }
  .work .sample {
    border: 2px solid #eee;
    border-radius: 10px;
    height: 275px;
    width: 100%; }

.underline, .exp {
  border-bottom: 1px solid #f6921e;
  margin-bottom: 5px;
  padding: 0px;
  width: 201px; }

.exp {
  font-size: 21px;
  margin-top: 20px;
  width: 302px; }

@media (max-width: 990px) {
  .name {
    position: relative;
    top: 20px;
    right: 90px;
    left: auto; } }

 /* Contact Styling */
form {
  padding: 10px; }
  form div {
    padding: 7px 5px; }
