.three-col-flex-item {
  flex: 0 0 31%;
}
@media only screen and (max-width : 768px) {
  .three-col-flex-item {
    flex: 0 0 100%;
    margin-bottom: 2em;
  }
}

.four-col-flex-item {
  flex: 0 0 23%;
}
@media only screen and (max-width : 768px) {
  .four-col-flex-item {
    flex: 0 0 100%;
    margin-bottom: 2em;
  }
}

.three-quarter-col-flex-item {
  flex: 0 0 74%;
}
@media only screen and (max-width : 768px) {
  .three-quarter-col-flex-item {
    flex: 0 0 100%;
    margin-bottom: 2em;
  }
}

.two-col-flex-item {
  flex: 0 0 45%;
}
@media only screen and (max-width : 768px) {
  .two-col-flex-item {
    flex: 0 0 100%;
    margin-bottom: 2em;
  }
}

html {
  color: #222;
  font-size: 62.5%;
  line-height: 1.4;
}

::-moz-selection {
  background: #DAFFF0;
  text-shadow: none;
}

::selection {
  background: #DAFFF0;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #222;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

ul {
  padding: 0;
  list-style-type: none;
}

img {
  opacity: 0;
  transition: opacity 0.3s ease-in;
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}

button {
  font-size: 19px;
  font-size: 1.9rem;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  background: transparent;
  border: 1px solid #5CD3A3;
  font-family: sofia_prolight, Arial, Helvetica, sans-serif;
  color: #5CD3A3;
  padding: 0.8em;
}
button:hover {
  background: #5CD3A3;
  color: #fff;
}
button:focus {
  outline: #5CD3A3 auto 5px;
}

@media only screen and (max-width : 768px) {
  button {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0.5em;
  }
}
.container {
  width: 90%;
  margin: 0 5%;
}

@font-face {
  font-family: "sofia_prolight";
  src: url("/css/font-face/sofiaprolight-webfont.eot");
  src: url("/css/font-face/sofiaprolight-webfont.eot?#iefix") format("embedded-opentype"), url("/css/font-face/sofiaprolight-webfont.woff2") format("woff2"), url("/css/font-face/sofiaprolight-webfont.woff") format("woff"), url("/css/font-face/sofiaprolight-webfont.ttf") format("truetype"), url("/css/font-face/sofiaprolight-webfont.svg#sofia_prolight") format("svg");
  font-weight: normal;
  font-style: normal;
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

h1, h2, h3, h4, h5 {
  font-family: sofia_prolight, Arial, Helvetica, sans-serif;
  font-weight: 200;
  color: #121212;
  margin: 0 0 1em;
}

p, li {
  font-family: sofia_prolight, Arial, Helvetica, sans-serif;
  font-weight: 200;
  color: #626262;
  line-height: 1.7;
}

a {
  font-family: sofia_prolight, Arial, Helvetica, sans-serif;
  font-weight: 200;
  color: #121212;
  border-bottom: 2px solid #121212;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
a:hover {
  border-color: #626262;
  color: #626262;
}

h1 {
  font-size: 30px;
  font-size: 3rem;
}
@media only screen and (max-width : 768px) {
  h1 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 28px;
  font-size: 2.8rem;
}
@media only screen and (max-width : 768px) {
  h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}

h3 {
  font-size: 24px;
  font-size: 2.4rem;
}
@media only screen and (max-width : 768px) {
  h3 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

h4 {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width : 768px) {
  h4 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

p {
  font-size: 19px;
  font-size: 1.9rem;
}
@media only screen and (max-width : 768px) {
  p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
p.large {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.6;
  color: #121212;
}
@media only screen and (max-width : 768px) {
  p.large {
    font-size: 20px;
    font-size: 2rem;
  }
}

li {
  font-size: 19px;
  font-size: 1.9rem;
}
@media only screen and (max-width : 768px) {
  li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.header {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  right: 0;
  height: 9.5rem;
  padding: 0;
  transition: top 250ms ease-in-out, padding-top 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header__container {
  padding-top: 18px;
  width: 90%;
  margin: 0 5%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: center;
}

.header-frontpage {
  position: fixed;
  z-index: 500;
  bottom: 200px;
  left: 0;
  right: 0;
  height: 9.5rem;
  padding: 0;
  transition: top 250ms ease-in-out, padding-top 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.headroom--pinned {
  position: fixed;
  z-index: 10;
  right: 0;
  left: 0;
  top: 0;
}

.headroom--unpinned {
  top: -10.5rem;
}

nav ul {
  padding: 0;
}
nav li {
  display: inline-block;
  margin-right: 2em;
}
@media only screen and (max-width : 768px) {
  nav li {
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 1em;
  }
}
nav a {
  color: #212121;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
nav a:hover {
  color: #212121;
  border-bottom-color: #121212;
}

.hire-me {
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 1234;
  transform: translateY(-100%);
  width: 100%;
  height: 100%;
}

.hire-me--overlay {
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), visibility 1s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateY(100px);
  visibility: hidden;
}

.hire-me--overlay.show {
  transform: translateY(100%);
  visibility: visible;
}

.hire-overlay__panel {
  background-color: #5CD3A3;
  margin: 0 auto;
  width: 100%;
  position: relative;
  height: calc(100% - 100px);
}

.hire-overlay__panel__content {
  padding: 25px 50px 25px 50px;
  width: 70%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
}
@media only screen and (max-width : 768px) {
  .hire-overlay__panel__content {
    width: 80%;
  }
}
@media only screen and (max-width : 768px) {
  .hire-overlay__panel__content h1 {
    display: none;
  }
}
.hire-overlay__panel__content h1, .hire-overlay__panel__content p, .hire-overlay__panel__content a, .hire-overlay__panel__content li {
  color: #fff;
}
.hire-overlay__panel__content p {
  margin: 0;
}
.hire-overlay__panel__content ul {
  margin-bottom: 2em;
}
.hire-overlay__panel__content li {
  display: inline-block;
  margin-right: 1em;
}
.hire-overlay__panel__content a {
  opacity: 0.6;
  border-bottom: 1px solid #fff;
}
.hire-overlay__panel__content a:hover {
  opacity: 1;
}

.hire-overlay__panel__close {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 30px;
  right: 25px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s linear;
  overflow: hidden;
  text-indent: -9999px;
}
.hire-overlay__panel__close:hover {
  opacity: 1;
}
.hire-overlay__panel__close:before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 16px;
  left: 29px;
  height: 28px;
  width: 2px;
  transform-origin: center center;
  transform: rotate(45deg);
}
.hire-overlay__panel__close:after {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 16px;
  left: 29px;
  height: 28px;
  width: 2px;
  transform-origin: center center;
  transform: rotate(-45deg);
}

.intro {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  height: 40em;
}
.intro h1 {
  margin: 0;
  text-align: centre;
}
@media only screen and (max-width : 768px) {
  .intro {
    height: 30em;
  }
}

.home-intro {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  text-align: left;
  height: 50em;
}
.home-intro h1 {
  margin: 0;
  text-align: left;
  width: 62%;
}
@media only screen and (max-width : 768px) {
  .home-intro {
    height: 30em;
  }
  .home-intro h1 {
    font-size: 19px;
    font-size: 1.9rem;
    width: 100%;
  }
}

.home .home__image-link {
  border-bottom: 0;
}

.home__projects {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: center;
  margin: 10em 0;
}

.work__projects {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: center;
  margin: 0 auto 10em;
}

.projects-list {
  margin-bottom: 5em;
}

.project-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: center;
  margin: 2em auto 2em;
  text-decoration: none;
  border-bottom: 0;
}
.project-row p {
  margin: 0;
  width: 40%;
  color: #222;
}
.project-row h3 {
  margin-bottom: 0;
}
.project-row .project-link {
  border-bottom: 0;
  text-align: right;
  font-size: 19px;
  font-size: 1.9rem;
  width: 16%;
}
@media only screen and (max-width : 768px) {
  .project-row .project-link {
    text-align: left;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.project-row .title {
  width: 24%;
}
.project-row .year {
  width: 10%;
}
.project-row .discipline {
  width: 40%;
}
@media only screen and (max-width : 768px) {
  .project-row .title {
    width: 100%;
    margin-bottom: 1em;
  }
  .project-row .year {
    width: 100%;
    margin-bottom: 1em;
  }
  .project-row .discipline {
    width: 100%;
    margin-bottom: 1em;
  }
}

a.project-row:hover p {
  color: #61D5A6;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
a.project-row:hover .project-link {
  color: #61D5A6;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media only screen and (max-width : 768px) {
  .project-row.first-row {
    display: none;
  }
}
.text-wrap, .text-wrap__first {
  width: 50%;
  margin: 10em auto 10em;
}
@media only screen and (max-width : 768px) {
  .text-wrap, .text-wrap__first {
    width: 90%;
  }
}

.text-wrap__first {
  margin: 0em auto 10em;
}

.project--image-last {
  margin-bottom: 0;
}

.next-project {
  height: 25em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
}
.next-project h2 {
  margin-bottom: 0;
  color: #fff;
}
.next-project a {
  border-color: transparent;
}
.next-project a:hover {
  border-color: #fff;
}

.orange {
  background-color: #E89206;
}

.green {
  background-color: #61D5A6;
}

.black {
  background-color: #121212;
}

.content-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
  margin-bottom: 16em;
  margin-top: 6em;
}
@media only screen and (max-width : 768px) {
  .content-row {
    margin-bottom: 1em;
    margin-top: 1em;
  }
}

footer {
  border-top: 1px solid #f2f2f2;
  padding: 3em 0 2em;
  text-align: center;
}
footer p {
  color: #121212;
}
footer ul {
  padding: 0;
}
footer li {
  display: inline-block;
  margin-right: 30px;
}
footer li:last-child {
  margin-right: 0;
}
footer a {
  color: #212121;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
footer a:hover {
  color: #212121;
  border-bottom-color: #121212;
}

footer.home {
  margin-top: 8em;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}/*# sourceMappingURL=main.css.map */