/*
Theme Name: Silverwoods
Description: Custom WordPress theme with Gulp build system
Version: 1.0.0
*/
@font-face {
  font-family: "Satoshi";
  src: url("/fonts/Satoshi-Variable.woff2") format("woff2"), url("/fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  background-color: #131313;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Satoshi", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

p, a, li {
  font-family: "Satoshi", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
}
p:last-child, a:last-child, li:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

p {
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 1rem;
  color: #131313;
}

a {
  color: #131313;
  transition: color 0.2s ease;
}
a:hover {
  color: rgb(16.15, 16.15, 16.15);
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 4px solid #131313;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: #131313;
}

.cursor-follower {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-100%, -100%) scale(var(--scale, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: "Satoshi", Arial, sans-serif;
  font-weight: 700;
}
.cursor-follower.visible {
  opacity: 1;
}
.cursor-follower span {
  display: inline-block;
  background: #131313;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
}

.animate-on-scroll,
.animate-fade-up,
.animate-fade-down,
.animate-fade-left,
.animate-fade-right,
.animate-fade-in,
.animate-scale-up,
.animate-slide-up,
.animate-stagger-item {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.animate-fade-up {
  transform: translateY(40px);
}
.animate-fade-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-down {
  transform: translateY(-40px);
}
.animate-fade-down.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-left {
  transform: translateX(-40px);
}
.animate-fade-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.animate-fade-right {
  transform: translateX(40px);
}
.animate-fade-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.animate-fade-in.animate-in {
  opacity: 1;
}

.animate-scale-up {
  transform: scale(0.95);
}
.animate-scale-up.animate-in {
  opacity: 1;
  transform: scale(1);
}

.animate-slide-up {
  transform: translateY(60px);
  transition-duration: 0.6s;
}
.animate-slide-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll {
  transform: translateY(40px);
}
.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-children {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.animate-children > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.animate-children.animate-in > * {
  opacity: 1;
  transform: translateY(0);
}
.animate-children.animate-in > *:nth-child(1) {
  transition-delay: 0s;
}
.animate-children.animate-in > *:nth-child(2) {
  transition-delay: 0.1s;
}
.animate-children.animate-in > *:nth-child(3) {
  transition-delay: 0.2s;
}
.animate-children.animate-in > *:nth-child(4) {
  transition-delay: 0.3s;
}
.animate-children.animate-in > *:nth-child(5) {
  transition-delay: 0.4s;
}
.animate-children.animate-in > *:nth-child(6) {
  transition-delay: 0.5s;
}
.animate-children.animate-in > *:nth-child(7) {
  transition-delay: 0.6s;
}
.animate-children.animate-in > *:nth-child(8) {
  transition-delay: 0.7s;
}
.animate-children.animate-in > *:nth-child(9) {
  transition-delay: 0.8s;
}
.animate-children.animate-in > *:nth-child(10) {
  transition-delay: 0.9s;
}

.animate-stagger {
  opacity: 1;
  transform: none;
  transition: none;
}

.animate-stagger-item {
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-stagger-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

.animate-delay-5 {
  transition-delay: 0.5s;
}

.animate-fast {
  transition-duration: 0.4s !important;
}

.animate-slow {
  transition-duration: 1.2s !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-on-scroll,
  .animate-fade-up,
  .animate-fade-down,
  .animate-fade-left,
  .animate-fade-right,
  .animate-fade-in,
  .animate-scale-up,
  .animate-slide-up,
  .animate-stagger-item {
    opacity: 1;
    transform: none;
  }
  .animate-children > * {
    opacity: 1;
    transform: none;
  }
}
.btn {
  background-color: #131313;
  color: white;
  padding: 13px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 700;
}
.btn:hover {
  color: white;
}
.btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  margin-bottom: 0;
}
.btn--primary {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px) hue-rotate(20deg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(19, 19, 19, 0.2), inset 0 4px 20px rgba(255, 255, 255, 0.3);
}
.btn--primary:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  border: 0;
  border-radius: 2rem;
  backdrop-filter: blur(1px);
  box-shadow: inset -10px -8px 0px -11px rgb(255, 255, 255), inset 0px -9px -1px -8px rgb(255, 255, 255);
  opacity: 0.6;
  z-index: -1;
  filter: blur(1px) drop-shadow(0px 0px 6px #131313) brightness(115%);
}
.btn--primary:hover {
  border-color: #FBB703;
  box-shadow: 0 8px 32px rgba(19, 19, 19, 0.2), inset 0 0px 70px rgba(251, 183, 3, 0.3);
}
.btn--primary:hover .btn-copy .arrow {
  transform: translateY(-1lh);
}
.btn--primary .btn-copy {
  display: block;
  position: relative;
  overflow: hidden;
}
.btn--primary .btn-copy .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  text-shadow: 0 1lh white;
}
.btn--reverse {
  box-shadow: inset 0 4px 20px rgba(255, 255, 255, 0.3);
}
.btn--reverse:hover {
  box-shadow: inset 0 0px 70px rgba(251, 183, 3, 0.3);
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #131313;
  z-index: 9999;
}
.loader-overlay.loader-exit {
  animation: loaderFadeOut 0.6s ease forwards;
}

@keyframes loaderFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.app {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
.app.loaded {
  opacity: 1;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: none;
  pointer-events: none;
}
.page-transition.in {
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: all;
}
.page-transition.out {
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.page-transition img {
  width: calc(100% - 40px);
  max-width: 320px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition-delay: 0.15s;
}
.page-transition .logo-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-header {
  background-color: #131313;
  padding: 140px 0 60px 0;
}
@media screen and (max-width: 768px) {
  .page-header {
    padding: 110px 0 30px 0;
  }
}
.page-header h1 {
  color: white;
  margin: 0;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 50px);
}
.page-header--small h1 {
  font-size: clamp(22px, 4vw, 28px);
  margin-bottom: 30px;
}
.page-header--small h2 {
  color: white;
  margin: 0;
  font-weight: 500;
  font-size: clamp(36px, 6vw, 50px);
}
@media screen and (max-width: 768px) {
  .page-header--small h2 br {
    display: none;
  }
}
.page-header--reverse {
  background-color: white;
}
.page-header--reverse h1, .page-header--reverse h2 {
  color: #131313;
}

.featured-insights {
  background-color: #131313;
  padding: 10vw 0;
  margin-top: -5vw;
  border-bottom-left-radius: 3.5vw;
  border-bottom-right-radius: 3.5vw;
  position: relative;
  z-index: 4;
  padding-bottom: 5vw;
  overflow: hidden;
}
.featured-insights .featured-insights-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .featured-insights .featured-insights-header {
    flex-wrap: wrap;
  }
}
.featured-insights .featured-insights-header h3 {
  display: inline-block;
  color: white;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 420px) {
  .featured-insights .featured-insights-header h3 {
    width: 100%;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 992px) {
  .featured-insights .featured-insights-flex {
    display: block;
  }
}
@media screen and (min-width: 993px) {
  .featured-insights .featured-insights-flex .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
.featured-insights .featured-insights-flex .featured-insights-item {
  display: flex;
  flex-direction: column;
  margin: 0;
  height: 100%;
}
@media screen and (min-width: 993px) {
  .featured-insights .featured-insights-flex .featured-insights-item {
    flex: 1;
  }
}
.featured-insights .featured-insights-flex .featured-insights-item .image {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1.6em;
}
.featured-insights .featured-insights-flex .featured-insights-item .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.featured-insights .featured-insights-flex .featured-insights-item .copy {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.featured-insights .featured-insights-flex .featured-insights-item .copy h2 {
  color: white;
  font-size: clamp(22px, 6vw, 24px);
  font-weight: 700;
}
.featured-insights .featured-insights-flex .featured-insights-item .copy p {
  color: white;
  font-size: clamp(16px, 6vw, 20px);
  font-weight: 400;
}
.featured-insights .featured-insights-flex .featured-insights-item .copy p:last-child {
  margin-bottom: 0;
}
.featured-insights.reverse {
  background-color: white;
}
.featured-insights.reverse .featured-insights-header h3 {
  color: #131313;
}
.featured-insights.reverse .featured-insights-flex .featured-insights-item .copy h2, .featured-insights.reverse .featured-insights-flex .featured-insights-item .copy p {
  color: #131313;
}

.work-list--featured {
  margin-top: -5vw;
  position: relative;
  z-index: 4;
  overflow: hidden;
}
.work-list--featured .featured-work-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.work-list--featured .featured-work-header h3 {
  display: inline-block;
  color: white;
  margin: 0;
}
.work-list--featured .featured-work-header .btn {
  margin: 0;
}
@media screen and (min-width: 993px) {
  .work-list--featured .work-list-flex .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
}
@media screen and (min-width: 993px) {
  .work-list--featured .work-list-flex .work-list-item {
    width: 100%;
  }
}

.logo-slider .client-list {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .logo-slider .client-list {
    margin-bottom: 25px;
  }
}
.logo-slider .client-list:last-child {
  margin-bottom: 0;
}
.logo-slider .client-list .scroll-track {
  display: flex;
  will-change: transform;
}
.logo-slider .client-list .scroll-set {
  --gap: 25px;
  display: flex;
  flex-shrink: 0;
  gap: var(--gap);
  padding-right: var(--gap);
}
@media screen and (max-width: 768px) {
  .logo-slider .client-list .scroll-set {
    --gap: 15px;
  }
}
@media screen and (min-width: 768px) {
  .logo-slider .client-list .scroll-set {
    --gap: 40px;
  }
}
.logo-slider .client-list .client-list-item {
  width: auto;
  flex-shrink: 0;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 10rem;
  border-radius: 1.6em;
}
@media screen and (max-width: 768px) {
  .logo-slider .client-list .client-list-item {
    height: 6rem;
    border-radius: 16px;
  }
}
.logo-slider .client-list .client-list-item .client-logo-container {
  display: block;
  width: 100%;
  padding: 0 3.5rem;
}
@media screen and (max-width: 768px) {
  .logo-slider .client-list .client-list-item .client-logo-container {
    padding: 0 1.5rem;
  }
}
.logo-slider .client-list .client-list-item .client-logo-container img {
  display: block;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  height: 60px;
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .logo-slider .client-list .client-list-item .client-logo-container img {
    max-width: 120px;
    height: 35px;
  }
}

body.menu-open {
  overflow: hidden;
}

header.header {
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: space-between;
  top: 0;
  z-index: 10000;
  padding: 10px 15px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 650px) {
  header.header {
    align-items: center;
    padding: 8px 10px;
  }
}
header.header .logo {
  display: inline-block;
  margin: 0;
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 650px) {
  header.header .logo img {
    width: 45px;
  }
}
header.header nav.nav {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 650px) {
  header.header nav.nav {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 65px);
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 115px 30px 30px 30px;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transform-origin: top right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
    margin: 0;
    background: #131313;
    z-index: 100;
    text-align: right;
  }
}
header.header nav.nav a {
  display: inline-block;
  margin: 0 30px 0 0;
  color: white;
  text-decoration: none;
  font-size: 22px;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}
header.header nav.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease, transform-origin 0s 0s;
}
header.header nav.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease, transform-origin 0s 0s;
}
@media screen and (max-width: 650px) {
  header.header nav.nav a {
    margin-right: 0;
    font-size: 32px;
    display: block;
    width: 100%;
    text-align: right;
  }
}
header.header nav.nav a:last-child {
  margin-right: 0;
}
header.header .burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 101;
  align-items: center;
}
@media screen and (max-width: 650px) {
  header.header .burger {
    display: flex;
  }
}
header.header .burger span {
  display: block;
  width: 45px;
  height: 2px;
  background-color: white;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 650px) {
  header.header .burger span {
    width: 35px;
  }
}
header.header:not(.dark-theme) nav.nav a {
  color: #131313;
}
header.header:not(.dark-theme) .burger span {
  background-color: #131313;
}
header.header:not(.dark-theme) .logo img {
  filter: invert(1);
}
header.header.scrolled {
  width: calc(100% - 60px);
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 15px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px) hue-rotate(20deg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(19, 19, 19, 0.2), inset 0 4px 20px rgba(255, 255, 255, 0.3);
}
header.header.scrolled:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  border: 0;
  border-radius: 2rem;
  backdrop-filter: blur(1px);
  box-shadow: inset -10px -8px 0px -11px rgb(255, 255, 255), inset 0px -9px -1px -8px rgb(255, 255, 255);
  opacity: 0.6;
  z-index: -1;
  filter: blur(1px) drop-shadow(0px 0px 6px #131313) brightness(115%);
}
header.header.scrolled {
  border-radius: 200px;
  border: 0;
}
header.header.scrolled:after {
  border-radius: 200px;
}
@media screen and (max-width: 650px) {
  header.header.scrolled {
    width: calc(100% - 30px);
  }
}
header.header.scrolled .logo img {
  filter: invert(0);
}
header.header.scrolled nav.nav {
  margin-right: 25px;
}
@media screen and (max-width: 650px) {
  header.header.scrolled nav.nav {
    margin-right: 0;
  }
}
header.header.scrolled nav.nav a {
  color: white;
}
@media screen and (max-width: 650px) {
  header.header.menu-open {
    width: 100%;
    top: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
  }
  header.header.menu-open:after {
    display: none;
  }
}
header.header.menu-open .logo img {
  filter: invert(0);
}
header.header.menu-open .burger span {
  background-color: white;
}
header.header.menu-open .burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header.header.menu-open .burger span:nth-child(2) {
  opacity: 0;
}
header.header.menu-open .burger span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
header.header.menu-open nav.nav {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
footer.footer {
  background-color: #FBB703;
  margin-top: -5vw;
  padding: 10vw 0;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}
footer.footer .footer-cta {
  margin-top: 60px;
}
footer.footer .footer-cta h3 {
  font-size: clamp(28px, 6vw, 50px);
  color: #131313;
  font-weight: 800;
}
@media screen and (max-width: 992px) {
  footer.footer .footer-cta h3 br {
    display: none;
  }
}
footer.footer .footer-cta h3 a {
  color: white;
  display: inline-block;
  text-decoration: underline;
  font-weight: 800;
  position: relative;
  overflow: hidden;
}
footer.footer .footer-cta h3 a:hover .arrow {
  transform: translateY(-1lh);
}
footer.footer .footer-cta h3 a .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  text-shadow: 0 1lh white;
}
footer.footer .footer-flex {
  display: flex;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-flex {
    flex-wrap: wrap;
    margin-top: 60px;
  }
}
footer.footer .footer-flex .footer-col {
  display: inline-block;
  margin-right: 70px;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-flex .footer-col {
    margin-bottom: 40px;
    margin-right: 40px;
  }
  footer.footer .footer-flex .footer-col:last-child {
    margin-bottom: 0;
  }
}
footer.footer .footer-flex .footer-col:last-child {
  margin-right: 0;
}
footer.footer .footer-flex .footer-col h4 {
  color: #131313;
  font-size: clamp(30px, 6vw, 36px);
}
footer.footer .footer-flex .footer-col p, footer.footer .footer-flex .footer-col a, footer.footer .footer-flex .footer-col li {
  font-size: clamp(16px, 4vw, 18px);
  color: black;
  font-weight: 400;
}
footer.footer .footer-flex .footer-col a {
  position: relative;
  transition: color 0.3s ease;
}
footer.footer .footer-flex .footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #131313;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease, transform-origin 0s 0s;
}
footer.footer .footer-flex .footer-col a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease, transform-origin 0s 0s;
}
footer.footer .footer-info {
  margin-top: 120px;
  border-top: 1px solid #131313;
  padding: 25px 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-info {
    margin-top: 60px;
    flex-wrap: wrap;
  }
}
footer.footer .footer-info .footer-info-copy {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-info .footer-info-copy {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}
footer.footer .footer-info .footer-info-copy p {
  font-size: clamp(14px, 6vw, 12px);
  color: #131313;
  margin: 0;
}
footer.footer .footer-info .footer-info-links {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-info .footer-info-links {
    width: 100%;
  }
}
footer.footer .footer-info .footer-info-links ul {
  display: flex;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-info .footer-info-links ul {
    justify-content: center;
  }
}
footer.footer .footer-info .footer-info-links ul li {
  margin: 0 20px 0 0;
}
footer.footer .footer-info .footer-info-links ul li:last-child {
  margin-right: 0;
}
footer.footer .footer-info .footer-info-links ul li a {
  font-size: clamp(14px, 6vw, 12px);
  color: #131313;
  position: relative;
  transition: color 0.3s ease;
}
footer.footer .footer-info .footer-info-links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #131313;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease, transform-origin 0s 0s;
}
footer.footer .footer-info .footer-info-links ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease, transform-origin 0s 0s;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-1 * 1rem);
}

