:root {
  --bg: #FF9F9F;
  --fg: #EC1E24;
  --role: "designs and builds websites.";
  --illus: url(images/mi1.svg);
  animation: switch 30s infinite linear; }

@keyframes switch {
  0% {
    --bg: #FF9F9F;
    --fg: #EC1E24;
    --role: "designs and builds websites.";
    --illus: url(images/mi1.svg); }
  16.667% {
    --bg: #87E89C;
    --fg: #008011;
    --role: "writes and edits copy.";
    --illus: url(images/mi2.svg); }
  33.333% {
    --bg: #BC88E5;
    --fg: #420080;
    --role: "animates and creates motion graphics.";
    --illus: url(images/mi3.svg); }
  50% {
    --bg: #88BBE2;
    --fg: #002680;
    --role: "edits video content.";
    --illus: url(images/mi4.svg); }
  66.667% {
    --bg: #FFBA6E;
    --fg: #C25A00;
    --role: "creates illustrations and photo manipulations.";
    --illus: url(images/mi5.svg); }
  83.333% {
    --bg: #FDA4FF;
    --fg: #C200AF;
    --role: "designs graphics and layouts for print and web.";
    --illus: url(images/mi6.svg); }
  100% {
    --bg: #FF9F9F;
    --fg: #EC1E24;
    --role: "designs and builds websites.";
    --illus: url(images/mi1.svg); } }
html, body {
  background-color: var(--bg);
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  font-family: "Nimbus Sans", sans-serif;
  animation: fadein 1s;
  transition: all 0.5s; }
  html *, body * {
    box-sizing: border-box; }
  html.lock, body.lock {
    overflow: hidden;
    border-right: 15px solid #eee; }
    html.lock .page, body.lock .page {
      overflow: hidden;
      transform: rotate(-1deg) scale(1.03); }

.page {
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.5s; }
  .page:after {
    content: "";
    display: block;
    width: 200vw;
    height: 200vh;
    position: fixed;
    z-index: 120;
    top: 0;
    left: 0;
    pointer-events: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%239C92AC' fill-opacity='0.4' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    mix-blend-mode: screen; }

@keyframes static {
  0% {
    left: 1px;
    top: 0; }
  25% {
    left: 0;
    top: 2px; }
  50% {
    left: 3px;
    top: 1px; }
  100% {
    left: 2px;
    top: 3px; } }
@keyframes fadein {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }
p .button {
  display: block;
  border-radius: 2px;
  border: 1px solid var(--fg);
  color: var(--fg);
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.5s;
  text-decoration: none !important;
  padding: 5px 10px;
  margin: 0;
  margin-bottom: -10px;
  display: inline-block; }
  p .button:focus {
    outline: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.4); }
  p .button:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    bottom: -50%;
    left: 0;
    background-color: var(--fg);
    transition: all 0.5s;
    z-index: -1;
    border-radius: 50%; }
  p .button:hover {
    color: #fff;
    cursor: pointer; }
    p .button:hover:before {
      height: 100%;
      border-radius: 0;
      bottom: 0; }

button, .button {
  display: block;
  border-radius: 2px;
  border: 1px solid var(--fg);
  color: var(--fg);
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.5s;
  text-decoration: none !important;
  padding: 10px 20px;
  margin-left: 0;
  background: transparent; }
  button:focus, .button:focus {
    outline: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.4); }
  button:before, .button:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    bottom: -50%;
    left: 0;
    background-color: var(--fg);
    transition: all 0.5s;
    z-index: -1;
    border-radius: 50%; }
  button:hover, .button:hover {
    color: #fff;
    cursor: pointer; }
    button:hover:before, .button:hover:before {
      height: 100%;
      border-radius: 0;
      bottom: 0; }

