* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-size: 20px;
}

body {
  overflow-x: hidden;
}

h1 {
  font-family: "Palanquin", sans-serif;
}

.is-locked {
  overflow: hidden;
  position: fixed;
}

@media (max-width: 951px) {
  .mobile-hidden {
    display: none;
  }
}

@media (min-width: 950px) {
  .desktop-hidden {
    display: none;
  }
}

.medium-break {
  display: none;
}

@media (min-width: 950px) and (max-width: 1200px) {
  .medium-break {
    display: block;
  }
}

.intro-animation .hero:before {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.intro-animation .hero .hero__contentWrapper {
  opacity: 0;
}

.intro-animation.about .hero:before {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.intro-animation.about .hero:after {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.intro-animation.about .hero .hero__contentWrapper {
  opacity: 0;
}

.intro-animation.work .hero:before {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.intro-animation.work .hero:after {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.intro-animation.work .hero .hero__contentWrapper {
  opacity: 0;
}

.intro-animation .nav__logoContainer {
  -webkit-transform: translateY(-15px);
      -ms-transform: translateY(-15px);
          transform: translateY(-15px);
  opacity: 0;
}

.intro-animation .nav__about {
  -webkit-transform: translateX(-15px) translateY(-50%) rotate(-90deg);
      -ms-transform: translateX(-15px) translateY(-50%) rotate(-90deg);
          transform: translateX(-15px) translateY(-50%) rotate(-90deg);
  opacity: 0;
}

.intro-animation .nav__contact {
  -webkit-transform: translateX(15px) translateY(-50%) rotate(90deg);
      -ms-transform: translateX(15px) translateY(-50%) rotate(90deg);
          transform: translateX(15px) translateY(-50%) rotate(90deg);
  opacity: 0;
}

.intro-animation .hero__headline, .intro-animation .hero__subline, .intro-animation .hero__email-link, .intro-animation .footer, .intro-animation .copyblock, .intro-animation .hero__title, .intro-animation .hero__content, .intro-animation .morework {
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}

.intro-animation .hero__work-title, .intro-animation .hero__work-description {
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}

.intro-animation .hero__scrollIcon {
  opacity: 0;
}

.fade-out .workmain,
.fade-out .subnav,
.fade-out .scroll__top,
.fade-out .footer,
.fade-out .copyblock,
.fade-out .hero,
.fade-out .work__wrapper,
.fade-out .morework {
  -webkit-animation: downAndOut 500ms forwards;
          animation: downAndOut 500ms forwards;
  -webkit-animation-timing-function: cubic-bezier(0.07, 0.34, 0.15, 1);
          animation-timing-function: cubic-bezier(0.07, 0.34, 0.15, 1);
}

.fade-out .navigation {
  -webkit-animation: fadeOut 500ms forwards;
          animation: fadeOut 500ms forwards;
  -webkit-animation-timing-function: cubic-bezier(0.07, 0.34, 0.15, 1);
          animation-timing-function: cubic-bezier(0.07, 0.34, 0.15, 1);
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}

@media (min-width: 950px) {
  .logo-hidden .subnav__wrapper {
    -webkit-transform: translateY(-80px);
        -ms-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  .logo-hidden .nav__logoContainer {
    -webkit-transform: translateY(-80px);
        -ms-transform: translateY(-80px);
            transform: translateY(-80px);
    transition-delay: 0ms;
  }
}

@-webkit-keyframes scrollBounce {
  0%, 57.14285714285714% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  77.14285714285714% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -15, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -15, 0, 1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  85.71428571428571% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 10, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 10, 0, 1);
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1;
  }
}

@keyframes scrollBounce {
  0%, 57.14285714285714% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  77.14285714285714% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -15, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -15, 0, 1);
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  85.71428571428571% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 10, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 10, 0, 1);
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    opacity: 1;
  }
}

@-webkit-keyframes fromNone {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  81% {
    opacity: 1;
  }
}

@keyframes fromNone {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  81% {
    opacity: 1;
  }
}

@-webkit-keyframes fromNoneToHalf {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}

@keyframes fromNoneToHalf {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}

@-webkit-keyframes fromNoneToQuart {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.25;
  }
}

