@-webkit-keyframes slideInFromBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 32px);
    transform: translate(0, 32px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 32px);
    transform: translate(0, 32px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html, body {
  height: 100%;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #FFF;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.5px;
}

a {
  color: #323232;
}

strong {
  font-weight: 700;
  color: #03090C;
}

h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -2.5px;
  color: #03090C;
  margin: 0;
  padding: 0;
}
h1 span {
  color: #EB5E55;
}

p {
  margin-top: 0;
}

.overline {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #707070;
}

button, .button {
  color: white;
  background-color: transparent;
  position: relative;
  padding: 0 32px;
  line-height: 56px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
}
button svg, .button svg {
  padding-left: 4px;
}
button:after, .button:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
button.primary:after, .button.primary:after {
  background-color: #EB5E55;
  -webkit-box-shadow: 0px 20px 40px rgba(235, 94, 85, 0.24);
          box-shadow: 0px 20px 40px rgba(235, 94, 85, 0.24);
}
button.primary:hover:after, .button.primary:hover:after {
  background-color: #ed6f67;
}
button.primary:active:after, .button.primary:active:after {
  background-color: #e94d43;
}
button:hover:after, .button:hover:after {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
button:active:after, .button:active:after {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}
button.outline, .button.outline {
  color: #111;
}
button.outline:after, .button.outline:after {
  background-color: transparent;
  border: 1px solid #111;
}
button.outline:hover, .button.outline:hover {
  color: #323232;
}
button.outline:hover:after, .button.outline:hover:after {
  border: 2px solid #323232;
}

.block {
  max-width: 1328px;
  margin: 0 auto;
}

.fluid {
  max-width: 100%;
  margin: 0;
}

.extended-divider {
  padding-bottom: 56px;
  position: relative;
}
.extended-divider .divider {
  position: absolute;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: #E5E5E5;
  width: calc((calc((100% - calc(24px * 13)) / 12) * 12) + 24px * 12);
}
@media screen and (min-width: 440px) {
  .extended-divider .divider {
    width: calc((calc((100% - calc(24px * 13)) / 12) * 12) + 24px * 12);
  }
}
@media screen and (min-width: 1024px) {
  .extended-divider .divider {
    width: calc((calc((100% - calc(32px * 13)) / 12) * 12) + 32px * 12);
  }
}
@media screen and (min-width: 1328px) {
  .extended-divider .divider {
    width: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 12) + 32px * 12));
  }
}