.col {
  flex: 1;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.no-gutters {
  margin: 0;
}
.no-gutters .col,
.no-gutters [class*=col-] {
  padding: 0;
}

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

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

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

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.home-banner {
  display: block;
  width: 100%;
  position: relative;
  background-color: #131313;
}
@media screen and (max-width: 576px) {
  .home-banner {
    height: 40svh;
  }
}
.home-banner img, .home-banner video {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 576px) {
  .home-banner img, .home-banner video {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.home-intro {
  background-color: #131313;
  padding: 10vw 0;
  padding-bottom: 0;
}
.home-intro h2 {
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: clamp(36px, 6vw, 50px);
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .home-intro h2 {
    font-size: 7.2vw;
  }
}

.work-list {
  background-color: #131313;
  padding: 10vw 0;
  border-bottom-left-radius: 3.5vw;
  border-bottom-right-radius: 3.5vw;
  position: relative;
  z-index: 6;
}
.work-list h3 {
  color: white;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 50px);
  margin-bottom: 60px;
}
.work-list .work-list-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .work-list .work-list-flex {
    flex-wrap: wrap;
  }
}
.work-list .work-list-flex .work-list-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-row-gap: 100px;
  width: calc(50% - 30px);
  margin-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .work-list .work-list-flex .work-list-col {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 768px) {
  .work-list .work-list-flex .work-list-col {
    width: 100%;
    grid-row-gap: 40px;
    margin-bottom: 60px;
  }
  .work-list .work-list-flex .work-list-col:last-child {
    margin-bottom: 30px;
  }
}
.work-list .work-list-flex .work-list-item {
  display: block;
  width: 100%;
  margin: 0;
}
.work-list .work-list-flex .work-list-item .image {
  display: block;
  width: 100%;
  border-radius: 1.6em;
  position: relative;
  overflow: hidden;
}
.work-list .work-list-flex .work-list-item .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.work-list .work-list-flex .work-list-item .copy {
  padding-top: 25px;
}
.work-list .work-list-flex .work-list-item .copy h2 {
  color: white;
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 700;
  margin-bottom: 25px;
}
.work-list .work-list-flex .work-list-item .copy .work-cats {
  display: flex;
}
.work-list .work-list-flex .work-list-item .copy .work-cats span {
  display: inline-block;
  color: white;
  border: 1px solid white;
  border-radius: 100px;
  padding: 5px 15px;
  margin-right: 15px;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 400;
}
.work-list .work-list-flex .work-list-item .copy .work-cats span:last-child {
  margin-right: 0;
}
.work-list .btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.what-do {
  background-color: white;
  padding: 10vw 0;
  text-align: center;
  border-bottom-left-radius: 3.5vw;
  border-bottom-right-radius: 3.5vw;
}

.who-clients {
  background-color: #E9E8E8;
  border-bottom-left-radius: 3.5vw;
  border-bottom-right-radius: 3.5vw;
  padding: 10vw 0;
  margin-top: -5vw;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.who-clients h3 {
  color: #131313;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 50px);
  margin-bottom: 60px;
}

.case-study-banner {
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: #131313;
}
@media screen and (max-width: 576px) {
  .case-study-banner {
    height: 45svh;
  }
}
.case-study-banner img, .case-study-banner video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.case-study-banner .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.case-study-banner .video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 ratio */
  height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
}

.case-study-intro {
  background-color: #131313;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .case-study-intro {
    padding: 30px 0;
  }
}
.case-study-intro {
  margin-bottom: 60px;
}
.case-study-intro .case-study-intro-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .case-study-intro .case-study-intro-flex {
    flex-wrap: wrap;
  }
}
.case-study-intro .case-study-intro-flex .copy {
  display: inline-block;
  flex-basis: calc(75% - 30px);
}
@media screen and (max-width: 1200px) {
  .case-study-intro .case-study-intro-flex .copy {
    flex-basis: 80%;
  }
}
@media screen and (max-width: 992px) {
  .case-study-intro .case-study-intro-flex .copy {
    flex-basis: 100%;
  }
}
.case-study-intro .case-study-intro-flex .copy h1, .case-study-intro .case-study-intro-flex .copy h2, .case-study-intro .case-study-intro-flex .copy h3, .case-study-intro .case-study-intro-flex .copy h4, .case-study-intro .case-study-intro-flex .copy h5 {
  color: white;
}
.case-study-intro .case-study-intro-flex .copy p, .case-study-intro .case-study-intro-flex .copy li, .case-study-intro .case-study-intro-flex .copy a {
  color: white;
}
.case-study-intro .case-study-intro-flex .copy p:last-child, .case-study-intro .case-study-intro-flex .copy li:last-child, .case-study-intro .case-study-intro-flex .copy a:last-child {
  margin-bottom: 0;
}
.case-study-intro .case-study-intro-flex .copy h1 {
  font-size: clamp(40px, 6vw, 50px);
}
.case-study-intro .case-study-intro-flex .copy p {
  font-size: clamp(18px, 6vw, 20px);
}
.case-study-intro .case-study-intro-flex .categories {
  display: inline-block;
  flex-basis: fit-content;
}
.case-study-intro .case-study-intro-flex .categories .category:first-child {
  margin-bottom: 30px;
}
.case-study-intro .case-study-intro-flex .categories .category h3 {
  color: white;
  font-size: clamp(22px, 6vw, 26px);
}
.case-study-intro .case-study-intro-flex .categories .category ul {
  display: flex;
}
.case-study-intro .case-study-intro-flex .categories .category ul li {
  display: inline-block;
  color: white;
  border: 1px solid white;
  border-radius: 100px;
  padding: 5px 15px;
  margin: 0 10px 0 0;
  font-size: clamp(12px, 6vw, 14px);
}
.case-study-intro .case-study-intro-flex .categories .category ul li:last-child {
  margin-right: 0;
}