nav {
  height: 68px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  z-index: 99;
  padding: 0 5%;
  top: 68px;
  transition: all 0.5s; }
  nav.off {
    filter: blur(20px);
    pointer-events: none; }
  nav svg {
    height: 100%; }
    nav svg:hover .logo {
      fill: var(--fg); }
    nav svg .logo {
      stroke: var(--fg);
      fill: transparent;
      transition: all 0.5s; }
  nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0 !important; }
    nav ul li {
      margin: 5px 0; }
      nav ul li a {
        display: block;
        border-radius: 2px;
        border: 1px solid var(--fg);
        color: var(--fg);
        margin: 0 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        transition: all 0.5s;
        text-decoration: none !important;
        padding: 10px 20px;
        margin-left: 0; }
        nav ul li a:focus {
          outline: none;
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.4); }
        nav ul li a:before {
          content: "";
          display: block;
          position: absolute;
          width: 100%;
          height: 0;
          bottom: -50%;
          left: 0;
          background-color: var(--fg);
          transition: all 0.5s;
          z-index: -1;
          border-radius: 50%; }
        nav ul li a:hover {
          color: #fff;
          cursor: pointer; }
          nav ul li a:hover:before {
            height: 100%;
            border-radius: 0;
            bottom: 0; }
        nav ul li a.open:after {
          content: "\d7";
          margin-left: 5px;
          margin-right: -10px; }