@media screen and (min-width: 440px) {
  .extended-divider {
    padding-bottom: 88px;
  }
  .extended-divider .divider {
    width: calc((calc((100% - calc(24px * 13)) / 12) * 11) + 24px * 11);
  }
}
@media screen and (min-width: 440px) and (min-width: 440px) {
  .extended-divider .divider {
    width: calc((calc((100% - calc(24px * 13)) / 12) * 11) + 24px * 11);
  }
}
@media screen and (min-width: 440px) and (min-width: 1024px) {
  .extended-divider .divider {
    width: calc((calc((100% - calc(32px * 13)) / 12) * 11) + 32px * 11);
  }
}
@media screen and (min-width: 440px) and (min-width: 1328px) {
  .extended-divider .divider {
    width: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 11) + 32px * 11));
  }
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 72px;
    line-height: 80px;
    letter-spacing: -3.5px;
  }

  .extended-divider {
    padding-bottom: 120px;
  }
}
/* Custom helpful mixins & variables */
/* Custom and helpful mixins */
/* Custom and helpful mixins */
header {
  background-color: #FFF;
  -webkit-box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1000;
}
header.see-through {
  background-color: transparent;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
header .inner {
  line-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .inner .logo {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}
header .inner .logo a {
  display: block;
}
header .inner .logo a svg {
  fill: #03090C;
  -webkit-transition: all ease-in-out 80ms;
  transition: all ease-in-out 80ms;
}
header .inner .logo a:hover svg, header .inner .logo a:focus svg {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
header .inner .navigation {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
header .inner .navigation .nav-icon {
  width: 72px;
  height: 100%;
  text-align: center;
  font-size: 24px;
  line-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color ease-in-out 300ms;
  transition: background-color ease-in-out 300ms;
  cursor: pointer;
}
header .inner .navigation .nav-icon .bars {
  width: 24px;
  height: 24px;
  position: relative;
}
header .inner .navigation .nav-icon .bars .bar-1, header .inner .navigation .nav-icon .bars .bar-2 {
  position: absolute;
  margin-top: 50%;
  width: 24px;
  height: 2px;
  background-color: #03090C;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
header .inner .navigation .nav-icon .bars .bar-1 {
  top: -5px;
}
header .inner .navigation .nav-icon .bars .bar-2 {
  top: 5px;
}
header .inner .navigation .links-wrapper {
  background-color: #03090C;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity ease-in-out 300ms;
  transition: opacity ease-in-out 300ms;
}
header .inner .navigation .links-wrapper ul.links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 56px 0;
}
header .inner .navigation .links-wrapper ul.links li {
  list-style-type: none;
  position: relative;
}
header .inner .navigation .links-wrapper ul.links li + li {
  margin-left: 0px;
  margin-top: 16px;
}
header .inner .navigation .links-wrapper ul.links li a {
  display: block;
  text-decoration: none;
  padding: 0 0 0 72px;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -2px;
  color: #CCC;
  -webkit-transition: color ease 150ms;
  transition: color ease 150ms;
}
header .inner .navigation .links-wrapper ul.links li a:hover, header .inner .navigation .links-wrapper ul.links li a:focus {
  color: #FFF;
}
header .inner .navigation .links-wrapper ul.links li a.active {
  font-weight: 600;
  color: #FFF;
}
header .inner .navigation .links-wrapper ul.links li a.active:after {
  content: "";
  display: block;
  position: absolute;
  width: 48px;
  height: 4px;
  background-color: #EB5E55;
  left: 0px;
  top: 50%;
  -webkit-box-shadow: 0px 0px 24px 1px rgba(235, 94, 85, 0.88);
          box-shadow: 0px 0px 24px 1px rgba(235, 94, 85, 0.88);
}
header .inner .navigation.active .nav-icon {
  background-color: #03090C;
}
header .inner .navigation.active .nav-icon .bars .bar-1, header .inner .navigation.active .nav-icon .bars .bar-2 {
  background-color: #FFF;
}
header .inner .navigation.active .nav-icon .bars .bar-1 {
  top: -1px;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
header .inner .navigation.active .nav-icon .bars .bar-2 {
  top: -1px;
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
}
header .inner .navigation.active .links-wrapper {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
header .inner .email {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
header .inner .email .icon {
  width: 72px;
  text-align: center;
  font-size: 24px;
  line-height: 80px;
}
header .inner .email .email-string {
  color: #707070;
  display: none;
}
header.dark-bg .inner .email a {
  color: #FFF;
}
header.dark-bg .navigation .nav-icon .bars .bar-1, header.dark-bg .navigation .nav-icon .bars .bar-2 {
  background-color: #FFF;
}

@media screen and (min-width: 768px) {
  header .inner {
    line-height: 120px;
    padding: 0 48px;
  }
  header .inner .logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  header .inner .logo a img {
    width: 29px;
  }
  header .inner .navigation {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-left: 48px;
  }
  header .inner .navigation .nav-icon {
    display: none;
  }
  header .inner .navigation .links-wrapper {
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    background-color: transparent;
    display: block;
    position: relative;
    width: auto;
  }
  header .inner .navigation .links-wrapper ul.links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
  }
  header .inner .navigation .links-wrapper ul.links li + li {
    margin-left: 24px;
    margin-top: 0;
  }
  header .inner .navigation .links-wrapper ul.links li a {
    padding: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 120px;
    letter-spacing: -0.5px;
    color: #707070;
  }
  header .inner .navigation .links-wrapper ul.links li a:hover, header .inner .navigation .links-wrapper ul.links li a:focus {
    color: #03090C;
  }
  header .inner .navigation .links-wrapper ul.links li a.active {
    font-weight: 600;
    color: #03090C;
  }
  header .inner .navigation .links-wrapper ul.links li a.active:after {
    content: "";
    width: 24px;
    height: 6px;
    left: 0px;
    top: 0px;
  }
  header .inner .email {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: right;
  }
  header .inner .email .icon {
    display: none;
  }
  header .inner .email .email-string {
    display: block;
  }
  header.dark-bg .navigation .links-wrapper ul.links li a {
    color: #CCC;
  }
  header.dark-bg .navigation .links-wrapper ul.links li a:hover, header.dark-bg .navigation .links-wrapper ul.links li a:focus {
    color: #F5F5F5;
  }
  header.dark-bg .navigation .links-wrapper ul.links li a.active {
    color: #FFF;
  }
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 32px);
    transform: translate(0, 32px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
footer {
  background-color: #03090C;
  padding: 88px 0;
  background: url("../img/footer-bg.png") no-repeat 70% top;
  background-size: cover;
}
footer .links, footer .quote, footer .copy {
  padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 1);
}
@media screen and (min-width: 440px) {
  footer .links, footer .quote, footer .copy {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 1);
  }
}
@media screen and (min-width: 1024px) {
  footer .links, footer .quote, footer .copy {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 1);
  }
}
@media screen and (min-width: 1328px) {
  footer .links, footer .quote, footer .copy {
    padding-left: calc((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 1);
  }
}
footer .links {
  padding-bottom: 88px;
}
footer .links .logo {
  margin-bottom: 56px;
}
footer .links .logo a svg {
  fill: #FFF;
  -webkit-transition: all ease-in-out 80ms;
  transition: all ease-in-out 80ms;
}
footer .links .logo a:hover svg, footer .links .logo a:focus svg {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
footer .links .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .links .list a {
  font-size: 18px;
  line-height: 18px;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  display: block;
  position: relative;
}
footer .links .list a:after {
  content: "";
  position: absolute;
  width: 32px;
  height: 4px;
  left: 0;
  bottom: -24px;
  background-color: #EB5E55;
  -webkit-box-shadow: 0px 0px 24px rgba(235, 94, 85, 0.72);
          box-shadow: 0px 0px 24px rgba(235, 94, 85, 0.72);
  display: none;
}
footer .links .list a + a {
  margin-left: 24px;
}
footer .links .list a:hover, footer .links .list a:focus {
  color: #FFF;
}
footer .links .list a.selected {
  color: #FFF;
  font-weight: 500;
}
footer .links .list a.selected:after {
  display: block;
}
footer .quote {
  color: #FFF;
  padding-bottom: 24px;
  padding-right: 24px;
  font-weight: 200;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -0.5px;
}
footer .quote .quote-wrapper {
  max-width: 616px;
}
footer .cite {
  position: relative;
  color: #707070;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.5px;
  margin: 0 0 48px;
}
footer .cite .person {
  padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 4) + 24px * 4);
  margin-left: 24px;
}
@media screen and (min-width: 440px) {
  footer .cite .person {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 4) + 24px * 4);
  }
}
@media screen and (min-width: 1024px) {
  footer .cite .person {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 4) + 32px * 4);
  }
}
@media screen and (min-width: 1328px) {
  footer .cite .person {
    padding-left: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 4) + 32px * 4));
  }
}
footer .cite:after {
  content: "";
  position: absolute;
  width: calc((calc((100% - calc(24px * 13)) / 12) * 4) + 24px * 4);
  height: 1px;
  top: 50%;
  background-color: #EB5E55;
}
@media screen and (min-width: 440px) {
  footer .cite:after {
    width: calc((calc((100% - calc(24px * 13)) / 12) * 4) + 24px * 4);
  }
}
@media screen and (min-width: 1024px) {
  footer .cite:after {
    width: calc((calc((100% - calc(32px * 13)) / 12) * 4) + 32px * 4);
  }
}
@media screen and (min-width: 1328px) {
  footer .cite:after {
    width: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 4) + 32px * 4));
  }
}
footer .copy {
  font-size: 14px;
  line-height: 22px;
}
footer .copy .year {
  margin-bottom: 2px;
  color: #FFF;
}
footer .copy .rights {
  color: #707070;
}