@keyframes fromNoneToQuart {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.25;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes downAndOut {
  from {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}

@keyframes downAndOut {
  from {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}

@-webkit-keyframes listScrollFromRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  75% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes listScrollFromRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  75% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes listScrollFromLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  75% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes listScrollFromLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  75% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes hideThenShow {
  0% {
    opacity: 0.5;
  }
  25% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes hideThenShow {
  0% {
    opacity: 0.5;
  }
  25% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}

.hero {
  height: 100%;
  width: 100%;
  position: relative;
}

.hero:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 78%;
  background: #efefef;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  transition: -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
}

.hero .hero__contentWrapper {
  background-color: #efefef;
  width: 100%;
  height: 1000px;
  max-height: 78%;
  position: relative;
  text-align: center;
  display: table;
  transition: opacity 0ms;
  transition-delay: 650ms;
}

.hero .hero__contentWrapper .hero__content {
  max-width: 80%;
  width: 100%;
  display: table-cell;
  vertical-align: middle;
  position: relative;
  padding: 4% 10% 0%;
}

.hero .hero__contentWrapper .hero__content .hero__headline {
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1px;
  transition: opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition-delay: 1500ms;
}

@media (min-width: 950px) {
  .hero .hero__contentWrapper .hero__content .hero__headline {
    font-size: 40px;
    line-height: 50px;
  }
}

.hero .hero__contentWrapper .hero__content .hero__subline {
  font-family: "Palanquin", sans-serif;
  font-size: 13px;
  line-height: 25px;
  margin-top: 15px;
  transition: opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition-delay: 1750ms;
}

@media (min-width: 950px) {
  .hero .hero__contentWrapper .hero__content .hero__subline {
    font-size: 16px;
    line-height: 30px;
  }
}

.hero .hero__contentWrapper .hero__content .hero__email-link {
  display: block;
  margin-top: 20px;
  font-family: "Palanquin", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 1px;
  color: #898989;
  text-decoration: none;
  transition: opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition-delay: 1650ms;
}

@media (min-width: 950px) {
  .hero .hero__contentWrapper .hero__content .hero__email-link {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 1px;
    margin: 55px 0 50px;
    color: rgba(137, 137, 137, 0.75);
  }
}

.hero .hero__scroll {
  width: 100%;
  height: 22%;
  display: table;
}

.hero .hero__scroll a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.hero .hero__scroll .hero__scrollIcon {
  transition: opacity 500ms;
  transition-delay: 2000ms;
}

.hero .hero__scroll .scroll__icon {
  width: 45px;
  height: 45px;
  -webkit-animation: scrollBounce 3000ms infinite;
          animation: scrollBounce 3000ms infinite;
}

.hero--about, .hero--contact {
  height: 78%;
}

@media (min-width: 950px) {
  .hero--about, .hero--contact {
    height: 70%;
  }
}

.hero--about:before, .hero--contact:before {
  height: 100%;
}

@media (min-width: 950px) {
  .hero--about:before, .hero--contact:before {
    height: 100%;
  }
}

.hero--about .hero__contentWrapper, .hero--contact .hero__contentWrapper {
  max-height: 100%;
}

@media (min-width: 950px) {
  .hero--about .hero__contentWrapper, .hero--contact .hero__contentWrapper {
    max-height: 100%;
  }
}

.hero--about .hero__scroll, .hero--contact .hero__scroll {
  display: none;
}

.work .hero {
  min-height: 100%;
}

@media (max-width: 951px) {
  .work .hero {
    height: auto;
  }
}

.work .hero .hero__content {
  max-width: none;
}

.work .hero:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 125%;
  top: 0px;
  background: #efefef;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  transition: -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  z-index: -2;
}

.work .hero:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: #ffffff;
  z-index: -1;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  transition: -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition-delay: 750ms;
}

.work .hero .hero__contentWrapper {
  height: 100%;
  max-height: none;
  background: #ffffff;
  transition-delay: 1400ms;
  padding: 50px 0;
}

@media (min-width: 950px) {
  .work .hero .hero__contentWrapper {
    padding: 0;
  }
}

.work .hero .hero__contentWrapper .hero__content {
  height: 100%;
}

.work .hero .hero__contentWrapper .hero__content .hero__work-title {
  transition: opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition-delay: 2000ms;
}

.work .hero .hero__contentWrapper .hero__content .hero__work-description {
  transition: opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition-delay: 2250ms;
}

.work .hero .hero__contentWrapper .hero__content .hero__work-copy {
  margin-bottom: 20px;
}

.hero__background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  opacity: 0;
  -webkit-animation: fromNoneToHalf 1000ms;
          animation: fromNoneToHalf 1000ms;
  -webkit-animation-delay: 1250ms;
          animation-delay: 1250ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  overflow: hidden;
}