.banner {
  width: 100%;
  height: auto;
  background-color: var(--bg);
  color: #fff;
  flex: 1;
  transition: flex 0.5s ease-out;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  transition: all 0.5s; }
  .banner.off {
    filter: blur(20px);
    pointer-events: none; }
  .banner .desc {
    margin-top: 130px;
    flex-basis: 700px;
    position: relative;
    z-index: 2;
    padding: 68px 5%;
    flex: 1; }
    .banner .desc h1 {
      letter-spacing: -6px;
      font-size: 78px;
      margin-bottom: 0; }
    .banner .desc h3 {
      height: 436px;
      font-size: 38px;
      letter-spacing: -3px;
      margin-top: 20px; }
      .banner .desc h3 a {
        display: block;
        border-radius: 2px;
        border: 1px solid var(--fg);
        color: var(--fg);
        margin: 0 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        transition: all 0.5s;
        text-decoration: none !important;
        font-size: 14px;
        font-weight: 400;
        padding: 5px 15px;
        color: #fff;
        border-color: #fff;
        text-transform: none;
        display: inline-block;
        margin-bottom: -3px;
        letter-spacing: 0; }
        .banner .desc h3 a:focus {
          outline: none;
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.4); }
        .banner .desc h3 a:before {
          content: "";
          display: block;
          position: absolute;
          width: 100%;
          height: 0;
          bottom: -50%;
          left: 0;
          background-color: var(--fg);
          transition: all 0.5s;
          z-index: -1;
          border-radius: 50%; }
        .banner .desc h3 a:hover {
          color: #fff;
          cursor: pointer; }
          .banner .desc h3 a:hover:before {
            height: 100%;
            border-radius: 0;
            bottom: 0; }
        .banner .desc h3 a:after {
          background-color: #fff; }
        .banner .desc h3 a:hover {
          color: var(--bg);
          border-color: var(--bg); }
      .banner .desc h3:before {
        content: var(--role);
        display: block;
        margin-bottom: 40px; }
  .banner:after {
    content: var(--illus);
    max-width: 700px;
    width: 90%;
    align-self: flex-end;
    margin: 5%; }

.section {
  position: relative;
  background-color: #eee;
  overflow: hidden;
  transition: all 0.5s ease-out;
  height: auto;
  flex: 0;
  padding: 0 5%;
  transition: all 0.5s; }
  .section.off {
    filter: blur(20px);
    pointer-events: none;
    border: 30px solid #eee;
    border-top: 0;
    margin: -30px;
    margin-top: 0; }
  .section * {
    margin-top: -100vh;
    transition: margin-top 0.5s; }
  .section h1, .section h4, .section p {
    color: var(--fg); }
  .section > h1 {
    font-weight: 200;
    font-size: 80px;
    margin-bottom: 10px; }
  .section > h4 {
    margin-bottom: 40px; }
  .section .button {
    padding: 2px 5px;
    text-transform: unset;
    margin-bottom: -6px;
    letter-spacing: normal; }

.expand {
  flex: 1;
  padding: 100px 5%; }
  .expand * {
    margin-top: 0; }

.spread {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: -20px;
  transition: all 0.5s; }
  .spread.col {
    flex-direction: column; }

.close {
  display: block;
  position: absolute;
  font-size: 40px;
  color: var(--fg);
  top: 20px;
  right: 25px;
  z-index: 5;
  transition: transform 0.5s; }
  .close:hover {
    transform: scale(1.2);
    cursor: pointer; }

.opener {
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute; }

.expander {
  flex: 0;
  flex-basis: 150px;
  overflow: hidden;
  margin: 20px;
  position: relative;
  transition: all 0.5s; }
  .expander h2 {
    position: absolute;
    bottom: -10px;
    left: 10px;
    background-color: #fff;
    padding: 10px;
    transition: all 0.5s; }
  .expander img {
    filter: blur(10px);
    transform: scale(1.02);
    transition: all 0.5s;
    min-width: 100%;
    min-height: 100%; }
  .expander .close {
    display: none; }
  .expander:hover {
    cursor: pointer; }
    .expander:hover h2 {
      color: var(--fg); }
    .expander:hover img {
      filter: blur(0);
      transform: scale(1); }
  .expander.expanded {
    flex: 1;
    background-color: #fff;
    width: 110%;
    margin-left: -5%;
    margin-right: -5%;
    padding: 10px calc(5% + 20px); }
    .expander.expanded h2 {
      position: relative;
      left: 0;
      bottom: auto;
      display: table;
      color: var(--fg);
      background-color: var(--bg); }
    .expander.expanded img {
      width: auto;
      max-width: 100%;
      filter: blur(0);
      transform: scale(1); }
    .expander.expanded .close {
      display: block; }
    .expander.expanded .opener {
      display: none !important; }
    .expander.expanded:hover {
      cursor: auto; }

.porthole {
  transition: all 0.5s;
  margin: 20px;
  order: 1;
  position: relative; }
  .porthole.closed {
    width: 200px;
    text-align: center; }
    .porthole.closed .close {
      display: none; }
    .porthole.closed .phimg {
      overflow: hidden;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      transition: all 0.5s; }
      .porthole.closed .phimg img:nth-of-type(n + 2) {
        display: none; }
    .porthole.closed h4, .porthole.closed p {
      opacity: 0;
      margin-top: 10px;
      transition: all 0.5s; }
    .porthole.closed p {
      display: none; }
    .porthole.closed:hover {
      transform: scale(1.1);
      cursor: pointer; }
      .porthole.closed:hover .phimg {
        transform: rotate(5deg); }
      .porthole.closed:hover h4 {
        opacity: 1; }
  .porthole.open {
    order: 0;
    position: relative;
    width: 110%;
    margin-left: -5%;
    margin-right: -5%;
    margin-bottom: 45px;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .porthole.open .opener {
      display: none !important; }
    .porthole.open .phimg {
      flex-basis: 40%;
      border-radius: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center; }
      .porthole.open .phimg img {
        width: calc(100% /3);
        height: auto;
        display: block;
        transition: all 0.5s; }
        .porthole.open .phimg img:first-child {
          width: 100%; }
        .porthole.open .phimg img:hover {
          cursor: pointer;
          transform: scale(1.05); }
    .porthole.open .phdesc {
      margin-top: 0;
      flex: 1;
      padding: 5%;
      text-align: left; }
    .porthole.open .info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 15px; }
      .porthole.open .info p {
        color: #fff;
        background-color: var(--fg);
        padding: 5px;
        display: inline-block;
        margin-bottom: 0;
        font-size: 14px; }
    .porthole.open h4, .porthole.open p {
      opacity: 1; }
    .porthole.open h4 {
      font-size: 25px;
      margin-bottom: 10px; }
    .porthole.open:hover {
      transform: none;
      cursor: auto; }
      .porthole.open:hover .phimg {
        transform: none; }

.aboutme {
  transition: all 0.5s;
  margin: 20px;
  order: 1;
  position: relative;
  width: calc(110% + 20px);
  margin-left: calc(-5% - 10px);
  margin-right: calc(-5% - 10px);
  margin-bottom: 45px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%; }
  .aboutme .abimg {
    border-radius: 0;
    width: 100%;
    height: 100%;
    min-width: 280px;
    max-width: 500px;
    min-height: 500px;
    overflow: hidden;
    margin: -20px 0;
    background-image: url(images/me.svg);
    background-repeat-y: repeat;
    background-size: cover;
    animation: abimg 4s infinite linear; }
@keyframes abimg {
  0% {
    background-position-y: -100%; }
  100% {
    background-position-y: 210%; } }
  .aboutme .abdesc {
    margin-top: 0;
    flex: 1;
    padding: 5%;
    text-align: left; }
  .aboutme .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px; }
    .aboutme .info p {
      color: #fff;
      background-color: var(--fg);
      padding: 5px;
      display: inline-block;
      margin-bottom: 0;
      font-size: 14px; }
  .aboutme h4, .aboutme p {
    opacity: 1; }
  .aboutme h4 {
    font-size: 25px;
    margin-bottom: 10px; }

