@charset "UTF-8";
/*

Make changes in styles.scss which will then be converted to styles.css when "yarn start" is running.

hatfieldbros.com

Author: Luke Hatfield
URL:    http://hatfieldbros.com
Email:  hello@hatfieldbros.com

*/
/*------------------------------------*\
    $CSSWIZARDRY-GRIDS
\*------------------------------------*/
/**
 * CONTENTS
 * INTRODUCTION.........How the grid system works.
 * VARIABLES............Your settings.
 * MIXINS...............Library mixins.
 * GRID SETUP...........Build the grid structure.
 * WIDTHS...............Build our responsive widths around our breakpoints.
 * PUSH.................Push classes.
 * PULL.................Pull classes.
 */
/*------------------------------------*\
    $INTRODUCTION
\*------------------------------------*/
/**
 * csswizardry grids provides you with widths to suit a number of breakpoints
 * designed around devices of a size you specify. Out of the box, csswizardry
 * grids caters to the following types of device:
 *
 * palm     --  palm-based devices, like phones and small tablets
 * lap      --  lap-based devices, like iPads or laptops
 * portable --  all of the above
 * desk     --  stationary devices, like desktop computers
 * regular  --  any/all types of device
 *
 * These namespaces are then used in the library to give you the ability to
 * manipulate your layouts based around them, for example:
 *
   <div class="grid__item  one-whole  lap--one-half  desk--one-third">
 *
 * This would give you a grid item which is 100% width unless it is on a lap
 * device, at which point it become 50% wide, or it is on a desktop device, at
 * which point it becomes 33.333% width.
 *
 * csswizardry grids also has push and pull classes which allow you to nudge
 * grid items left and right by a defined amount. These follow the same naming
 * convention as above, but are prepended by either `push--` or `pull--`, for
 * example:
 *
   `class="grid__item  one-half  push--one-half"`
 *
 * This would give you a grid item which is 50% width and pushed over to the
 * right by 50%.
 *
 * All classes in csswizardry grids follow this patten, so you should fairly
 * quickly be able to piece together any combinations you can imagine, for
 * example:
 *
   `class="grid__item  one-whole  lap--one-half  desk--one-third  push--desk--one-third"`
 *
   `class="grid__item  one-quarter  palm--one-half  push--palm--one-half"`
 *
   `class="grid__item  palm--one-third  desk--five-twelfths"`
 */
/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/**
 * If you are building a non-responsive site but would still like to use
 * csswizardry-grids, set this to ‘false’:
 */
/**
 * Is this build mobile first? Setting to ‘true’ means that all grids will be
 * 100% width if you do not apply a more specific class to them.
 */
/**
 * Set the spacing between your grid items.
 */
/**
 * Would you like Sass’ silent classes, or regular CSS classes?
 */
/**
 * Would you like push and pull classes enabled?
 */
/**
 * Using `inline-block` means that the grid items need their whitespace removing
 * in order for them to work correctly. Set the following to true if you are
 * going to achieve this by manually removing/commenting out any whitespace in
 * your HTML yourself.
 *
 * Setting this to false invokes a hack which cannot always be guaranteed,
 * please see the following for more detail:
 *
 * github.com/csswizardry/csswizardry-grids/commit/744d4b23c9d2b77d605b5991e54a397df72e0688
 * github.com/csswizardry/inuit.css/issues/170#issuecomment-14859371
 */
/**
 * Define your breakpoints. The first value is the prefix that shall be used for
 * your classes (e.g. `.palm--one-half`), the second value is the media query
 * that the breakpoint fires at.
 */
/**
 * Define which namespaced breakpoints you would like to generate for each of
 * widths, push and pull. This is handy if you only need pull on, say, desk, or
 * you only need a new width breakpoint at mobile sizes. It allows you to only
 * compile as much CSS as you need. All are turned on by default, but you can
 * add and remove breakpoints at will.
 *
 * Push and pull shall only be used if `$push` and/or `$pull` and `$responsive`
 * have been set to ‘true’.
 */