.hero__background--is-hidden {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@media (max-width: 951px) {
  .hero__background--landing {
    -webkit-animation-delay: 1500ms;
            animation-delay: 1500ms;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    background: url("../video/home.gif") no-repeat;
    background-size: cover;
    background-position: 50% 50%;
  }
}

@media (max-width: 951px) {
  .hero__background--about {
    -webkit-animation-delay: 1500ms;
            animation-delay: 1500ms;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    background: url("../video/about.gif") no-repeat;
    background-size: cover;
    background-position: 50% 50%;
  }
}

@media (max-width: 951px) {
  .hero__background--contact {
    -webkit-animation-delay: 1500ms;
            animation-delay: 1500ms;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    background: url("../video/contact.gif") no-repeat;
    background-size: cover;
    background-position: 50% 50%;
  }
}

.hero__background .hero__backgroundVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  opacity: 0.5;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  transition: 1s opacity;
}

.hero__background .hero__backgroundVideo--is-hidden {
  opacity: 0;
}

@media (max-width: 951px) {
  .hero__background .hero__backgroundVideo {
    display: none;
  }
}

.navigation {
  position: relative;
  z-index: 10;
}

@media (min-width: 950px) {
  .navigation {
    position: fixed;
  }
}

.nav__logoContainer {
  position: absolute;
  text-align: center;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  overflow: hidden;
  transition: opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, opacity cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s, -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1) 0.65s;
  transition-delay: 0ms;
}

@media (min-width: 950px) {
  .nav__logoContainer {
    position: fixed;
    top: 40px;
  }
}

.nav__logoContainer:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.nav__logoContainer--initial-delay {
  transition-delay: 1250ms;
}

.nav__logoContainer .svgLogo {
  display: block;
  height: 28px;
  margin: 0 auto;
  transition: opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1), -webkit-transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
  transition: transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1), opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
  transition: transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1), opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1), -webkit-transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
}

.nav__logoContainer .svgLogo:first-child {
  margin-top: -30px;
  opacity: 0;
}

@media (min-width: 950px) {
  .nav__logoContainer .svgLogo {
    height: 35px;
  }
  .nav__logoContainer .svgLogo:first-child {
    margin-top: -40px;
  }
}

.nav__logoContainer--collapsed .svgLogo {
  -webkit-transform: translateY(35px);
      -ms-transform: translateY(35px);
          transform: translateY(35px);
}

.nav__logoContainer--collapsed .svgLogo:first-child {
  opacity: 1;
}

.nav__logoContainer--collapsed .svgLogo:nth-child(2) {
  opacity: 0;
}