.case-study-copy {
  background-color: white;
  padding: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .case-study-copy {
    padding-bottom: 30px;
  }
}
.case-study-copy .case-study-copy-container {
  display: block;
  width: 75%;
}
@media screen and (max-width: 1200px) {
  .case-study-copy .case-study-copy-container {
    width: 80%;
  }
}
@media screen and (max-width: 992px) {
  .case-study-copy .case-study-copy-container {
    width: 100%;
  }
}
.case-study-copy .case-study-copy-container h1, .case-study-copy .case-study-copy-container h2, .case-study-copy .case-study-copy-container h3, .case-study-copy .case-study-copy-container h4, .case-study-copy .case-study-copy-container h5 {
  color: #131313;
}
.case-study-copy .case-study-copy-container p, .case-study-copy .case-study-copy-container li, .case-study-copy .case-study-copy-container a {
  color: #131313;
}
.case-study-copy .case-study-copy-container p:last-child, .case-study-copy .case-study-copy-container li:last-child, .case-study-copy .case-study-copy-container a:last-child {
  margin-bottom: 0;
}
.case-study-copy .case-study-copy-container h2 {
  font-size: clamp(34px, 6vw, 40px);
}
.case-study-copy .case-study-copy-container h3 {
  font-size: clamp(27px, 4.8vw, 32px);
}
.case-study-copy .case-study-copy-container ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 2em;
}
.case-study-copy .case-study-copy-container ul li {
  margin-bottom: 0.5em;
}
.case-study-copy .case-study-copy-container p, .case-study-copy .case-study-copy-container li {
  font-size: clamp(16px, 6vw, 20px);
  font-weight: 400;
}

