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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  text-wrap: balance;
}

p {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

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

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("fonts/ttf/InterDisplay-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
html {
  font-family: "Inter Display", sans-serif;
  overflow-x: clip;
}

body {
  font-family: "Inter Display", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #0d0e0e;
  overflow-x: clip;
}

.inner {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 900px) {
  .grid > * {
    min-width: 0;
  }
}

.grid-cols-2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .col {
    min-width: 0;
  }
}

.bg-dark {
  background-color: black;
}

.bg-light {
  background-color: #f3fafc;
}

.bg-snow {
  background-image: linear-gradient(124deg, #f3fafc 0.33%, #eaf1f1 101%);
}

.text-gray {
  color: #b9b9b9 !important;
}

.lede {
  font-size: 21px;
  font-weight: 400;
  line-height: 30px;
  color: #4f4f4f;
}
@media (max-width: 900px) {
  .lede {
    font-size: 18px;
    line-height: 26px;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 80px 0;
}
@media (max-width: 900px) {
  .section-header {
    padding: 48px 0;
    max-width: none;
  }
}
.section-header h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: #ff5032;
}
.section-header h3 {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -2.88px;
  color: black;
}
@media (max-width: 900px) {
  .section-header h3 {
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
}
.section-header h3 span {
  display: block;
}
.section-header .lede {
  margin-top: 16px;
  max-width: 480px;
}
@media (max-width: 900px) {
  .section-header .lede {
    max-width: none;
  }
}

.bg-dark .section-header h3 {
  color: white;
}

.h1 {
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (max-width: 900px) {
  .h1 {
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
}
.h1.font-bold {
  font-weight: 800;
}
.h1.font-medium {
  font-weight: 600;
}
.h1.font-regular {
  font-weight: 400;
}
.h1.font-light {
  font-weight: 300;
}
.h1.font-thin {
  font-weight: 100;
}
.h1.font-extra-light {
  font-weight: 200;
}
.h1.font-extra-bold {
  font-weight: 900;
}
.h1.font-black {
  font-weight: 900;
}
.h1.font-italic {
  font-style: italic;
}
.h1.font-normal {
  font-style: normal;
}
.h1.font-bold-italic {
  font-weight: 700;
  font-style: italic;
}

.actions {
  display: flex;
  gap: 12px;
}
@media (max-width: 900px) {
  .actions {
    flex-wrap: wrap;
  }
}

.button-primary {
  display: inline-flex;
  gap: 8px;
  background-color: #ff5032;
  color: white;
  padding: 12px 16px;
  border-radius: 5px;
  text-decoration: none;
}

.button-link {
  display: inline-flex;
  gap: 8px;
  background-color: transparent;
  color: #ff5032;
  padding: 12px 16px;
  border-radius: 5px;
  text-decoration: none;
}

#masthead {
  position: relative;
  z-index: 20;
}
#masthead .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
@media (max-width: 900px) {
  #masthead .inner {
    height: 72px;
  }
}
#masthead .inner .site-header-logo img,
#masthead .inner .site-logo img {
  width: 177px;
  height: 30px;
  object-fit: contain;
}
@media (max-width: 900px) {
  #masthead .inner .site-header-logo img,
  #masthead .inner .site-logo img {
    width: 140px;
    height: auto;
  }
}
@media (max-width: 900px) {
  #masthead.is-nav-open .site-header-nav {
    display: block;
  }
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    z-index: 2;
  }
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: black;
}

@media (max-width: 900px) {
  .site-header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 8px 20px 24px;
    border-bottom: 1px solid #d1dbdb;
  }
}

#menu-primary-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 900px) {
  #menu-primary-menu {
    flex-direction: column;
    gap: 0;
  }
}
#menu-primary-menu li a {
  text-decoration: none;
  color: black;
}
@media (max-width: 900px) {
  #menu-primary-menu li a {
    display: block;
    padding: 14px 0;
  }
}

