.grid {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -8px 0 -8px; }
  .grid.grid-nogutter {
    margin: 0; }
    .grid.grid-nogutter > .col {
      padding: 0; }

.col {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  -webkit-flex-basis: 0;
  flex-basis: 0;
  max-width: 100%;
  min-width: 0;
  padding: 0 8px 0 8px; }

.col-align-top {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start; }

.col-align-bottom {
  -ms-flex-item-align: end;
  align-self: flex-end; }

.col-align-middle {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center; }

.col-top {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.col-bottom {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.col-middle {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.grid-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.grid-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.grid-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.grid-around {
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.grid-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.col-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1; }

.col-last {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }

.grid-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.col-fixed {
  -webkit-box-flex: initial;
  -ms-flex: initial;
  flex: initial; }

.col-grow-2 {
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2; }

.col-grow-3 {
  -webkit-box-flex: 3;
  -ms-flex-positive: 3;
  flex-grow: 3; }

.col-grow-4 {
  -webkit-box-flex: 4;
  -ms-flex-positive: 4;
  flex-grow: 4; }

.col-grow-5 {
  -webkit-box-flex: 5;
  -ms-flex-positive: 5;
  flex-grow: 5; }

.col-grow-6 {
  -webkit-box-flex: 6;
  -ms-flex-positive: 6;
  flex-grow: 6; }

.col-grow-7 {
  -webkit-box-flex: 7;
  -ms-flex-positive: 7;
  flex-grow: 7; }

.col-grow-8 {
  -webkit-box-flex: 8;
  -ms-flex-positive: 8;
  flex-grow: 8; }

.col-grow-9 {
  -webkit-box-flex: 9;
  -ms-flex-positive: 9;
  flex-grow: 9; }

.col-grow-10 {
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10; }

.col-grow-11 {
  -webkit-box-flex: 11;
  -ms-flex-positive: 11;
  flex-grow: 11; }

.col-1 {
  -ms-flex-preferred-size: 8.33333%;
  -webkit-flex-basis: 8.33333%;
  flex-basis: 8.33333%;
  max-width: 8.33333%; }

.col-2 {
  -ms-flex-preferred-size: 16.66667%;
  -webkit-flex-basis: 16.66667%;
  flex-basis: 16.66667%;
  max-width: 16.66667%; }

.col-3 {
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
  flex-basis: 25%;
  max-width: 25%; }

.col-4 {
  -ms-flex-preferred-size: 33.33333%;
  -webkit-flex-basis: 33.33333%;
  flex-basis: 33.33333%;
  max-width: 33.33333%; }

.col-5 {
  -ms-flex-preferred-size: 41.66667%;
  -webkit-flex-basis: 41.66667%;
  flex-basis: 41.66667%;
  max-width: 41.66667%; }

.col-6 {
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
  max-width: 50%; }

.col-7 {
  -ms-flex-preferred-size: 58.33333%;
  -webkit-flex-basis: 58.33333%;
  flex-basis: 58.33333%;
  max-width: 58.33333%; }

.col-8 {
  -ms-flex-preferred-size: 66.66667%;
  -webkit-flex-basis: 66.66667%;
  flex-basis: 66.66667%;
  max-width: 66.66667%; }

.col-9 {
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
  flex-basis: 75%;
  max-width: 75%; }

.col-10 {
  -ms-flex-preferred-size: 83.33333%;
  -webkit-flex-basis: 83.33333%;
  flex-basis: 83.33333%;
  max-width: 83.33333%; }

.col-11 {
  -ms-flex-preferred-size: 91.66667%;
  -webkit-flex-basis: 91.66667%;
  flex-basis: 91.66667%;
  max-width: 91.66667%; }

.col-12 {
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  max-width: 100%; }

@media only screen and (max-width: 480px) {
  .col-sm {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%; } }

@media only screen and (max-width: 624px) {
  .col-md {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%; } }

@media only screen and (max-width: 744px) {
  .col-lg {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%; } }

body {
  color: #272727;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  margin: 0px;
  padding: 0; }

h1 {
  font-family: "Manrope", sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: #006A72;
  margin: 0;
  line-height: 66px;
  -webkit-transition: all linear 0.4s;
  -o-transition: all linear 0.4s;
  transition: all linear 0.4s; }
  @media (max-width: 744px) {
    h1 {
      font-size: 36px;
      line-height: 36px; } }
  h1.small-site-title {
    font-size: 36px;
    padding: 0; }
  h1.project-page {
    font-size: 56px; }
    @media (max-width: 744px) {
      h1.project-page {
        font-size: 36px;
        line-height: 36px;
        margin-left: 0; } }
  h1 a {
    color: #006A72;
    margin: 0;
    text-decoration: none; }
    h1 a:hover {
      cursor: pointer;
      text-decoration: underline;
      -webkit-text-decoration-color: #F6844E;
      text-decoration-color: #F6844E; }

h2 {
  font-family: "Proza Libre", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #C4C4C4;
  margin: 2rem 0 1rem 0; }

h3 {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #C4C4C4; }

a.nav-btn {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #272727;
  text-decoration: none;
  -webkit-transition: color ease 0.1s;
  -o-transition: color ease 0.1s;
  transition: color ease 0.1s;
  cursor: pointer; }
  a.nav-btn:hover, a.nav-btn:focus {
    color: #F6844E; }
  a.nav-btn:active {
    color: #006A72; }
  a.nav-btn.selected {
    color: #006A72; }

p {
  font-size: 14px;
  font-weight: 400;
  color: #272727; }
  p a {
    color: #272727;
    text-decoration: underline;
    -webkit-transition: color linear 0.2s;
    -o-transition: color linear 0.2s;
    transition: color linear 0.2s; }
    p a:hover {
      color: #F6844E; }

li {
  font-size: 14px;
  font-weight: 400;
  color: #272727;
  line-height: 22px; }

#typewriter-text {
  color: #F8F8F8; }

.about-container h2 {
  font-family: "Proza Libre", sans-serif;
  font-size: 96px;
  font-weight: 500;
  color: #E3E2DF; }

.about-container p {
  color: #E3E2DF; }

#about-back-btn {
  font-size: 16px;
  font-weight: 600;
  color: #E3E2DF; }

.text-standout {
  color: #F6844E; }

.content-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px; }

.projects-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: scroll;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column; }

body {
  background-color: #F8F8F8;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.site-body {
  margin: 0 auto !important;
  padding: 0;
  max-width: 1500px; }

.mobile-only {
  display: none; }
  @media (max-width: 744px) {
    .mobile-only {
      display: block; } }

.mobile-banner {
  position: fixed;
  top: 0;
  z-index: 400;
  padding: 1rem 3rem;
  width: 100%;
  min-width: 330px; }
  @media (max-width: 1080px) {
    .mobile-banner {
      padding: 1rem; } }
  .mobile-banner .site-nav {
    padding: 0 0 0 1rem; }
    .mobile-banner .site-nav ul {
      list-style-type: none;
      padding: 0;
      margin-top: 0.5rem; }
    .mobile-banner .site-nav li {
      display: inline;
      padding: 0 0 0 1.5rem; }

.fixed-content-container {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  padding-right: 6rem; }
  .fixed-content-container .col {
    position: relative; }
  .fixed-content-container .col-5 {
    z-index: 200; }
  @media (max-width: 744px) {
    .fixed-content-container {
      display: none; } }

.site-nav-container {
  position: absolute;
  top: 100px;
  left: 3rem; }
  @media (max-width: 1080px) {
    .site-nav-container {
      left: 1rem; } }
  @media (max-width: 744px) {
    .site-nav-container {
      top: 1rem;
      right: 0; } }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0; }

.site-nav li {
  padding: 0 0 1.5rem 0;
  cursor: pointer; }

.home-feature-container {
  position: absolute;
  left: 3rem;
  bottom: 5rem;
  min-width: 150px;
  min-height: 100px; }
  @media (max-width: 1080px) {
    .home-feature-container {
      left: 1rem; } }
  @media (max-width: 744px) {
    .home-feature-container {
      bottom: unset;
      top: 1rem;
      z-index: 390; } }

.home-feature h2 {
  color: #272727;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 2rem;
  margin: 0 0 0.5rem 0;
  white-space: nowrap; }

.home-feature p {
  display: block;
  word-wrap: normal; }

.home-feature .not-typewriter {
  padding: 0.25rem 0; }

.home-feature .typewriter-container {
  background-color: #272727;
  padding: 0.25rem 0.25rem;
  margin-left: 0.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 2rem; }

.sub-nav {
  position: fixed;
  top: 100px;
  z-index: 150;
  color: #C4C4C4;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 600;
  width: 100%;
  height: 10rem;
  -webkit-flex-basis: 58.33333%;
  -ms-flex-preferred-size: 58.33333%;
  flex-basis: 58.33333%;
  max-width: 58.33333%; }
  .sub-nav ul {
    list-style-type: none;
    overflow: hidden;
    margin: 0;
    padding: 0rem 0 1rem 0; }
  .sub-nav li {
    display: inline-block;
    overflow: hidden;
    word-break: keep-all;
    margin: 0;
    padding: 0; }
  .sub-nav a {
    text-decoration: none; }

.fade-top,
.fade-bottom {
  position: fixed;
  right: 0;
  width: 70%;
  z-index: 100;
  height: 6rem;
  background-repeat: repeat-x;
  background-size: contain; }
  .fade-top.full-span,
  .fade-bottom.full-span {
    width: 100%; }
  @media (max-width: 744px) {
    .fade-top,
    .fade-bottom {
      width: 100%; } }

.fade-top {
  top: 0;
  background-image: url("/images/general/fade-top.png"); }
  @media (max-width: 744px) {
    .fade-top {
      height: 8rem; } }

.fade-bottom {
  bottom: 0vh;
  height: 2rem;
  background-image: url("/images/general/fade-bottom"); }

.dots-primary,
.dots-secondary {
  display: block;
  position: fixed;
  z-index: -100; }

.dots-primary {
  top: 0;
  right: 0;
  width: 60vw;
  height: 60vh;
  background-image: url("/images/general/dot-grid-texture-200.png");
  background-repeat: repeat; }

.dots-secondary {
  bottom: 0;
  left: 0;
  width: 25vw;
  height: 30vh;
  background-image: url("/images/general/dot-grid-texture-100.png");
  background-repeat: repeat; }

.about-container {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #006A72;
  z-index: 600;
  visibility: visible;
  opacity: 1;
  -webkit-clip-path: circle(100% at 50% 50%);
  clip-path: circle(100% at 50% 50%);
  -webkit-transition: -webkit-clip-path 0.6s;
  transition: -webkit-clip-path 0.6s;
  -o-transition: clip-path 0.6s;
  transition: clip-path 0.6s;
  transition: clip-path 0.6s, -webkit-clip-path 0.6s; }
  .about-container.hidden {
    opacity: 0;
    -webkit-transition: all linear 0.2s;
    -o-transition: all linear 0.2s;
    transition: all linear 0.2s; }
  .about-container.clipped {
    -webkit-clip-path: circle(0% at 0 0);
    clip-path: circle(0% at 0 0); }
    @media screen and (min-color-index: 0) and (-webkit-min-device-pixel-ratio: 0) {
      .about-container.clipped .about-content {
        display: none; } }

.about-content {
  max-width: 900px;
  height: 100%;
  margin: auto; }
  .about-content .col {
    position: relative; }
  .about-content h2 {
    margin-bottom: 0;
    opacity: 1;
    -webkit-transition: opacity ease 0.5s;
    -o-transition: opacity ease 0.5s;
    transition: opacity ease 0.5s; }
  .about-content .img-container {
    display: block;
    width: 18.75rem;
    height: 18.75rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #C4C4C4;
    margin: 0 1rem 0 auto; }
    .about-content .img-container:hover, .about-content .img-container:focus {
      cursor: pointer; }
      .about-content .img-container:hover .overlay, .about-content .img-container:focus .overlay {
        opacity: 1; }
      .about-content .img-container:hover .extra-zach, .about-content .img-container:focus .extra-zach {
        opacity: 1;
        top: 0; }
    .about-content .img-container .overlay {
      position: absolute;
      top: 0;
      opacity: 0;
      -webkit-transition: all linear 0.4s;
      -o-transition: all linear 0.4s;
      transition: all linear 0.4s; }
  .about-content #text-block .grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media (max-width: 550px) {
      .about-content #text-block .grid {
        margin-bottom: 5rem; } }
  @media (max-width: 480px) {
    .about-content #img-block {
      display: none; }
    .about-content #text-block {
      margin: auto; } }
  @media (max-width: 744px) {
    .about-content #img-block {
      -ms-flex-item-align: end;
      align-self: flex-end;
      padding-top: 0.5rem; }
    .about-content #text-block {
      -ms-flex-item-align: start;
      align-self: flex-start; }
      .about-content #text-block .grid {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row; }
    .about-content .img-container {
      margin: 0 auto; }
    .about-content h2 {
      text-align: end;
      margin: auto 0; }
    .about-content .about-text {
      -ms-flex-preferred-size: 60%;
      flex-basis: 60%; } }
  @media (max-width: 540px) {
    .about-content h2 {
      opacity: 0.3;
      margin: 1rem 0 auto 0; } }

.bio-img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(/images/self-portrait-lego-cropped-1x.png); }

.extra-zach {
  position: absolute;
  display: block;
  color: #F8F8F8;
  top: -3rem;
  width: 100%;
  height: 100%;
  padding: 1rem;
  opacity: 0;
  -webkit-transition: all linear 0.4s;
  -o-transition: all linear 0.4s;
  transition: all linear 0.4s; }
  .extra-zach ul {
    padding-left: 1.25rem; }
  .extra-zach li, .extra-zach h3 {
    color: #F8F8F8; }

#about-back-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: solid #E3E2DF 2px;
  margin: 0;
  width: 6.75rem;
  text-decoration: none;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: fixed;
  top: 3rem;
  left: 3rem;
  cursor: pointer;
  padding: 0.25rem 0.75rem 0.25rem 0.25rem;
  border-radius: 0.5rem;
  -webkit-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s; }
  @media (max-width: 744px) {
    #about-back-btn {
      left: 1rem; } }
  @media (max-width: 550px) {
    #about-back-btn {
      top: unset;
      bottom: 2rem;
      left: 50%;
      -webkit-transform: translateX(-3.725rem);
      -ms-transform: translateX(-3.725rem);
      transform: translateX(-3.725rem); } }
  #about-back-btn img {
    height: 2.25rem; }
  #about-back-btn .btn-text {
    text-align: center;
    padding: 0.25rem 0; }
  #about-back-btn:hover, #about-back-btn:focus {
    border-color: #F6844E;
    opacity: 1; }
  #about-back-btn:active {
    border-color: #E3E2DF; }

