/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

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

/*@font-face {
	font-family: 'Graphik';
	src: url('../fonts/e2f5d1ea6d95d638c92f35810f2e2f61.eot');
	src: url('../fonts/e2f5d1ea6d95d638c92f35810f2e2f61.eot?#iefix') format('embedded-opentype'),
		url('../fonts/e2f5d1ea6d95d638c92f35810f2e2f61.woff2') format('woff2'),
		url('../fonts/e2f5d1ea6d95d638c92f35810f2e2f61.woff') format('woff'),
		url('../fonts/e2f5d1ea6d95d638c92f35810f2e2f61.ttf') format('truetype'),
		url('../fonts/e2f5d1ea6d95d638c92f35810f2e2f61.svg#.') format('svg');
	font-weight: normal;
	font-style: normal;
}*/
@font-face {
  font-family: 'Graphik';
  src: url("../fonts/graphik-regular-webfont.eot");
  src: url("../fonts/graphik-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/graphik-regular-webfont.woff") format("woff"), url("../fonts/graphik-regular-webfont.ttf") format("truetype"), url("../fonts/graphik-regular-webfont.svg#graphik_regularregular") format("svg");
  font-weight: normal;
  font-style: normal; }

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

FLEXIBLE GRID SYSYTEM

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.row {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative; }

.row:after {
  content: "";
  display: block;
  height: 0px;
  clear: both; }

.row-inner {
  padding-left: 10%;
  padding-right: 10%; }

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

BASIC ELEMENTS

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
input:focus, textarea:focus, button {
  outline: none !important; }

a {
  outline: none;
  text-decoration: none;
  color: inherit; }

sup {
  vertical-align: super; }

strong {
  font-weight: bold; }

em {
  font-style: italic; }

img {
  max-width: 100%;
  height: auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Graphik";
  font-weight: 400; }

button {
  font-size: 17px;
  cursor: pointer; }

p {
  margin-bottom: 1.470588235em; }

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

LAYOUT

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
html, body {
  height: 100%; }

