/*
Note: any .css or .scss files included in the 'styles' directory
will be correctly compiled during `gulp serve` and `gulp`
 */
@font-face {
  font-family: 'post-grot';
  src: url("../fonts/post-grotesk/PostGrotesk-Book.woff2") format("woff2"), url("webfont.woff") format("woff"), url("webfont.ttf") format("truetype"); }

@font-face {
  font-family: 'suisse';
  src: url("../fonts/suisse/suisse-bold.woff2") format("woff2"), url("webfont.woff") format("woff"); }

* {
  max-width: 100%; }

html, body {
  box-sizing: border-box;
  color: #0d0d0d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 62.5%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  width: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth; }

body {
  background-color: #0d0d0d;
  font-family: "suisse", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 2.4rem;
  line-height: 1.15; }

::selection {
  background-color: #727B7F; }

h1, h2, h3, p {
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 1.5rem;
  text-wrap: pretty;
  letter-spacing: -0.05rem; }

a {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  box-sizing: border-box;
  border: none;
  border-bottom: 0.2rem solid;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word; }
  a:hover {
    color: #727B7F;
    border-bottom: 0.2rem solid #727B7F; }
  a:focus {
    outline: 0.8rem solid #727B7F;
    border-bottom: 0; }
  a:active {
    outline: 0;
    border-bottom: 0.2rem solid;
    color: #8c9498;
    border-color: #8c9498; }

ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

img, picture {
  width: 100%;
  height: auto;
  min-width: 0; }

.container {
  display: flex;
  align-items: center;
  flex-direction: column; }

.intro-container {
  background-color: #F9F9F9;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  /* If you need to support browser without CSS var support (<= IE11) */
  min-height: calc(100vh - var(--vh-offset, 0px));
  /* enable vh fix */
  width: 100%;
  padding: 2rem;
  transition: opacity 400ms linear; }
  .intro-container p {
    font-size: 2.4rem; }
  .intro-container .scroll-span {
    display: flex;
    align-items: center;
    margin-top: 0.8rem; }
  .intro-container .scroll-arrow {
    width: 1.8rem;
    margin-right: 1rem; }
  .intro-container .scroll-text {
    color: #727B7F; }
  @media (min-width: 700px) {
    .intro-container {
      min-height: 100vh;
      padding: 4rem;
      justify-content: space-between; }
      .intro-container p {
        font-size: 4.8rem; }
      .intro-container .scroll-span {
        margin-top: 4rem; }
      .intro-container .scroll-arrow {
        width: 3.4rem; } }
  @media (min-width: 1100px) {
    .intro-container {
      padding: 8rem 10rem; }
      .intro-container p {
        font-size: 6.4rem; }
      .intro-container .scroll-arrow {
        width: 4.8rem;
        margin-right: 2rem; } }
  @media (min-width: 2400px) {
    .intro-container p {
      font-size: 8.2rem; }
    .intro-container .scroll-arrow {
      width: 6.4rem; } }
.work {
  padding: 8rem 2rem;
  display: flex;
  align-items: center;
  flex-direction: column; }
  .work img, .work picture {
    border-radius: 0.8rem; }
  @media (min-width: 700px) {
    .work img, .work picture {
      border-radius: 2.4rem; } }
  .work .project {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 240rem;
    width: 100%;
    margin-bottom: 8rem; }
    .work .project picture {
      margin-bottom: 2rem; }
  .work .details {
    width: 100%;
    margin-bottom: 2rem; }
    .work .details h2 {
      color: #E0E0E0;
      margin-bottom: 0.8rem;
      font-size: 2.4rem; }
    .work .details p {
      font-weight: 600;
      line-height: 1.2;
      color: #a3aeb4;
      margin-bottom: 0;
      font-size: 1.8rem; }
    .work .details h2, .work .details p {
      max-width: 100%;
      text-align: left; }
    @media (min-width: 700px) {
      .work .details h2 {
        font-size: 4.8rem;
        margin-bottom: 1.2rem; }
      .work .details p {
        font-size: 2.4rem;
        margin-bottom: 2rem; } }
    @media (min-width: 1100px) {
      .work .details h2 {
        font-size: 6.4rem; }
      .work .details p {
        font-size: 3rem; } }
    @media (min-width: 2400px) {
      .work .details h2 {
        font-size: 8.2rem; }
      .work .details p {
        font-size: 4.8rem; } }
  .work > * {
    margin-bottom: 2rem; }
  .work .two-col {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%; }
    .work .two-col picture:first-child {
      margin-right: 2rem; }
  @media (min-width: 700px) {
    .work {
      padding: 8rem 4rem; }
      .work .project picture {
        margin-bottom: 4rem; }
      .work > * {
        margin-bottom: 4rem; }
      .work .two-col picture:first-child {
        margin-right: 4rem; } }
  @media (min-width: 1100px) {
    .work {
      padding: 24rem 10rem 8rem 10rem; }
      .work .project {
        margin-bottom: 24rem; } }
.arrow-link {
  border: none;
  opacity: 0.7;
  margin-bottom: 0; }
  .arrow-link:hover {
    border: none;
    opacity: 1; }

.arrow {
  width: 4em;
  height: 4rem; }
  @media (min-width: 700px) {
    .arrow {
      width: 8em;
      height: 8rem; } }
.scroll-link-container {
  width: 100%; }

.scroll-link-bottom {
  color: #E0E0E0;
  font-size: 1.7rem;
  margin-top: 2rem;
  font-weight: 700;
  border-bottom: 0.1rem solid; }
  @media (min-width: 700px) {
    .scroll-link-bottom {
      font-size: 3rem;
      margin-top: 8rem; } }
.fade-list {
  transform-origin: top center;
  transition: opacity 300ms linear, transform 300ms cubic-bezier(0, 0, 0.38, 0.9); }
  @media (min-width: 520px) {
    .fade-list {
      transform: translateY(5rem) scale(1);
      opacity: 0; } }
.reveal {
  transform: translateY(0) scale(1);
  opacity: 1; }

@keyframes intro-transform {
  100% {
    transform: translateY(0) scale(1); } }

@keyframes intro-opacity {
  100% {
    opacity: 1; } }

.intro-text, .scroll-span {
  transform-origin: bottom;
  opacity: 0;
  transform: translateY(1rem) scale(0.95);
  animation: intro-opacity 600ms linear forwards, intro-transform 400ms cubic-bezier(0, 0, 0.38, 0.9) forwards; }

.intro-text {
  animation-delay: 200ms; }

.scroll-span {
  animation-delay: 500ms; }

.color-point {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(80px);
  opacity: 0.7; }
