html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
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:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

html {
  box-sizing: border-box;
}

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

@font-face {
  font-family: "Fraunces Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/fraunces:vf@latest/latin-wght-normal.woff2) format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.site-header {
  padding: 7rem 3rem 7rem 22vw;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.site-header .brand {
  position: absolute;
  left: calc(11vw - 50px);
  top: 9rem;
}
@media screen and (max-width: 1440px) {
  .site-header {
    padding-left: 3rem;
    min-height: 0;
  }
  .site-header .brand {
    left: auto;
    right: 10vw;
    top: auto;
    bottom: -80px;
  }
}
@media screen and (max-width: 767px) {
  .site-header {
    padding: 4rem 1.5rem;
    min-height: 0;
  }
  .site-header .brand {
    position: static;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 540px) {
  .site-header {
    padding: 3rem 1.5rem;
  }
}

.site-main {
  overflow: hidden;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .site-main {
    padding-top: 3rem;
  }
}

.section {
  margin-bottom: 3.5rem;
  padding-left: 10vw;
  padding-right: 0;
}
@media screen and (max-width: 1200px) {
  .section {
    padding-left: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding-left: 1.5rem;
  }
}

.work-entry {
  margin-bottom: 7rem;
}
.work-entry__content {
  padding-right: 3rem;
  max-width: 45rem;
  margin: 0 0 8rem;
}
.work-entry__header {
  margin: 2rem 0;
}
@media screen and (max-width: 767px) {
  .work-entry__content {
    padding-right: 1.55rem;
  }
}

.case-study-outer {
  margin-top: 5rem;
}
.case-study-outer > h2 {
  line-height: 1.25;
  position: relative;
}
.case-study-outer > h2::before {
  position: absolute;
  left: -4.25rem;
  top: 0.875rem;
}
@media screen and (max-width: 1200px) {
  .case-study-outer > h2::before {
    position: static;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .case-study-outer {
    margin-top: 3rem;
  }
}

.case-study {
  display: flex;
  flex-direction: row;
}
.case-study__wins {
  flex: 1 0 21vw;
  padding-right: 4rem;
}
@media screen and (max-width: 1900px) {
  .case-study__wins {
    flex: 1 0 30vw;
  }
}
@media screen and (max-width: 1300px) {
  .case-study__wins {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 1100px) {
  .case-study {
    flex-direction: column;
  }
  .case-study__wins {
    flex: 1 0 auto;
  }
}

.gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-right: 1.5rem;
}
.gallery::-webkit-scrollbar {
  display: none;
}
.gallery__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  scroll-snap-align: start;
  margin-right: 3rem;
  /* Base Style */
  flex: 0 0 45vw; /* Gallery item takes 45% of the viewport width */
  /* Larger Screens */
  /* Medium Screens */
  /* Small Screens */
  /* Extra Small Screens */
}
.gallery__item:last-of-type {
  margin-right: 0;
}
.gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  object-fit: contain;
}
.gallery__item figcaption {
  padding-bottom: 1rem;
  line-height: 1.4;
  opacity: 0.8;
}
@media screen and (min-width: 1440px) {
  .gallery__item {
    flex: 0 0 45vw; /* Takes 30% of viewport width on larger screens */
  }
}
@media screen and (max-width: 1440px) and (min-width: 1024px) {
  .gallery__item {
    flex: 0 0 45vw; /* Takes 40% of viewport width on medium screens */
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .gallery__item {
    flex: 0 0 60vw; /* Takes 60% of viewport width on small screens */
  }
}
@media screen and (max-width: 768px) {
  .gallery__item {
    flex: 0 0 80vw; /* Takes 80% of viewport width on extra small screens */
    height: auto; /* Adjust height for better visibility */
    margin-right: 1.75rem;
  }
}

.accordion {
  overflow: hidden;
}

.accordion-header {
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.sr-only {
  position: absolute;
  text-indent: -99999px;
}

body {
  font-family: "Fraunces Variable";
  font-weight: 300;
  color: #ffffff;
  background-color: #121212;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

b {
  font-weight: 600;
}

i {
  font-style: italic;
}

a {
  font-weight: 500;
  color: dodgerblue;
}

p {
  line-height: 1.5;
  font-size: 1.375rem;
  margin: 0 0 1.25rem 0;
}
p.lead {
  font-size: 2rem;
  line-height: 1.375;
}

h1,
h2,
h3 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 5.25rem;
  font-weight: 330;
}

h2 {
  font-size: 3rem;
  font-weight: 480;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 1rem;
  }
  p.lead {
    font-size: 1.625rem;
  }
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 540px) {
  p.lead {
    font-size: 1.5rem;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 1.75rem;
  }
}
.pill {
  background: #000000;
  color: #ffffff;
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 0.375rem;
  font-weight: 700;
  letter-spacing: 0.125em;
  margin-top: 2rem;
  transform: skew(0deg, -5deg);
}

.container {
  position: relative;
  min-width: 320px;
}

.site-header {
  background-image: linear-gradient(109.6deg, rgb(217, 67, 67) 11.2%, rgb(242, 106, 75) 100.6%);
}
.site-header .brand {
  display: block;
  height: 120px;
  width: 120px;
  text-indent: -9999px;
  background: url(../assets/logo.svg) no-repeat center center;
  background-size: cover;
  border-radius: 100%;
}
.site-header p {
  max-width: 30em;
  font-size: 1.5rem;
}
.site-header p.lead {
  font-size: 5vw;
  max-width: 14em;
  line-height: 1.125;
  margin-bottom: 3rem;
}
.site-header .links {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  display: flex;
  gap: 3rem;
}
.site-header .links li {
  font-size: 1.625rem;
}
.site-header .links li a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.625rem;
  font-weight: inherit;
}
.site-header .links li a:hover {
  text-decoration-color: rgb(255, 255, 255);
}
@media screen and (max-width: 640px) {
  .site-header .links {
    gap: 1.75rem;
    order: 4;
    margin: 1.5rem 0 1rem;
  }
  .site-header .links li {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 540px) {
  .site-header .links {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1250px) {
  .site-header p.lead {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .site-header .brand {
    height: 80px;
    width: 80px;
  }
  .site-header p.lead {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.25;
    max-width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .site-header p {
    font-size: 1.375rem;
  }
  .site-header p.lead {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

.site-main {
  background: #ffffff;
  color: #121212;
}

.work-entry {
  counter-reset: number-counter;
}
.work-entry__content {
  padding-right: 3rem;
  max-width: 45rem;
  margin: 0 0 2rem;
}
.work-entry__header h1 {
  margin: 0.5rem 0;
}
.work-entry__header span {
  display: block;
  opacity: 0.625;
}

.case-study-outer {
  counter-increment: number-counter;
}
.case-study-outer > h2 {
  margin-bottom: 2.5rem;
}
.case-study-outer > h2::before {
  content: counter(number-counter);
  height: 32px;
  width: 32px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 0.75rem;
  background-color: gray;
  color: #ffffff;
}
.case-study-outer--1 > h2::before {
  background-color: #68984B;
}
.case-study-outer--2 > h2::before {
  background-color: #B77CCC;
}
.case-study-outer--3 > h2::before {
  background-color: #5583C7;
}
@media screen and (max-width: 1100px) {
  .case-study-outer > h2 {
    margin-bottom: 1rem;
  }
}

.case-study__wins {
  padding-bottom: 1rem;
}
.case-study__wins p {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.case-study__wins b {
  font-weight: 500;
}
.case-study__wins ul {
  list-style: square;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.case-study__wins ul li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.case-study__wins ul li::marker {
  color: #999999;
}
.site-footer {
  background-color: #121212;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 4rem 6rem;
  position: relative;
}
.site-footer h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  text-align: center;
  font-weight: 400;
  color: #ededed;
}
.site-footer p {
  font-size: 0.875rem;
  text-align: center;
  color: #bbbbbb;
  max-width: 21em;
}
.site-footer::after {
  content: "";
  display: block;
  height: 1rem;
  width: 1rem;
  transform: rotate(45deg);
  top: -0.5rem;
  left: calc(50% - 0.5rem);
  background-color: #EF5533;
  position: absolute;
}

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