footer {
  height: 10vh;
  width: 100%;
  top: 100%;
  justify-self: flex-end;
  z-index: 100;
  color: #006A72; }
  footer p {
    text-align: center;
    margin: 0 auto; }

.scrolling-content-container {
  min-height: 90vh;
  width: 100%;
  position: relative;
  z-index: 50; }

.scrolling-content {
  min-height: 60vh;
  padding: 10rem 3rem 30vh 0;
  margin: 8; }
  @media (max-width: 1080px) {
    .scrolling-content {
      padding: 10rem 1rem 30vh 0; } }
  @media (max-width: 744px) {
    .scrolling-content {
      padding: 7.75rem 1rem 30vh 1rem; } }
  @media (max-width: 624px) {
    .scrolling-content {
      padding: 7.75rem 1rem 10vh 1rem; } }

.project-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 12rem;
  height: 6rem;
  border: 6px solid #006A72;
  border-radius: 1rem;
  margin: 1rem 0;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: rotateY(40deg);
  transform: rotateY(40deg);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  -o-transition: transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
  font-size: 2rem;
  font-weight: 800;
  color: #006A72;
  text-decoration: none; }
  .project-card:hover, .project-card:focus {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg); }
  .project-card h3 {
    margin: auto; }

.hidden {
  visibility: hidden; }