#masthead.is-dark .site-logo img {
  filter: brightness(0) invert(1);
}
#masthead.is-dark .nav-toggle span {
  background-color: white;
}
@media (max-width: 900px) {
  #masthead.is-dark .site-header-nav {
    background-color: #0d0e0e;
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }
}
#masthead.is-dark #menu-primary-menu li a {
  color: white;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background-color: black;
  padding-top: 64px;
  padding-bottom: 0;
}
@media (max-width: 900px) {
  .site-footer {
    padding-top: 40px;
  }
}
.site-footer .logo {
  display: inline-block;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.site-footer .logo svg {
  width: 34px;
  height: auto;
  fill: white;
}

.footer-logo {
  position: relative;
  width: 100%;
}
@media (max-width: 900px) {
  .footer-logo {
    pointer-events: none;
  }
}
.footer-logo.is-active .footer-logo-gradient {
  opacity: 1;
}
.footer-logo.is-active .footer-logo-noise {
  opacity: 0.35;
}

.footer-logo-mask {
  position: relative;
  width: 100%;
  height: calc(2 * min(1480px - 40px, 100vw - 40px) * 30 / 177);
  background: black;
  -webkit-mask-image: url("./assets/svg/pixelperfect-mask.svg");
  mask-image: url("./assets/svg/pixelperfect-mask.svg");
  -webkit-mask-size: min(1480px - 40px, 100vw - 40px) auto;
  mask-size: min(1480px - 40px, 100vw - 40px) auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  image-rendering: crisp-edges;
}
@media (max-width: 900px) {
  .footer-logo-mask {
    background: rgba(255, 255, 255, 0.06);
  }
}

.footer-logo-gradient {
  position: absolute;
  width: 66rem;
  height: 66rem;
  border-radius: 100%;
  filter: blur(150px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  transform: translate3d(calc(var(--mouse-x, -9999) * 1px - 33rem), calc(var(--mouse-y, -9999) * 1px - 33rem), 0);
}
@media (max-width: 900px) {
  .footer-logo-gradient {
    opacity: 1;
    width: 48rem;
    height: 48rem;
    transform: translate3d(calc(var(--mouse-x, 0) * 1px - 24rem), calc(var(--mouse-y, 0) * 1px - 24rem), 0);
  }
}

.footer-logo-noise {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: url("./assets/images/noise.png") repeat;
}
@media (max-width: 900px) {
  .footer-logo-noise {
    opacity: 0.25;
  }
}

#hero {
  overflow: hidden;
}
#hero .inner {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  padding-top: 60px;
}
@media (max-width: 900px) {
  #hero .inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding-top: 48px;
  }
}
#hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 740px;
  text-align: left;
}
@media (max-width: 900px) {
  #hero .content-wrapper {
    max-width: none;
  }
}
#hero .content-wrapper span {
  color: rgba(13, 14, 14, 0.5);
  font-size: 18px;
}
@media (max-width: 900px) {
  #hero .content-wrapper span {
    font-size: 16px;
  }
}
#hero .content-wrapper h1 {
  margin: 0;
}
@media (max-width: 900px) {
  #hero .content-wrapper h1 {
    font-size: 60px;
  }
}
#hero .content-wrapper p {
  margin: 0;
}
#hero .image-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 700px;
  background-color: #eaf1f1;
  border-top-left-radius: 20px;
  overflow: hidden;
  z-index: 1;
  margin-right: -20px;
  margin-left: -20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 900px) {
  #hero .image-wrapper {
    max-width: none;
    aspect-ratio: 4/5;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    width: calc(100% + 40px);
  }
}
#hero .image-wrapper > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
#hero .image-wrapper .name-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}
@media (max-width: 900px) {
  #hero .image-wrapper .name-card {
    grid-template-columns: 1fr 90px;
  }
}
#hero .image-wrapper .title {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: white;
  padding: 0 20px 20px 20px;
}
@media (max-width: 900px) {
  #hero .image-wrapper .title {
    padding: 0 16px 16px 16px;
  }
}
#hero .image-wrapper .name {
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  color: white;
  margin: 0;
  padding: 20px 20px 0 20px;
}
@media (max-width: 900px) {
  #hero .image-wrapper .name {
    padding: 16px 16px 0 16px;
  }
}
#hero .image-wrapper .signature {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("./assets/svg/pr-sign.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeLoop 35s linear infinite;
}

.logo-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 4rem;
  padding-right: 4rem;
}
@media (max-width: 900px) {
  .logo-group {
    gap: 2rem;
    padding-right: 2rem;
  }
}
.logo-group img {
  height: 100px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  object-fit: contain;
}
@media (max-width: 900px) {
  .logo-group img {
    height: 80px;
  }
}

