/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
    box-sizing: border-box;
}

@font-face {
  font-family: "Harabara Mais Demo";
  src: url("/assets/fonts/Harabara Mais Demo.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pangram";
  src: url("/assets/fonts/Pangram-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-heading: "Harabara Mais Demo", sans-serif;
  --font-body: "Pangram", sans-serif;

  /* Type scale */
  --text-display: clamp(2rem, 5vw, 3.25rem); /* footer hashtag */
  --text-hero: clamp(1.5rem, 5.5vw, 2.5rem); /* page heroes */
  --text-h2: clamp(1.25rem, 3.5vw, 2rem); /* section titles */
  --text-h3: clamp(1rem, 2.5vw, 1.5rem); /* card titles */
  --text-body-lg: clamp(0.9375rem, 2vw, 1.125rem); /* intro / lead copy */
  --text-body: clamp(0.875rem, 1.5vw, 1rem); /* default body */
  --text-sm: clamp(0.8125rem, 1.5vw, 0.875rem); /* footer info */
  --text-nav: 1rem;
}

/* Start of Common Styles */
.text-color-green {
  color: #2db77c;
}
.text-color-pink {
  color: #df205d;
}
.text-color-cyan {
  color: #37c3ee;
}
.text-color-yellow {
  color: #ebb22f;
}
.text-color-blue {
  color: #182045;
}
.block-bg-pattern {
  position: relative;
}
.block-bg-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: url("/assets/images/bg-block-pattern.png") repeat;
  pointer-events: none;
  z-index: 1;
}
.block-bg-pattern :is(h1, h2, h3, p, a, img) {
  position: relative;
  z-index: 2;
}
.block-bg-green {
  background-color: #2db77c;
}
.block-bg-pink {
  background-color: #df205d;
}
.block-bg-cyan {
  background-color: #37c3ee;
}
.block-bg-yellow {
  background-color: #ebb22f;
}
.block-bg-blue {
  background-color: #182045;
}
.division-row {
  display: flex;
  flex-direction: row;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 4.688rem;
  line-height: normal;
}
.btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* Lazy-loaded image skeleton (pure CSS).
   An animated shimmer fills the image box until the image paints over it.
   Lazy images use object-fit: cover, so the skeleton is hidden once loaded. */
@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
img[loading="lazy"] {
  background-color: #c2ccd7;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  background-repeat: no-repeat;
  animation: skeleton-shimmer 1.2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  img[loading="lazy"] {
    background-image: none;
    animation: none;
  }
}
[hide-on-desktop] {
  display: none;
}
/* End of Common Styles */

/* Start of Website Styling */
html {
  font-size: 1rem;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* Layout B variant (?layout=b): constrain page width and centre it. */
html.layout-b {
  background-color: #f5f5f5;
}
html.layout-b body {
  max-width: 90rem;
  margin-inline: auto;
}
:is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: normal;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  max-height: 5.875rem;
}

.section-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 105.5rem;
  width: 100%;
  margin: 0 auto;
  padding: 1.3rem 4rem;
}

.site-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem;
}
.site-breadcrumb li {
  display: flex;
  align-items: center;
}
.site-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--text-nav);
  outline: none;
  transition: opacity 0.2s ease;
}
.site-breadcrumb a:hover,
.site-breadcrumb a:focus-visible {
  opacity: 0.75;
}
body[data-page="home"] a[data-nav="home"],
body[data-page="company"] a[data-nav="company"],
body[data-page="services"] a[data-nav="services"] {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}
body[data-page="home"] a[data-nav="home"]:hover,
body[data-page="company"] a[data-nav="company"]:hover,
body[data-page="services"] a[data-nav="services"]:hover {
  opacity: 0.45;
}

