@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* Reset styles */

html, body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-size: 100%;
}

/* Global variables */

:root {
  
  /* Color variables */
  --indigo: #c3d6ff;
  --creamsicle: #ffd3c2;
  --flamingo: #F4E9FF;
  --azul: #EAFFFF;
  --primary: #233142;
  --secondary: #646f7c;
  --pale: #f7f7f7;
  --gray: #e7e7e7;
  
  /* Sizing variables */
  --xxs: 0.125rem; /* 2px */
  --xs: 0.25rem; /* 4px */
  --sm: 0.5rem; /* 8px */
  --md: 1rem; /* 16px */
  --xmd: 1.25rem; /* 20px */
  --lg: 1.5rem; /* 24px */
  --xl: 2rem; /* 32px */
  --xxl: 2.5rem; /* 40px */
  --xxxl: 3rem; /* 48px */
  --huge: 5.5rem; /* 88px */
  
  /* Font weight variables */
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --extra-bold: 800;
  
  /* Letter spacing variables */
  --tight: -0.25rem;
  --snugger: -0.25px;
  --snug: -0.5px;
  --loose: 0px;
  --looser: 1px;
}

/* Parent styles */

* {
    transition: all 0.3s ease;
}

html {
  	font-family: 'Manrope', sans-serif;
    font-weight: var(--regular);
    color: var(--primary);
  	transition: all 0.3s ease;
    background: #ffffff;
}

/* Common styles */