.nav__logoContainer--collapsed:hover .svgLogo {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

.nav__logoContainer--collapsed:hover .svgLogo:first-child {
  opacity: 0;
}

.nav__logoContainer--collapsed:hover .svgLogo:nth-child(2) {
  opacity: 1;
}

.nav__about, .nav__contact {
  display: none;
}

@media (min-width: 950px) {
  .nav__about, .nav__contact {
    padding: 40px;
    position: fixed;
    display: block;
    z-index: 10;
    font-family: "Josefin Sans", sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    text-align: center;
    cursor: pointer;
    transition: opacity 650ms cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
    transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), opacity 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
    transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), opacity 650ms cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
    transition-delay: 950ms;
  }
  .nav__about .aboutEl__1, .nav__about .aboutEl__2, .nav__contact .aboutEl__1, .nav__contact .aboutEl__2 {
    display: block;
    transition: opacity 250ms, -webkit-transform 250ms;
    transition: opacity 250ms, transform 250ms;
    transition: opacity 250ms, transform 250ms, -webkit-transform 250ms;
  }
  .nav__about .aboutEl__2, .nav__contact .aboutEl__2 {
    opacity: 0;
  }
  .nav__about:hover .aboutEl__1, .nav__contact:hover .aboutEl__1 {
    opacity: 0;
    -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  .nav__about:hover .aboutEl__2, .nav__contact:hover .aboutEl__2 {
    opacity: 1;
    -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  .nav__about .contactEl__1, .nav__about .contactEl__2, .nav__contact .contactEl__1, .nav__contact .contactEl__2 {
    display: block;
    transition: opacity 250ms, -webkit-transform 250ms;
    transition: opacity 250ms, transform 250ms;
    transition: opacity 250ms, transform 250ms, -webkit-transform 250ms;
  }
  .nav__about .contactEl__2, .nav__contact .contactEl__2 {
    opacity: 0;
  }
  .nav__about:hover .contactEl__1, .nav__contact:hover .contactEl__1 {
    opacity: 0;
    -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  .nav__about:hover .contactEl__2, .nav__contact:hover .contactEl__2 {
    opacity: 1;
    -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

.nav__about {
  display: none;
}

@media (min-width: 950px) {
  .nav__about {
    display: block;
    top: 50%;
    left: -52px;
    -webkit-transform: translateY(-50%) rotate(-90deg);
        -ms-transform: translateY(-50%) rotate(-90deg);
            transform: translateY(-50%) rotate(-90deg);
  }
}

.nav__contact {
  display: none;
}

@media (min-width: 950px) {
  .nav__contact {
    display: block;
    top: 50%;
    right: -52px;
    -webkit-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
}

.nav__hamburger {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #252525;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 12;
  transition: background 250ms, opacity 250ms, -webkit-transform 500ms ease-in-out;
  transition: background 250ms, opacity 250ms, transform 500ms ease-in-out;
  transition: background 250ms, opacity 250ms, transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
}

.nav__hamburger--is-visible {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.nav__hamburger span {
  position: absolute;
  width: 20px;
  height: 3px;
  background: #ffffff;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: 250ms background, 250ms transform;
}

.nav__hamburger span.top {
  margin-top: -7px;
}

.nav__hamburger span.mid {
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
}

.nav__hamburger span.bottom {
  margin-top: 7px;
}

.nav__hamburger--is-active {
  background: #ffffff;
}

.nav__hamburger--is-active span {
  background: #252525;
}

.nav__hamburger--is-active span.top {
  opacity: 0;
}

.nav__hamburger--is-active span:nth-child(2) {
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.nav__hamburger--is-active span:nth-child(3) {
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.nav__hamburger--is-active span.bottom {
  opacity: 0;
}

@media (min-width: 950px) {
  .nav__hamburger {
    display: none;
  }
}

.nav__mobile {
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  z-index: 11;
  background: #efefef;
  transition: -webkit-transform 350ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 350ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 350ms cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 350ms cubic-bezier(0.07, 0.34, 0.15, 1);
}

.nav__mobile .svgLogo {
  height: 28px;
  width: 100%;
  margin-top: 35px;
  opacity: 0;
  transition: opacity 500ms;
  transition-delay: 1000ms;
}

.nav__mobile .mobile__navContainer {
  width: 100%;
  padding: 0 40px;
  position: absolute;
  top: 48%;
  -webkit-transform: translateY(-48%);
      -ms-transform: translateY(-48%);
          transform: translateY(-48%);
  text-align: center;
  list-style: none;
}

.nav__mobile .mobile__navContainer .mobile__navEl {
  display: block;
}

.nav__mobile .mobile__navContainer .mobile__navEl a {
  width: 100%;
  padding: 40px 0;
  display: block;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 3px;
  color: #252525;
  text-decoration: none;
  opacity: 0;
  transition: opacity 500ms;
  transition-delay: 1000ms;
}

.nav__mobile .mobile__navContainer .mobile__divider {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}

.nav__mobile .mobile__navContainer .mobile__divider:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #efefef;
  left: 0;
  transition: -webkit-transform 250ms;
  transition: transform 250ms;
  transition: transform 250ms, -webkit-transform 250ms;
}

.nav__mobile .mobile__navContainer .mobile__divider:nth-child(2):after {
  transition-delay: 450ms;
}

.nav__mobile .mobile__navContainer .mobile__divider:nth-child(4):after {
  transition-delay: 650ms;
}

.nav__mobile--is-active {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}

.nav__mobile--is-active .svgLogo {
  opacity: 1;
}

.nav__mobile--is-active .mobile__navContainer .mobile__navEl a {
  opacity: 1;
}

.nav__mobile--is-active .mobile__navContainer .mobile__divider:after {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

@media (min-width: 950px) {
  .nav__mobile {
    display: none;
  }
}

.subnav {
  position: relative;
}

@media (max-width: 951px) {
  .subnav {
    padding-bottom: 28px;
    z-index: 1;
  }
  .subnav:after {
    content: "";
    width: calc(100% - 80px);
    height: 1px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    position: absolute;
    background: rgba(37, 37, 37, 0.3);
  }
}

@media (min-width: 950px) {
  .subnav {
    height: 75px;
    padding-bottom: 0px;
  }
}

.subnav .subnav__wrapper {
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  transition: -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
}

@media (min-width: 950px) {
  .subnav .subnav__wrapper {
    position: absolute;
    left: 0;
    right: 0;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 600px;
    padding: 0 10px;
  }
}

.subnav .subnav__wrapper .subnavEl {
  font-family: "Palanquin", sans-serif;
  font-size: 13px;
  padding: 8px 0;
  cursor: pointer;
  width: 100%;
}

.subnav .subnav__wrapper .subnavEl--is-active, .subnav .subnav__wrapper .subnavEl:hover {
  font-weight: 700;
}

@media (min-width: 950px) {
  .subnav .subnav__wrapper .subnavEl {
    width: 100%;
    display: inline-block;
    padding: 30px 0px;
    position: relative;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .subnav .subnav__wrapper .subnavEl:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
  }
}

.subnav__filterTitleEl {
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  z-index: 10;
  text-decoration: none;
  color: #252525;
  -webkit-transform: translateY(-40px);
      -ms-transform: translateY(-40px);
          transform: translateY(-40px);
  transition: -webkit-transform 250ms cubic-bezier(0.64, 0.01, 0.27, 1);
  transition: transform 250ms cubic-bezier(0.64, 0.01, 0.27, 1);
  transition: transform 250ms cubic-bezier(0.64, 0.01, 0.27, 1), -webkit-transform 250ms cubic-bezier(0.64, 0.01, 0.27, 1);
}

.subnav__filterTitleEl .subnav__filterTitle {
  font-size: 12px;
  letter-spacing: 3px;
  line-height: 40px;
  text-align: center;
  vertical-align: middle;
}

.subnav__filterTitleEl .subnav__filterTitleIcon {
  width: 25px;
  height: 15px;
  fill: #252525;
  vertical-align: middle;
  -webkit-transform: rotate(-180deg) translateY(2px);
      -ms-transform: rotate(-180deg) translateY(2px);
          transform: rotate(-180deg) translateY(2px);
}

.subnav__filterTitleEl--is-active {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

@media (min-width: 950px) {
  .subnav__filterTitleEl {
    display: none;
  }
}

@media (min-width: 950px) {
  .filter-locked .subnav__wrapper {
    position: fixed;
    top: 80px;
    z-index: 1;
  }
}

.workmain {
  width: 100%;
}

.workmain .work__element {
  width: 100%;
  max-width: 1000px;
  margin: 70px auto;
  padding: 0 40px;
  position: relative;
  cursor: pointer;
  transition: opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1), max-height 500ms cubic-bezier(0.64, 0.01, 0.27, 1), -webkit-transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
  transition: transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1), opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1), max-height 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
  transition: transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1), opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1), max-height 500ms cubic-bezier(0.64, 0.01, 0.27, 1), -webkit-transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
}

.workmain .work__element:not(:first-child) {
  margin: 120px auto 0;
}

.workmain .work__element:last-child {
  margin: 120px auto 0;
}

.workmain .work__element--hidden {
  opacity: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
}

@media (min-width: 950px) {
  .workmain .work__element--hidden .work__descWrapper {
    -webkit-transform: translateY(60px);
        -ms-transform: translateY(60px);
            transform: translateY(60px);
  }
  .workmain .work__element--hidden .work__imageWrapper {
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
  }
}

.workmain .work__element:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media (min-width: 950px) {
  .workmain .work__element {
    width: calc(100% - 20vw);
  }
  .workmain .work__element:not(:first-child) {
    margin: 10% auto 20px auto;
  }
  .workmain .work__element:nth-child(odd) .work__image {
    display: inline-block;
  }
  .workmain .work__element:nth-child(even) .work__descWrapper {
    position: absolute;
    right: 0;
  }
  .workmain .work__element:nth-child(even) .work__descWrapper .work__desc {
    text-align: right;
  }
  .workmain .work__element:nth-child(even) .work__imageWrapper {
    position: relative;
  }
}

@media (min-width: 1200px) {
  .workmain .work__element {
    padding: 0px;
  }
}

@media (min-width: 950px) {
  .workmain .work__descWrapper {
    width: 60%;
    height: 376px;
    text-align: left;
    display: table;
    pointer-events: none;
    transition: -webkit-transform 500ms ease-out 150ms;
    transition: transform 500ms ease-out 150ms;
    transition: transform 500ms ease-out 150ms, -webkit-transform 500ms ease-out 150ms;
  }
}

.workmain .work__descWrapper .work__desc {
  text-align: center;
  margin-bottom: 30px;
}

@media (min-width: 950px) {
  .workmain .work__descWrapper .work__desc {
    display: table-cell;
    text-align: left;
    vertical-align: middle;
    transition: -webkit-transform 500ms ease-out;
    transition: transform 500ms ease-out;
    transition: transform 500ms ease-out, -webkit-transform 500ms ease-out;
  }
}

.workmain .work__descWrapper .work__desc h1 {
  font-size: 23px;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4.6px;
  line-height: 30px;
}

@media (min-width: 950px) {
  .workmain .work__descWrapper .work__desc h1 {
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 10px;
  }
}

.workmain .work__descWrapper .work__desc ul {
  list-style: none;
}

.workmain .work__descWrapper .work__desc li {
  display: inline-block;
  font-size: 13px;
  font-family: "Palanquin", sans-serif;
  margin-right: 15px;
  text-indent: 3px;
}

@media (min-width: 950px) {
  .workmain .work__descWrapper .work__desc li {
    font-size: 16px;
  }
}

.workmain .work__imageWrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 950px) {
  .workmain .work__imageWrapper {
    position: absolute;
    width: 60%;
    top: 0;
    right: 0;
    z-index: -1;
    text-align: left;
    transition: -webkit-transform 500ms ease-out;
    transition: transform 500ms ease-out;
    transition: transform 500ms ease-out, -webkit-transform 500ms ease-out;
  }
  .workmain .work__imageWrapper:nth-child(2) {
    text-align: right;
  }
}

.workmain .work__imageWrapper .work__image {
  width: 100%;
  transition: -webkit-transform 500ms ease-out;
  transition: transform 500ms ease-out;
  transition: transform 500ms ease-out, -webkit-transform 500ms ease-out;
  overflow: hidden;
}

.workmain .work__imageWrapper .work__image .work__imageEl {
  width: 100%;
  opacity: 0.8;
  -webkit-transform-origin: 50% 0%;
      -ms-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
  transition: -webkit-transform 500ms ease-out;
  transition: transform 500ms ease-out;
  transition: transform 500ms ease-out, -webkit-transform 500ms ease-out;
}

@media (min-width: 950px) {
  .workmain .work__imageWrapper .work__image {
    max-width: 540px;
  }
}

.workmain .work__imageWrapper .work__logo {
  position: absolute;
  transition: -webkit-transform 500ms ease-out;
  transition: transform 500ms ease-out;
  transition: transform 500ms ease-out, -webkit-transform 500ms ease-out;
}

@media (min-width: 950px) {
  .work__element:hover:nth-child(odd) .work__image {
    -webkit-transform: translateX(-10px) scale(1.025);
        -ms-transform: translateX(-10px) scale(1.025);
            transform: translateX(-10px) scale(1.025);
  }
  .work__element:hover:nth-child(odd) .work__logo, .work__element:hover:nth-child(odd) .work__desc {
    -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
            transform: translateX(10px);
  }
  .work__element:hover:nth-child(even) .work__image {
    -webkit-transform: translateX(10px) scale(1.025);
        -ms-transform: translateX(10px) scale(1.025);
            transform: translateX(10px) scale(1.025);
  }
  .work__element:hover:nth-child(even) .work__logo, .work__element:hover:nth-child(even) .work__desc {
    -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}

.work .hero__contentWrapper {
  height: 100%;
  max-height: 100%;
  background: #ffffff;
}

.work .hero__contentWrapper .hero__content {
  padding: 5% 15%;
}

.work .hero__work-title .hero__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 23px;
  text-transform: uppercase;
  line-height: 35px;
  letter-spacing: 4.6px;
  margin-top: 60px;
  opacity: 1;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  transition: opacity cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), opacity cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), opacity cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
}

@media (min-width: 950px) {
  .work .hero__work-title .hero__title {
    font-size: 45px;
    line-height: 35px;
    letter-spacing: 7px;
    display: block;
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .work .hero__work-title .hero__title {
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 10px;
  }
}

.work .hero__work-title .hero__subtitle {
  font-family: "Palanquin", sans-serif;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  opacity: 1;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  transition: opacity cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), opacity cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), opacity cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
}