.inline-cta {
  color: #F6844E;
  text-decoration: none; }
  .inline-cta:hover, .inline-cta:focus {
    text-decoration: underline; }
  .inline-cta:active {
    background-color: #F6844E;
    color: #272727; }

.gallery.custom-styled .images {
  background-color: #FFF; }
  .gallery.custom-styled .images > div {
    background-size: contain; }

.gallery.custom-styled .thumbs {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.drop-shadow {
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4); }

.img-container {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-top: 0;
  position: relative; }
  .img-container img {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    background-size: cover;
    opacity: 1;
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease; }
  .img-container .uiImage {
    min-width: 60px;
    height: auto; }
  .img-container .mobile-img {
    max-height: 34rem;
    margin: 0 auto; }

.img-caption {
  text-align: center;
  font-size: .8rem;
  margin: auto; }

.gallery iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 225; }

.left, .right {
  z-index: 200; }

.lightbox-button {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 200; }

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); }

#experience .work-card {
  height: 11.25rem; }

.work-card {
  display: block;
  position: relative;
  height: 16.25rem;
  margin: 0.5rem;
  border: solid #006A72 3px;
  border-radius: 6px;
  text-decoration: none;
  -webkit-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
  padding: 14px;
  overflow: hidden; }
  .work-carda {
    background-color: #f8f8f8; }
  .work-card .card-title, .work-card .project-label, .work-card .role-block {
    -webkit-transition: all linear 0.2s;
    -o-transition: all linear 0.2s;
    transition: all linear 0.2s; }
  .work-card .card-title {
    font-weight: 600;
    font-size: 18px;
    color: #272727;
    opacity: 1;
    text-align: center;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 1rem; }
  .work-card .project-label {
    font-weight: 400;
    font-size: 12px;
    color: #F8F8F8;
    padding: 0.5rem;
    background-color: #272727;
    position: absolute;
    white-space: nowrap;
    left: 100%; }
  .work-card .role-block {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all linear 0.2s;
    -o-transition: all linear 0.2s;
    transition: all linear 0.2s;
    position: absolute;
    bottom: 2rem;
    left: 0rem; }
  .work-card .role {
    font-weight: 400;
    font-size: 12px;
    color: #F8F8F8; }
  .work-card h4 {
    font-weight: 700;
    font-size: 18px;
    color: #F8F8F8;
    padding: 0;
    margin: 0; }
  .work-card .background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: -1;
    background-color: #f8f8f8;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s; }
  .work-card:hover, .work-card:focus {
    border: solid #006A72 6px;
    padding: 11px; }
    .work-card:hover .card-title, .work-card:focus .card-title {
      opacity: 0;
      visibility: hidden;
      bottom: 0; }
    .work-card:hover .project-label, .work-card:focus .project-label {
      -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      transform: translateX(-100%); }
    .work-card:hover .role-block, .work-card:focus .role-block {
      opacity: 1;
      visibility: visible;
      left: 1.5rem; }
    .work-card:hover .background-image, .work-card:focus .background-image {
      opacity: 1;
      background-color: #006a72; }
  .work-card#project-concussion .background-image {
    background-image: url(/images/project-concussion/concussion-mockup-landing-desktop-mobile.jpg); }
  .work-card#project-concussion:hover {
    border-color: #0f78af;
    background-color: rgba(15, 120, 175, 0.75); }
    .work-card#project-concussion:hover .background-image {
      width: 300%;
      height: 300%;
      left: -95%;
      top: -95%; }
  .work-card#project-reddit .background-image {
    background-image: url(/images/project-reddit/reddit-mockup-landing-simple.jpg); }
  .work-card#project-reddit:hover {
    border-color: #FF4500;
    background-color: rgba(255, 69, 0, 0.75); }
    .work-card#project-reddit:hover .background-image {
      width: 310%;
      height: 310%;
      left: -72%;
      top: -82%; }
  .work-card#project-track-it .background-image {
    background-image: url(/images/project-fitfirst/fitfirst-hero-light.jpg); }
  .work-card#project-track-it:hover {
    border-color: #4ebb33;
    background-color: rgba(78, 187, 51, 0.75); }
    .work-card#project-track-it:hover .background-image {
      width: 200%;
      height: 200%;
      left: -94%;
      top: -14%; }
  .work-card#project-discovered .background-image {
    background-image: url(/images/project-discovered/discovered-banner-1x.png); }
  .work-card#project-discovered:hover {
    border-color: #5DD3AA;
    background-color: rgba(93, 211, 170, 0.75); }
    .work-card#project-discovered:hover .background-image {
      width: 310%;
      height: 310%;
      left: -72%;
      top: -82%; }
  .work-card#exp-vch .background-image {
    background-image: url(/images/general/vch-logo.jpg); }
  .work-card#exp-vch:hover {
    border-color: #0f78af;
    background-color: rgba(15, 120, 175, 0.75); }
    .work-card#exp-vch:hover .background-image {
      width: 120%;
      height: 120%;
      left: -10%;
      top: -15%; }
  .work-card#exp-bb .background-image {
    background-image: url(/images/general/bb-logo.jpg);
    width: 85%;
    height: 85%;
    left: 10%; }
  .work-card#exp-bb:hover {
    border-color: #272727;
    background-color: rgba(39, 39, 39, 0.75); }
    .work-card#exp-bb:hover .background-image {
      width: 120%;
      height: 120%;
      left: -10%;
      top: -20%; }
  .work-card#exp-fss .background-image {
    background-image: url(/images/general/fss-logo); }
  .work-card#exp-fss:hover {
    border-color: #e93333;
    background-color: rgba(233, 51, 51, 0.75); }
    .work-card#exp-fss:hover .background-image {
      width: 110%;
      height: 110%;
      left: -5%;
      top: -15%; }

