@charset "UTF-8";
body {
  font-family: 'Fira Sans', sans-serif; }

a:hover {
  text-decoration: none; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99; }

.main.section {
  font-weight: 300;
  font-size: 20px; }
  .main.section p {
    margin-bottom: 14px; }
  @media only screen and (min-width: 768px) {
    .main.section {
      font-size: 30px; }
      .main.section p {
        margin-bottom: 24px; } }

.show .main {
  opacity: .1; }

.show .item {
  opacity: .1; }
  .show .item.hover {
    opacity: 1; }

.clear {
  clear: both; }

.header-wrp {
  position: relative;
  max-width: 1920px; }

.logo {
  position: absolute;
  top: 0;
  left: 15px;
  transform: translate3d(0, 10px, 0); }
  .logo img {
    height: 50px; }
  @media only screen and (min-width: 768px) {
    .logo {
      transform: translate3d(0, -42px, 0);
      transition: transform .3s ease; }
      .logo img {
        height: 100px; }
      .logo:hover {
        transform: translate3d(0, 10px, 0); } }

.nav {
  position: absolute;
  right: 15px;
  top: 25px; }
  @media only screen and (min-width: 768px) {
    .nav {
      top: 20px; } }
  .nav ul {
    list-style: none;
    cursor: default; }
    .nav ul li {
      display: inline-block;
      margin: 0 15px; }
      .nav ul li a {
        color: #3A393A;
        font-weight: 500;
        font-size: 18px;
        position: relative; }
        .nav ul li a:before {
          content: '';
          display: block;
          height: 6px;
          background-color: #00B3FF;
          z-index: -1;
          position: absolute;
          left: -2px;
          right: -3px;
          bottom: 3px;
          transform: scale3d(0, 1, 1);
          transition: transform .2s ease;
          -ms-transform-origin: right center;
              transform-origin: right center; }
        .nav ul li a:hover:before {
          transform: scale3d(1, 1, 1); }
      .nav ul li.active a:before {
        transform: scale3d(1, 1, 1); }

.section {
  max-width: 900px;
  margin: 10px auto;
  color: #000000;
  padding: 0 20px; }
  @media only screen and (min-width: 768px) {
    .section {
      margin: 30px auto; } }
  .section h2 {
    font-weight: 300;
    font-size: 40px;
    margin: 0 0 40px 0; }

a:focus {
  text-decoration: none; }

a.link {
  position: relative;
  color: #000000;
  white-space: nowrap; }
  a.link:before {
    content: '';
    display: block;
    background-color: #F7E71B;
    z-index: -1;
    position: absolute;
    left: -1px;
    right: 0px;
    bottom: 4px;
    height: 4px; }
    @media only screen and (min-width: 768px) {
      a.link:before {
        height: 6px;
        bottom: 6px; } }
  a.link:after {
    content: '';
    display: block;
    background-color: #00B3FF;
    z-index: -1;
    position: absolute;
    transform: scale3d(0, 1, 1);
    transition: transform .2s ease;
    -ms-transform-origin: left center;
        transform-origin: left center;
    left: -1px;
    right: 0px;
    bottom: 4px;
    height: 4px; }
    @media only screen and (min-width: 768px) {
      a.link:after {
        height: 6px;
        bottom: 6px; } }
  a.link:hover:after {
    transform: scale3d(1, 1, 1); }
  a.link.blue:before {
    background-color: #00B3FF; }
  a.link.blue:after {
    background-color: blue; }
  a.link.red:before {
    background-color: red; }
  a.link.red:after {
    background-color: maroon; }
  a.link.green:before {
    background-color: #00ff00; }
  a.link.green:after {
    background-color: green; }
  a.link.gray:before {
    background-color: gray; }
  a.link.gray:after {
    background-color: black; }

.bio {
  margin-top: 100px; }
  @media only screen and (min-width: 768px) {
    .bio {
      margin-top: 140px; } }

.works {
  margin-top: 40px; }
  @media only screen and (min-width: 768px) {
    .works {
      margin-top: 70px; } }
  .works .grid {
    margin: 0 -15px; }
  .works .item {
    margin-bottom: 35px;
    margin-left: 15px;
    margin-right: 15px;
    cursor: pointer;
    display: block;
    position: relative; }
    .works .item img {
      border-radius: 3px;
      overflow: hidden;
      width: 100%;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
    .works .item .bg {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: -1;
      pointer-events: none;
      opacity: 0; }
    .works .item .description h2 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 6px; }
    .works .item .description p {
      font-size: 16px;
      font-weight: 300; }
    .works .item .description small {
      opacity: .6; }
    @media screen and (max-width: 480px) {
      .works .item .description {
        color: #000000 !important;
        background-color: transparent !important;
        box-shadow: none !important; } }
    @media screen and (min-width: 481px) {
      .works .item .description {
        text-align: center;
        position: fixed;
        top: 50%;
        left: 50%;
        width: 100%;
        padding: 0 15px;
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        z-index: 999;
        pointer-events: none;
        opacity: 0;
        width: auto;
        border-radius: 30px;
        overflow: hidden;
        padding: 5px 5px 0 5px; }
        .works .item .description h2 {
          font-size: 50px;
          margin-bottom: 12px;
          display: inline-block; }
        .works .item .description p {
          font-size: 20px; }
        .works .item .description small {
          opacity: .7; } }
    @media screen and (min-width: 769px) {
      .works .item .description h2 {
        font-size: 65px; }
      .works .item .description p {
        font-size: 30px; } }
    .works .item .play-icon {
      background-color: rgba(0, 0, 0, 0.3);
      border-radius: 50%;
      width: 60px;
      height: 60px;
      position: absolute;
      z-index: 99;
      top: 65%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
      box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); }
      @media screen and (min-width: 481px) {
        .works .item .play-icon {
          top: 50%; } }
      .works .item .play-icon:after {
        content: '';
        top: 25%;
        left: 25%;
        -ms-transform: rotate(-30deg);
            transform: rotate(-30deg);
        position: absolute;
        z-index: 99;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 13px 22.5px 13px;
        border-color: transparent transparent rgba(255, 255, 255, 0.9) transparent; }
    .works .item.hover img {
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); }
    .works .item.hover .description, .works .item.hover .bg {
      opacity: 1; }
    .works .item.hover .play-icon {
      background-color: rgba(0, 0, 0, 0.7);
      box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); }
      .works .item.hover .play-icon:after {
        border-color: transparent transparent white transparent; }