.nav-toggle,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.nav-toggle-label {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.nav-toggle-bar {
  position: relative;
}
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle-bar::before {
  top: -0.45rem;
}
.nav-toggle-bar::after {
  top: 0.45rem;
}
.nav-toggle:focus-visible ~ .nav-toggle-label {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.nav-toggle:checked ~ .nav-toggle-label .nav-toggle-bar {
  background-color: transparent;
}
.nav-toggle:checked ~ .nav-toggle-label .nav-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle:checked ~ .nav-toggle-label .nav-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

main {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 7rem 1.5rem 6rem;
  text-align: center;
}
.page-placeholder h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #182045;
}
.page-placeholder p {
  max-width: 40rem;
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  line-height: 1.6;
  color: #444444;
}

section {
  display: flex;
  flex-direction: column;
  padding-top: 5.875rem;
  scroll-margin-top: 5.875rem;
}

section#hero {
  display: flex;
  min-height: 100svh;
  position: relative;
  isolation: isolate;
}
section#hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
section#hero .hero-media__still,
section#hero .hero-media__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
section#hero .hero-media__video {
  opacity: 0;
  transition: opacity 0.8s ease;
}
section#hero .hero-media--video-loaded .hero-media__video {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  section#hero .hero-media__video {
    transition: none;
  }
}
section#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
section#hero * {
  z-index: 1;
}
section#hero .section-area {
  display: flex;
  flex: 1;
  height: 100%;
}
section#hero .card {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}
section#hero .card h2 {
  color: #ffffff;
  font-size: var(--text-hero);
  line-height: 1.1;
  letter-spacing: -0.063rem;
}
section#hero .hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #ffffff;
  transition: opacity 0.2s ease;
}
section#hero .hero-scroll:hover,
section#hero .hero-scroll:focus-visible {
  opacity: 0.7;
}
section#hero .hero-scroll svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* .btn-hero {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
.btn-hero:hover {
  background: rgba(0, 0, 0, 0.6);
} */

section#agencies {
  display: flex;
  height: auto;
  min-height: unset;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 4rem;
  gap: 1.5rem;
}
section#agencies h2 {
  font-size: var(--text-h3);
  letter-spacing: -0.063rem;
}
section#agencies .agencies-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
section#agencies ul {
  display: flex;
  width: max-content;
  align-items: center;
}
section#agencies li {
  flex: 0 0 auto;
  width: 10rem;
  height: 4rem;
  margin-right: 3.5rem;
}
section#agencies li {
  display: flex;
  justify-content: center;
  align-items: center;
}
section#agencies li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section#about {
  display: flex;
}
section#about .top-portion .left-portion {
  display: flex;
  flex-direction: column;
  padding: 3.75rem 0 0 0;
  flex: 1 1 50%;
  width: 50%;
  min-width: 0;
}
section#about .controlled-box {
  display: flex;
  width: 100%;
  max-width: 52.75rem;
  align-items: flex-end;
}
section#about .top-portion .left-portion .title,
section#about .top-portion .left-portion .description {
  display: flex;
  align-items: center;
  justify-content: right;
}
section#about .top-portion .left-portion .title h2 {
  padding: 1.25rem 3rem;
  font-size: var(--text-h2);
  color: #ffffff;
}

section#about .top-portion .description p {
  padding: 2rem 3rem;
  font-size: var(--text-body-lg);
  color: #ffffff;
  line-height: 1.55;
}
section#about .top-portion .right-portion {
  display: flex;
  flex: 1 1 50%;
  width: 50%;
  min-width: 0;
}
section#about .top-portion .right-portion img,
section#about .bottom-portion .left-portion img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
section#about .bottom-portion {
  display: flex;
  width: 100%;
}
section#about .bottom-portion .left-portion {
  display: flex;
  width: 45%;
}
section#about .bottom-portion .left-portion .controlled-box {
  display: flex;
  flex-direction: column;
}
section#about .bottom-portion .right-portion {
  display: flex;
  flex-direction: row;
  width: 55%;
}
section#about .bottom-portion .right-portion .title {
  display: flex;
  flex: 0 0 31%;
  width: auto;
  align-items: center;
  justify-content: center;
}
section#about .bottom-portion .right-portion .title h2 {
  font-size: var(--text-h2);
  padding: 2rem;
}
section#about .bottom-portion .right-portion .description {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  justify-content: center;
}
section#about .bottom-portion .right-portion .description .details {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 3rem;
}
section#about .bottom-portion .right-portion .description p {
  font-size: var(--text-body-lg);
  color: #000000;
  line-height: 1.55;
}