@media (min-width: 950px) {
  .work .hero__work-title .hero__subtitle {
    display: block;
    text-align: left;
    padding: 10px 0 0;
  }
}

@media (min-width: 950px) {
  .work .hero__work-title {
    width: 50%;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
  }
}

.work .hero__work-description {
  width: 100%;
  text-align: left;
  margin-top: 40px;
  display: block;
  transition: opacity cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), opacity cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), opacity cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
}

.work .hero__work-description p {
  font-family: "Palanquin", sans-serif;
  font-size: 14px;
  line-height: 25px;
  font-weight: 300;
}

@media (min-width: 950px) {
  .work .hero__work-description p {
    font-size: 16px;
    line-height: 30px;
  }
}

.work .hero__work-description a {
  color: #252525;
}

@media (min-width: 950px) {
  .work .hero__work-description {
    width: 50%;
    padding: 0;
    display: inline-block;
    float: right;
  }
}

.work .hero__work-readon {
  width: 100%;
  padding: 15px 0;
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-decoration: none;
  text-align: left;
  color: #252525;
}

.work .hero__sub-description,
.work .hero__sub-status {
  width: 75%;
  margin-bottom: 10px;
  color: #9b9b9b;
  font-family: "Palanquin", sans-serif;
  font-size: 13px;
  line-height: 20px;
}