/**
 * You do not need to edit anything from this line onward; csswizardry-grids is
 * good to go. Happy griddin’!
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/**
 * These mixins are for the library to use only, you should not need to modify
 * them at all.
 *
 * Enclose a block of code with a media query as named in `$breakpoints`.
 */
/**
 * Drop relative positioning into silent classes which can’t take advantage of
 * the `[class*="push--"]` and `[class*="pull--"]` selectors.
 */
/*------------------------------------*\
    $GRID SETUP
\*------------------------------------*/
/**
 * 1. Allow the grid system to be used on lists.
 * 2. Remove any margins and paddings that might affect the grid system.
 * 3. Apply a negative `margin-left` to negate the columns’ gutters.
 */
/**
 * 1. Cause columns to stack side-by-side.
 * 2. Space columns apart.
 * 3. Align columns to the tops of each other.
 * 4. Full-width unless told to behave otherwise.
 * 5. Required to combine fluid widths and fixed gutters.
 */
.main {
  display: inline-block; /* [1] */
  padding-left: 8px; /* [2] */
  vertical-align: top; /* [3] */
  width: 100%; /* [4] */ /* [5] */ /* [5] */
  box-sizing: border-box; /* [5] */
}

/**
 * Reversed grids allow you to structure your source in the opposite order to
 * how your rendered layout will appear. Extends `.grid`.
 */
/**
 * Gutterless grids have all the properties of regular grids, minus any spacing.
 * Extends `.grid`.
 */
/**
 * Align the entire grid to the right. Extends `.grid`.
 */
/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */
/**
 * Align grid cells vertically (`.grid--middle` or `.grid--bottom`). Extends
 * `.grid`.
 */
/**
 * Create grids with narrower gutters. Extends `.grid`.
 */
/**
 * Create grids with wider gutters. Extends `.grid`.
 */
/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Create our width classes, prefixed by the specified namespace.
 */
/**
 * Our regular, non-responsive width classes.
 */
/**
 * Whole
 */
.main {
  width: 100%;
}

/**
 * Halves
 */
/**
 * Thirds
 */
/**
 * Quarters
 */
/**
 * Fifths
 */
/**
 * Sixths
 */
/**
 * Eighths
 */
/**
 * Tenths
 */
/**
 * Twelfths
 */
/**
 * Our responsive classes, if we have enabled them.
 */
@media only screen and (max-width: 480px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */
}
@media only screen and (min-width: 481px) and (max-width: 1023px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  .main {
    width: 83.333%;
  }
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */
}
@media only screen and (max-width: 1023px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */
}
@media only screen and (min-width: 1024px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  .main {
    width: 83.333%;
  }
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */
  .home-page .main {
    width: 58.333%;
  }
}
/*------------------------------------*\
    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/**
 * Not a particularly great selector, but the DRYest way to do things.
 */
[class*=push--] {
  position: relative;
}

/**
 * Whole
 */
/**
 * Halves
 */
/**
 * Thirds
 */
/**
 * Quarters
 */
/**
 * Fifths
 */
/**
 * Sixths
 */
/**
 * Eighths
 */
/**
 * Tenths
 */
/**
 * Twelfths
 */
@media only screen and (max-width: 480px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */
}
@media only screen and (min-width: 481px) and (max-width: 1023px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */
  .main {
    left: 8.333%;
    position: relative;
  }
}
@media only screen and (max-width: 1023px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */
}
@media only screen and (min-width: 1024px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */
  .main {
    left: 8.333%;
    position: relative;
  }
}
/*------------------------------------*\
    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items back to the left by certain amounts.
 */
/**
 * Not a particularly great selector, but the DRYest way to do things.
 */
[class*=pull--] {
  position: relative;
}

/**
 * Whole
 */
/**
 * Halves
 */
/**
 * Thirds
 */
/**
 * Quarters
 */
/**
 * Fifths
 */
/**
 * Sixths
 */
/**
 * Eighths
 */
/**
 * Tenths
 */
/**
 * Twelfths
 */