/* About photo collage */
/*
section#about .top-portion .right-portion .about-collage .top-portion,
section#about .top-portion .right-portion .about-collage .bottom-portion {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 40%;
  overflow: hidden;
}
section#about .top-portion .right-portion .about-collage .top-portion .img-container:nth-child(1) {
  background: url(/assets/images/optimized/landing/landing-page-img-01-M.webp) no-repeat center center / cover;
}
section#about .top-portion .right-portion .about-collage .top-portion .img-container:nth-child(2) {
  background: url(/assets/images/optimized/landing/landing-page-img-02-M.webp) no-repeat center center / cover;
}
section#about .top-portion .right-portion .about-collage .top-portion .img-container:nth-child(3) {
  background: url(/assets/images/optimized/landing/landing-page-img-03-M.webp) no-repeat center center / cover;
}
section#about .top-portion .right-portion .about-collage .bottom-portion {
  height: 60%;
}
section#about .top-portion .right-portion .about-collage .bottom-portion .img-container:nth-child(1) {
  background: url(/assets/images/optimized/landing/landing-page-img-04-M.webp) no-repeat center center / cover;
  grid-column: span 2;
}
section#about .top-portion .right-portion .about-collage .bottom-portion .img-container:nth-child(2) {
  background: url(/assets/images/optimized/landing/landing-page-img-05-M.webp) no-repeat center center / cover;
}
section#about .bottom-portion .left-portion .about-collage--pair  {
  display: grid;
  width: 100%;
  height: 100%;
  overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
}
section#about .bottom-portion .left-portion .about-collage--pair .img-container:nth-child(1) {
  background: url(/assets/images/optimized/landing/landing-page-img-06-M.webp) no-repeat center center / cover;
}
section#about .bottom-portion .left-portion .about-collage--pair .img-container:nth-child(2) {
  background: url(/assets/images/optimized/landing/landing-page-img-07-M.webp) no-repeat center center / cover;
} */
 section#about .top-portion .right-portion .about-collage {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
}
section#about .top-portion .right-portion .about-collage,
section#about .bottom-portion .left-portion .about-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  overflow: hidden;
}
section#about .top-portion .right-portion .about-collage .img-container,
section#about .bottom-portion .left-portion .about-collage .img-container {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  object-position: center center;
}
/* section#about .top-portion .right-portion .about-collage .img-container:nth-child(n - 2) {
  height: 40%;
} */
section#about .top-portion .right-portion .about-collage .img-container:nth-child(4) {
  grid-column: span 2;
}
section#about .bottom-portion .left-portion .about-collage--pair {
  grid-template-columns: repeat(2, 1fr);
}
footer#footer {
  padding-top: 0;
}
footer#footer .footer-hashtag {
  display: flex;
  justify-content: center;
  padding: 4rem 4rem 0;
  background-color: #f5f5f5;
  position: relative;
  z-index: 1;
}
footer#footer .footer-hashtag__text {
  position: relative;
  z-index: 2;
  transform: translateY(20%);
  font-family: var(--font-heading);
  font-size: var(--text-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
}
footer#footer .footer-hashtag__hash {
  color: #000000;
}
footer#footer .footer-hashtag__nothing {
  color: #37c3ee;
}
footer#footer .footer-hashtag__less {
  color: #2db77c;
}
footer#footer .footer-hashtag__than {
  color: #ebb22f;
}
footer#footer .footer-hashtag__total {
  color: #df205d;
}
footer#footer .footer-body {
  background-color: #182045;
  color: #ffffff;
  padding: calc(3rem + 0.5 * var(--text-display)) 4rem 4rem;
}
footer#footer .footer-content {
  align-items: stretch;
  gap: 3rem;
  max-width: 105.5rem;
  margin: 0 auto;
}
footer#footer .left-portion,
footer#footer .right-portion {
  display: flex;
  flex-direction: column;
  flex: 1;
}
footer#footer .left-portion {
  align-items: flex-start;
}
footer#footer .right-portion {
  align-items: flex-end;
}
footer#footer .footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2rem 3rem;
}
footer#footer .footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: var(--text-nav);
  transition: opacity 0.2s ease;
}
footer#footer .footer-nav a:hover {
  opacity: 0.75;
}
footer#footer .footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin-top: auto;
  padding-top: 3rem;
  font-size: var(--text-sm);
  line-height: 1.5;
}
footer#footer .footer-info address {
  font-style: normal;
}
footer#footer .footer-info a {
  color: #ffffff;
  text-decoration: none;
}
footer#footer .footer-info a:hover {
  text-decoration: underline;
}
footer#footer .footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  text-align: right;
}
footer#footer .footer-cta h3 {
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.2;
}
footer#footer .footer-socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: auto;
  padding-top: 3rem;
}
footer#footer .footer-socials a {
  display: flex;
  color: #ffffff;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