.work__wrapper {
  background: #efefef;
  text-align: center;
  padding: 0 0 60px;
}

@media (min-width: 950px) {
  .work__wrapper {
    padding: 0 15% 100px;
  }
}

.work__wrapper .work__image {
  width: 100%;
  max-width: 1000px;
  padding-top: 60px;
  transition: opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1), -webkit-transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
  transition: transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1), opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
  transition: transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1), opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1), -webkit-transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
}

@media (min-width: 950px) {
  .work__wrapper .work__image {
    padding: 100px 0 0;
  }
}

.work__wrapper .work__image--hidden {
  opacity: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
}

.work__wrapper .work__video-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: 0;
  position: relative;
  margin-top: 60px;
  padding-bottom: 56.25%;
  height: 0;
  transition: opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1), -webkit-transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
  transition: transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1), opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
  transition: transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1), opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1), -webkit-transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
}

@media (min-width: 950px) {
  .work__wrapper .work__video-wrapper {
    margin-top: 100px;
  }
}

.work__wrapper .work__video-wrapper--hidden {
  opacity: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
}

.work__wrapper .work__video-wrapper .work__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.copyblock {
  width: 100%;
  background: #ffffff;
  transition: opacity cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), opacity cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), opacity cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition-delay: 1750ms;
}

