/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
@import url(https://fonts.googleapis.com/css?family=Dosis);
/* line 5, ../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, ../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../../../../Library/Ruby/Gems/2.0.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* line 8, ../sass/screen.scss */
canvas {
  margin: 0;
  padding: 0;
}

/* line 22, ../sass/screen.scss */
html, body {
  background-color: white;
  font-size: 14px;
  margin: 0;
  min-width: 100vw;
  min-height: 100vh;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}

/* line 32, ../sass/screen.scss */
.show {
  opacity: 1;
}

/* line 37, ../sass/screen.scss */
.member {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* line 44, ../sass/screen.scss */
.intro {
  height: 100vh;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* line 49, ../sass/screen.scss */
.intro .logo-container {
  transform: scale(0.8);
}
/* line 53, ../sass/screen.scss */
.intro .logo-container svg {
  z-index: 1;
  position: absolute;
  left: 40px;
  top: -15px;
  z-index: 1000;
  opacity: 0;
  transition: .4s opacity ease-out;
}
/* line 63, ../sass/screen.scss */
.intro .logo-container svg:hover {
  cursor: pointer;
}
/* line 67, ../sass/screen.scss */
.intro .logo-container svg.show {
  opacity: 1 !important;
}

/* line 74, ../sass/screen.scss */
.content {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin-top: 150px;
}
/* line 82, ../sass/screen.scss */
.content .portfolio-link {
  color: gray;
}

/* line 90, ../sass/screen.scss */
.card {
  font-family: "Dosis";
  font-size: 1.2em;
  width: 85vw;
  padding: 5%;
  box-shadow: none;
  outline: 4px solid black;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0);
}

/* line 103, ../sass/screen.scss */
.scroll-content {
  width: auto;
  overflow-x: scroll;
  overflow-y: hidden;
  height: 300px;
  display: flex;
  display: none;
}
/* line 112, ../sass/screen.scss */
.scroll-content img {
  display: none;
  object-fit: contain;
}

/* line 124, ../sass/screen.scss */
.gallery {
  display: none;
}

/*.ink styles - the elements which will create the ripple effect. The size and position of these elements will be set by the JS code. Initially these elements will be scaled down to 0% and later animated to large fading circles on user click.*/
/* line 133, ../sass/screen.scss */
.ink {
  z-index: -1 !important;
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 100%;
  transform: scale(0);
}

/*animation effect*/
/* line 142, ../sass/screen.scss */
.ink.animate {
  animation: ripple 0.45s ease-out;
  -webkit-animation-fill-mode: forwards;
  /* Chrome, Safari, Opera */
  animation-fill-mode: forwards;
}

@keyframes ripple {
  /*scale the element to 250% to safely cover the entire link and fade it out*/
  100% {
    opacity: 1;
    transform: scale(3);
  }
}
/* line 154, ../sass/screen.scss */
.ham-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: transparent;
  -webkit-backface-visibility: hidden;
  -webkit-transition: border-width 0.3s, background-color 0.3s, height 0s 0.3s;
  transition: border-width 0.3s, background-color 0.3s, height 0s 0.3s;
}

/* line 163, ../sass/screen.scss */
.ham-menu.menu-open {
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

/* line 169, ../sass/screen.scss */
.menu-trigger {
  position: fixed;
  display: block;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

/* line 175, ../sass/screen.scss */
.menu-trigger span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  margin-top: -2px;
  background-color: #000;
  font-size: 0px;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

/* line 188, ../sass/screen.scss */
.menu-open .menu-trigger span {
  background-color: transparent;
}

/* line 191, ../sass/screen.scss */
.menu-trigger span:before,
.menu-trigger span:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  content: '';
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

/* line 201, ../sass/screen.scss */
.menu-trigger span:before {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}

/* line 205, ../sass/screen.scss */
.menu-trigger span:after {
  -webkit-transform: translateY(150%);
  transform: translateY(150%);
}

/* line 209, ../sass/screen.scss */
.menu-open .menu-trigger span:before {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  background-color: #FFF;
}

/* line 214, ../sass/screen.scss */
.menu-open .menu-trigger span:after {
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
  background-color: #FFF;
}

/* line 220, ../sass/screen.scss */
#menu {
  opacity: 0;
}

/* line 224, ../sass/screen.scss */
.intro-text {
  text-align: center;
  font-family: Dosis;
  color: white;
  font-size: .8em;
  width: 50%;
  line-height: 1.5;
  z-index: 1;
}

/* line 234, ../sass/screen.scss */
#text-logo {
  width: 50%;
  margin-bottom: 2%;
}

@media (min-width: 300px) {
  /* line 248, ../sass/screen.scss */
  #intro-gif {
    opacity: 0;
    transition: .2s opacity ease-out;
  }

  /* line 253, ../sass/screen.scss */
  #intro-gif.show {
    opacity: 1 !important;
  }

  /* line 257, ../sass/screen.scss */
  .logo-container {
    width: 100px;
    position: fixed;
    left: 4%;
    top: 6%;
    z-index: 1;
  }

  /* line 266, ../sass/screen.scss */
  #canvas-container {
    z-index: 1 !important;
  }

  /* line 270, ../sass/screen.scss */
  canvas {
    opacity: 0;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    transition: .3s opacity ease-out;
  }

  /* line 281, ../sass/screen.scss */
  .member {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* line 292, ../sass/screen.scss */
  .fa-th {
    position: fixed;
    left: 30px;
    bottom: 30px;
    color: black;
    display: none;
  }

  /* line 300, ../sass/screen.scss */
  .nav-contain {
    z-index: 100;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 0;
    width: 100vw;
    height: 100vh;
  }

  /* line 310, ../sass/screen.scss */
  #menu {
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white !important;
    pointer-events: none;
    transition: 1s opacity ease-out;
  }
  /* line 320, ../sass/screen.scss */
  #menu ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    display: inline-block;
    color: white !important;
    width: 90vw;
    pointer-events: all;
  }
  /* line 329, ../sass/screen.scss */
  #menu ul li {
    font-family: Dosis;
    font-size: .9em;
    text-align: center;
    color: white !important;
    margin-bottom: 15px;
  }
  /* line 338, ../sass/screen.scss */
  #menu a {
    pointer-events: all;
  }

  /* line 343, ../sass/screen.scss */
  .show {
    opacity: 1 !important;
  }

  /* line 347, ../sass/screen.scss */
  .show-vid {
    opacity: .5 !important;
  }
}
@media (min-width: 300px) and (max-width: 700px) {
  /* line 361, ../sass/screen.scss */
  .intro {
    height: 100vh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  /* line 366, ../sass/screen.scss */
  .intro .logo-container {
    transform: scale(0.8);
  }
  /* line 370, ../sass/screen.scss */
  .intro .logo-container svg {
    z-index: 1;
    width: 100px;
    position: absolute;
    left: 0;
    top: -15px;
    z-index: 1000;
    opacity: 0;
    transition: .4s opacity ease-out;
  }
  /* line 381, ../sass/screen.scss */
  .intro .logo-container svg.show {
    opacity: 1 !important;
  }

  /* line 388, ../sass/screen.scss */
  #intro-gif {
    width: 80px;
  }

  /* line 392, ../sass/screen.scss */
  #canvas-container {
    position: fixed;
    top: -35px !important;
    left: -1%;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.5);
    z-index: 1 !important;
  }

  /* line 406, ../sass/screen.scss */
  #nav-button {
    position: fixed;
    right: 9%;
    top: 40px;
    color: black;
  }

  /* line 415, ../sass/screen.scss */
  .view-work {
    margin-top: .5em;
    background-color: black;
    color: white;
    padding: .5em;
    border: 0;
    width: 30%;
    font-family: Dosis;
  }
  /* line 425, ../sass/screen.scss */
  .view-work .fa {
    vertical-align: middle;
    margin-left: .5em;
    font-size: 1em;
    color: white;
  }

  /* line 434, ../sass/screen.scss */
  .card {
    font-size: .8em;
  }
}
@media (min-width: 701px) and (max-width: 1100px) {
  /* line 448, ../sass/screen.scss */
  .intro .logo-container svg {
    width: 150px !important;
  }

  /* line 454, ../sass/screen.scss */
  #menu ul li {
    font-size: 1.4em;
    line-height: 2em;
  }

  /* line 459, ../sass/screen.scss */
  .card {
    font-family: "Dosis";
    font-size: 1.2em;
    width: 85vw;
    padding: 5%;
    box-shadow: none;
    outline: 4px solid black;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0);
  }

  /* line 473, ../sass/screen.scss */
  .container {
    max-width: inherit;
  }

  /* line 477, ../sass/screen.scss */
  #canvas-container {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    z-index: 1;
  }

  /* line 491, ../sass/screen.scss */
  .view-work {
    font-size: 1em;
  }

  /* line 495, ../sass/screen.scss */
  #nav-button {
    position: fixed;
    right: 4%;
    top: 6%;
    color: black;
  }

  /* line 503, ../sass/screen.scss */
  .view-work {
    margin-top: .5em;
    background-color: black;
    color: white;
    padding: .5em;
    border: 0;
    width: 30%;
    font-family: Dosis;
  }
  /* line 513, ../sass/screen.scss */
  .view-work .fa {
    vertical-align: middle;
    margin-left: .5em;
    font-size: 1em;
    color: white;
  }

  /* line 522, ../sass/screen.scss */
  .content {
    height: 80vh;
    margin-top: 0;
    flex-direction: column-reverse;
  }
}
@media (min-width: 1101px) {
  /* line 538, ../sass/screen.scss */
  .intro {
    height: 100vh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  /* line 543, ../sass/screen.scss */
  .intro #intro-gif {
    width: 150px;
    transform: translate(30px, 20px);
  }
  /* line 548, ../sass/screen.scss */
  .intro .logo-container {
    transform: scale(0.8);
    width: 10%;
  }
  /* line 553, ../sass/screen.scss */
  .intro .logo-container svg {
    z-index: 1;
    width: 50%;
    position: absolute;
    left: 0;
    top: -15px;
    z-index: 1000;
    opacity: 0;
    transition: .4s opacity ease-out;
  }
  /* line 564, ../sass/screen.scss */
  .intro .logo-container svg.show {
    opacity: .4 !important;
    transition: opacity .3s ease-in-out;
  }
  /* line 569, ../sass/screen.scss */
  .intro .logo-container svg.show:hover {
    opacity: 1 !important;
  }

  /* line 578, ../sass/screen.scss */
  .section {
    padding: 0;
  }

  /* line 582, ../sass/screen.scss */
  .inset {
    outline: 4px solid black;
    overflow: hidden;
  }

  /* line 587, ../sass/screen.scss */
  .container {
    max-width: inherit;
  }

  /* line 591, ../sass/screen.scss */
  .content {
    width: 100%;
  }

  /* line 595, ../sass/screen.scss */
  .view-work {
    align-self: flex-end;
    margin-top: .5em;
    background-color: black;
    color: white;
    padding: .5em;
    border: 0;
    outline: 0;
    width: 30%;
    font-family: Dosis;
    font-size: 1em;
    transition: .2s all ease-out;
  }
  /* line 608, ../sass/screen.scss */
  .view-work .fa {
    vertical-align: middle;
    margin-left: .5em;
    font-size: 1em;
    color: white;
  }

  /* line 617, ../sass/screen.scss */
  .view-work:hover {
    background-color: white;
    outline: 4px solid black;
    color: black;
  }

  /* line 625, ../sass/screen.scss */
  #canvas-container {
    overflow: hidden;
    position: fixed;
    width: 40vw !important;
    height: 40vw !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  /* line 635, ../sass/screen.scss */
  #canvas-container canvas {
    width: 40vw !important;
    height: 40vw  !important;
    -ms-transform: scale(0.85) translate(-130px, -90px);
    /* IE 9 */
    -webkit-transform: scale(0.85) translate(-130px, -90px);
    /* Safari */
    transform: scale(0.85) translate(-120px, -90px);
  }

  /* line 646, ../sass/screen.scss */
  .content {
    height: 100%;
    margin-top: 0;
    flex-direction: column-reverse;
    justify-content: center;
  }

  /* line 653, ../sass/screen.scss */
  .card {
    outline: 0;
    font-family: "Dosis";
    font-size: 1.5em;
    width: 45vw;
    padding: 5%;
    box-shadow: none;
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0);
    text-align: right;
  }
  /* line 666, ../sass/screen.scss */
  .card .portfolio-link {
    font-size: .85em;
  }
  /* line 670, ../sass/screen.scss */
  .card p {
    line-height: 1.5;
  }

  /* line 675, ../sass/screen.scss */
  #nav-button {
    position: fixed;
    right: 65px;
    top: 75px;
    color: black;
  }

  /* line 682, ../sass/screen.scss */
  #menu ul li {
    font-size: 1.4em;
    line-height: 1.6em;
  }
}