footer#footer .footer-socials svg {
  width: 1.5rem;
  height: 1.5rem;
}
footer#footer .footer-socials li a {
  opacity: 1;
}
footer#footer .footer-socials li a:hover {
  opacity: 1;
  transform: scale(1.15);
}
footer#footer .footer-accent {
  display: flex;
  width: 100%;
  height: 0.85rem;
}
footer#footer .footer-accent span {
  flex: 1;
}
footer#footer .footer-accent__cyan {
  background-color: #37c3ee;
}
footer#footer .footer-accent__pink {
  background-color: #df205d;
}
footer#footer .footer-accent__yellow {
  background-color: #ebb22f;
}
footer#footer .footer-accent__green {
  background-color: #2db77c;
}

/* Company page */
section#company-hero {
  display: flex;
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  padding-top: 5.875rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
section#company-hero .company-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
section#company-hero .company-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
section#company-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: -1;
}
section#company-hero .company-hero__logos {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 3rem;
  align-content: center;
  justify-items: center;
  padding: 6rem 4rem;
  opacity: 0.12;
  pointer-events: none;
}
section#company-hero .company-hero__logos img {
  width: 100%;
  max-width: 8rem;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
section#company-hero .company-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 52rem;
  padding: 2rem 4rem 5rem;
}
section#company-hero h2 {
  color: #ffffff;
  font-size: var(--text-hero);
  line-height: 1.15;
  letter-spacing: -0.063rem;
}
section#company-hero .company-hero__cyan {
  color: #37c3ee;
}
section#company-hero .company-hero__yellow {
  color: #ebb22f;
}
section#company-hero .company-hero__green {
  color: #2db77c;
}
section#company-hero .company-hero__pink {
  color: #df205d;
}
section#company-hero .company-hero__eyebrow {
  font-size: var(--text-body-lg);
  color: #ffffff;
}
section#company-hero .company-hero__body {
  font-size: var(--text-body-lg);
  color: #ffffff;
  line-height: 1.65;
  max-width: 40rem;
}
section#company-hero .hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #ffffff;
  transition: opacity 0.2s ease;
}
section#company-hero .hero-scroll:hover,
section#company-hero .hero-scroll:focus-visible {
  opacity: 0.7;
}
section#company-hero .hero-scroll svg {
  width: 1.75rem;
  height: 1.75rem;
}

section#company-vision {
  padding-top: 0;
  scroll-margin-top: 5.875rem;
}
section#company-vision .controlled-box {
  display: flex;
  width: 100%;
  max-width: 52.75rem;
  align-items: flex-end;
}

/* Vision + Culture blocks */
section#company-vision .company-vision .left-portion {
  display: flex;
  flex-direction: column;
  padding: 3.75rem 0 0;
  width: 50%;
}
section#company-vision .company-vision .title,
section#company-vision .company-vision .description {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
section#company-vision .company-vision .title h2 {
  padding: 1.25rem 3rem;
  font-size: var(--text-h2);
  color: #000000;
}
section#company-vision .company-vision .description {
  align-items: baseline;
  flex: 1;
}
section#company-vision .company-vision .description .controlled-box {
  align-items: baseline;
}
section#company-vision .company-vision .description p {
  padding: 2rem 3rem;
  font-size: var(--text-body-lg);
  color: #000000;
  line-height: 1.55;
}
section#company-vision .company-vision .right-portion {
  display: flex;
  width: 50%;
}
section#company-vision .company-vision .right-portion .img-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("/assets/images/optimized/company/company-page-img-01-M.webp") no-repeat center center / cover;
  z-index: 2;
}
section#company-vision .company-vision .right-portion img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section#company-vision .the-culture .right-portion .img-container {
  background: url("/assets/images/optimized/company/company-page-img-04-M.webp") no-repeat center center / cover;
}