body {
  background-color: #FFF;
  font-family: "Graphik";
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #2A2A2A;
  text-align: left;
  -webkit-text-size-adjust: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.highlight {
  background-color: white;
}

.btn {
  display: inline-block;
  padding: 0 4.5625em;
  font-size: .5em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 4em; }
  .btn--white {
    background-color: #FFF;
    color: #ED145B; }
  .btn--pink {
    background-color: #ED145B;
    color: #FFF; }

.header {
  position: relative;
  line-height: 100px;
  overflow: hidden; }
  .header .name {
    float: left; }
  .header .show-info {
    display: none;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    float: right;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .header .show-info:before, .header .show-info:after {
      content: '';
      position: absolute;
      top: 50%;
      display: block;
      width: 20px;
      height: 2px;
      background-color: #444444; }
    .header .show-info:before {
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
    .header .show-info:after {
      -webkit-transform: translateY(-50%) rotate(270deg);
              transform: translateY(-50%) rotate(270deg);
      transition: -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1); }
    .header .show-info.is-active {
      opacity: 0;
      transition: opacity .4s linear .5s; }
      .header .show-info.is-active:after {
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); }
  @media only screen and (max-width: 650px) {
    .header {
      line-height: 50px;
      font-size: 15px; }
      .header .show-info {
        display: block; } }

.footer {
  line-height: 100px; }
  .footer .name {
    float: left; }
  .footer .contact {
    float: right; }
    .footer .contact span {
      display: inline-block; }
      .footer .contact span:nth-child(1) {
        margin-right: 25px; }
  @media only screen and (max-width: 650px) {
    .footer {
      padding-top: 20px;
      padding-bottom: 20px;
      text-align: center; }
      .footer .name, .footer .contact {
        float: none;
        display: block;
        line-height: 1.75em; } }

.content {
  overflow: hidden;
  padding: 57px 0 80px;
  background-color: #fff; }
  .content .title {
    display: block;
    margin-bottom: 40px;
    font-size: 24px;
    color: #808080;
    letter-spacing: -.2px; }
    @media only screen and (max-width: 650px) {
      .content .title span {
        display: block; } }
  .content .about-left, .content .about-right {
    box-sizing: border-box;
    width: 50%; }
  .content .about-left {
    position: relative;
    padding-right: 30px;
    float: left; }
    .content .about-left .show-more {
      position: static;
      display: block;
      margin-top: 50px;
      margin-bottom: 10px;
}
      .about-is-visible .content .about-left .show-more {
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s ease-out, visibility 0s linear .6s; }
      @media only screen and (max-width: 650px) {
        .content .about-left .show-more {
          position: absolute;
          bottom: 40px; } }
  .content .info-about {
    overflow: hidden; }
    @media only screen and (max-width: 650px) {
      .content .info-about {
        max-height: 0;
        margin-bottom: 0;
        transition: max-height 0.85s cubic-bezier(0.645, 0.045, 0.355, 1), margin-bottom 0.85s cubic-bezier(0.645, 0.045, 0.355, 1); }
        .content .info-about > div {
          padding-bottom: 50px; }
        .content .info-about .about-left {
          position: relative;
          margin-bottom: 0;
          padding-bottom: 25px !important; }
          .content .info-about .about-left .show-more {
            bottom: -23px; } }
  .content .about-right {
    float: right;
    max-height: 313px;
    padding-left: 10px;
    overflow: hidden;
    transition: max-height 0.85s cubic-bezier(0.645, 0.045, 0.355, 1); }
    @media only screen and (max-width: 650px) {
      .content .about-right {
        max-height: 0; } }
    .content .about-right p {
      opacity: 0;
      transition: opacity .5s ease-in; }
    .about-is-visible .content .about-right {
      height: auto; }
      .about-is-visible .content .about-right p {
        opacity: 1; }
  .content .contact {
    overflow: hidden; }
    .content .contact a {
      display: block; }
    .content .contact > div {
      float: left; }
    .content .contact .contact-left {
      margin-right: 75px; }
  .content .work-set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 20px; }
    .content .work-set > div {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
      .content .work-set > div:nth-child(1) {
        margin-right: 10px; }
      .content .work-set > div:nth-child(2) {
        margin-left: 10px; }
    .content .work-set .work-bg {
      background: no-repeat;
      background-size: cover; }
      .content .work-set .work-bg img {
        visibility: hidden; }
  .content .work1-2 > div:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .content .work1-2 > div:nth-child(2) > div {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin-bottom: 10px; }
      .content .work1-2 > div:nth-child(2) > div:nth-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 10px;
        margin-bottom: auto; }
        .content .work1-2 > div:nth-child(2) > div:nth-child(2) img {
          -ms-flex-item-align: end;
              align-self: flex-end; }
  .content .work2-1 > div:nth-child(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .content .work2-1 > div:nth-child(1) > div {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin-bottom: 10px; }
      .content .work2-1 > div:nth-child(1) > div:nth-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 10px;
        margin-bottom: auto; }
        .content .work2-1 > div:nth-child(1) > div:nth-child(2) img {
          -ms-flex-item-align: end;
              align-self: flex-end; }
  @media only screen and (max-width: 650px) {
    .content {
      padding: 20px 0 25px; }
      .content .title {
        margin-bottom: 25px;
        font-size: 15px;
        line-height: 25px;
        letter-spacing: 0; }
      .content .about-left, .content .about-right {
        width: auto;
        padding: 0;
        float: none;
        font-size: 15px;
        line-height: 25px;
        letter-spacing: 0; }
        .content .about-left a, .content .about-right a {
          font-size: 15px !important; }
      .content .about-left {
        margin-bottom: 25px; }
      .content .work-set {
        display: block;
        padding-bottom: 0; }
        .content .work-set > div {
          margin: 0; }
          .content .work-set > div:nth-child(1), .content .work-set > div:nth-child(2) {
            margin: 0; }
            .content .work-set > div:nth-child(1) > div, .content .work-set > div:nth-child(2) > div {
              margin: 0; }
              .content .work-set > div:nth-child(1) > div:nth-child(2), .content .work-set > div:nth-child(2) > div:nth-child(2) {
                margin: 0; }
        .content .work-set .work-bg {
          margin-bottom: 10px !important; } }

/*

*/
/*# sourceMappingURL=screen.css.map */