.case-study-split-image {
  padding: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .case-study-split-image {
    padding-bottom: 30px;
  }
}
.case-study-split-image .case-study-split-image-flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .case-study-split-image .case-study-split-image-flex {
    flex-wrap: wrap;
  }
}
.case-study-split-image .case-study-split-image-flex .image {
  display: inline-block;
  width: calc(50% - 30px);
  border-radius: 1.6em;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .case-study-split-image .case-study-split-image-flex .image {
    width: 100%;
  }
}
.case-study-split-image .case-study-split-image-flex .image:first-child {
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  .case-study-split-image .case-study-split-image-flex .image:first-child {
    margin: 0 0 20px 0;
  }
}
.case-study-split-image .case-study-split-image-flex .image img, .case-study-split-image .case-study-split-image-flex .image video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.case-study-big-image {
  padding: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .case-study-big-image {
    padding-bottom: 30px;
  }
}
.case-study-big-image .image-container {
  border-radius: 1.6em;
  overflow: hidden;
}
.case-study-big-image .image-container img, .case-study-big-image .image-container video {
  display: block;
  width: 100%;
  height: auto;
}

.case-study-video {
  padding: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .case-study-video {
    padding-bottom: 30px;
  }
}
.case-study-video .video-container {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}
.case-study-video .video-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.case-study-quote {
  padding: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .case-study-quote {
    padding-bottom: 30px;
  }
}
.case-study-quote .case-study-quote-copy {
  display: block;
  background-color: #131313;
  padding: 60px 60px;
  text-align: center;
  border-radius: 1.6em;
}
.case-study-quote .case-study-quote-copy h1, .case-study-quote .case-study-quote-copy h2, .case-study-quote .case-study-quote-copy h3, .case-study-quote .case-study-quote-copy h4, .case-study-quote .case-study-quote-copy h5 {
  color: white;
}
.case-study-quote .case-study-quote-copy p, .case-study-quote .case-study-quote-copy li a {
  color: white;
}
.case-study-quote .case-study-quote-copy p:last-child, .case-study-quote .case-study-quote-copy li a:last-child {
  margin-bottom: 0;
}
.case-study-quote .case-study-quote-copy p {
  font-size: clamp(18px, 6vw, 22px);
  font-weight: 400;
}