@media only screen and (max-width: 480px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */
}
@media only screen and (min-width: 481px) and (max-width: 1023px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */
}
@media only screen and (max-width: 1023px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */
}
@media only screen and (min-width: 1024px) {
  /**
   * Whole
   */
  /**
   * Halves
   */
  /**
   * Thirds
   */
  /**
   * Quarters
   */
  /**
   * Fifths
   */
  /**
   * Sixths
   */
  /**
   * Eighths
   */
  /**
   * Tenths
   */
  /**
   * Twelfths
   */
}
.toggle .material-icons.md-36 {
  font-size: 36px;
}

/*.material-icons .md-36
/* Colors
-------------------------------------------------- */
.color--bg--1 {
  background-color: #00f3a2;
}

.color--bg--2 {
  background-color: #007eb5;
}

.color--bg--3 {
  background-color: purple;
}

.color--bg--4 {
  background-color: coral;
}

.color--bg--5 {
  background-color: OrangeRed;
}

.color--text--1 {
  color: #00f3a2;
}

.color--text--2 {
  color: #007eb5;
}

.color--text--3 {
  color: purple;
}

.color--text--4 {
  color: coral;
}

.color--text--5 {
  color: OrangeRed;
}

.color--1 .nav {
  background-color: purple;
}
.color--1 .header1, .color--1 a, .color--1 .fa {
  color: purple;
}

.color--2 .nav {
  background-color: #007eb5;
}
.color--2 .header1, .color--2 a, .color--2 .fa {
  color: #007eb5;
}

.color--3 .nav {
  background-color: #f68d28;
}
.color--3 .header1, .color--3 a, .color--3 .fa {
  color: #f68d28;
}

.color--4 .nav {
  background-color: coral;
}
.color--4 .header1, .color--4 a, .color--4 .fa {
  color: coral;
}

.color--5 .nav {
  background-color: #00f3a2;
}
.color--5 .header1, .color--5 a, .color--5 .fa {
  color: #00f3a2;
}

/* Fonts
-------------------------------------------------- */
/* Reset
-------------------------------------------------- */
*, *:before, *:after {
  vertical-align: baseline;
  font-weight: inherit;
  font-family: inherit;
  font-style: inherit;
  font-size: 100%;
  border: 0 none;
  outline: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

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

img {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style-position: inside;
}

/* Links
-------------------------------------------------- */
a {
  color: #cc242a;
  text-decoration: none;
  transition: color 0.3s, background 0.3s, border 0.3s;
}

a:hover {
  color: #222;
}

/* Clearfix
-------------------------------------------------- */
.cf:after {
  content: "";
  display: table;
  clear: both;
}

/* Media Queries
-------------------------------------------------- */
/* Site
-------------------------------------------------- */
html {
  font-family: "Gotham A", "Gotham B", Futura, "futura-pt", "Century Gothic", CenturyGothic, Arial, sans-serif;
  font-weight: 100;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-size: 1.2rem;
  line-height: 1.2rem;
  background: #fff;
  color: #222;
  font-weight: 400;
  overflow-y: scroll;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  body {
    font-weight: inherit;
  }
}

.page {
  min-height: 100%;
}

.anchor {
  position: relative;
  top: 0rem;
  display: inline-block;
}

/* Header
-------------------------------------------------- */
.header {
  margin-bottom: 1.5em;
}

.home-page .header {
  display: none;
}

hr.header-hr, hr.footer-hr {
  border-top: 1px solid #007eb5;
  border-bottom: 3px solid #cc242a;
  width: 100%;
  padding-top: 2px;
  margin: 1rem 0 1rem;
}

.hello {
  margin-bottom: 2rem;
}

.logo img {
  width: 2em;
}

.byline {
  font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  font-size: 2rem;
  text-align: center;
}

.astericks {
  font-size: 3rem;
  font-family: "Didot 96 A", "Didot 96 B", Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 500;
  font-style: normal;
  width: 100%;
  overflow: hidden;
  height: 2rem;
  line-height: 1;
}

@media only screen and (min-width: 40em) {
  .logo {
    font-size: 2.5rem;
  }
  hr.header-hr, hr.footer-hr {
    margin: 1rem 0 1.2rem;
  }
  .hello {
    margin-bottom: 2rem;
  }
  .hello h1 {
    font-size: 3rem;
  }
  .home-page .byline {
    font-size: 1.6rem;
    line-height: 1;
  }
  .intro {
    font-size: 1.9rem;
    line-height: 1;
    margin-bottom: 2rem;
  }
}
.work-style {
  padding-bottom: 50px;
  padding-top: 50px;
}

/* Howdy
-------------------------------------------------- */
#howdy {
  background-color: #dfefdd;
  border-radius: 40px;
  padding: 30px;
}