.project-page section {
  position: relative;
  margin: 3rem 0 0 0; }

.project-page.fixed-content-buffer {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%; }
  @media (max-width: 744px) {
    .project-page.fixed-content-buffer {
      -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
      max-width: 20%; } }

.project-page.scrolling-content-container {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%; }
  @media (max-width: 744px) {
    .project-page.scrolling-content-container {
      -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
      max-width: 80%; } }

@media (max-width: 744px) {
  .project-page.scrolling-content {
    padding-left: 0; } }

@media (max-width: 1080px) {
  .project-page.site-nav-container {
    left: 3rem; } }

@media (max-width: 744px) {
  .project-page.site-nav-container {
    left: 1rem; } }

@media (max-width: 1080px) {
  .project-page.mobile-banner {
    padding: 1rem 3rem; } }

@media (max-width: 744px) {
  .project-page.mobile-banner {
    padding: 1rem; } }

.section-content {
  margin-left: 10rem;
  padding: 0.25rem 1rem 1rem 1rem; }
  @media (max-width: 744px) {
    .section-content {
      margin-left: 0;
      padding: 0.25rem 0 1rem 0; } }
  .section-content p {
    margin-top: 0;
    line-height: 22px;
    background-color: #F8F8F8; }

.project-header {
  position: absolute;
  margin-top: 0;
  left: -2rem;
  max-width: 10rem; }
  @media (max-width: 744px) {
    .project-header {
      font-size: 24px;
      left: 0;
      top: -2rem;
      max-width: unset; }
      .project-header#overview-header {
        top: -2rem; } }