@media screen and (min-width: 440px) {
  footer .links, footer .quote, footer .copy {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 440px) and (min-width: 440px) {
  footer .links, footer .quote, footer .copy {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 440px) and (min-width: 1024px) {
  footer .links, footer .quote, footer .copy {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 440px) and (min-width: 1328px) {
  footer .links, footer .quote, footer .copy {
    padding-left: calc((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 768px) {
  footer {
    padding: 120px 0;
  }
  footer .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 120px;
  }
  footer .links .logo {
    margin: 0;
  }
  footer .links .list {
    padding-left: 80px;
  }
  footer .quote {
    font-size: 40px;
    line-height: 48px;
    padding-bottom: 32px;
  }
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 32px);
    transform: translate(0, 32px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero-wrapper {
  position: relative;
  height: 100%;
  z-index: 90;
}
.hero-wrapper .corner-box {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 20%;
  background-color: #03090C;
  opacity: 0.04;
  width: calc((calc((100% - calc(24px * 13)) / 12) * 4) + 24px * 5);
}
@media screen and (min-width: 440px) {
  .hero-wrapper .corner-box {
    width: calc((calc((100% - calc(24px * 13)) / 12) * 4) + 24px * 5);
  }
}
@media screen and (min-width: 1024px) {
  .hero-wrapper .corner-box {
    width: calc((calc((100% - calc(32px * 13)) / 12) * 4) + 32px * 5);
  }
}
@media screen and (min-width: 1328px) {
  .hero-wrapper .corner-box {
    width: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 4) + 32px * 5));
  }
}

.hero {
  max-width: 1328px;
  height: 100%;
  position: relative;
  margin: -80px auto 0;
  padding-bottom: 80px;
  padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 1);
  padding-right: 24px;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  text-align: left;
  overflow: hidden;
}
.hero .hero-overline {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 680px;
  width: 100%;
  padding: 0 16px 0 0;
  margin-bottom: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 300ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 300ms 1 slideInFromBottom forwards;
}
.hero .hero-overline .divider {
  height: 1px;
  max-width: 240px;
  background-color: #DDD;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.hero .hero-overline .message {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #707070;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 24px 0 0;
}
.hero h1 {
  margin-bottom: 48px;
  position: relative;
  opacity: 0;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 450ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 450ms 1 slideInFromBottom forwards;
}
.hero h1 span {
  color: #EB5E55;
}
.hero .button {
  opacity: 0;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 600ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 600ms 1 slideInFromBottom forwards;
}

@media screen and (min-width: 440px) {
  .hero {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 768px) {
  .hero {
    margin: -120px auto 0;
    padding-bottom: 160px;
  }
}
@media screen and (min-width: 1024px) {
  .hero-wrapper {
    height: 92%;
  }

  .hero {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 1328px) {
  .hero {
    padding-left: calc((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 32px);
    transform: translate(0, 32px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.billboard-smooth-scale {
  position: absolute;
  height: 80%;
  width: 100%;
  margin: -120px auto 0;
  overflow: hidden;
  z-index: 80;
  opacity: 0;
  -webkit-animation: 1500ms ease 200ms 1 slideInFromBottom forwards;
          animation: 1500ms ease 200ms 1 slideInFromBottom forwards;
}
.billboard-smooth-scale .billboard-slides {
  height: 100%;
  overflow: hidden;
}
.billboard-smooth-scale .billboard-slides:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.billboard-smooth-scale .billboard-slides .cover {
  top: 0;
  left: 0;
  position: absolute;
  background-color: #111;
  height: 100%;
  width: 100%;
  opacity: 0.24;
  z-index: 10;
}
.billboard-smooth-scale .billboard-slides .billboard-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #111;
  z-index: 5;
  overflow: hidden;
}
.billboard-smooth-scale .billboard-slides .billboard-slide .imageA, .billboard-smooth-scale .billboard-slides .billboard-slide .imageB {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
  -webkit-transition: opacity 2000ms ease-out;
  transition: opacity 2000ms ease-out;
}
.billboard-smooth-scale .billboard-slides .billboard-slide .imageA.fade-out, .billboard-smooth-scale .billboard-slides .billboard-slide .imageB.fade-out {
  opacity: 0;
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
.billboard-smooth-scale .billboard-slides .billboard-slide .imageA {
  z-index: 2;
}
.billboard-smooth-scale .billboard-slides .billboard-slide .imageB {
  z-index: 1;
}

.animated-slide {
  -webkit-animation-name: smoothScale;
          animation-name: smoothScale;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.paused {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes smoothScale {
  0% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes smoothScale {
  0% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (min-width: 440px) {
  .billboard-smooth-scale {
    margin-bottom: 88px;
  }
}
/* Custom and helpful mixins */
.grid-fluid-container {
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 1000;
  opacity: 0.1;
  left: 0;
  top: 0;
  pointer-events: none;
}
.grid-fluid-container .grid-fixed-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1328px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  background-color: #B8B4CE;
  position: relative;
}
.grid-fluid-container .grid-fixed-container .grid-column {
  width: calc((100% - 24px * 13) / 12);
  height: 100%;
  background-color: #322488;
}
.grid-fluid-container .grid-fixed-container .grid-column + .grid-column {
  margin-left: 24px;
}

@media screen and (min-width: 440px) {
  .grid-fluid-container .grid-fixed-container .grid-column {
    width: calc((100% - 24px * 13) / 12);
  }
  .grid-fluid-container .grid-fixed-container .grid-column + .grid-column {
    margin-left: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .grid-fluid-container .grid-fixed-container .grid-column {
    width: calc((100% - 32px * 13) / 12);
  }
  .grid-fluid-container .grid-fixed-container .grid-column + .grid-column {
    margin-left: 32px;
  }
}
@media screen and (min-width: 1328px) {
  .grid-fluid-container .grid-ixed-container .grid-column {
    width: calc((100% - calc(32px * 13)) / 12);
  }
  .grid-fluid-container .grid-ixed-container .grid-column + .grid-column {
    margin-left: 32px;
  }
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 32px);
    transform: translate(0, 32px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero-text {
  padding-top: 40px;
  padding-right: 24px;
  padding-bottom: 40px;
  padding-left: 24px;
}
.hero-text h1 {
  position: relative;
  margin-bottom: 16px;
  max-width: 940px;
  opacity: 0;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 150ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 150ms 1 slideInFromBottom forwards;
}
.hero-text .mention {
  opacity: 0;
  position: relative;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #707070;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 250ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 250ms 1 slideInFromBottom forwards;
}

.projects {
  position: relative;
  padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 1);
  padding-right: 24px;
}
@media screen and (min-width: 440px) {
  .projects {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 1);
  }
}
@media screen and (min-width: 1024px) {
  .projects {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 1);
  }
}
@media screen and (min-width: 1328px) {
  .projects {
    padding-left: calc((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 1);
  }
}
.projects .side-text {
  display: none;
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #DDD;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  left: calc((calc((100% - calc(24px * 13)) / 12) * 0) + 24px * 1);
  opacity: 0;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 600ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 600ms 1 slideInFromBottom forwards;
  top: 0;
}
@media screen and (min-width: 440px) {
  .projects .side-text {
    left: calc((calc((100% - calc(24px * 13)) / 12) * 0) + 24px * 1);
  }
}
@media screen and (min-width: 1024px) {
  .projects .side-text {
    left: calc((calc((100% - calc(32px * 13)) / 12) * 0) + 32px * 1);
  }
}
@media screen and (min-width: 1328px) {
  .projects .side-text {
    left: calc((calc((1328px - calc(32px * 13)) / 12) * 0) + 32px * 1);
  }
}
.projects .project {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  text-decoration: none;
  position: relative;
  max-width: 554px;
  opacity: 0;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 300ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 300ms 1 slideInFromBottom forwards;
}
.projects .project + .project {
  opacity: 0;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 450ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 450ms 1 slideInFromBottom forwards;
}
.projects .project .image {
  position: relative;
  margin-bottom: 24px;
  -webkit-transition: all ease-in-out 160ms;
  transition: all ease-in-out 160ms;
}
.projects .project .image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.projects .project .image .coming-soon {
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FFF;
  background-color: #EB5E55;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 16px;
}
.projects .project .title {
  color: #03090C;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.projects .project .blurb {
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: #707070;
  margin-bottom: 48px;
}
.projects .project:hover .image, .projects .project:focus .image {
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
}
.projects .project:hover .title, .projects .project:focus .title {
  text-decoration: underline;
}

@media screen and (min-width: 440px) {
  .hero-text {
    padding-top: 56px;
    padding-right: 40px;
    padding-bottom: 56px;
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 440px) and (min-width: 440px) {
  .hero-text {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 440px) and (min-width: 1024px) {
  .hero-text {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 440px) and (min-width: 1328px) {
  .hero-text {
    padding-left: calc((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 440px) {
  .projects {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
    padding-right: 32px;
  }
}
@media screen and (min-width: 440px) and (min-width: 440px) {
  .projects {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 440px) and (min-width: 1024px) {
  .projects {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 440px) and (min-width: 1328px) {
  .projects {
    padding-left: calc((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 440px) {
  .projects .side-text {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .hero-text {
    padding-top: 72px;
    padding-bottom: 120px;
  }
  .hero-text h1 {
    margin-bottom: 24px;
  }
  .hero-text .mention {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero-text .mention:before {
    content: "";
    display: inline-block;
    width: 72px;
    height: 1px;
    background-color: #EEE;
    margin-right: 16px;
  }

  .projects {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .projects .project {
    margin: 0 24px 0 0;
  }
  .projects .project + .project {
    margin: 0 0 0 24px;
  }
  .projects .project .image {
    margin-bottom: 40px;
  }
  .projects .project .title {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
  }
  .projects .project .blurb {
    margin-bottom: 72px;
    font-size: 18px;
    line-height: 28px;
  }
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 32px);
    transform: translate(0, 32px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.about-header {
  position: relative;
  margin-top: -32px;
  z-index: 500;
}
.about-header:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 75%;
  max-height: 1080px;
}
.about-header > .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.about-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about-header .inner .headline {
  position: absolute;
  z-index: 200;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 24px;
}
.about-header .inner .headline h1 {
  opacity: 0;
  font-size: 9vw;
  line-height: 8.7vw;
  letter-spacing: -2px;
  position: relative;
  left: -3px;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 150ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 150ms 1 slideInFromBottom forwards;
}
.about-header .inner .headline h1 span {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 20vw;
  line-height: 19.2vw;
  letter-spacing: -1.4vw;
  left: -2px;
}
.about-header .inner .headline h1:after {
  content: "";
  position: absolute;
  width: 14vw;
  height: 4px;
  background-color: #03090C;
  bottom: -16px;
  left: 6vw;
}
.about-header .inner .bg-images {
  opacity: 0;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: calc((calc((100% - calc(24px * 13)) / 12) * 10) + 24px * 10);
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 300ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 300ms 1 slideInFromBottom forwards;
}
@media screen and (min-width: 440px) {
  .about-header .inner .bg-images {
    width: calc((calc((100% - calc(24px * 13)) / 12) * 10) + 24px * 10);
  }
}
@media screen and (min-width: 1024px) {
  .about-header .inner .bg-images {
    width: calc((calc((100% - calc(32px * 13)) / 12) * 10) + 32px * 10);
  }
}
@media screen and (min-width: 1328px) {
  .about-header .inner .bg-images {
    width: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 10) + 32px * 10));
  }
}
.about-header .inner .bg-images > img {
  height: 100%;
  width: 100%;
  max-width: 1136px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-header .inner .bg-eminie {
  opacity: 0;
  position: absolute;
  z-index: 600;
  left: calc((calc((100% - calc(24px * 13)) / 12) * 2) + 24px * 3);
  bottom: 0px;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 450ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 450ms 1 slideInFromBottom forwards;
}
@media screen and (min-width: 440px) {
  .about-header .inner .bg-eminie {
    left: calc((calc((100% - calc(24px * 13)) / 12) * 2) + 24px * 3);
  }
}
@media screen and (min-width: 1024px) {
  .about-header .inner .bg-eminie {
    left: calc((calc((100% - calc(32px * 13)) / 12) * 2) + 32px * 3);
  }
}
@media screen and (min-width: 1328px) {
  .about-header .inner .bg-eminie {
    left: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 2) + 32px * 3));
  }
}
.about-header .inner .bg-eminie img {
  width: 12vw;
  max-width: 176px;
}
.about-header .inner .bg-gray-bar {
  opacity: 0;
  height: calc(100% - 80px);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 100;
  mix-blend-mode: multiply;
  background-color: #FAFAFA;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 300ms 1 fadeIn forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 300ms 1 fadeIn forwards;
  width: calc((calc((100% - calc(24px * 13)) / 12) * 10) + 24px * 10);
}
@media screen and (min-width: 440px) {
  .about-header .inner .bg-gray-bar {
    width: calc((calc((100% - calc(24px * 13)) / 12) * 10) + 24px * 10);
  }
}
@media screen and (min-width: 1024px) {
  .about-header .inner .bg-gray-bar {
    width: calc((calc((100% - calc(32px * 13)) / 12) * 10) + 32px * 10);
  }
}
@media screen and (min-width: 1328px) {
  .about-header .inner .bg-gray-bar {
    width: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 10) + 32px * 10));
  }
}
.about-header .inner .bg-salmon-bar {
  opacity: 0;
  height: 80px;
  width: 38px;
  position: absolute;
  right: 0;
  top: 64px;
  z-index: 700;
  mix-blend-mode: multiply;
  background-color: #EB5E55;
  -webkit-transition: all cubic-bezier(0.25, 0, 0.05, 1) 250ms;
  transition: all cubic-bezier(0.25, 0, 0.05, 1) 250ms;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 400ms 1 fadeIn forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 400ms 1 fadeIn forwards;
}

.about-blurb {
  position: relative;
  z-index: 700;
  margin-bottom: 56px;
}
.about-blurb .side-text {
  opacity: 0;
  display: block;
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 2px;
  color: #DDD;
  z-index: 30;
  white-space: nowrap;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 750ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 750ms 1 slideInFromBottom forwards;
  left: calc((calc((100% - calc(24px * 13)) / 12) * 0) + 24px * 1);
  bottom: 5px;
}
@media screen and (min-width: 440px) {
  .about-blurb .side-text {
    left: calc((calc((100% - calc(24px * 13)) / 12) * 0) + 24px * 1);
  }
}
@media screen and (min-width: 1024px) {
  .about-blurb .side-text {
    left: calc((calc((100% - calc(32px * 13)) / 12) * 0) + 32px * 1);
  }
}
@media screen and (min-width: 1328px) {
  .about-blurb .side-text {
    left: calc((calc((1328px - calc(32px * 13)) / 12) * 0) + 32px * 1);
  }
}
.about-blurb .cover {
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 20;
  background-color: #FFF;
  width: calc((calc((100% - calc(24px * 13)) / 12) * 12) + 24px * 12);
}
@media screen and (min-width: 440px) {
  .about-blurb .cover {
    width: calc((calc((100% - calc(24px * 13)) / 12) * 12) + 24px * 12);
  }
}
@media screen and (min-width: 1024px) {
  .about-blurb .cover {
    width: calc((calc((100% - calc(32px * 13)) / 12) * 12) + 32px * 12);
  }
}
@media screen and (min-width: 1328px) {
  .about-blurb .cover {
    width: calc((calc((1328px - calc(32px * 13)) / 12) * 12) + 32px * 12);
  }
}
.about-blurb .message {
  opacity: 0;
  position: relative;
  z-index: 40;
  color: #03090C;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.5px;
  padding-top: 56px;
  padding-bottom: 0;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 600ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 600ms 1 slideInFromBottom forwards;
  padding-right: calc((calc((100% - calc(24px * 13)) / 12) * 0) + 24px * 1);
  padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 2) + 24px * 3);
}
@media screen and (min-width: 440px) {
  .about-blurb .message {
    padding-right: calc((calc((100% - calc(24px * 13)) / 12) * 0) + 24px * 1);
  }
}
@media screen and (min-width: 1024px) {
  .about-blurb .message {
    padding-right: calc((calc((100% - calc(32px * 13)) / 12) * 0) + 32px * 1);
  }
}
@media screen and (min-width: 1328px) {
  .about-blurb .message {
    padding-right: calc((calc((1328px - calc(32px * 13)) / 12) * 0) + 32px * 1);
  }
}
@media screen and (min-width: 440px) {
  .about-blurb .message {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 2) + 24px * 3);
  }
}
@media screen and (min-width: 1024px) {
  .about-blurb .message {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 2) + 32px * 3);
  }
}
@media screen and (min-width: 1328px) {
  .about-blurb .message {
    padding-left: calc((calc((1328px - calc(32px * 13)) / 12) * 2) + 32px * 3);
  }
}

.i-love {
  position: relative;
  left: -3px;
  font-weight: 700;
  font-size: 16vw;
  line-height: 15.2vw;
  letter-spacing: -1.4vw;
  padding-right: 24px;
  padding-left: 24px;
  margin-bottom: 24px;
}
.i-love span {
  display: block;
  color: #EB5E55;
}

.cata-guy {
  padding-left: 24px;
  padding-right: 24px;
  text-align: right;
}
.cata-guy img {
  width: 100%;
  max-width: 832px;
}

.my-history {
  position: relative;
  padding-bottom: 56px;
  margin-bottom: 56px;
}
.my-history .header {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.5px;
  color: #03090C;
  padding: 56px 24px;
}
.my-history .i-like {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #323232;
  padding: 0 24px 40px;
}
.my-history .i-like .hobbies {
  margin-bottom: 24px;
}
.my-history .controls {
  padding-left: 24px;
  padding-right: 24px;
}
.my-history .blue-bar {
  height: 60px;
  position: absolute;
  right: 0;
  top: -30px;
  z-index: 500;
  mix-blend-mode: multiply;
  background-color: #D7EAED;
  width: calc((calc((100% - calc(24px * 13)) / 12) * 3) + 24px * 3);
}
@media screen and (min-width: 440px) {
  .my-history .blue-bar {
    width: calc((calc((100% - calc(24px * 13)) / 12) * 3) + 24px * 3);
  }
}
@media screen and (min-width: 1024px) {
  .my-history .blue-bar {
    width: calc((calc((100% - calc(32px * 13)) / 12) * 3) + 32px * 3);
  }
}
@media screen and (min-width: 1328px) {
  .my-history .blue-bar {
    width: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 3) + 32px * 3));
  }
}
.my-history .extended-divider {
  padding-bottom: 56px;
}
.my-history .cover {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background-color: #FAFAFA;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .about-header {
    margin-top: -120px;
  }
  .about-header .inner .bg-gray-bar {
    height: calc(100% - 120px);
  }
  .about-header .inner .headline {
    left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
    top: 44%;
  }
}
@media screen and (min-width: 768px) and (min-width: 440px) {
  .about-header .inner .headline {
    left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .about-header .inner .headline {
    left: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 1328px) {
  .about-header .inner .headline {
    left: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 2));
  }
}
@media screen and (min-width: 768px) {
  .about-header .inner .headline h1 {
    font-size: 7vw;
    line-height: 6.8vw;
  }
  .about-header .inner .headline h1 span {
    font-size: 16vw;
    line-height: 15.5vw;
    letter-spacing: -1.2vw;
    left: -4px;
  }
  .about-header .inner .headline h1:after {
    bottom: -36px;
  }
}
@media screen and (min-width: 768px) {
  .about-header .inner .bg-eminie {
    bottom: 128px;
    left: calc((calc((100% - calc(24px * 13)) / 12) * 2) + 24px * 4);
  }
}
@media screen and (min-width: 768px) and (min-width: 440px) {
  .about-header .inner .bg-eminie {
    left: calc((calc((100% - calc(24px * 13)) / 12) * 2) + 24px * 4);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .about-header .inner .bg-eminie {
    left: calc((calc((100% - calc(32px * 13)) / 12) * 2) + 32px * 4);
  }
}
@media screen and (min-width: 768px) and (min-width: 1328px) {
  .about-header .inner .bg-eminie {
    left: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 2) + 32px * 4));
  }
}
@media screen and (min-width: 768px) {
  .about-header .inner .bg-eminie img {
    width: 12vw;
  }
}
@media screen and (min-width: 768px) {
  .about-header .inner .bg-salmon-bar {
    height: 160px;
    width: 62px;
    top: 108px;
  }
}
@media screen and (min-width: 768px) {
  .about-blurb {
    margin-top: -128px;
    margin-bottom: 88px;
  }
  .about-blurb .side-text {
    top: -156px;
    bottom: auto;
  }
  .about-blurb .message {
    font-size: 40px;
    line-height: 56px;
    letter-spacing: -1.5px;
    padding-top: 88px;
    padding-right: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 1);
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 440px) {
  .about-blurb .message {
    padding-right: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 1);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .about-blurb .message {
    padding-right: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 1);
  }
}
@media screen and (min-width: 768px) and (min-width: 1328px) {
  .about-blurb .message {
    padding-right: calc((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 1);
  }
}
@media screen and (min-width: 768px) and (min-width: 440px) {
  .about-blurb .message {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .about-blurb .message {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 1328px) {
  .about-blurb .message {
    padding-left: calc((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 768px) {
  .i-love {
    font-size: 120px;
    line-height: 120px;
    letter-spacing: -10px;
    padding-right: 32px;
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 440px) {
  .i-love {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .i-love {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 1328px) {
  .i-love {
    padding-left: calc((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 768px) {
  .cata-guy {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 3) + 24px * 4);
    padding-right: 32px;
  }
}
@media screen and (min-width: 768px) and (min-width: 440px) {
  .cata-guy {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 3) + 24px * 4);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .cata-guy {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 3) + 32px * 4);
  }
}
@media screen and (min-width: 768px) and (min-width: 1328px) {
  .cata-guy {
    padding-left: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 3) + 32px * 4));
  }
}
@media screen and (min-width: 768px) {
  .my-history {
    padding-bottom: 120px;
    margin-bottom: 120px;
  }
  .my-history .header {
    font-size: 40px;
    line-height: 56px;
    letter-spacing: -1.5px;
    padding-top: 120px;
    padding-bottom: 88px;
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
    padding-right: calc((calc((100% - calc(24px * 13)) / 12) * 2) + 24px * 3);
  }
}
@media screen and (min-width: 768px) and (min-width: 440px) {
  .my-history .header {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .my-history .header {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 1328px) {
  .my-history .header {
    padding-left: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 2));
  }
}
@media screen and (min-width: 768px) and (min-width: 440px) {
  .my-history .header {
    padding-right: calc((calc((100% - calc(24px * 13)) / 12) * 2) + 24px * 3);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .my-history .header {
    padding-right: calc((calc((100% - calc(32px * 13)) / 12) * 2) + 32px * 3);
  }
}
@media screen and (min-width: 768px) and (min-width: 1328px) {
  .my-history .header {
    padding-right: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 2) + 32px * 3));
  }
}
@media screen and (min-width: 768px) {
  .my-history .i-like {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 24px 40px;
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
    padding-right: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 440px) {
  .my-history .i-like {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .my-history .i-like {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 1328px) {
  .my-history .i-like {
    padding-left: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 2));
  }
}
@media screen and (min-width: 768px) and (min-width: 440px) {
  .my-history .i-like {
    padding-right: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .my-history .i-like {
    padding-right: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 1328px) {
  .my-history .i-like {
    padding-right: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 2));
  }
}
@media screen and (min-width: 768px) {
  .my-history .i-like .hobbies, .my-history .i-like .favorites {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .my-history .i-like .hobbies {
    margin-bottom: 0;
    padding-right: 16px;
  }
}
@media screen and (min-width: 768px) {
  .my-history .i-like .favorites {
    margin-bottom: 0;
    padding-left: 16px;
  }
}
@media screen and (min-width: 768px) {
  .my-history .controls {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 440px) {
  .my-history .controls {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .my-history .controls {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 768px) and (min-width: 1328px) {
  .my-history .controls {
    padding-left: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 2));
  }
}
@media screen and (min-width: 768px) {
  .my-history .blue-bar {
    height: 120px;
    top: -60px;
  }
}
@media screen and (min-width: 768px) {
  .my-history .extended-divider {
    padding-bottom: 88px;
  }
}
@media screen and (min-width: 768px) {
  .my-history .cover {
    left: auto;
    right: 0;
    width: calc((calc((100% - calc(24px * 13)) / 12) * 12) + 24px * 12);
  }
}
@media screen and (min-width: 768px) and (min-width: 440px) {
  .my-history .cover {
    width: calc((calc((100% - calc(24px * 13)) / 12) * 12) + 24px * 12);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .my-history .cover {
    width: calc((calc((100% - calc(32px * 13)) / 12) * 12) + 32px * 12);
  }
}
@media screen and (min-width: 768px) and (min-width: 1328px) {
  .my-history .cover {
    width: calc(calc((100% - 1328px) / 2) + ((calc((1328px - calc(32px * 13)) / 12) * 12) + 32px * 12));
  }
}
@media screen and (min-width: 1024px) {
  .about-header .inner .headline h1 {
    left: -5px;
    font-size: 72px;
    line-height: 60px;
  }
  .about-header .inner .headline h1 span {
    font-size: 160px;
    line-height: 160px;
    letter-spacing: -10px;
    left: -5px;
  }
  .about-header .inner .headline h1:after {
    content: "";
    width: 140px;
    height: 4px;
    bottom: -36px;
    left: 53px;
  }
  .about-header .inner .bg-salmon-bar {
    height: 210px;
    width: 88px;
    top: 108px;
  }

  .i-love {
    font-size: 160px;
    line-height: 160px;
    letter-spacing: -10px;
  }

  .my-history .blue-bar {
    height: 240px;
    top: -120px;
  }
}
@media screen and (min-width: 1328px) {
  .about-header:before {
    padding-top: 1000px;
  }
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 32px);
    transform: translate(0, 32px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.project-meta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 24px;
  opacity: 0;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 160ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 160ms 1 slideInFromBottom forwards;
}
.project-meta .space-line {
  height: 1px;
  background-color: #EEE;
  width: 100%;
  position: relative;
  bottom: 6px;
  margin-right: 16px;
  display: none;
}
.project-meta .dates, .project-meta .role {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.project-meta .dates .detail, .project-meta .role .detail {
  margin-top: 4px;
}
.project-meta .dates {
  margin-right: 16px;
}
.project-details .description {
  position: relative;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.5px;
  opacity: 0;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 300ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 300ms 1 slideInFromBottom forwards;
}
@media screen and (min-width: 440px) {
  .project-details .description {
    font-size: 28px;
    line-height: 40px;
  }
}
@media screen and (min-width: 768px) {
  .project-details .description {
    font-size: 32px;
    line-height: 44px;
  }
}
.project-details .industry, .project-details .mediums {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.5px;
}
.project-details .industry {
  font-weight: 500;
  color: #323232;
  margin-bottom: 8px;
}
.project-details .mediums {
  position: relative;
  margin-bottom: 0;
  color: #707070;
  opacity: 0;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 450ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 450ms 1 slideInFromBottom forwards;
}

.project-media {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 56px;
}
@media screen and (min-width: 440px) {
  .project-media {
    margin-bottom: 88px;
  }
}
@media screen and (min-width: 768px) {
  .project-media {
    margin-bottom: 120px;
  }
}
.project-media.first-image {
  opacity: 0;
  -webkit-animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 600ms 1 slideInFromBottom forwards;
          animation: 1250ms cubic-bezier(0.25, 0, 0.05, 1) 600ms 1 slideInFromBottom forwards;
}
.project-media .view-prototype {
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FFF;
  background-color: #03090C;
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px 16px;
  text-decoration: none;
  -webkit-transition: background-color ease 150ms;
  transition: background-color ease 150ms;
}
.project-media .view-prototype:hover, .project-media .view-prototype:focus {
  background-color: #323232;
}
.project-media video {
  width: 100%;
}
.project-media img {
  width: 100%;
}

.project-blurb {
  color: #707070;
  font-weight: 300;
  padding-left: 24px;
  margin-bottom: 56px;
  padding-right: 24px;
}
@media screen and (min-width: 440px) {
  .project-blurb {
    margin-bottom: 88px;
  }
}
@media screen and (min-width: 768px) {
  .project-blurb {
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 768px) {
  .project-blurb {
    padding-right: 40px;
  }
}

@media screen and (min-width: 440px) {
  .project-meta .space-line {
    display: block;
  }

  .project-blurb {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.5px;
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 440px) and (min-width: 440px) {
  .project-blurb {
    font-size: 28px;
    line-height: 40px;
  }
}
@media screen and (min-width: 440px) and (min-width: 768px) {
  .project-blurb {
    font-size: 32px;
    line-height: 44px;
  }
}
@media screen and (min-width: 440px) and (min-width: 440px) {
  .project-blurb {
    padding-left: calc((calc((100% - calc(24px * 13)) / 12) * 1) + 24px * 2);
  }
}
@media screen and (min-width: 440px) and (min-width: 1024px) {
  .project-blurb {
    padding-left: calc((calc((100% - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 440px) and (min-width: 1328px) {
  .project-blurb {
    padding-left: calc((calc((1328px - calc(32px * 13)) / 12) * 1) + 32px * 2);
  }
}
@media screen and (min-width: 768px) {
  .project-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .project-meta {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .project-meta .space-line {
    bottom: 16px;
    margin-right: 24px;
    margin-left: 24px;
  }
  .project-meta .dates, .project-meta .role {
    position: relative;
    bottom: 10px;
  }
  .project-meta .dates {
    margin-right: 24px;
  }
}