@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,700;1,400&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after, blockquote:before {
  content: "";
  content: none;
}

q:after, q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "PT Serif", "EB Garamond", Georgia, serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #142c28;
}

h1 {
  font-size: 2rem;
  line-height: 1.375;
}

h2,
h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.section-title {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(90deg, #25618C 0%, #564662 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title--alt {
  background: linear-gradient(90deg, #7A0D41 0%, #5D0B83 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

html {
  box-sizing: border-box;
  /* Smooth scrolling IF user doesn't have a preference due to motion sensitivities */
}
@media screen and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

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

body {
  background-color: #f7f7f4;
  padding: 2.5rem;
  opacity: 0;
  animation: fade-in 0.2s forwards;
}
@media only screen and (max-width: 120em) {
  body {
    padding-right: 0;
  }
}
@media only screen and (max-width: 50em) {
  body {
    padding: 0;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-frame {
  position: relative;
  overflow: hidden;
  background: #f7f7f4;
  border-radius: 4px;
  box-shadow: -2px 0px 6px 0px rgba(0, 0, 0, 0.05), -6px 0px 30px 0px rgba(0, 0, 0, 0.05), 0px 8px 20px 0px rgba(0, 0, 0, 0.05);
  max-width: 120rem;
  margin: 0 auto;
  animation: slide-in 0.5s ease-out forwards;
}
@media only screen and (max-width: 120em) {
  .page-frame {
    border-radius: 4px 0px 0px 4px;
  }
}
@media only screen and (max-width: 50em) {
  .page-frame {
    border-radius: 0;
    box-shadow: none;
  }
}

@keyframes slide-in {
  from {
    transform: translate(0, 1rem);
  }
  to {
    transform: translate(0, 0);
  }
}
.skip-link {
  left: 50%;
  top: 0;
  padding: 0.5rem;
  position: absolute;
  transform: translate(-50%, -100%);
  font-family: "Work Sans", Helvetica, sans-serif;
  color: #081A36;
}

.skip-link:focus {
  transform: translate(-50%, 0%);
}

#main-content {
  position: relative;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 6rem 10rem;
  position: relative;
}
@media only screen and (max-width: 87.5em) {
  .section {
    padding: 6rem 7.5rem;
  }
}
@media only screen and (max-width: 62.5em) {
  .section {
    padding: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section {
    padding: 4rem 1.5rem;
    gap: 1.5rem;
  }
}

.intro {
  align-items: flex-start;
}
@media only screen and (max-width: 62.5em) {
  .intro {
    padding: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .intro {
    padding: 4rem 1.5rem;
    align-items: center;
  }
}

.intro-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-body p {
  max-width: 40rem;
  font-size: 1.25rem;
  line-height: 1.6;
}
@media only screen and (max-width: 37.5em) {
  .intro-body p {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

.intro-body p:first-child {
  margin-left: -2.5rem;
  margin-bottom: 1.5rem;
  max-width: 60rem;
  font-size: 2rem;
  line-height: 1.375;
}
@media only screen and (max-width: 62.5em) {
  .intro-body p:first-child {
    margin-left: -1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .intro-body p:first-child {
    margin-left: 0;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

p a,
.essay-content a {
  color: #077090;
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
p a::before, p a::after,
.essay-content a::before,
.essay-content a::after {
  content: "";
  background-color: #077090;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: transform 0.2s ease;
}
p a::before,
.essay-content a::before {
  opacity: 0.4;
}
p a::after,
.essay-content a::after {
  transform: scale(0, 1);
  transform-origin: left;
}
p a span,
.essay-content a span {
  display: inline-block;
  transition: transform 0.2s ease;
}
p a:hover,
.essay-content a:hover {
  color: rgb(3.4536423841, 55.2582781457, 71.0463576159);
}
p a:hover::before,
.essay-content a:hover::before {
  transform: translate(0, 2px);
}
p a:hover::after,
.essay-content a:hover::after {
  transform: scale(1) translate(0, 2px);
}
p a:hover span,
.essay-content a:hover span {
  transform: translate(0, -1px);
}

[aria-hidden] {
  display: none;
}

.site-head {
  padding: 5rem 7.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  position: relative;
}
@media only screen and (max-width: 50em) {
  .site-head {
    padding: 5rem 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .site-head {
    padding: 4rem 1.5rem;
    flex-direction: column;
    gap: 2rem;
  }
}

.site-head__logo {
  width: 4rem;
  height: 3rem;
  display: block;
  overflow: hidden;
  text-indent: -100vw;
  background: url("images/logo.svg") no-repeat center;
  background-size: contain;
}
@media only screen and (max-width: 37.5em) {
  .site-head__logo {
    width: 3rem;
    height: 2.5rem;
  }
}

.page--about .site-head__logo,
.page--essays .site-head__logo,
.page--essay .site-head__logo,
.page--case-study .site-head__logo {
  background-image: url("images/logo--alt.svg");
}

.main-nav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

.main-nav__list-item {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
}

@media only screen and (max-width: 50em) {
  .main-nav__list-item:nth-child(3) {
    display: none;
  }
}

.main-nav__link, .breadcrumb {
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.75) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  display: block;
  position: relative;
}
.main-nav__link::after, .breadcrumb::after {
  content: "";
  display: block;
  background-color: #FFD643;
  width: calc(100% + 1rem);
  height: 0.5rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  opacity: 0.6;
  mix-blend-mode: lighten;
  transform: scale(0, 1) translateX(-50%);
  transform-origin: left;
  transition: all 300ms cubic-bezier(1, 0, 0, 1); /* easeInOutExpo */
}
.main-nav__link:hover::after, .breadcrumb:hover::after {
  transform: scale(1, 1) translateX(-50%);
}

.page--about .main-nav__link, .page--about .breadcrumb,
.page--essays .main-nav__link,
.page--essays .breadcrumb,
.page--essay .main-nav__link,
.page--essay .breadcrumb,
.page--case-study .main-nav__link,
.page--case-study .breadcrumb {
  background: linear-gradient(90deg, #25618C 0%, #564662 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page--about .main-nav__link::after, .page--about .breadcrumb::after,
.page--essays .main-nav__link::after,
.page--essays .breadcrumb::after,
.page--essay .main-nav__link::after,
.page--essay .breadcrumb::after,
.page--case-study .main-nav__link::after,
.page--case-study .breadcrumb::after {
  mix-blend-mode: darken;
}

.main-nav__link[aria-current=page], [aria-current=page].breadcrumb {
  pointer-events: none;
}
.main-nav__link[aria-current=page]::after, [aria-current=page].breadcrumb::after {
  transform: scale(1, 1) translateX(-50%);
}

.main-nav__link[data-state=active]::after, [data-state=active].breadcrumb::after {
  transform: scale(1, 1) translateX(-50%);
}

.main-nav__link[target=_blank]::before, [target=_blank].breadcrumb::before {
  content: url(images/arrow-up.svg);
  display: block;
  position: absolute;
  right: -1.5rem;
  top: 0;
  opacity: 0;
  transition: all 200ms cubic-bezier(1, 0, 0, 1); /* easeInOutExpo */
  transform: scale(75%) translate(-50%, -25%) rotate(45deg);
}
.main-nav__link[target=_blank]:hover::before, [target=_blank].breadcrumb:hover::before {
  opacity: 1;
  transform: scale(75%) translate(0, -50%) rotate(45deg);
}

.page--home .main-nav__link[target=_blank]::before, .page--home [target=_blank].breadcrumb::before {
  content: url(images/arrow-up--white.svg);
}

.site-footer {
  display: flex;
  padding: 4rem 2.5rem 0 2.5rem;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.8;
  color: #081A36;
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.2px;
  max-width: 120rem;
  margin: 0 auto;
}
.site-footer::before {
  content: url(images/logo--small.svg);
  width: 2.5rem;
  display: block;
}
@media only screen and (max-width: 120em) {
  .site-footer {
    align-items: flex-start;
    text-align: left;
  }
}
@media only screen and (max-width: 50em) {
  .site-footer {
    padding-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .site-footer {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.site-footer a {
  color: inherit;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.site-footer a::before, .site-footer a::after {
  content: "";
  background-color: #081A36;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: transform 0.2s ease;
}
.site-footer a::before {
  opacity: 0.4;
}
.site-footer a::after {
  transform: scale(0, 1);
  transform-origin: left;
}
.site-footer a span {
  display: inline-block;
  transition: transform 0.2s ease;
}
.site-footer a:hover {
  color: black;
}
.site-footer a:hover::before {
  transform: translate(0, 2px);
}
.site-footer a:hover::after {
  transform: scale(1) translate(0, 2px);
}
.site-footer a:hover span {
  transform: translate(0, -1px);
}

.copyright {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author {
  font-weight: 700;
}

.back-to-top {
  margin-top: 2.5rem;
}

.back-to-top span::after {
  content: url(images/arrow-up.svg);
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%) scale(75%);
}

.page--home {
  background: linear-gradient(0deg, rgba(26, 102, 184, 0.4) 0%, rgba(62, 110, 143, 0.1) 60%, #f7f7f4 100%);
}

.masthead--home {
  position: relative;
  z-index: 1;
  height: 90vh;
  max-height: 50rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.masthead--home .tagline {
  font-family: "PT Serif", "EB Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.375;
  padding: 5rem 7.5rem;
  max-width: 66rem;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 50em) {
  .masthead--home .tagline {
    padding: 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .masthead--home .tagline {
    padding: 4rem 1.5rem;
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

.intro--home {
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
  background: rgba(247, 247, 244, 0.4);
}

.page--about {
  background: linear-gradient(0deg, rgba(212, 143, 38, 0.4) 0%, rgba(226, 80, 150, 0) 100%), #f7f7f4;
}

.why-i-design {
  background: #fff;
}

.why-i-design h2 {
  text-align: center;
}

.profile-pic {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 7.5rem;
  margin-top: 2.5rem;
  overflow: hidden;
  border: 0.5rem solid #f7f7f4;
}
.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 37.5em) {
  .profile-pic {
    margin-top: 1.5rem;
  }
}

.colophon {
  background: #1C2548;
  display: flex;
  flex-direction: row;
  gap: 4rem;
}
@media only screen and (max-width: 75em) {
  .colophon {
    flex-direction: column;
  }
}
@media only screen and (max-width: 37.5em) {
  .colophon {
    gap: 2.5rem;
  }
}
.colophon .bg-shape-1 {
  mix-blend-mode: screen;
  opacity: 0.1;
  transform: translate(-75%, -10%);
  width: 120rem;
  height: 120rem;
}
.colophon .noise {
  opacity: 0.8;
}

.colophon__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  color: #fff;
  z-index: 1;
  align-items: flex-start;
}
.colophon__content p {
  opacity: 0.9;
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
}
@media only screen and (max-width: 37.5em) {
  .colophon__content p {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}
.colophon__content a {
  color: #fff;
}
.colophon__content a::before, .colophon__content a::after {
  content: "";
  background-color: #fff;
}
.colophon__content a:hover {
  color: #fff;
}
@media only screen and (max-width: 75em) {
  .colophon__content {
    gap: 1rem;
  }
}

.colophon-heading {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.75) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-shapes {
  position: relative;
}

.bg-shape-1 {
  width: 90rem;
  height: 90rem;
  border-radius: 90rem;
  position: absolute;
  top: 0;
  left: 100%;
  transform: translate(-50%, -10%);
  opacity: 0.7;
  background: radial-gradient(50% 50% at 50% 50%, #E768CB 0%, #FF9D73 100%);
  mix-blend-mode: overlay;
  animation: bg-shape-1 120s alternate infinite linear;
}
@media only screen and (max-width: 50em) {
  .bg-shape-1 {
    transform: translate(-40%, 1rem);
  }
}

@keyframes bg-shape-1 {
  from {
    transform: translate(-50%, -10%) scale(1);
  }
  to {
    transform: translate(-50%, -10%) scale(1.5);
  }
}
.bg-shape-2 {
  width: calc(100% - 2.5rem);
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 90%);
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #042B7D 15%, rgba(85, 130, 167, 0.5) 50%, rgba(190, 189, 165, 0) 70%);
  animation: bg-shape-2 90s infinite alternate;
  transform-origin: top left;
}
@media only screen and (max-width: 50em) {
  .bg-shape-2 {
    clip-path: none;
    width: 100%;
  }
}

@keyframes bg-shape-2 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05, 1.2);
  }
}
.bg-shape-3 {
  width: calc(100% + 2.5rem);
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  background: linear-gradient(0deg, #B77DBD 0%, rgba(16, 216, 243, 0.8) 60%);
  animation: bg-shape-3 60s alternate infinite ease-out;
  transform-origin: left;
}
@media only screen and (max-width: 50em) {
  .bg-shape-3 {
    width: 80%;
  }
}

@keyframes bg-shape-3 {
  from {
    opacity: 0.4;
    transform: scale(1);
  }
  to {
    opacity: 0.2;
    transform: scale(0.9, 1);
  }
}
.bg-shape-4 {
  width: calc(100% + 2.5rem);
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
  position: absolute;
  top: 0;
  left: -2.5rem;
  opacity: 0.1;
  background: linear-gradient(0deg, #DE10F3 0%, rgba(16, 216, 243, 0.3) 70%);
  animation: bg-shape-4 60s infinite alternate ease-out;
  transform-origin: top right;
}
@media only screen and (max-width: 37.5em) {
  .bg-shape-4 {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 40% 100%);
  }
}

@keyframes bg-shape-4 {
  to {
    transform: scale(0.9, 1);
  }
}
.bg-shape-5 {
  width: 80%;
  height: 100%;
  clip-path: polygon(0 0, 90% 0, 100% 90%, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.15;
  background: linear-gradient(180deg, rgba(222, 16, 243, 0.5) 0%, rgba(222, 16, 243, 0) 90%);
  animation: bg-shape-5 90s alternate infinite;
  transform-origin: top left;
}
@media only screen and (max-width: 37.5em) {
  .bg-shape-5 {
    width: 100%;
  }
}

@keyframes bg-shape-5 {
  to {
    opacity: 0.05;
    transform: scale(1.2);
  }
}
.bg-shape-6 {
  width: 50rem;
  height: 100%;
  clip-path: polygon(0 0, 30% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  mix-blend-mode: lighten;
  background: linear-gradient(180deg, #7F48F3 0%, rgba(222, 16, 243, 0) 100%);
}

.bg-shape-7 {
  width: calc(100% + 2.5rem);
  height: 100rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 40% 100%);
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.1;
  background: linear-gradient(0deg, rgba(225, 243, 16, 0) 0%, rgba(243, 152, 16, 0.5) 51.56%, rgba(238, 243, 16, 0.5) 100%);
}

.bg-shape-8 {
  width: 80%;
  height: 75rem;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 90%);
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(243, 98, 16, 0.5) 0%, rgba(214, 255, 128, 0.6) 80%, rgba(244, 213, 100, 0) 100%);
  opacity: 0.1;
}

.bg-shape-8--reverse {
  width: 100%;
  height: 75rem;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 40% 100%);
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(243, 98, 16, 0.5) 0%, rgba(214, 255, 128, 0.6) 80%, rgba(244, 213, 100, 0) 100%);
  opacity: 0.1;
}

.bg-shape-9 {
  width: 100%;
  height: 100rem;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 80%);
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #E594DF 0%, #6FD9C6 50%, rgba(183, 149, 92, 0) 80%);
  opacity: 0.1;
  animation: bg-shape-9 80s infinite alternate;
  transform-origin: left top;
}

@keyframes bg-shape-9 {
  to {
    transform: scale(0.9);
  }
}
.bg-shape-10 {
  width: 90%;
  height: 100rem;
  clip-path: polygon(10% 0, 100% 0, 75% 100%, 0 100%);
  position: absolute;
  top: 0;
  right: -10%;
  background: linear-gradient(20deg, rgba(255, 220, 180, 0) 20%, rgba(194, 122, 194, 0.5) 60%, #FFBE50 100%);
  opacity: 0.1;
  animation: bg-shape-10 90s infinite alternate linear;
  transform-origin: center top;
}

@keyframes bg-shape-10 {
  to {
    transform: scale(0.8, 1.5);
  }
}
.noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/noise.png);
  mix-blend-mode: overlay;
  opacity: 0.3;
}

.bg-shape--case-studies {
  width: 75%;
  height: 60%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.25;
  background: linear-gradient(70deg, rgba(255, 232, 192, 0.5) 10%, #FFE3B2 50%, #F9D8C6 90%);
}

.bg-shape--partnerships {
  width: 150rem;
  height: 150rem;
  border-radius: 150rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  background: linear-gradient(90deg, #8B48F3 0, rgba(190, 41, 104, 0.6) 50%, rgba(16, 66, 243, 0.4) 80%), #D9D9D9;
  mix-blend-mode: color-burn;
  animation: bg-shape--partnerships 120s infinite alternate ease-out;
}
@media only screen and (max-width: 37.5em) {
  .bg-shape--partnerships {
    transform: translate(-80%, -60%);
  }
}

@keyframes bg-shape--partnerships {
  from {
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    transform: translate(-50%, -50%) scale(1.6);
  }
}
.case-studies {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 7.5rem 10rem;
  background: white;
  position: relative;
}
@media only screen and (max-width: 120em) {
  .case-studies {
    padding: 5rem;
  }
}
@media only screen and (max-width: 75em) {
  .case-studies {
    padding: 4rem 2.5rem;
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .case-studies {
    padding: 4rem 1.5rem;
    gap: 1.5rem;
  }
}

.case-study {
  background: rgba(27, 69, 64, 0.04);
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 6rem 5rem 5rem;
  border-radius: 2px;
  position: relative;
}
@media only screen and (max-width: 87.5em) {
  .case-study {
    padding-right: 2.5rem;
  }
}
@media only screen and (max-width: 75em) {
  .case-study {
    padding: 6rem 2.5rem 2.5rem;
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .case-study {
    padding: 5rem 1rem 2.5rem;
    gap: 1.5rem;
  }
}

.case-study__label {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  display: block;
  padding: 0 1rem 0 2.5rem;
  font-size: 0.875rem;
  line-height: 2rem;
  color: white;
  background: #142c28;
}

.case-study__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 50% 1.5rem 0;
  position: relative;
}
@media only screen and (max-width: 62.5em) {
  .case-study__content {
    padding: 0;
  }
}
@media only screen and (max-width: 50em) {
  .case-study__content {
    gap: 1.5rem;
  }
}

.case-study__title {
  font-family: "PT Serif", "EB Garamond", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: normal;
  background-color: #142c28;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 62.5em) {
  .case-study__title {
    order: -2;
  }
}
@media only screen and (max-width: 37.5em) {
  .case-study__title {
    font-size: 2rem;
    line-height: 1.25;
  }
}

.case-study__description {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media only screen and (max-width: 37.5em) {
  .case-study__description {
    gap: 0.75rem;
  }
}

.case-study__description p {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: -0.2px;
}
@media only screen and (max-width: 37.5em) {
  .case-study__description p {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.case-study__intro {
  font-family: "PT Serif", "EB Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0;
}
@media only screen and (max-width: 37.5em) {
  .case-study__intro {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

.case-study__images {
  position: absolute;
  right: -8rem;
  top: 50%;
  width: calc(50% + 6rem);
  max-width: 50rem;
  height: calc(100% + 10rem);
  aspect-ratio: 4/3;
  transform: translate(0, -50%);
}
.case-study__images:hover li:nth-child(1) {
  opacity: 0;
  transform: scale(1.02);
}
.case-study__images:hover li:nth-child(2) {
  opacity: 1;
  transform: scale(1.02);
}
@media only screen and (max-width: 87.5em) {
  .case-study__images {
    right: -4rem;
    width: calc(50% + 2rem);
  }
}
@media only screen and (max-width: 62.5em) {
  .case-study__images {
    position: relative;
    width: calc(100% + 4rem);
    transform: none;
    left: -2rem;
    right: -2rem;
    top: auto;
    order: -1;
    aspect-ratio: 1.3/1;
  }
}

.case-study__images li {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all 600ms ease-in-out;
}
.case-study__images li:nth-child(2) {
  opacity: 0;
}
.case-study__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.case-study__meta {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}
@media only screen and (max-width: 62.5em) {
  .case-study__meta {
    flex-direction: column;
    gap: 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .case-study__meta {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
}

.case-study__meta-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media only screen and (max-width: 62.5em) {
  .case-study__meta-item {
    display: block;
  }
}

.meta-label::after {
  content: "_";
}

.meta-value {
  font-weight: 400;
}

.case-study--1 .case-study__label {
  background: linear-gradient(90deg, rgba(3, 22, 90, 0) 0%, #157EDE 80%);
}
.case-study--1 .case-study__title {
  background-image: linear-gradient(90deg, #144365 0%, #075EAE 100%);
}

.case-study--2 .case-study__label {
  background: linear-gradient(90deg, rgba(89, 26, 112, 0) 0%, #27438B 80%);
}
.case-study--2 .case-study__title {
  background-image: linear-gradient(90deg, #591A70 0%, #27438B 100%);
}

.case-study--3 .case-study__label {
  background: linear-gradient(90deg, rgba(19, 89, 64, 0) 0%, #3A773C 80%);
}
.case-study--3 .case-study__title {
  background-image: linear-gradient(90deg, #13704E 0%, #408442 100%);
}

.case-studies-list {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  gap: 0.5rem;
}

.case-studies-list__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  transition: all ease-out 400ms;
  padding: 4rem;
  border-radius: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0), 0px 4px 24px 0px rgba(0, 0, 0, 0);
  background-color: rgba(27, 69, 64, 0.04);
}
@media only screen and (max-width: 75em) {
  .case-studies-list__item {
    flex-direction: column;
    gap: 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .case-studies-list__item {
    padding: 1.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .case-studies-list__item:hover {
    transform: scale3d(1.01, 1.01, 1.01);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(27, 69, 64, 0.06);
  }
  .case-studies-list__item:hover + .essays-list__item::before, .case-studies-list__item:hover::before {
    opacity: 0;
  }
}

.case-study-teaser__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case-study-teaser__inline-text {
  flex-grow: 1;
}
.case-study-teaser__inline-text * {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
@media only screen and (max-width: 37.5em) {
  .case-study-teaser__inline-text * {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

.case-study-teaser__title {
  display: inline;
  font-weight: 600;
}

.case-study-teaser__link {
  color: inherit;
  text-decoration: none;
}
.case-study-teaser__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.case-study-teaser__intro {
  display: inline;
  font-weight: 400;
}

.case-study-teaser__meta * {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.8;
}
@media only screen and (max-width: 37.5em) {
  .case-study-teaser__meta * {
    font-size: 0.75rem;
  }
}

.case-study-teaser__thumb {
  border-radius: 0.25rem;
  width: 60%;
  flex: 60% 0 0;
  margin-right: -8rem;
}
@media only screen and (max-width: 75em) {
  .case-study-teaser__thumb {
    width: 100%;
    margin: 0;
  }
}

.partnerships {
  align-items: flex-start;
  overflow: hidden;
}

.partnerships__list {
  display: flex;
  flex-direction: column;
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.2px;
}

.partnerships__list-item {
  display: flex;
  padding: 1rem 0 1.5rem;
  gap: 4rem;
  position: relative;
}
.partnerships__list-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, rgba(239, 185, 45, 0) 0%, rgba(70, 12, 80, 0.25) 50%, rgba(19, 59, 119, 0.5) 100%);
}
@media only screen and (max-width: 75em) {
  .partnerships__list-item {
    gap: 2rem;
  }
}
@media only screen and (max-width: 62.5em) {
  .partnerships__list-item {
    flex-direction: column;
    gap: 0.25rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .partnerships__list-item {
    gap: 0;
  }
}

.client-name {
  font-weight: 700;
  line-height: 1.5;
  flex: 30% 0 2;
}
@media only screen and (max-width: 75em) {
  .client-name {
    flex-basis: 20%;
  }
}
@media only screen and (max-width: 37.5em) {
  .client-name {
    max-width: 60%;
  }
}

.client-sector {
  flex: 15% 0 0;
  font-style: italic;
}
@media only screen and (max-width: 37.5em) {
  .client-sector {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.project-description {
  flex: 40% 1 1;
}
@media only screen and (max-width: 37.5em) {
  .project-description {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.partnership-dates {
  flex: 15% 0 0;
}
@media only screen and (max-width: 37.5em) {
  .partnership-dates {
    position: absolute;
    top: 1rem;
    right: 0;
    font-size: 0.875rem;
    max-width: 40%;
    text-align: right;
  }
}

.page--essays {
  background: linear-gradient(0deg, rgba(52, 175, 214, 0.2) 0%, rgba(120, 43, 219, 0.1) 60%, #f7f7f4 100%);
}

.page--essay {
  background: linear-gradient(0deg, rgba(212, 143, 38, 0.3) 0%, rgba(226, 80, 150, 0.1) 40%, #f7f7f4 100%);
}

.essays {
  align-items: center;
}

.essays__title {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(90deg, #7A0D41 0%, #5D0B83 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.essays__intro {
  font-family: "PT Serif", "EB Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.375;
  text-align: center;
}
.essays__intro::after {
  content: url(images/fleuron.svg);
  display: block;
  margin-top: 2.5rem;
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .essays__intro::after {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .essays__intro {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

.essays-list {
  display: flex;
  flex-direction: column;
  max-width: 40rem;
}
@media only screen and (max-width: 37.5em) {
  .essays-list {
    gap: 0.5rem;
  }
}

.essays-list__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  position: relative;
  transition: all ease-out 400ms;
  padding: 2.5rem;
  border-radius: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0), 0px 4px 24px 0px rgba(0, 0, 0, 0);
  background-color: rgba(255, 255, 255, 0);
}
@media only screen and (max-width: 37.5em) {
  .essays-list__item {
    padding: 1.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .essays-list__item:hover {
    transform: scale3d(1.01, 1.01, 1.01);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05), 0px 4px 24px 0px rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.2);
  }
  .essays-list__item:hover + .essays-list__item::before, .essays-list__item:hover::before {
    opacity: 0;
  }
}

.essays-list__item:not(:first-child) {
  padding-top: 2.5rem;
}
@media only screen and (max-width: 37.5em) {
  .essays-list__item:not(:first-child) {
    padding-top: 1.5rem;
  }
}
.essays-list__item:not(:first-child)::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background-color: #142c28;
  position: absolute;
  top: 0;
  left: 2.5rem;
  transition: opacity ease-in-out 200ms;
}
@media only screen and (max-width: 37.5em) {
  .essays-list__item:not(:first-child)::before {
    left: 1.5rem;
  }
}

.essay-teaser__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.essay-teaser__title {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
}

.essay-teaser__link {
  color: inherit;
  text-decoration: none;
}
.essay-teaser__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.essay-teaser__intro {
  font-size: 1.25rem;
  line-height: 1.6;
}
@media only screen and (max-width: 37.5em) {
  .essay-teaser__intro {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

.essay-teaser__meta * {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.8;
}
@media only screen and (max-width: 37.5em) {
  .essay-teaser__meta * {
    font-size: 0.75rem;
  }
}

.essay-teaser__thumb {
  border-radius: 0.25rem;
}

.page--essay .page-frame,
.page--case-study .page-frame {
  background: #fff;
}

.essay {
  z-index: 1;
  align-items: center;
  font-family: "PT Serif", "EB Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.6;
}
@media only screen and (max-width: 37.5em) {
  .essay {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

.full-essay {
  text-wrap: pretty;
}

.breadcrumb {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(90deg, #7A0D41 0%, #5D0B83 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.essay-title {
  font-size: 4rem;
  line-height: 5rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .essay-title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

.essay-intro {
  font-size: 2rem;
  line-height: 1.375;
  text-align: center;
  max-width: 60rem;
}
@media only screen and (max-width: 37.5em) {
  .essay-intro {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

.essay-content {
  max-width: 50rem;
  hanging-punctuation: first;
}
.essay-content::before {
  content: url(images/fleuron.svg);
  display: block;
  margin-bottom: 2.5rem;
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .essay-content::before {
    margin-bottom: 1.5rem;
  }
}
.essay-content > *:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 37.5em) {
  .essay-content {
    align-self: stretch;
  }
}

.essay-content p {
  margin-top: 1.25rem;
}

.essay-content h1,
.essay-content h2 {
  font-weight: 700;
  font-size: 1.75rem;
  text-align: center;
  margin: 4rem 0 2rem;
}
@media only screen and (max-width: 37.5em) {
  .essay-content h1,
  .essay-content h2 {
    font-size: 1.5rem;
    margin: 3rem 0 1rem;
  }
}

.essay-content h3 {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(90deg, #7A0D41 0%, #5D0B83 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin: 4rem 0 3rem;
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .essay-content h3 {
    margin: 3rem 0 2rem;
  }
}

.essay-content blockquote {
  margin: 2rem -4rem;
  font-size: 2rem;
  color: #1d5f54;
}
@media only screen and (max-width: 62.5em) {
  .essay-content blockquote {
    margin: 2rem 0;
    padding: 0 1rem;
    font-size: 1.5rem;
  }
}

.essay-content ul,
.essay-content ol {
  list-style-type: circle;
  list-style-position: outside;
  margin-top: 1rem;
}
.essay-content ul ul,
.essay-content ul ol,
.essay-content ol ul,
.essay-content ol ol {
  margin-top: 0;
  margin-left: 2rem;
}
.essay-content ul li,
.essay-content ol li {
  list-style-type: "—";
  padding-left: 1ch;
  margin-left: -1ch;
}
@media only screen and (max-width: 37.5em) {
  .essay-content ul li,
  .essay-content ol li {
    padding-left: 1ch;
    margin-left: 2ch;
  }
}

.essay-content ol {
  list-style-type: numeral;
}

.essay-content img,
.essay-content video {
  max-width: calc(100% + 8rem);
  margin: 2rem -4rem;
  display: block;
  border-radius: 0.25rem;
}
@media only screen and (max-width: 87.5em) {
  .essay-content img,
  .essay-content video {
    max-width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .essay-content img,
  .essay-content video {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.essay-content figure {
  margin-bottom: 2rem;
}
.essay-content figure img {
  margin-bottom: 1rem;
}

.essay-content figcaption {
  font-style: italic;
  opacity: 0.8;
  padding-bottom: 1rem;
}

.essay-content img[src*="#full-width"] {
  max-width: 98rem;
}
@media only screen and (max-width: 120em) {
  .essay-content img[src*="#full-width"] {
    max-width: calc(100vw - 24.5rem);
  }
}
@media only screen and (max-width: 87.5em) {
  .essay-content img[src*="#full-width"] {
    max-width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .essay-content img[src*="#full-width"] {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.essay-content img[src*="#border"] {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.essay-content img[src*="#fill"] {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.essay-footnotes {
  color: rgb(27.96875, 61.53125, 55.9375);
}

.essay-footnotes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.essay-date {
  font-family: "Work Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  padding-top: 2rem;
  text-align: center;
  opacity: 0.8;
}

hr {
  width: 100%;
  height: 1px;
  margin: 2rem 0;
  border: none;
  background: linear-gradient(90deg, rgba(86, 24, 101, 0) 0%, #902679 40%, #2388A8 60%, rgba(86, 24, 101, 0) 100%);
}

.recommended-essays {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* This is for the full case studies pages */
.essay--case-study {
  align-items: start;
  padding-left: 15rem;
  padding-right: 15rem;
}
@media only screen and (max-width: 87.5em) {
  .essay--case-study {
    padding: 7.5rem;
    align-items: center;
  }
}
@media only screen and (max-width: 62.5em) {
  .essay--case-study {
    padding: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .essay--case-study {
    padding: 4rem 1.5rem;
    gap: 1.5rem;
  }
}
.essay--case-study .essay-intro {
  text-align: left;
}
@media only screen and (max-width: 87.5em) {
  .essay--case-study .essay-intro {
    text-align: center;
  }
}
.essay--case-study .essay-content::before {
  display: none;
}
.essay--case-study .essay-content h2,
.essay--case-study .essay-content h3 {
  text-align: left;
}
@media only screen and (max-width: 87.5em) {
  .essay--case-study .essay-content h2,
  .essay--case-study .essay-content h3 {
    text-align: center;
  }
}

/*# sourceMappingURL=main.css.map */