@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.section {
  padding: 120px 0;
}
@media (max-width: 900px) {
  .section {
    padding: 64px 0;
  }
}

.text-reveal {
  font-size: 26px;
  line-height: 36px;
  color: #0d0e0e;
  margin: 0;
}
@media (max-width: 900px) {
  .text-reveal {
    font-size: 22px;
    line-height: 32px;
  }
}

.years-of-exp-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .years-of-exp-wrapper {
    padding-right: 0;
    min-height: 200px;
  }
}

.x-svg {
  fill: #eaf1f1;
  bow-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
.x-svg path {
  fill: #eaf1f1;
}

.years-of-exp {
  position: relative;
  width: 250px;
  height: 250px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .years-of-exp {
    width: 180px;
    height: 180px;
    overflow: hidden;
  }
}
.years-of-exp .years {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #0d0e0e;
  z-index: 1;
}
@media (max-width: 900px) {
  .years-of-exp .years {
    font-size: 48px;
  }
}
.years-of-exp .text-circle {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: yearsSpin 18s linear infinite;
}
.years-of-exp .text-circle text {
  font-family: "Inter Display", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  fill: rgba(13, 14, 14, 0.4);
}

@keyframes yearsSpin {
  to {
    transform: rotate(360deg);
  }
}
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px;
  padding: 80px 0;
}
@media (max-width: 900px) {
  .benefits {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    padding: 40px 0;
    gap: 32px;
  }
}
.benefits li {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefits li svg {
  stroke: #ff5032;
  width: 26px;
  height: 26px;
}
.benefits li h3 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.5;
  color: #0d0e0e;
  margin: 0;
}
.benefits li p {
  font-size: 16px;
  line-height: 1.5;
  color: #7B7B7B;
  margin: 0;
}

.stats {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  padding-top: 80px;
}
@media (max-width: 900px) {
  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
    padding-top: 40px;
    margin-top: 24px;
  }
}
.stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.stats li h3 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  color: #ff5032;
  margin: 0;
}
@media (max-width: 900px) {
  .stats li h3 {
    font-size: 32px;
  }
}
.stats li h3 small {
  display: block;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  color: #0d0e0e;
  margin: 0;
  text-align: center;
  margin-top: 12px;
}

#testimonials {
  padding: 0 0 80px;
}
@media (max-width: 900px) {
  #testimonials {
    padding-bottom: 48px;
  }
}

.testimonials {
  display: flex;
  flex-direction: column;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  transition: transform 0.45s ease;
}
.testimonials-track > li {
  flex: 0 0 calc((100% - 30px) / 2);
  min-width: 0;
}
@media (max-width: 900px) {
  .testimonials-track > li {
    flex: 0 0 100%;
  }
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
  padding: 40px;
  background-color: white;
  border: 1px solid #d1dbdb;
  border-radius: 20px;
}
@media (max-width: 900px) {
  .testimonial {
    padding: 24px;
    gap: 24px;
  }
}
.testimonial .testimonial-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.testimonial blockquote {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0;
}
@media (max-width: 900px) {
  .testimonial blockquote {
    gap: 24px;
  }
}
.testimonial blockquote p {
  font-size: 21px;
  font-weight: 400;
  line-height: 32px;
  color: black;
  margin: 0;
}
@media (max-width: 900px) {
  .testimonial blockquote p {
    font-size: 18px;
    line-height: 28px;
  }
}
.testimonial blockquote footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.testimonial blockquote footer img {
  width: 80px;
  height: 80px;
  border-radius: 90px;
  object-fit: cover;
}
.testimonial blockquote footer cite {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
}
.testimonial blockquote footer cite .name {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  color: black;
}
.testimonial blockquote footer cite .role {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  line-height: normal;
  color: rgba(0, 0, 0, 0.5);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 20px 40px;
}
@media (max-width: 900px) {
  .testimonials-nav {
    padding: 20px 0 0;
  }
}

.testimonials-count {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -1.9px;
  color: black;
  white-space: nowrap;
}

.testimonials-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 110px;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
}
.testimonials-btn img {
  width: 20px;
  height: 20px;
}
.testimonials-btn:not(:disabled) {
  background-color: black;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 1;
}
.testimonials-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.ffc_conv_wrapper, .ff_conv_app_frame {
  min-height: 100vh !important;
}