/* Mission block */
section#company-vision .company-mission .left-portion {
  display: flex;
  flex-direction: column;
  width: 50%;
}
section#company-vision .company-mission .left-portion .img-container {
  height: 50%;
  z-index: 2;
}
section#company-vision .company-mission .left-portion .img-container:nth-child(1) {
  background: url("/assets/images/optimized/company/company-page-img-02-M.webp") no-repeat center center / cover;
}
section#company-vision .company-mission .left-portion .img-container:nth-child(2) {
  background: url("/assets/images/optimized/company/company-page-img-03-M.webp") no-repeat center center / cover;
}
section#company-vision .company-mission__images img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section#company-vision .company-mission .right-portion {
  display: flex;
  width: 50%;
}
section#company-vision .company-mission .description {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
}
section#company-vision .company-mission .description .title {
  display: flex;
  width: 45%;
  align-items: center;
  justify-content: center;
}
section#company-vision .company-mission .description .title h2 {
  font-size: var(--text-h2);
  padding: 2rem 3rem;
  color: #000000;
}
section#company-vision .company-mission .description > .controlled-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}
section#company-vision .company-mission .description .details {
  display: flex;
  flex-direction: column;
  padding: 2rem 3rem;
}
section#company-vision .company-mission .description p {
  font-size: var(--text-body-lg);
  color: #000000;
  line-height: 1.55;
}

section#company-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem 4rem 1rem;
  background-color: #f5f5f5;
  text-align: center;
  min-height: unset;
  padding-top: 4rem;
}
section#company-cta h2 {
  font-size: var(--text-h2);
  color: #000000;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.4;
}
section#company-cta .company-cta__action {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

section#company-cta .btn {
  width: 262px;
  max-width: 100%;
}
section#company-cta .btn-profile {
  color: #000000;
  border-color: #000000;
  font-size: 1rem;
  padding: 0.85rem 2.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: inherit;
}
section#company-cta .btn-profile:hover,
section#company-cta .btn-profile:focus-visible {
  background-color: #000000;
  color: #ffffff;
}

/* Reusable video modal */
@keyframes video-modal-backdrop-in {
  from {
    opacity: 0;
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
  }
  to {
    opacity: 1;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }
}
@keyframes video-modal-backdrop-out {
  from {
    opacity: 1;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }
  to {
    opacity: 0;
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
  }
}
@keyframes video-modal-panel-in {
  0% {
    opacity: 0;
    transform: scale(0.78) translateY(3rem) rotate(-1.25deg);
  }
  55% {
    opacity: 1;
    transform: scale(1.045) translateY(-0.4rem) rotate(0.4deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0);
  }
}
@keyframes video-modal-panel-out {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.86) translateY(2rem);
  }
}
@keyframes video-modal-accent-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes video-modal-close-in {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes video-modal-video-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top))
    max(1rem, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  visibility: hidden;
  pointer-events: none;
}
.video-modal--open,
.video-modal--closing {
  visibility: visible;
  pointer-events: auto;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  opacity: 0;
}
.video-modal--open .video-modal__backdrop {
  animation: video-modal-backdrop-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.video-modal--closing .video-modal__backdrop {
  animation: video-modal-backdrop-out 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.video-modal__panel {
  position: relative;
  z-index: 1;
  width: min(90vw, 56rem);
  max-height: min(90dvh, calc(90vw * 9 / 16 + 3rem));
  opacity: 0;
  transform: scale(0.78) translateY(3rem);
  will-change: transform, opacity;
}
.video-modal__panel::before {
  content: "";
  position: absolute;
  inset: -0.2rem;
  border-radius: 0.65rem;
  background: linear-gradient(
    135deg,
    #37c3ee 0%,
    #ebb22f 35%,
    #df205d 70%,
    #2db77c 100%
  );
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
.video-modal--open .video-modal__panel {
  animation: video-modal-panel-in 0.65s cubic-bezier(0.34, 1.35, 0.64, 1) forwards;
}
.video-modal--open .video-modal__panel::before {
  animation: video-modal-accent-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}
.video-modal--closing .video-modal__panel {
  animation: video-modal-panel-out 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.video-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.5);
  transition:
    background 0.2s ease,
    transform 0.2s cubic-bezier(0.34, 1.35, 0.64, 1);
}
.video-modal--open .video-modal__close {
  animation: video-modal-close-in 0.5s cubic-bezier(0.34, 1.35, 0.64, 1) 0.35s forwards;
}
.video-modal__close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.08);
}
.video-modal__close:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.video-modal__video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(90dvh, calc(90vw * 9 / 16));
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 0.5rem;
  background: #000000;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: scale(0.96);
}
.video-modal--open .video-modal__video {
  animation: video-modal-video-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .video-modal__backdrop,
  .video-modal__panel,
  .video-modal__panel::before,
  .video-modal__close,
  .video-modal__video {
    animation: none !important;
    transition: none;
    opacity: 1;
    transform: none;
  }
  .video-modal--closing .video-modal__backdrop,
  .video-modal--closing .video-modal__panel {
    opacity: 0;
  }
}
@media (min-width: 48.0625rem) {
  .video-modal__panel {
    width: min(92vw, 68rem);
    max-height: min(92dvh, calc(92vw * 9 / 16 + 3rem));
  }
  .video-modal__video {
    max-height: min(92dvh, calc(92vw * 9 / 16));
  }
}