/* About
-------------------------------------------------- */
.test {
  width: 100%;
}

/* Navigation
-------------------------------------------------- */
.nav {
  padding: 2rem 2rem 0 calc(3.6rem + (2 * 1%));
  position: fixed;
  top: 0;
  height: 5.5rem;
  transition: right 0.1s ease-in-out;
  width: 60%;
  right: -43%;
}
.nav a {
  color: white;
}
.nav a:hover {
  color: #222;
}
@media only screen and (min-width: 40em) {
  .nav {
    padding: 2rem 2rem 0 calc(3.6rem + (2 * 1%));
    height: auto;
    bottom: 0;
    left: auto;
    width: 49%;
    right: -39%;
  }
}
@media only screen and (min-width: 65em) {
  .nav {
    padding: 2rem 2rem 0 calc(3.6rem + (2 * 1%));
    height: auto;
    bottom: 0;
    left: auto;
    width: 21%;
    right: -16%;
  }
}

.nav--open {
  height: auto;
  right: 0px;
  width: 50%;
}
@media only screen and (min-width: 65em) {
  .nav--open {
    width: 21%;
  }
}

.nav__arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  cursor: pointer;
}
@media only screen and (min-width: 40em) {
  .nav__arrow {
    left: 1rem;
    right: auto;
  }
}

.nav__list {
  visibility: visible;
  margin-top: 7rem;
  overflow: hidden;
  list-style: none;
}
@media only screen and (min-width: 40em) {
  .nav__list {
    height: auto;
  }
}

.nav__item {
  text-align: right;
  margin-bottom: 2rem;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 100;
}

.nav__item__link {
  color: white;
}

.nav__item__link:hover {
  color: white;
}

.toggle-wrapper {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  padding: 2% 1% 1% 1%;
  width: 15%;
}
@media only screen and (min-width: 40em) {
  .toggle-wrapper {
    width: 9.3%;
  }
}
@media only screen and (min-width: 65em) {
  .toggle-wrapper {
    width: 5%;
  }
}

.toggle {
  color: white;
  cursor: pointer;
}

.toggle span {
  position: relative;
  width: 36px;
  height: 4px;
  background: #fff;
  display: block;
  margin-bottom: 8px;
  transition: 0.5s;
  margin-left: auto;
  margin-right: auto;
}

.toggle span:nth-child(1) {
  transform-origin: left;
}

.toggle span:nth-child(2) {
  transform-origin: center;
}

.toggle span:nth-child(3) {
  transform-origin: left;
}

.toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  left: 2px;
}

.toggle.active span:nth-child(2) {
  transform: rotate(315deg);
  right: 3px;
}

.toggle.active span:nth-child(3) {
  transform: scaleX(0);
}

/* Headings
-------------------------------------------------- */
h1, .header1 {
  display: block;
  font-family: "Gotham A", "Gotham B", Futura, "futura-pt", "Century Gothic", CenturyGothic, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  margin: 0 0 2rem;
  font-size: 2.5rem;
}
@media only screen and (min-width: 65em) {
  h1, .header1 {
    font-size: 7vw;
  }
}

h2, .header2 {
  font-family: "Gotham A", "Gotham B", Futura, "futura-pt", "Century Gothic", CenturyGothic, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #333;
}

h3, .header3 {
  font-family: "Gotham A", "Gotham B", Futura, "futura-pt", "Century Gothic", CenturyGothic, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 2rem;
}