#case-studies {
  padding: 20px 0 80px;
}
@media (max-width: 900px) {
  #case-studies {
    padding: 0 0 48px;
  }
}

.case-studies {
  display: grid;
  grid-template-columns: 820fr 621fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .case-studies {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.case-study {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 20px;
}
.case-study > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.case-study.is-large {
  height: 850px;
}
@media (max-width: 900px) {
  .case-study.is-large {
    height: auto;
    min-height: 420px;
  }
}
.case-study.is-small {
  height: 690px;
}
@media (max-width: 900px) {
  .case-study.is-small {
    height: auto;
    min-height: 420px;
  }
}

.case-study-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  padding: 40px;
  background-image: linear-gradient(to top, #000 0%, #000 40%, transparent 100%);
}
@media (max-width: 900px) {
  .case-study-body {
    padding: 24px;
  }
}
.case-study-body .client {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  font-weight: 300;
  line-height: 44px;
  letter-spacing: -1px;
  color: #bcbcbc;
}
.case-study-body .client img {
  width: 17px;
  height: 17px;
}
.case-study-body h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: -1.9px;
  color: white;
  margin: 0;
}
@media (max-width: 900px) {
  .case-study-body h3 {
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.04em;
  }
}
.case-study-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: -0.2px;
  color: #a9a9a9;
  margin: 0;
}
.case-study-body a {
  font-size: 17px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: -0.2px;
  color: #ff5032;
}

#services {
  padding: 20px 0 100px;
  background-image: radial-gradient(ellipse at 37% 36%, #141617 0%, #000 72%);
}
@media (max-width: 900px) {
  #services {
    padding: 0 0 48px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, minmax(240px, 1fr));
  min-height: 720px;
  border-top: 1px solid #323535;
  border-left: 1px solid #323535;
}
@media (max-width: 900px) {
  .services-grid {
    margin-left: -20px;
    margin-right: -20px;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }
}
.services-grid li {
  display: flex;
  border-right: 1px solid #323535;
  border-bottom: 1px solid #323535;
  position: relative;
  overflow: hidden;
}
.services-grid li::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ff5032;
  transform: scaleX(0) scaleY(1);
  transform-origin: left center;
  opacity: 0.3;
  transition: transform 0.45s ease, opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}
.services-grid li.from-top::before {
  transform-origin: top center;
  transform: scaleX(1) scaleY(0);
}
.services-grid li.from-right::before {
  transform-origin: right center;
  transform: scaleX(0) scaleY(1);
}
.services-grid li.from-bottom::before {
  transform-origin: bottom center;
  transform: scaleX(1) scaleY(0);
}
.services-grid li.from-left::before {
  transform-origin: left center;
  transform: scaleX(0) scaleY(1);
}
.services-grid li.is-hover::before {
  transform: scaleX(1) scaleY(1);
  opacity: 1;
}
.services-grid li.is-reset::before {
  transition: none;
}
.services-grid li a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
  padding: 44px;
  position: relative;
  z-index: 5;
  color: white;
}
@media (max-width: 900px) {
  .services-grid li a {
    padding: 28px 24px;
  }
}
.services-grid li svg {
  width: 30px;
  height: 30px;
  color: #ff5032;
  transition: color 0.3s ease;
}
.services-grid li h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
  color: white;
  transition: color 0.3s ease;
  margin: 0;
}
.services-grid li p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  margin: 0;
}
.services-grid li.is-hover svg,
.services-grid li.is-hover h3,
.services-grid li.is-hover p {
  color: white;
}
.services-grid li:nth-child(1) {
  grid-area: 1/1/3/2;
}
.services-grid li:nth-child(2) {
  grid-area: 1/2/3/3;
}
.services-grid li:nth-child(3) {
  grid-area: 1/3/2/4;
}
.services-grid li:nth-child(4) {
  grid-area: 2/3/3/4;
}
.services-grid li:nth-child(5) {
  grid-area: 3/1/4/2;
}
.services-grid li:nth-child(6) {
  grid-area: 3/2/4/3;
}
.services-grid li:nth-child(7) {
  grid-area: 3/3/4/4;
}
@media (max-width: 900px) {
  .services-grid li:nth-child(n) {
    grid-area: auto;
    min-height: 0;
  }
}