.case-footer {
  background-color: white;
  border-bottom-left-radius: 3.5vw;
  border-bottom-right-radius: 3.5vw;
  display: block;
  content: "";
  width: 100%;
  height: 5vw;
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

.blog-post-header .blog-post-header-flex {
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding: 140px 0 60px 0;
}
@media screen and (max-width: 768px) {
  .blog-post-header .blog-post-header-flex {
    padding: 110px 0 30px 0;
  }
}
.blog-post-header .blog-post-header-flex {
  padding-bottom: 30px;
}
.blog-post-header .blog-post-header-flex .blog-post-header-title {
  width: 100%;
}
.blog-post-header .blog-post-header-flex .blog-post-header-title h1 {
  font-size: clamp(36px, 6vw, 50px);
  font-weight: 700;
}
.blog-post-header .blog-post-header-flex .blog-post-header-title p {
  font-size: clamp(14px, 6vw, 18px);
  margin-bottom: 0;
}

.blog-post-banner {
  margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .blog-post-banner {
    margin-bottom: 30px;
  }
}
.blog-post-banner video, .blog-post-banner img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 1.6em;
}

.blog-post-main {
  margin-bottom: 10vw;
}
.blog-post-main .blog-post-main-inner {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.blog-post-main .blog-post-main-inner p, .blog-post-main .blog-post-main-inner li, .blog-post-main .blog-post-main-inner a {
  font-size: clamp(18px, 6vw, 20px);
  font-weight: 500;
  margin-bottom: 1.3rem;
}
.blog-post-main .blog-post-main-inner p:last-child, .blog-post-main .blog-post-main-inner li:last-child, .blog-post-main .blog-post-main-inner a:last-child {
  margin-bottom: 0;
}
.blog-post-main .blog-post-main-inner h2, .blog-post-main .blog-post-main-inner h3 {
  font-weight: 800;
}
.blog-post-main .blog-post-main-inner ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 1.3rem;
}
.blog-post-main .blog-post-main-inner ul li {
  margin-bottom: 0.4rem;
}
.blog-post-main .blog-post-main-inner ul ul {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}
.blog-post-main .blog-post-main-inner ol {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 1.3rem;
}
.blog-post-main .blog-post-main-inner ol li {
  margin-bottom: 0.4rem;
}
.blog-post-main .blog-post-main-inner ol ol {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}
.blog-post-main .blog-post-main-inner a {
  font-weight: 700;
  text-decoration: underline;
}
.blog-post-main .blog-post-main-inner b, .blog-post-main .blog-post-main-inner strong {
  font-weight: 800;
}
.blog-post-main .blog-post-main-inner .raw-html-embed {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.featured-insight {
  background-color: #131313;
}
.featured-insight .featured-insight-flex {
  display: flex;
  margin: 0;
  min-height: 55vh;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px) hue-rotate(20deg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2), inset 0 6px 60px rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 768px) {
  .featured-insight .featured-insight-flex {
    flex-wrap: wrap;
  }
}
.featured-insight .featured-insight-flex .copy {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 30px 60px;
}
@media screen and (max-width: 768px) {
  .featured-insight .featured-insight-flex .copy {
    width: 100%;
    padding: 20px 20px;
  }
}
.featured-insight .featured-insight-flex .copy h3 {
  color: white;
  margin-bottom: 0;
  font-size: clamp(20px, 6vw, 26px);
}
.featured-insight .featured-insight-flex .copy h2 {
  color: white;
  margin-bottom: 0;
  font-size: clamp(34px, 6vw, 42px);
}
@media screen and (max-width: 768px) {
  .featured-insight .featured-insight-flex .copy h2 {
    margin: 30px 0;
  }
}
.featured-insight .featured-insight-flex .copy p {
  color: white;
  margin-bottom: 0;
  font-size: clamp(16px, 6vw, 18px);
}
.featured-insight .featured-insight-flex .image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .featured-insight .featured-insight-flex .image {
    width: 100%;
  }
}
.featured-insight .featured-insight-flex .image img, .featured-insight .featured-insight-flex .image video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.insight-list {
  background-color: #131313;
  padding: 10vw 0;
  border-bottom-left-radius: 3.5vw;
  border-bottom-right-radius: 3.5vw;
  position: relative;
  z-index: 5;
  padding-top: 120px;
}
@media screen and (max-width: 992px) {
  .insight-list {
    padding-top: 60px;
  }
}
.insight-list .insight-list-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 60px;
  grid-row-gap: 60px;
}
@media screen and (max-width: 992px) {
  .insight-list .insight-list-flex {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .insight-list .insight-list-flex {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}
@media screen and (max-width: 576px) {
  .insight-list .insight-list-flex {
    grid-template-columns: repeat(1, 1fr);
  }
}
.insight-list .insight-list-flex .insight-list-item .image {
  position: relative;
  overflow: hidden;
  border-radius: 1.6em;
}
.insight-list .insight-list-flex .insight-list-item .image img, .insight-list .insight-list-flex .insight-list-item .image video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.insight-list .insight-list-flex .insight-list-item .copy {
  padding-top: 25px;
}
.insight-list .insight-list-flex .insight-list-item .copy h2 {
  color: white;
  font-size: clamp(24px, 6vw, 28px);
}
.insight-list .insight-list-flex .insight-list-item .copy p {
  color: white;
  font-size: clamp(16px, 6vw, 18px);
}
.insight-list .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 80px;
  flex-wrap: wrap;
}
@media screen and (max-width: 576px) {
  .insight-list .pagination {
    margin-top: 50px;
  }
}
.insight-list .pagination a, .insight-list .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.insight-list .pagination .pagination-prev,
.insight-list .pagination .pagination-next {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}
.insight-list .pagination .pagination-prev:hover,
.insight-list .pagination .pagination-next:hover {
  background-color: white;
  color: #131313;
  border-color: white;
}
.insight-list .pagination .pagination-numbers {
  display: flex;
  gap: 5px;
}
.insight-list .pagination .pagination-number {
  background-color: transparent;
  color: white;
  border: 1px solid transparent;
}
.insight-list .pagination .pagination-number:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.insight-list .pagination .pagination-number.is-active {
  background-color: white;
  color: #131313;
}

.work-list--main {
  padding-top: 0;
  position: relative;
  z-index: 5;
}
.work-list--main .work-list-flex {
  flex-wrap: wrap;
}
.work-list--main .work-list-flex .work-list-item {
  width: calc(50% - 30px);
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .work-list--main .work-list-flex .work-list-item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 768px) {
  .work-list--main .work-list-flex .work-list-item {
    width: 100%;
    margin-bottom: 40px;
    margin-top: 0 !important;
  }
}
.work-list--main .work-list-flex .work-list-item:nth-child(even) {
  margin-top: 80px;
}
.work-list--main .infinite-scroll-sentinel {
  min-height: 20px;
}
.work-list--main .skeleton-items {
  margin-top: 0;
}
.work-list--main .skeleton {
  pointer-events: none;
}
.work-list--main .skeleton .skeleton-image {
  aspect-ratio: 4/3;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 1.6em;
}
.work-list--main .skeleton .skeleton-title {
  height: 28px;
  width: 80%;
  margin-top: 20px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
.work-list--main .skeleton .skeleton-tags {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.work-list--main .skeleton .skeleton-tags span {
  height: 20px;
  width: 60px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.contact-form {
  background-color: #131313;
  padding: 10vw 0;
  border-bottom-left-radius: 3.5vw;
  border-bottom-right-radius: 3.5vw;
  position: relative;
  z-index: 5;
  padding-top: 0;
}
.contact-form .contact-form-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .contact-form .contact-form-flex {
    flex-wrap: wrap;
  }
}
.contact-form .contact-form-flex .form {
  display: inline-block;
  flex-basis: 70%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px) hue-rotate(20deg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(19, 19, 19, 0.2), inset 0 4px 20px rgba(255, 255, 255, 0.3);
}
.contact-form .contact-form-flex .form:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  border: 0;
  border-radius: 2rem;
  backdrop-filter: blur(1px);
  box-shadow: inset -10px -8px 0px -11px rgb(255, 255, 255), inset 0px -9px -1px -8px rgb(255, 255, 255);
  opacity: 0.6;
  z-index: -1;
  filter: blur(1px) drop-shadow(0px 0px 6px #131313) brightness(115%);
}
.contact-form .contact-form-flex .form {
  padding: 40px;
  margin-right: 60px;
}
@media screen and (max-width: 1200px) {
  .contact-form .contact-form-flex .form {
    width: 100%;
    flex-basis: 100%;
    margin: 0 0 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form-flex .form {
    padding: 25px;
  }
}
.contact-form .contact-form-flex .form p {
  color: white;
  font-size: clamp(22px, 4vw, 28px);
}
.contact-form .contact-form-flex .form .form-success {
  text-align: center;
  padding: 40px 0;
}
.contact-form .contact-form-flex .form .form-success h2 {
  color: white;
  font-size: clamp(28px, 5vw, 36px);
  margin-bottom: 15px;
}
.contact-form .contact-form-flex .form .form-success p {
  margin-bottom: 30px;
}
.contact-form .contact-form-flex .form .form-error {
  width: 100%;
  margin-bottom: 20px;
}
.contact-form .contact-form-flex .form .form-error p {
  color: #ff6b6b;
  font-size: 16px;
  margin: 0;
}
.contact-form .contact-form-flex .form form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
}
.contact-form .contact-form-flex .form form .form-group {
  display: inline-block;
  width: calc(50% - 30px);
  margin-bottom: 30px;
}
.contact-form .contact-form-flex .form form .form-group--honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form-flex .form form .form-group {
    width: 100%;
  }
}
.contact-form .contact-form-flex .form form .form-group:last-of-type {
  width: 100%;
}
.contact-form .contact-form-flex .form form .form-group textarea {
  min-height: 120px;
}
.contact-form .contact-form-flex .form form .form-group input, .contact-form .contact-form-flex .form form .form-group textarea {
  color: white;
  font-size: clamp(16px, 6vw, 20px);
  font-family: "Satoshi", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.4;
  background: none;
  border: 0;
  border-bottom: 1px solid white;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 15px 5px 10px 5px;
  outline: none !important;
}
.contact-form .contact-form-flex .form form .form-group input::-moz-placeholder, .contact-form .contact-form-flex .form form .form-group textarea::-moz-placeholder {
  color: white;
  opacity: 1;
}
.contact-form .contact-form-flex .form form .form-group input::placeholder, .contact-form .contact-form-flex .form form .form-group textarea::placeholder {
  color: white;
  opacity: 1;
}
.contact-form .contact-form-flex .form form .form-group input:focus-visible, .contact-form .contact-form-flex .form form .form-group input:focus, .contact-form .contact-form-flex .form form .form-group textarea:focus-visible, .contact-form .contact-form-flex .form form .form-group textarea:focus {
  border-bottom-color: #FBB703;
}
.contact-form .contact-form-flex .form form .form-group input:-webkit-autofill, .contact-form .contact-form-flex .form form .form-group input:-webkit-autofill:hover, .contact-form .contact-form-flex .form form .form-group input:-webkit-autofill:focus, .contact-form .contact-form-flex .form form .form-group textarea:-webkit-autofill, .contact-form .contact-form-flex .form form .form-group textarea:-webkit-autofill:hover, .contact-form .contact-form-flex .form form .form-group textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  background-color: transparent !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.contact-form .contact-form-flex .form form .form-group input:disabled, .contact-form .contact-form-flex .form form .form-group textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact-form .contact-form-flex .sidebar {
  display: inline-flex;
  flex-direction: column;
  flex-basis: 30%;
}
.contact-form .contact-form-flex .sidebar h4 {
  color: white;
  font-size: clamp(22px, 6vw, 26px);
}
.contact-form .contact-form-flex .sidebar p, .contact-form .contact-form-flex .sidebar a {
  color: white;
  font-size: clamp(16px, 6vw, 20px);
}
.contact-form .contact-form-flex .sidebar .email {
  display: inline-block;
  color: white;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 36px);
  margin: 0;
}
@media screen and (max-width: 576px) {
  .contact-form .contact-form-flex .sidebar .email {
    font-size: 7cqw;
  }
}
.contact-form .contact-form-flex .sidebar .address {
  display: inline-block;
  margin: 60px 0;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form-flex .sidebar .address {
    margin: 40px 0;
  }
}
.contact-form .contact-form-flex .sidebar .socials {
  display: inline-block;
}
.contact-form .contact-form-flex .sidebar .socials a {
  display: block;
}

.page-header--about {
  border-bottom-left-radius: 3.5vw;
  border-bottom-right-radius: 3.5vw;
  overflow: hidden;
}
.page-header--about h1 {
  font-size: clamp(36px, 6vw, 50px);
  line-height: 1.4em;
}
@media screen and (max-width: 576px) {
  .page-header--about h1 {
    font-size: clamp(26px, 7vw, 34px);
  }
}
.page-header--about h1 strong {
  background-color: #FBB703;
  color: black;
  display: inline;
  padding: 0px 5px 5px 5px;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.page-header--about h3 {
  color: white;
  font-size: clamp(24px, 4vw, 36px);
  margin: 3.5rem 0 3rem 0;
}
.page-header--about .logo-slider--about {
  padding: 0 0 100px 0;
}
@media screen and (max-width: 992px) {
  .page-header--about .logo-slider--about {
    padding: 0 0 60px 0;
  }
}

.about-quote {
  background-color: white;
  padding: 10vw 0;
  border-bottom-left-radius: 3.5vw;
  border-bottom-right-radius: 3.5vw;
  position: relative;
  z-index: 4;
}
.about-quote .about-quote-flex {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 992px) {
  .about-quote .about-quote-flex {
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .about-quote .about-quote-flex {
    flex-direction: column;
    gap: 40px;
  }
}
.about-quote .about-quote-image {
  width: 38%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .about-quote .about-quote-image {
    width: 100%;
  }
}
.about-quote .about-quote-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.6em;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-quote .about-quote-copy {
  flex: 1;
}
.about-quote .about-quote-copy h2 {
  color: #131313;
  font-size: clamp(34px, 6vw, 42px);
  line-height: 1.25;
  margin-bottom: 2rem;
}
.about-quote .about-quote-copy p {
  color: #131313;
  font-size: clamp(16px, 6vw, 18px);
  margin-bottom: 0.85rem;
  font-style: italic;
}
.about-quote .about-quote-copy p:last-child {
  margin-top: 2.75rem;
  margin-bottom: 0;
  color: #131313;
  font-size: clamp(16px, 6vw, 19px);
  font-style: normal;
  line-height: 0.8em;
}
.about-quote .about-quote-copy p:last-child strong {
  display: block;
  font-size: clamp(18px, 6vw, 22px);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.about-info {
  background-color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  padding: 10vw 0;
  border-bottom-left-radius: 3.5vw;
  border-bottom-right-radius: 3.5vw;
  padding-top: 0;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .about-info {
    padding: 40px 0;
  }
}
.about-info .about-info-flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 992px) {
  .about-info .about-info-flex {
    flex-direction: column;
    gap: 40px;
  }
}
.about-info .about-info-flex .about-info-image {
  order: 2;
  width: 45%;
  flex-shrink: 0;
  border-radius: 1.6em;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 992px) {
  .about-info .about-info-flex .about-info-image {
    order: 1;
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.about-info .about-info-flex .about-info-image img, .about-info .about-info-flex .about-info-image video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-info .about-info-flex .about-info-copy {
  order: 1;
  flex: 1;
  align-self: center;
}
@media screen and (max-width: 992px) {
  .about-info .about-info-flex .about-info-copy {
    order: 2;
    width: 100%;
  }
}
.about-info .about-info-flex .about-info-copy h3 {
  font-size: clamp(36px, 6vw, 50px);
  margin-bottom: 1.5rem;
}
.about-info .about-info-flex .about-info-copy p {
  font-size: clamp(16px, 6vw, 20px);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-info .about-info-flex .about-info-copy p:last-child {
  margin-bottom: 0;
}
.about-info .about-info-flex .about-info-copy .btn {
  margin-top: 2rem;
}

.about-showreel {
  background-color: white;
  padding: 10vw 0;
  padding-top: 0;
}
.about-showreel .about-showreel-container {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1.6em;
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .about-showreel .about-showreel-container {
    border-radius: 8px;
  }
}
.about-showreel .about-showreel-container video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-showreel .about-showreel-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.single-page-content {
  background-color: white;
  padding: 10vw 0;
  border-bottom-left-radius: 3.5vw;
  border-bottom-right-radius: 3.5vw;
  padding-top: 0;
  position: relative;
  z-index: 5;
}
.single-page-content h2, .single-page-content h3, .single-page-content h4, .single-page-content h5, .single-page-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.single-page-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.single-page-content p:last-child {
  margin-bottom: 0;
}
.single-page-content ul, .single-page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.single-page-content ul li, .single-page-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.single-page-content ul {
  list-style: disc;
  padding-left: 20px;
}
.single-page-content ol {
  list-style: decimal;
}
.single-page-content a {
  color: #131313;
  text-decoration: underline;
}
.single-page-content a:hover {
  opacity: 0.7;
}

body, html {
  background-color: white;
}

.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
}

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

.hidden {
  display: none;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.error {
  position: relative;
  z-index: 5;
  border-bottom-left-radius: 3.5vw;
  border-bottom-right-radius: 3.5vw;
  padding: 10vw 0;
}
.error h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(50px, 6vw, 70px);
  font-weight: 800;
}
.error p {
  font-size: clamp(20px, 6vw, 26px);
}
.error a {
  display: block;
  text-decoration: underline;
}
/*# sourceMappingURL=main.css.map */