.mobile {
	display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.reverse {
  flex-direction: row-reverse; 
}

.width-100 {
  width: 100%;
}

.mask {
  overflow: hidden;
}

.inset-0 {
  inset: 0;
}

.z3 {
  z-index: 3;
}

.z2 {
  z-index: 2;
}

.z1 {
  z-index: 1;
}

.z-1 {
  z-index: -1;
}

.row {
  flex-direction: row;
}

.column {
  flex-direction: column;
}

.two-column {
  width: 47%;
}

.three-column {
  width: 30%;
}

.center-text {
  text-align: center;
}

.justify-center {
  justify-content: center;
}

.justify-spacebetween {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.shrink {
  flex-shrink: 2;
}

.bottom-spacing {
  padding-bottom: 10rem;
}

.no-margins {
  margin: 0;
}

.center-margin {
  margin: 0 auto;
}

.width-100 {
  max-width: 100%;
}

.width-90 {
  max-width: 90%;
}

.width-940px {
  max-width: 940px;
}

.width-800px {
  max-width: 800px;
}

.width-600px {
  max-width: 600px;
}

.margin-bottom-0 {
  margin-bottom: 0;
}

.margin-top-0 {
  margin-top: 0;
}

.margin-top-1rem {
  margin-top: 1rem;
}

.margin-top-2rem {
  margin-top: 2rem;
}

.margin-top-10rem {
  margin-top: 10rem;
}

.margin-bottom-2rem {
  margin-bottom: 2rem;
}

.margin-bottom-5rem {
  margin-bottom:5rem;
}

.margin-bottom-3rem {
  margin-bottom:3rem;
}

.margin-bottom-10rem {
  margin-bottom: 10rem;
}

.padding-bottom-10rem {
  padding-bottom: 10rem;
}

.padding-right-1rem {
  padding-right: 1rem;
}

.padding-top-1rem {
  padding-top: 1rem;
}

.padding-top-2rem {
  padding-top: 2rem;
}

.padding-top-5rem {
  padding-top: 5rem;
}

.padding-top-10rem {
  padding-top: 10rem;
}

.padding-left-2rem {
  padding-left: 2rem;
}

.padding-horizontal-2rem {
  padding-left: 2rem;
  padding-right: 2rem;
}

.padding-horizontal-5rem {
  padding-left: 5rem;
  padding-right: 5rem;
}

.padding-vertical-3rem {
    padding-top: 3rem;
  padding-bottom: 3rem;
}

.padding-vertical-5rem {
    padding-top: 5rem;
  padding-bottom: 5rem;
}

.font-size-16px {
  font-size: var(--md);
  line-height: 1.75rem;
}

.line-height-2rem {
  line-height: var(--xl);
}

.semibold {
  font-weight: var(--semibold);
}

.bold {
  font-weight: var(--bold);
}

.extra-bold {
  font-weight: var(--extra-bold);
}

.font-color-secondary {
  color: var(--secondary) !important;
}

.font-color-primary {
  color: var(--primary) !important;
}

.feature-text {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: var(--snugger);
    line-height: var(--xxxl);
    color: var(--secondary);
}

.background-pale {
  background: var(--pale);
}

.background-indigo {
  background: var(--indigo);
}

.background-flamingo {
  background: var(--flamingo);
}

.rounded-corners {
  border-radius: var(--lg);
}

.box-shadow {
    box-shadow: 0px 4px 8px 4px rgb(0 0 0 / 6%);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.border {
  border: 2px solid var(--pale);
}

p.caption {
    color: var(--secondary);
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.25px;
}

a.text-underline {
  display: inline;
  text-shadow: 1px 1px #f5f6f9, -1px 1px #f5f6f9, -1px -1px #f5f6f9,
    1px -1px #f5f6f9;
  background-image: linear-gradient(90deg, currentColor 100%, transparent 100%);
  background-position-y: var(--lg);
  background-repeat: no-repeat;
  background-size: 100% 1px;
}

a.text-underline::selection {
  background-color: rgba(0, 150, 255, 0.3);
  text-shadow: none;
}

/* Element styles */

div.top-line a p:hover {
    color: var(--primary);
}


wrapper {
    max-width: 1200px;
    display: block;
    margin: 0 auto;
}

h1 {
  font-size: var(--huge);  
  font-weight: var(--extra-bold);
  letter-spacing: var(--tight);
  line-height: 96px;
  margin-top:0;
  margin-bottom: var(--xl);
}

h2 {
  font-size: var(--xl);
  font-weight: var(--regular);
  letter-spacing: var(--snug);
  line-height: 3.5rem;
}

h3 {
  font-size: var(--xl);
  font-weight: var(--extra-bold);
  letter-spacing: var(--snug);
  margin-block-start: var(--xxl);
  margin-block-end: var(--md);
}

h4 {
    color: var(--secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: var(--semibold);
    letter-spacing: var(--looser);
}

p {
  font-size: var(--xmd);
  line-height: var(--xl);
}

a {
  text-decoration: none;
  color: var(--primary);
}

a:hover {
  color: var(--secondary);
}

a:hover > .arrow {
  margin-left: var(--xs);
}

li:hover > .arrow {
  margin-left: var(--xs);
}

footer {
  padding: 0 0 var(--lg);
}

/* Nav styles */

nav {
  display: block;
  top: var(--xxxl);
  width: fit-content;
  margin: 0 auto;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, 0);
}

ul {
  list-style-type: none;
  align-items: center;
  align-content: center;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  padding: 0.5rem 0;
  border-radius: 100px;
  background: white;
  margin: 0 auto;
  width: fit-content;
  border: 1px solid rgba(0,0,0,.1);
  background-color: hsla(0,0%,100%,.5);
  box-shadow: 0 10px 10px -5px rgb(0 0 0 / 10%);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

ul li {
  margin: 0 0.5rem;
}

ol li {
    font-size: var(--xmd);
    font-weight: initial;
    color: var(--primary);
}

li {
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-weight: var(--bold);
  color: var(--secondary);
  transition: all 0.2s ease;
}

li.current {
    background: var(--primary);
    color: var(--creamsicle);
}

li:hover {
  color: var(--creamsicle);
}

nav wrapper {
  max-width: initial;
}

/* Home screen, Header + hero styles */

div.top-line p {
  font-weight: var(--bold);
  font-size: var(--md);
  color: var(--secondary);
  line-height: var(--xl);
}

div.top-line wrapper {
    margin-top: 2.75rem;
}

div.logo img {
    max-width: 4rem;
    margin: 0 0.75rem 0 0;
    line-height: var(--xl);
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-radius: 320px;
    border: solid white 4px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
}

.hero-text {
  margin: 0 auto;
  padding: 0 7rem;
  z-index: 1;
}

.bg-shape {
  width: 1145px;
  height: 1145px;
  border-radius: 9999px;
}

.bg-blur-heavy {
  filter: blur(100px);
}

.bg-blur-light {
  filter: blur(300px);
}

.bg-flamingo {
  background-color: var(--flamingo);
}

.bg-azul {
  background-color: var(--azul);
}

.bg-indigo {
  background-color: var(--indigo);
}

.bg-creamsicle {
  background-color: var(--creamsicle);
}

.bg-primary {
  background-color: var(--primary);
}

.font-flamingo {
  color: var(--flamingo);
}

.font-creamsicle {
  color: var(--creamsicle);
}

.opacity-50 {
  opacity: .5;
}

.bg-shape.bg-indigo.bg-blur-heavy.relative {
    bottom: 50%;
    right: 25%;
}

.bg-shape.bg-creamsicle.bg-blur-light.relative {
    bottom: 100%;
    left: 40%;
}

.perspective-left {
  transform: perspective(3000px) rotateY(5deg);
  transition: transform 1s ease 0s;
}

.perspective-left:hover {
  transform: perspective(1500px) rotateY(15deg);
}

.perspective-right {
  transform: perspective(3000px) rotateY(-5deg);
  transition: transform 1s ease 0s;
}

.perspective-right:hover {
  transform: perspective(1500px) rotateY(-15deg);
}

header wrapper {
  max-width: 1200px;
  margin: 3rem auto 5rem;
  padding: 7rem 0;
  border-radius: var(--xl);
}

/* Home screen, project row */

section.projects-section {
    position: relative;
    z-index: 1;
    padding: 0;
}

.project.flex {
    justify-content: space-between;
    align-items: center;
}

div.project-image {
  max-width: 60%;
  overflow: hidden;
  border-radius: var(--xl);
}

div.project-image img {
  width: 100%;
  display: block;
}

.project-description {
    max-width: 33%;
}

div.project-description p {
  margin-block-start: 0;
  margin-block-end: var(--xxl);
}

div.project-description a {
  font-size: var(--xmd);
  font-weight: var(--bold);
}

div.project-description a:hover {
  color: var(--secondary);
}

/* Home screen, bottom section */

wrapper.even-split .project-description {
    max-width: 41%;
    background: var(--pale);
    border-radius: var(--lg);
    padding: var(--xxl);
}

wrapper.even-split h1 {
    margin-block-end: var(--xl);
}

/* Case study */

header.hero wrapper {
  padding: 0;
}

header.hero img {
    width: -webkit-fill-available;
    border-radius: var(--lg);
}

.hero h1 {
    font-size: var(--xxxl);
    letter-spacing: -1.5px;
    margin-block-end: 0;
}

header.hero h4 {
  margin-block-end: var(--huge);
}

  .callout {
    padding: var(--md) var(--xxxl);
  }

/* About */

.about {
  padding-top: initial;
}

.about h2 {
  padding-top: 5rem;
}

/* Collab */

body.collab .two-column {
  width: 48%;
}

body.collab h4 {
  margin-bottom: 2rem;
}

p.quoted {
  font-weight: bold;
}

/* Media queries */

@media (max-width: 480px) {
  
  wrapper.home {
    max-width: 100%;
  }
  
  wrapper {
    max-width: 90% !important;
  }
  
  wrapper.800px {
    max-width: 90% !important;
  }
  
    wrapper.600px {
    max-width: 90% !important;
  }
  
  div.800px {
    max-width: 90% !important;
  }
  
    div.600px {
    max-width: 90% !important;
  }
  
  nav ul.flex {
    justify-content: space-around;
  }
  
  header wrapper {
    max-width: 90%;
    padding: 2rem 0;
    margin: 1.25rem auto;
  }
  
body.collab h4 {
    margin-top: 3rem;
   text-align: center;
}
  
  
  header.hero h4 {
    margin-block-end: var(--xxxl);
}

  .hero h1 {
    line-height: 3.5rem;
    margin-block-end: 2rem;
    font-size: var(--xxl);
}
  
p.caption {
    line-height: var(--lg);
}
  
  .feature-text {
    line-height: 2.75rem;

}
  
  .row {
    flex-direction: column;
  }
  
  .three-column {
    width: 100%;
  }
  
  .two-column {
    width: 100%;
  }
  
   body.collab .two-column {
    width: 100%;
  }
  
body.collab .flex.row {
    margin-bottom: initial;
}
  
  section.width-800px {
    margin: 0 auto;
  }
  
    section.width-600px {
    margin: 0 auto;
  }
  
  div.three-column.box-shadow {
    margin-bottom: var(--lg);
  }
  
  div.top-line {
    display: none;
  }
  
  .hero-text {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2.25rem;
    line-height: 2.75rem;
    letter-spacing: -1px;
    margin-bottom: var(--md);  }
  
  h2 {
    font-size: var(--lg);
    font-weight: var(--regular);
    line-height: var(--xl);
    margin-block-end: 0;
	  letter-spacing: 0;
  }
  
  h3 {
    margin-block-start: 1.5rem;
    font-size: var(--lg);
    line-height: var(--xl);
  }
  
  body.collab h3 {
    margin-block-start: 0;
  }
  
  p {
    line-height: var(--xl);
}
  
  .font-size-16px {
    font-size: 1.25rem;
    line-height: 2.25rem;
}
  
  footer .font-size-16px {
    font-size: var(--md);
    line-height: var(--xl);
  }
  
  .reverse {
    flex-direction: column-reverse;
  }
  
  .fixed {
    bottom: var(--md);
    top: initial;
    width: 100%;
  }
  
  ul {
    width: 100%;
    margin: 0 auto;
  }
  
  ul li {
    margin: 0;
    font-size:14px;
    padding:0.5rem 0.75rem
  }
  
  section.projects-section .flex {
    flex-direction: column;
}
  
  div.project-image {
    max-width: 100%;
    height: initial;
    margin: 0 0 2rem 0;
    border-radius: var(--lg);
}
  
  body.index div.project-image {
        max-width: 100%;
  }
  
  div.project-image img {
    width: 30rem;
}
  
  .project-description {
    max-width: 90%;
}
  
 body.index .project-description {
    max-width: 90%;
}
  
div.project-description p {
    margin-block-end: var(--lg);
}

.bg-shape.bg-indigo.bg-blur-heavy.relative {
    bottom: initial;
    right: initial;
}

.bg-shape.bg-creamsicle.bg-blur-light.relative {
    bottom: initial;
    left: initial;
}
  
.perspective-left {
  transform: initial;
  transition: initial;
}

.perspective-left:hover {
  transform: initial;
}

.perspective-right {
  transform: initial;
  transition: initial;
}

.perspective-right:hover {
  transform: initial;
}
  
wrapper.even-split .project-description {
    max-width: initial;
    width: 100%;
    padding: var(--xl) 0;
    margin: 0 0 2rem 0;
}
  
wrapper.even-split h1 {
    padding: 0 var(--xl);
}
  
wrapper.even-split a {
    padding: 0 var(--xl);
}
  
wrapper.relative.even-split {
    max-width: 90%;
}
  
  .callout {
    padding: var(--md) var(--xl);
  }
  
footer {
    padding: 0 0 8rem;
}
  
footer wrapper p {
    max-width: 90%;
    margin: 0 auto;
    font-weight: initial !important;
}
  
.mobile {
    display: block;
  }
  
.desktop {
    display: none;
  }
  
.rounded-corners.box-shadow {
    margin-bottom: 1.5rem;
}
  
.about {
  padding-top: 2rem;
}
  
.about h2 {
  padding-top: initial;
}

}

@media (min-width: 481px) and (max-width: 768px) {

  wrapper {
    max-width: 90%;
  }
  
  header wrapper {
    max-width: 90%;
    padding: 3rem 0;
    margin: 2rem auto;
  }
  
      wrapper.width-600px {
    max-width: 90%;
  }
  
  div.width-600px {
    max-width: 90%;
  }
  
  .about img {
    max-width: 90%;
    display: block;
    margin: 0 auto;
}
  
  .hero-text {
    padding: 0 2rem;
  }
  
  h1 {
    font-size: 4rem;
    line-height: 4.5rem;
    letter-spacing: -2px;
  }
  
  h2 {
     font-size: var(--xl);
     line-height: 3rem;
  }
  
  h3 {
    margin-block-start: var(--lg);
}

  .fixed {
    bottom: var(--xl);
    top: initial;
  }
  
  .row {
    flex-direction: column;
  }
  
  .three-column {
    width: 100%;
  }
  
  .two-column {
    width: 100%;
  }
  
  div.three-column.box-shadow {
    margin-bottom:3rem;
  }
  
  .project.flex {
    flex-direction: column;
  }
  
  div.project-image {
    max-width: 100%;
  }
  
  .project-description {
    max-width: 90%;
    margin: 3rem 0 0 0;
  }
  
      wrapper.600px {
    max-width: 90% !important;
  }

  
    div.600px {
    max-width: 90% !important;
  }
  

  .perspective-left {
  transform: initial;
  transition: initial;
}

.perspective-left:hover {
  transform: initial;
}

.perspective-right {
  transform: initial;
  transition: initial;
}

.perspective-right:hover {
  transform: initial;
}
  
  wrapper.even-split .project-description {
    max-width: initial;
    width: 100%;
    padding: var(--xxl) 0;
    margin: 0 0 var(--xxxl) 0;
}
  
  wrapper.even-split h1 {
    padding: 0 var(--xxl);
  }
  
  wrapper.even-split a {
    padding: 0 var(--xxl);
  }
  
  
}

@media (min-width: 769px) and (max-width:1024px) {

  wrapper {
    max-width: 90%;
  }
  
  wrapper.800px {
    max-width: 90%;
  }
  
  div.800px {
    max-width: 90%;
  }
 
  nav {
    bottom: var(--xl);
    top: initial;
}
  
  header wrapper {
    max-width: 90%;
    padding: 5rem 0;
    margin: 3rem auto;
  }
  
  .hero-text {
    padding: 0 5rem;
  }
  
  ul.flex.justify-center {
    width: fit-content;
  }
  
  h1 {
    font-size: 5rem;
    line-height: 6.25rem;
  }
  
.project-description {
    max-width: 90%;
}
  
  wrapper.even-split .project-description {
    max-width: initial;
    width: 100%;
    padding: var(--xxl) 0;
    margin-bottom: var(--xxxl);
}
  
  wrapper.even-split h1 {
    padding: 0 var(--xxl);
  }
  
  wrapper.even-split a {
    padding: 0 var(--xxl);
  }
  
  .project.flex {
    flex-direction: column;
}
  
 div.project-image {
    max-width: 100%;
    margin-bottom: var(--xxxl);
} 
  
.bg-shape.bg-indigo.bg-blur-heavy.relative {
    bottom: initial;
    right: initial;
}

.bg-shape.bg-creamsicle.bg-blur-light.relative {
    bottom: initial;
    left: initial;
}
  
.perspective-left {
  transform: initial;
  transition: initial;
}

.perspective-left:hover {
  transform: initial;
}

.perspective-right {
  transform: initial;
  transition: initial;
}

.perspective-right:hover {
  transform: initial;
}

}

@media (min-width: 1025px) and (max-width: 1350px){

  wrapper {
    max-width: 90%;
  }
  
  header wrapper {
    max-width: 90%;
  }
  
  .hero-text {
    padding: 0 7rem;
  }
  
  h1 {
    font-size: var(--huge);
    line-height: 7rem;
  }

}