#count-on {
  padding: 20px 0 0;
}
@media (max-width: 900px) {
  #count-on {
    padding: 0;
  }
}
#count-on .inner {
  display: grid;
  grid-template-columns: 1fr 700px;
  gap: 12px;
  align-items: start;
}
@media (max-width: 900px) {
  #count-on .inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
#count-on .section-header {
  max-width: 768px;
  position: sticky;
  z-index: 1;
}
@media (max-width: 900px) {
  #count-on .section-header {
    max-width: none;
    position: static;
    top: auto;
  }
}

.count-on-list {
  padding: 100px 0 0;
}
@media (max-width: 900px) {
  .count-on-list {
    margin-left: -20px;
    margin-right: -20px;
    padding-top: 0;
  }
}
.count-on-list li {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  min-height: 240px;
  padding: 44px;
  border: 1px solid #ccd6d6;
  margin-top: -1px;
}
@media (max-width: 900px) {
  .count-on-list li {
    min-height: 0;
    padding: 28px 24px;
  }
}
.count-on-list li img {
  width: 30px;
  height: 30px;
}
.count-on-list li h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
  color: black;
  margin: 0;
}
.count-on-list li p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #7b7b7b;
  margin: 0;
}

#process {
  padding: 0 0 80px;
}
@media (max-width: 900px) {
  #process {
    padding-bottom: 48px;
  }
}
#process .section-header {
  padding-bottom: 24px;
}
#process .lede {
  max-width: 744px;
  letter-spacing: -0.88px;
}

.brand-wordmark {
  display: block;
  width: 100%;
  max-width: 1376px;
  height: auto;
  margin: 160px auto 0;
}
@media (max-width: 900px) {
  .brand-wordmark {
    margin-top: 64px;
  }
}

.faq .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  .faq .inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.faq.faq-no-header .inner {
  grid-template-columns: 1fr;
}
.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 60px 0 0 0;
}
@media (max-width: 900px) {
  .faq .faq-list {
    margin-top: 0;
  }
}
.faq .faq-list li {
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  position: relative;
}
.faq .faq-list li::before, .faq .faq-list li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  top: 5px;
  transition: transform 0.3s ease;
  background-color: white;
}
.faq .faq-list li::before {
  left: 0;
}
.faq .faq-list li::after {
  left: 0;
  transform: rotate(90deg);
}
.faq .faq-list li.open::before {
  transform: rotate(90deg);
}
.faq .faq-list li h3 {
  font-size: 21px;
  font-weight: 400;
  color: white;
  margin: 0;
}
.faq .faq-list li h3 button {
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
}
.faq .faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq .faq-list li.open .faq-panel {
  grid-template-rows: 1fr;
}
.faq .faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}
.faq .faq-panel p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  padding-top: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.faq .faq-list li.open .faq-panel p {
  opacity: 1;
}

@media (max-width: 900px) {
  #cta .inner {
    padding: 0 12px;
  }
}