#overview {
  margin-bottom: 1rem; }

.overview-section {
  border: solid #272727 2px;
  border-radius: 1rem;
  background-color: #F8F8F8;
  margin: 0 1rem 0 11rem; }
  .overview-section h3 {
    margin-bottom: 0.25rem; }
  .overview-section p {
    margin: 0 0 0.25rem 0;
    line-height: 1rem; }
  @media (max-width: 744px) {
    .overview-section {
      margin: 0; } }

.progress-container {
  position: fixed;
  height: 25vh;
  bottom: 10vh;
  margin-left: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s; }
  @media (max-width: 744px) {
    .progress-container {
      margin-left: 1rem; } }
  @media (max-width: 540px) {
    .progress-container {
      margin-left: 1rem; } }

.progress-section {
  position: relative;
  margin-bottom: 0.25rem;
  width: 16px;
  background-color: #E3E2DF;
  z-index: 100;
  -webkit-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s; }
  .progress-section.filled {
    background-color: #006A72; }
    .progress-section.filled.active .progress-label {
      left: 125%;
      opacity: 1;
      color: #006A72; }
      @media (max-width: 540px) {
        .progress-section.filled.active .progress-label {
          left: 0%;
          opacity: 0; } }
  .progress-section:hover {
    cursor: pointer;
    background-color: #F6844E; }
    .progress-section:hover .progress-label {
      left: 125%;
      opacity: 1;
      color: #F6844E; }

.progress-label {
  position: absolute;
  display: block;
  font-weight: 600;
  color: #E3E2DF;
  left: 0%;
  top: 15%;
  opacity: 0;
  -webkit-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
  z-index: 99; }

.skip-to-bottom {
  background: none;
  color: inherit;
  border: solid transparent 2px;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  margin: 0 auto;
  max-width: 14rem;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  -webkit-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s; }
  .skip-to-bottom:hover, .skip-to-bottom:focus {
    border: solid #F6844E 2px; }
  .skip-to-bottom a {
    color: #F6844E;
    text-decoration: none; }