.copyblock .copyblock__wrapper {
  display: block;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  padding: 45px 40px 0;
}

@media (min-width: 950px) {
  .copyblock .copyblock__wrapper {
    padding: 90px 0 0;
  }
}

.copyblock .copyblock__wrapper .copyblock__copy {
  font-family: "Palanquin", sans-serif;
  font-size: 13px;
  line-height: 25px;
  margin-bottom: 20px;
  transition: opacity cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), opacity cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), opacity cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
}

@media (min-width: 950px) {
  .copyblock .copyblock__wrapper .copyblock__copy {
    font-size: 16px;
    line-height: 35px;
    margin-bottom: 30px;
  }
}

.copyblock__downloadWrapper {
  width: 100%;
  display: table;
  text-align: center;
  padding: 40px 0 80px;
}

.copyblock__downloadWrapper .download__resume {
  display: table-cell;
  vertical-align: middle;
  height: 55px;
}

.copyblock__downloadWrapper .download__resume .download__copy {
  width: 100%;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  line-height: 55px;
  letter-spacing: 3px;
  text-decoration: none;
  color: #252525;
  border: solid 1px #979797;
  overflow: hidden;
}

.copyblock__downloadWrapper .download__resume .download__copy span {
  position: relative;
  z-index: 1;
}

@media (min-width: 950px) {
  .copyblock__downloadWrapper .download__resume .download__copy {
    width: 260px;
    font-size: 14px;
    line-height: 55px;
    padding-top: 3px;
    transition: color 350ms cubic-bezier(0.07, 0.34, 0.15, 1);
  }
}

.copyblock__downloadWrapper .download__resume .download__copy:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #252525;
  left: 0;
  top: 100%;
  transition: -webkit-transform 350ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 350ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 350ms cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 350ms cubic-bezier(0.07, 0.34, 0.15, 1);
}

.copyblock__downloadWrapper .download__resume .download__copy:hover {
  color: #ffffff;
}

.copyblock__downloadWrapper .download__resume .download__copy:hover:before {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.scroll__top {
  width: 100%;
  height: 22%;
  display: table;
  margin: 140px 0 120px;
}

.scroll__top .scroll__indicator {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: #252525;
}

.scroll__top .scroll__indicator .scroll__icon {
  width: 45px;
  height: 45px;
  margin-bottom: 25px;
}

.morework {
  width: 100%;
  transition: opacity 650ms cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), opacity 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), opacity 650ms cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
}

.morework__header {
  width: 100%;
  padding: 51px 0;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  text-align: center;
}

@media (min-width: 950px) {
  .morework__header {
    font-size: 25px;
    line-height: 50px;
    letter-spacing: 1px;
    padding: 118px 0 65px;
  }
}

.morework__list {
  width: 100%;
  padding: 0 40px;
  overflow: scroll;
  position: relative;
}

.morework__listEl {
  width: 100%;
  font-size: 0;
  white-space: nowrap;
}