.contact {
  position: fixed;
  z-index: 99;
  max-width: 400px;
  width: 90%;
  background-color: #fff;
  border-radius: 4px;
  padding: 30px 30px 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -200vh);
  box-shadow: 0 10px 50px var(--fg);
  transition: transform 0.5s; }
  .contact.on {
    transform: translate(-50%, -50%) scale(0.9); }
  .contact h1 {
    font-weight: 300;
    color: var(--fg); }
  .contact form {
    display: flex;
    flex-direction: column; }
    .contact form input, .contact form textarea {
      margin-bottom: 20px;
      padding: 10px;
      font-family: "Nimbus Sans", sans-serif;
      border-radius: 2px;
      border: 1px solid var(--bg);
      max-width: 340px;
      min-width: 100%;
      min-height: 40px; }
    .contact form button {
      display: block;
      border-radius: 2px;
      border: 1px solid var(--fg);
      color: var(--fg);
      margin: 0 10px;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
      z-index: 1;
      overflow: hidden;
      transition: all 0.5s;
      text-decoration: none !important;
      align-self: flex-start;
      margin-left: 0;
      padding: 5px 10px;
      margin-bottom: 30px;
      background-color: transparent; }
      .contact form button:focus {
        outline: none;
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.4); }
      .contact form button:before {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 0;
        bottom: -50%;
        left: 0;
        background-color: var(--fg);
        transition: all 0.5s;
        z-index: -1;
        border-radius: 50%; }
      .contact form button:hover {
        color: #fff;
        cursor: pointer; }
        .contact form button:hover:before {
          height: 100%;
          border-radius: 0;
          bottom: 0; }

.lightbox {
  max-height: 90vh;
  max-width: 90vw;
  position: fixed;
  z-index: 99;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.5s;
  animation: fadein 1s forwards; }
  .lightbox:hover {
    transform: translate(-50%, -50%) scale(0.89);
    cursor: pointer; }

.code {
  background-color: #222;
  color: #fff; }
  .code span {
    background-color: var(--fg);
    width: 100%;
    padding: 5px 10px;
    display: block; }
  .code pre {
    padding: 20px;
    overflow-y: auto;
    max-height: 300px;
    white-space: pre-wrap; }

/*# sourceMappingURL=style.css.map */