/* Main
-------------------------------------------------- */
.main {
  padding: 5vh 1rem 1.5em;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media only screen and (min-width: 65em) {
  .main {
    font-size: 3rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.orientable-page .main {
  left: 0;
}

.main hr {
  margin: 3em 0;
  height: 2px;
  background: #ddd;
}

.main p,
.main figure,
.main ul,
.main ol {
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .main p,
  .main figure,
  .main ul,
  .main ol {
    margin-bottom: 8rem;
  }
}

.main a {
  border-bottom: 2px solid #ddd;
}

.main a:hover {
  border-color: #222;
}

.icon--go-home {
  position: absolute;
  top: 2rem;
  font-size: 3rem;
}
.icon--go-home:hover {
  color: #222;
}

.fa {
  cursor: pointer;
}

.icon--go-home__link {
  display: block;
  border: none;
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  border: none !important;
}

/* Text blocks */
.text ul,
.text ol {
  margin-left: 1em;
}

/* Project meta
-------------------------------------------------- */
.meta {
  margin-bottom: 1.5em;
}

.meta li {
  float: left;
  list-style: none;
  margin-right: 2em;
  color: #222;
}

.meta li b {
  font-weight: 400;
  color: #000;
  padding-right: 0.25em;
}

.category {
  text-transform: capitalize;
}

/* Project teaser
-------------------------------------------------- */
.teaser {
  list-style: none;
}

.teaser li {
  margin-bottom: 1.5em;
  list-style: none;
  position: relative;
}

.teaser li a {
  display: block;
}

.teaser h3 {
  font-size: 1.5rem;
}

.teaser li:hover > h3 {
  background-color: #ccc;
  color: white;
}

.project-byline {
  font-size: 1.4rem;
}

.webby-honoree {
  color: #cc242a;
}

/* Project page
-------------------------------------------------- */
.project__title a {
  color: #222;
}

.work-child h2 {
  font-size: 2rem;
}

.site-image-link {
  display: block;
}

.blog-post__title {
  max-width: 700px;
  margin: 0 auto 10px;
}

@media only screen and (min-width: 65em) {
  .text, .meta {
    max-width: 900px;
    margin: 0 auto;
    vertical-align: top;
    font-size: 2.2rem;
  }
  .text p, .text ul, .text ol, .meta p, .meta ul, .meta ol {
    max-width: 700px;
    margin: 0 auto 20px;
  }
}

@media only screen and (min-width: 65em) {
  .project-image {
    display: block;
    vertical-align: top;
    margin: 0 auto;
    max-width: 900px;
  }
}

/* New About page
-------------------------------------------------- */
.about-image1 {
  transform: rotate(-18deg);
}
.about-image1 figcaption {
  font-size: 1.8rem;
}
@media (min-width: 2000px) {
  .about-image1 {
    margin-left: 25%;
  }
}

.about-image2 {
  transform: rotate(9deg);
}
.about-image2 figcaption {
  font-size: 1.8rem;
}

#about {
  background-color: #ffecd8;
  border-radius: 40px;
  padding: 30px;
}

figure {
  background: #ffffff;
  display: inline-block;
  margin: 55px 75px 30px;
  padding: 15px 15px 30px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.2s linear;
  cursor: pointer;
  position: relative;
}
@media (min-width: 640px) {
  figure {
    margin: 20px 40px 30px;
  }
}

figcaption {
  color: #020202;
  font-size: 25px;
  position: relative;
  top: 15px;
}

figure img {
  display: block;
  width: 400px;
}

figure:hover {
  transform: scale(1.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

body {
  background: #fff;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, input, select, textarea {
  color: #5A5A5A;
  font: inherit;
  margin: 0;
}

input {
  line-height: normal;
}

textarea {
  overflow: auto;
}

#container {
  background-color: #F2F3EB;
  border: solid 3px #474544;
  max-width: 768px;
  margin: 60px auto;
  position: relative;
}

form {
  padding: 37.5px;
  margin: 50px 0;
}

.contact-top {
  padding-top: 30px;
}

.h9 {
  color: #474544;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 7px;
  text-align: center;
  text-transform: uppercase;
}

.underline {
  border-bottom: solid 2px #474544;
  margin: -0.512em auto;
  width: 80px;
}

.icon_wrapper {
  margin: 50px auto 0;
  width: 100%;
}

.icon {
  display: block;
  fill: #474544;
  height: 50px;
  margin: 0 auto;
  width: 50px;
}

.email {
  float: left;
  width: 100%;
}

input[type=text], [type=email], select, textarea {
  background: none;
  border: none;
  border-bottom: solid 2px #474544;
  color: #474544;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0em 0 1.875em 0;
  padding: 0 0 0.875em 0;
  text-transform: uppercase;
  width: 100%;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 0.3s;
}

input[type=text]:focus, [type=email]:focus, textarea:focus {
  outline: none;
  padding: 0 0 0.875em 0;
}

.message {
  float: none;
}

.name {
  float: left;
  width: 100%;
}

select {
  background: url("https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-down-32.png") no-repeat right;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

.subject {
  width: 100%;
}

.telephone {
  width: 100%;
}

textarea {
  line-height: 150%;
  height: 150px;
  resize: none;
  width: 100%;
}

::-webkit-input-placeholder {
  color: #474544;
}

:-moz-placeholder {
  color: #474544;
  opacity: 1;
}

::-moz-placeholder {
  color: #474544;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #474544;
}

#form_button {
  background: none;
  border: solid 2px #474544;
  color: #474544;
  cursor: pointer;
  display: inline-block;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 0.875em;
  font-weight: bold;
  outline: none;
  padding: 20px 35px;
  text-transform: uppercase;
  transition: all 0.3s;
}

#form_button:hover {
  background: #474544;
  color: #F2F3EB;
}

@media screen and (max-width: 768px) {
  #container {
    margin: 20px auto;
    width: 95%;
  }
}
@media screen and (max-width: 480px) {
  .h9 {
    font-size: 26px;
  }
  .underline {
    width: 68px;
  }
  #form_button {
    padding: 15px 25px;
  }
}
@media screen and (max-width: 420px) {
  .h9 {
    font-size: 18px;
  }
  .icon {
    height: 35px;
    width: 35px;
  }
  .underline {
    width: 53px;
  }
  input[type=text], [type=email], select, textarea {
    font-size: 0.875em;
  }
}
/* Next/Prev nav
-------------------------------------------------- */
.nextprev {
  padding: 1em 0;
}