@media (min-width: 950px) {
  .morework__listEl {
    max-width: 940px;
    height: 290px;
    padding: 0 40px;
    margin: 0 auto 200px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.morework__listEl--scroll-right {
  -webkit-animation: listScrollFromRight 1000ms ease-in-out;
          animation: listScrollFromRight 1000ms ease-in-out;
}

.morework__listEl--scroll-left {
  -webkit-animation: listScrollFromLeft 1000ms ease-in-out;
          animation: listScrollFromLeft 1000ms ease-in-out;
}

.morework__workEL {
  display: inline-block;
  position: relative;
  text-align: center;
  width: 100%;
  margin-bottom: 80px;
  margin-right: 30px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (min-width: 950px) {
  .morework__workEL {
    width: 250px;
    margin: 0;
  }
  .morework__workEL:nth-child(n+4) {
    display: none;
  }
}

.morework__workEL:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.morework__workEL a {
  text-decoration: none;
  color: #252525;
}

@media (min-width: 950px) {
  .morework__workEL .morework__titleWrap {
    display: block;
    height: 70px;
    position: relative;
  }
}

.morework__workEL h1 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 23px;
  line-height: 35px;
  letter-spacing: 4.6px;
  white-space: normal;
}

@media (min-width: 950px) {
  .morework__workEL h1 {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 3px;
    padding-bottom: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

.morework__workEL h3 {
  font-family: "Palanquin", sans-serif;
  font-size: 13px;
  line-height: 25px;
  font-weight: 300;
  margin-bottom: 30px;
}

.morework__workEL h3:last-child {
  margin-right: 40px;
}

.morework__workEL:hover .morework__imageEl {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.morework__image {
  width: 100%;
  position: relative;
}

.morework__thumbWrap {
  display: block;
  overflow: hidden;
}

.morework__imageEl {
  width: 100%;
  opacity: 0.7;
  transition: -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
  transition: transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1), -webkit-transform 650ms cubic-bezier(0.07, 0.34, 0.15, 1);
}

.morework__logo {
  position: absolute;
}

.morework__controls {
  position: absolute;
  width: 100%;
  max-width: 940px;
  padding: 0 40px;
  margin: 0 auto;
  top: 45%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-45%);
      -ms-transform: translateY(-45%);
          transform: translateY(-45%);
}

.morework__controls .morework__arrow {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: -webkit-transform 250ms ease-out;
  transition: transform 250ms ease-out;
  transition: transform 250ms ease-out, -webkit-transform 250ms ease-out;
}

.morework__controls .morework__arrow-left {
  position: absolute;
  top: 65%;
  left: -20px;
  -webkit-transform: translateY(-65%) rotate(90deg);
      -ms-transform: translateY(-65%) rotate(90deg);
          transform: translateY(-65%) rotate(90deg);
}

.morework__controls .morework__arrow-left:hover .morework__arrow {
  opacity: 0.75;
}

.morework__controls .morework__arrow-right {
  position: absolute;
  top: 65%;
  right: -20px;
  -webkit-transform: translateY(-65%) rotate(-90deg);
      -ms-transform: translateY(-65%) rotate(-90deg);
          transform: translateY(-65%) rotate(-90deg);
}

.morework__controls .morework__arrow-right:hover .morework__arrow {
  opacity: 0.75;
}

@media (max-width: 951px) {
  .morework__controls {
    display: none;
  }
}

.footer {
  width: 100%;
  height: 50px;
  transition: opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1), -webkit-transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
  transition: transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1), opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
  transition: transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1), opacity 500ms cubic-bezier(0.64, 0.01, 0.27, 1), -webkit-transform 500ms cubic-bezier(0.64, 0.01, 0.27, 1);
  transition-delay: 1800ms;
}

@media (min-width: 950px) {
  .footer {
    display: table;
    text-align: center;
  }
  .footer--contact {
    height: 20%;
    position: absolute;
    bottom: 0;
  }
  .footer--contact .footer__wrapper {
    display: table-cell;
    vertical-align: middle;
  }
}

.footer p {
  display: block;
  vertical-align: middle;
  font-family: "Palanquin", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 25px;
  text-align: center;
}

@media (min-width: 950px) {
  .footer p {
    display: inline;
    padding: 0 15px;
  }
}

.footer a {
  text-decoration: none;
  color: #898989;
}

.footer .footer__wrapper {
  margin-bottom: 26px;
}

.contact .footer {
  height: 20%;
  position: relative;
}

@media (min-width: 950px) {
  .contact .footer .footer__wrapper {
    display: table-cell;
    vertical-align: middle;
  }
}

@media (max-width: 951px) {
  .contact .footer .footer__wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
  }
}