/* Services page */
section#services-hero {
  display: flex;
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  padding-top: 5.875rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
section#services-hero .services-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
section#services-hero .services-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
section#services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: -1;
}
section#services-hero .services-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 52rem;
  padding: 2rem 4rem 5rem;
}
section#services-hero h2 {
  color: #ffffff;
  font-size: var(--text-hero);
  line-height: 1.15;
  letter-spacing: -0.063rem;
}
section#services-hero .services-hero__orange {
  color: #ebb22f;
}
section#services-hero .services-hero__cyan {
  color: #37c3ee;
}
section#services-hero .services-hero__green {
  color: #2db77c;
}
section#services-hero .services-hero__pink {
  color: #df205d;
}
section#services-hero .services-hero__eyebrow {
  font-size: var(--text-body-lg);
  color: #ffffff;
}
section#services-hero .services-hero__body {
  font-size: var(--text-body-lg);
  color: #ffffff;
  line-height: 1.65;
  max-width: 40rem;
}
section#services-hero .hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #ffffff;
  transition: opacity 0.2s ease;
}
section#services-hero .hero-scroll:hover,
section#services-hero .hero-scroll:focus-visible {
  opacity: 0.7;
}
section#services-hero .hero-scroll svg {
  width: 1.75rem;
  height: 1.75rem;
}

.services-divider {
  width: 100%;
  min-height: 8.963rem;
}

section#services-portfolio {
  background-color: #f5f5f5;
  padding: 4rem 4rem 5rem;
  scroll-margin-top: 5.875rem;
}
section#services-portfolio > h2 {
  text-align: center;
  font-size: var(--text-h2);
  color: #000000;
  font-weight: 700;
  margin-bottom: 3rem;
}
section#services-portfolio .services-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 17.5rem));
  justify-content: center;
  gap: 2.5rem 2rem;
  max-width: 75rem;
  margin: 0 auto;
}
section#services-portfolio .service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section#services-portfolio .service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}
section#services-portfolio .service-card h3 {
  font-size: var(--text-h3);
  font-weight: 700;
  color: #000000;
  line-height: 1.35;
}
section#services-portfolio .service-card p {
  font-size: var(--text-body);
  color: #000000;
  line-height: 1.5;
}
section#services-portfolio .service-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
section#services-portfolio .service-card li {
  font-size: var(--text-body);
  color: #000000;
  line-height: 1.5;
}