.cta-card {
  background-color: #ff5032;
  padding: 100px 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  color: white;
  outline: 2px dotted rgba(255, 255, 255, 0.3);
  outline-offset: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .cta-card {
    padding: 100px 24px;
  }
}
.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/svg/x.svg");
  background-size: 70%;
  background-position: 50%;
  background-repeat: no-repeat;
  opacity: 0.08;
}
.cta-card .eyebrow {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: rgb(59.6078431373%, 8.7230989957%, 0%);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.cta-card h2 {
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: white;
}
@media (max-width: 900px) {
  .cta-card h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
}
.cta-card p {
  font-size: 21px;
  font-weight: 400;
  max-width: 680px;
}
.cta-card .actions {
  margin-top: 12px;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.cta-card .button {
  background-color: white;
  color: #ff5032;
  padding: 12px 32px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.wp-block-gallery.is-style-loop-single,
.wp-block-gallery.is-style-loop-double,
.wp-block-gallery.gallery-loop,
.wp-block-gallery.gallery-loop:not(.has-nested-images),
.wp-block-gallery.gallery-loop.is-layout-flex,
.wp-block-gallery.gallery-loop.wp-block-gallery-is-layout-flex {
  display: block;
  float: none;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  gap: 0;
  overflow: hidden;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
}

.wp-block-gallery.gallery-loop.alignfull {
  max-width: 100%;
}

.gallery-loop__desktop,
.gallery-loop__mobile,
.gallery-loop__row {
  width: 100%;
  min-width: 0;
}

.gallery-loop__desktop {
  display: none;
  gap: 40px;
}
@media (min-width: 901px) {
  .gallery-loop__desktop {
    display: flex;
    flex-direction: column;
  }
}

.gallery-loop__mobile {
  display: block;
}
@media (min-width: 901px) {
  .gallery-loop__mobile {
    display: none;
  }
}

.gallery-loop__row {
  overflow: hidden;
}

.gallery-loop__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.gallery-loop:not(.is-js) .gallery-loop__track {
  animation: galleryLoopLeft var(--gallery-loop-duration, 40s) linear infinite;
}

.gallery-loop:not(.is-js) .gallery-loop__row[data-direction=right] .gallery-loop__track {
  animation-name: galleryLoopRight;
}

.gallery-loop__group {
  display: flex;
  flex-shrink: 0;
  gap: 40px;
  padding-right: 40px;
}

.gallery-loop__item {
  flex-shrink: 0;
}

.gallery-loop img {
  display: block;
  height: 180px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 12px;
}
@media (min-width: 901px) {
  .gallery-loop img {
    height: 240px;
  }
}

@keyframes galleryLoopLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes galleryLoopRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-loop:not(.is-js) .gallery-loop__track {
    animation: none;
  }
}
.alignwide {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.alignfull {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

body.hide-title .entry-title,
body.hide-title h1.page-title,
body.hide-title .wp-block-post-title {
  display: none;
}

.case-study-single {
  margin-top: -100px;
}
.case-study-single .case-study-single__header {
  background-size: cover;
  background-position: enter;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.case-study-single .case-study-single__header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  z-index: 1;
  pointer-events: none;
}
.case-study-single .case-study-single__header .inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 780px;
  padding: 200px 20px 350px 20px;
}
.case-study-single .case-study-single__header .inner h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #eaf1f1;
  text-align: center;
  margin-bottom: 0;
}
.case-study-single .featured-image {
  margin: -230px auto 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.case-study-single .featured-image img {
  border-radius: 16px;
  max-width: 1480px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.case-study-single .intro-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.case-study-single .intro-content p {
  max-width: 740px;
}

body.hide-header .case-study-single {
  margin-top: 0;
}

.case-study-single .intro,
.wp-block-pixelperfect-case-study-intro {
  padding-top: 80px;
  padding-bottom: 80px;
}
.case-study-single .intro .inner,
.wp-block-pixelperfect-case-study-intro .inner {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.case-study-single .intro .inner.grid,
.wp-block-pixelperfect-case-study-intro .inner.grid {
  grid-template-columns: 350px 1fr;
  gap: 80px;
}
.case-study-single .intro h3,
.wp-block-pixelperfect-case-study-intro h3 {
  font-weight: 700;
  margin-bottom: 16px;
}
.case-study-single .intro aside:not(:last-child),
.wp-block-pixelperfect-case-study-intro aside:not(:last-child) {
  margin-bottom: 36px;
}
.case-study-single .intro .services .items li,
.wp-block-pixelperfect-case-study-intro .services .items li {
  padding: 2px 0;
}
.case-study-single .intro .technologies .items,
.wp-block-pixelperfect-case-study-intro .technologies .items {
  display: grid;
  grid-template-columns: repeat(5, 50px);
  gap: 16px;
  position: relative;
}
.case-study-single .intro .technologies .items li,
.wp-block-pixelperfect-case-study-intro .technologies .items li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background-color: #eaf1f1;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.case-study-single .intro .technologies .items svg,
.wp-block-pixelperfect-case-study-intro .technologies .items svg {
  height: 26px;
  width: 26px;
  fill: #0d0e0e;
}
.case-study-single .intro .technologies .items svg.woo,
.wp-block-pixelperfect-case-study-intro .technologies .items svg.woo {
  height: 26px;
  width: 38px;
}
.case-study-single .intro .technologies .items .label,
.wp-block-pixelperfect-case-study-intro .technologies .items .label {
  display: none;
}