.nextprev a {
  border: 0;
}

.nextprev .prev {
  float: left;
}

.nextprev .next {
  float: right;
}

/* Contact form
-------------------------------------------------- */
.honeypot {
  position: absolute;
  left: -9999px;
}

/* Footer
-------------------------------------------------- */
.footer {
  padding: 1em 0 0;
  font-size: 0.8em;
}

.copyright {
  float: left;
  font-size: 1.7rem;
}

.colophon {
  float: right;
}

.colophon a b {
  color: #cc242a;
  padding-left: 0.25em;
}

/* Portfolio styles
-------------------------------------------------- */
.profile {
  float: right;
  width: 25%;
}

.unity iframe {
  width: 100%;
  height: 27vw;
}

/* Proposal page
-------------------------------------------------- */
.proposal-page h1 {
  text-align: center;
  font-size: 6rem;
  max-width: 1000px;
  margin: 0 auto 6rem;
}

.proposal__subnav {
  list-style: none;
  text-align: center;
  border: 2px solid #ddd;
  border-right: none;
  border-left: none;
  margin: 4rem 0;
  margin-bottom: 4rem !important;
  padding: 1.2rem 2rem 2rem;
  line-height: 1;
}
.proposal__subnav li {
  display: inline-block;
  font-size: 2rem;
  padding: 0 1rem;
  line-height: 0;
}
.proposal__subnav li a {
  border: none;
}

.proposal__title-page {
  margin: 2rem 0 6rem;
  text-align: center;
  font-size: 2rem;
}

.proposal__section__title {
  margin: 2rem 0 0;
}

.body--proposal {
  max-width: 700px;
  margin: 0 auto;
  font-size: 2.2rem;
}