@supports (grid-template-rows: subgrid) {
  @media (min-width: 48.0625rem) {
    section#services-portfolio .services-portfolio__grid {
      gap: 1rem 2rem;
    }
    section#services-portfolio .service-card {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 4;
      gap: 1.125rem;
      margin-bottom: 1.5rem;
    }
    section#services-portfolio .service-card:nth-last-child(-n + 3) {
      margin-bottom: 0;
    }
  }
}

/* Tablet typography */
@media (max-width: 64rem) {
  section#hero .card h2,
  section#company-hero h2,
  section#services-hero h2 {
    font-size: clamp(1.375rem, 4.5vw, 2.125rem);
  }
  section#about .top-portion .left-portion .title h2,
  section#about .bottom-portion .right-portion .title h2,
  section#company-vision .company-vision .title h2,
  section#company-vision .company-mission .description .title h2 {
    font-size: clamp(1.125rem, 3vw, 1.75rem);
  }
  footer#footer .footer-hashtag__text {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
  }
}

/* Start of Mobile Styling */
@media (min-width: 90rem) {
  section#company-vision .company-vision .left-portion {
    min-height: 22rem;
  }
}
@media (max-width: 48rem) {
  [hide-on-desktop] {
    display: flex;
  }
  footer#footer .footer-cta h3 br{
    display: none;
  }
  section#company-vision .company-mission__images img {
    min-height: unset;
  }
  .section-area {
    position: relative;
    padding: 1rem 1.5rem;
  }

  /* Header + hamburger menu */
  header h1 img {
    max-height: 2.25rem;
    width: auto;
  }
  .nav-toggle-label {
    display: flex;
  }
  .site-breadcrumb {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.5rem 1.5rem 1rem;
  }
  .nav-toggle:checked ~ .site-breadcrumb {
    display: block;
  }
  .site-breadcrumb ol {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
  }
  .site-breadcrumb li {
    display: block;
  }
  .site-breadcrumb a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-breadcrumb li:last-child a {
    border-bottom: none;
  }

  /* Hero */
  section#hero .card {
    align-items: center;
    justify-content: center;
    text-align: center;
    top: 0;
  }

  /* Agencies: smaller slider logos */
  section#agencies {
    padding: 2rem 1.5rem;
  }
  section#agencies li {
    width: 7.5rem;
    height: 3rem;
    margin-right: 2.5rem;
  }

  /* About top block order: title -> image -> description.
     Grid + display:contents reorders reliably in Safari (flex order did not). */
  section#about .top-portion {
    display: grid;
    grid-template-columns: 1fr;
  }
  section#about .top-portion .left-portion {
    display: contents;
  }
  section#about .top-portion .title {
    grid-row: 1;
  }
  section#about .top-portion .right-portion {
    grid-row: 2;
    width: 100%;
  }
  section#about .top-portion .description {
    grid-row: 3;
    background-color: #df205d;
  }
  section#about .top-portion .left-portion .title,
  section#about .top-portion .left-portion .description {
    justify-content: flex-start;
  }
  section#about .top-portion .left-portion .title h2,
  section#about .top-portion .description p {
    padding: 1.5rem;
  }
  section#about .top-portion .description p {
    line-height: 1.6;
  }

  /* About bottom block order: image -> title -> services */
  section#about .bottom-portion {
    flex-direction: column;
  }
  section#about .bottom-portion .left-portion,
  section#about .bottom-portion .right-portion {
    width: 100%;
  }
  section#about .bottom-portion .right-portion {
    flex-direction: column;
  }
  section#about .bottom-portion .right-portion .title,
  section#about .bottom-portion .right-portion .description {
    flex: none;
    width: 100%;
  }
  section#about .bottom-portion .right-portion .title h2 {
    padding: 1.5rem;
  }
  section#about .bottom-portion .right-portion .description .details {
    padding: 1.5rem;
  }
  section#about .bottom-portion .right-portion .description p {
    line-height: 1.6;
  }
  section#about .top-portion .right-portion .about-collage,
  section#about .bottom-portion .left-portion .about-collage {
    grid-template-columns: repeat(2, 1fr);
  }
  section#about .top-portion .right-portion .about-collage .img-container:nth-child(4) {
    order: 5;
    grid-column: 1 / -1;
  }

  /* Execs: single centered column */
  section#execs {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 3rem;
  }
  section#execs .execs-grid {
    gap: 4.5rem 0;
  }
  section#execs .exec-card {
    max-width: 100%;
  }

  /* Footer: stack columns */
  footer#footer .footer-hashtag {
    padding: 2.5rem 1.5rem 0;
  }
  footer#footer .footer-body {
    padding: calc(2.5rem + 0.5 * var(--text-display)) 1.5rem 3rem;
  }
  footer#footer .footer-content {
    flex-direction: column;
    gap: 2.5rem;
  }
  footer#footer .right-portion {
    max-width: 100%;
    align-items: center;
  }
  footer#footer .footer-cta {
    text-align: center;
    align-items: center;
    gap: 0.75rem;
  }
  footer#footer .footer-cta h2 {
    font-size: clamp(1.0625rem, 4vw, 1.75rem);
  }
  footer#footer .footer-hashtag__text {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  footer#footer .footer-nav ul {
    gap: 1rem 1.5rem;
    align-items: center;
    justify-content: center;
  }
  footer#footer .footer-info,
  footer#footer .footer-socials {
    padding-top: 1.5rem;
  }
  footer#footer .footer-info {
    gap: 0.05rem;
    text-align: center;
  }
  .services-divider {
    min-height: 4.563rem;
  }

  /* Company page */
  section#company-hero .company-hero__content {
    padding: 2rem 1.5rem 5rem;
  }
  section#company-hero .company-hero__logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 5rem 1.5rem;
  }

  /* Vision + Culture: title -> image -> description */
  section#company-vision .company-vision {
    flex-direction: column;
  }
  section#company-vision .company-vision .left-portion {
    display: contents;
  }
  section#company-vision .company-vision .title {
    order: 1;
    justify-content: flex-start;
  }
  section#company-vision .company-vision .right-portion {
    order: 2;
    width: 100%;
  }
  section#company-vision .company-vision .description {
    order: 3;
    justify-content: flex-start;
  }
  section#company-vision .company-vision .description:not(.block-bg-green) {
    background-color: #ebb22f;
  }
  section#company-vision .company-vision .title h2,
  section#company-vision .company-vision .description p {
    padding: 1.5rem;
    line-height: 1.6;
  }

  /* Mission: image -> title -> details */
  section#company-vision .company-mission {
    flex-direction: column;
  }
  section#company-vision .company-mission .left-portion,
  section#company-vision .company-mission .right-portion {
    width: 100%;
  }
  section#company-vision .company-mission .description {
    flex-direction: column;
  }
  section#company-vision .company-mission .description .title,
  section#company-vision .company-mission .description > .controlled-box {
    width: 100%;
  }
  section#company-vision .company-mission .description .title {
    justify-content: flex-start;
  }
  section#company-vision .company-mission .description .title h2 {
    padding: 1.5rem;
  }
  section#company-vision .company-mission .description .details {
    padding: 1.5rem;
  }
  section#company-vision .company-mission .description p {
    line-height: 1.6;
  }

  section#company-cta {
    padding: 3rem 1.5rem 1rem;
  }

  /* Services page */
  section#services-hero .services-hero__content {
    padding: 2rem 1.5rem 5rem;
  }
  section#services-portfolio {
    padding: 3rem 1.5rem 4rem;
  }
  section#services-portfolio > h2 {
    margin-bottom: 2rem;
  }
  section#services-portfolio .services-portfolio__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  section#services-portfolio .service-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    grid-row: auto;
    grid-template-rows: none;
    margin-bottom: 0;
  }

  /* Typography: tighten on mobile */
  section#hero .card h2,
  section#company-hero h2,
  section#services-hero h2 {
    font-size: clamp(1.25rem, 6vw, 1.5rem);
  }
  section#about .top-portion .description p,
  section#about .bottom-portion .right-portion .description p,
  section#company-vision .company-vision .description p,
  section#company-vision .company-mission .description p {
    font-size: 0.9375rem;
    line-height: 1.55;
  }
  section#execs .exec-card__quote {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  section#hero .section-area {
    justify-content: center;
  }
}
/* End of Mobile Styling */
/* End of Website Styling */