.inquiries {
  margin-bottom: 100px; }

.footer {
  position: fixed;
  right: 15px;
  bottom: 6px;
  color: rgba(0, 0, 0, 0.3);
  font-size: 12px; }

.content-modal {
  display: none; }

.content-modal-wrp {
  padding: 15px;
  font-size: 16px;
  font-weight: 300; }
  .content-modal-wrp .content-title {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 24px; }
  .content-modal-wrp .content-credit {
    text-align: center;
    margin-bottom: 10px; }
  @media only screen and (min-width: 992px) {
    .content-modal-wrp .content-title {
      text-align: left;
      margin-top: 0;
      margin-bottom: 0; }
    .content-modal-wrp .content-credit {
      text-align: right;
      margin-bottom: 0; } }
  .content-modal-wrp h2, .content-modal-wrp strong {
    font-weight: 600; }
  .content-modal-wrp h2 {
    margin-top: 3px;
    margin-bottom: 6px; }
  .content-modal-wrp h3 {
    margin-top: 6px;
    font-weight: 300;
    font-size: 16px; }
  .content-modal-wrp p:last-child {
    margin-bottom: 0; }
  .content-modal-wrp a.link {
    position: relative;
    color: #000000; }
    .content-modal-wrp a.link:before {
      content: '';
      display: block;
      background-color: #F7E71B;
      z-index: -1;
      position: absolute;
      left: -1px;
      right: 0px;
      bottom: 4px;
      height: 4px; }
      @media only screen and (min-width: 768px) {
        .content-modal-wrp a.link:before {
          height: 4px;
          bottom: 3px; } }
    .content-modal-wrp a.link:after {
      content: '';
      display: block;
      background-color: #00B3FF;
      z-index: -1;
      position: absolute;
      transform: scale3d(0, 1, 1);
      transition: transform .2s ease;
      -ms-transform-origin: left center;
          transform-origin: left center;
      left: -1px;
      right: 0px;
      bottom: 4px;
      height: 4px; }
      @media only screen and (min-width: 768px) {
        .content-modal-wrp a.link:after {
          height: 4px;
          bottom: 3px; } }
    .content-modal-wrp a.link:hover:after {
      transform: scale3d(1, 1, 1); }

.modal-video .tingle-modal-box__content {
  padding: 0; }

@media screen and (max-width: 480px) {
  #grid[data-columns]::before {
    content: '1 .column.size-1of1';
    color: transparent; } }

@media screen and (min-width: 481px) and (max-width: 768px) {
  #grid[data-columns]::before {
    content: '2 .column.size-1of2';
    color: transparent; } }

@media screen and (min-width: 769px) {
  #grid[data-columns]::before {
    content: '3 .column.size-1of3';
    color: transparent; } }

/* Again, you’re free to use and define the classes: */
.column {
  float: left; }

.size-1of1 {
  width: 100%; }

.size-1of2 {
  width: 50%; }

.size-1of3 {
  width: 33.333%; }
