:root {
  --ink: #172235;
  --muted: #667084;
  --line: #dfe4ea;
  --paper: #fffdf8;
  --white: #ffffff;
  --peach: #fff1e8;
  --peach-2: #ffe2d3;
  --butter: #fff7c9;
  --mint: #e9faef;
  --sky: #eaf6ff;
  --lilac: #f1edff;
  --coral: #ff785d;
  --blue: #4f73ff;
  --green: #2ba471;
  --purple: #7d62e8;
  --logo-bg: #1c2a43;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none
}

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

::selection {
  background: #ffca9e;
  color: #172235
}

::-moz-selection {
  background: #ffca9e;
  color: #172235
}

.gix-section {
  padding: 50px 0;
  position: relative
}

.section-heading {
  max-width: 860px;
  margin: 0 0 32px
}

.section-heading h2 {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -1.6px;
  margin: 12px 0 14px;
  font-weight: 800
}

.section-heading p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 760px
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink)
}

.section-kicker i {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: width .45s ease
}

.section-kicker:hover i {
  width: 62px
}

.paper-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease
}

.paper-button {
  background: var(--butter);
  color: var(--ink);
  box-shadow: 6px 6px 0 #ffb98f
}

.paper-button:hover {
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 #ffb98f
}

.text-button {
  background: #fff;
  color: var(--ink);
  border-color: #cfd6df
}

.text-button:hover {
  color: var(--ink);
  background: var(--sky);
  transform: translateY(-2px)
}

.reveal-section {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1)
}

.reveal-section.is-visible {
  opacity: 1;
  transform: none
}

.seq-card {
  position: relative;
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .6s ease, transform .7s cubic-bezier(.2, .75, .2, 1)
}

.seq-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--ink);
  pointer-events: none;
  clip-path: inset(0 100% 100% 0);
  transition: clip-path .65s cubic-bezier(.2, .8, .2, 1)
}

.seq-card.is-visible {
  opacity: 1;
  transform: none
}

.seq-card.is-visible::before {
  clip-path: inset(0)
}

.seq-card .seq-icon,
.seq-card h3,
.seq-card h4,
.seq-card p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease
}

.seq-card.is-visible .seq-icon {
  opacity: 1;
  transform: none;
  transition-delay: .16s
}

.seq-card.is-visible h3,
.seq-card.is-visible h4 {
  opacity: 1;
  transform: none;
  transition-delay: .28s
}

.seq-card.is-visible p {
  opacity: 1;
  transform: none;
  transition-delay: .4s
}

@media(max-width:767px) {
  .gix-section {
    padding: 20px 0
  }

  .section-heading {
    margin-bottom: 22px
  }

  .section-heading h2 {
    font-size: 31px;
    letter-spacing: -1px;
    margin-top: 10px
  }

  .section-heading p {
    font-size: 15px;
    line-height: 1.65
  }
}

/* HEADER */
.headerTop {
  position: relative;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e8ebf0
}

.headerTop .navbar {
  padding: 10px 18px;
  background: #fff
}

.headerTop .container-fluid {
  padding: 0;
  display: flex;
  align-items: center
}

.headerTop .navbar-brand {
  padding: 0;
  margin: 0 24px 0 0;
  display: flex;
  align-items: center
}

.gix-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--logo-bg);
  padding: 8px 14px;
  border-radius: 3px;
  box-shadow: 4px 4px 0 #dfe7f5
}

.gix-logo-shell img {
  width: 210px;
  height: 42px;
  object-fit: contain
}

.headerTop .navbar-collapse {
  justify-content: flex-end
}

.headerTop .navbar-collapse>.d-flex {
  justify-content: flex-end
}

.headerTop .real-menu {
  margin-left: auto;
  align-items: center;
  gap: 3px
}

.headerTop .real-menu>.nav-item>.nav-link {
  position: relative;
  color: #263349;
  padding: 14px 10px;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden
}

.headerTop .real-menu>.nav-item>.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease
}

.headerTop .real-menu>.nav-item>.nav-link:hover::after,
.headerTop .real-menu>.nav-item>.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left
}

.headerTop .dropdown-toggle::after {
  display: none
}

.mm-caret {
  font-size: 10px;
  margin-left: 4px
}

.headerTop .has-mega {
  position: static
}

.headerTop .mega-menu {
  left: 18px;
  right: 18px;
  top: calc(100% + 2px);
  width: auto;
  max-width: none;
  padding: 18px;
  border: 1px solid #dbe1ea;
  border-radius: 0;
  background: #fffdf8;
  box-shadow: 0 20px 50px rgba(26, 41, 66, .12)
}

.headerTop .mega-menu>.container-fluid {
  width: 100%;
  max-width: none
}

.headerTop .mega-menu .row {
  row-gap: 8px
}

.headerTop .mega-menu-column {
  height: 100%;
  padding: 14px;
  background: #fff;
  border: 1px solid #edf0f4;
  transition: transform .25s ease, background .25s ease
}

.headerTop .mega-menu-column:hover {
  transform: translateY(-3px);
  background: var(--peach)
}

.headerTop .mega-menu-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px
}

.headerTop .mega-menu-title .nav-link {
  color: var(--ink);
  padding: 0;
  font-weight: 800
}

.mm-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--butter);
  border: 1px solid #d8ca78
}

.headerTop .mega-menu ul,
.headerTop .mm-simple {
  list-style: none;
  padding: 0;
  margin: 0
}

.headerTop .mega-menu li .nav-link,
.headerTop .mm-simple li .nav-link {
  font-size: 12px;
  line-height: 1.3;
  padding: 6px 0;
  color: #637086;
  font-weight: 600
}

.headerTop .mega-menu li .nav-link:hover,
.headerTop .mega-menu li .nav-link.active {
  color: var(--blue)
}

.headerTop .mm-list {
  columns: 2;
  column-gap: 18px
}

.headerTop .mm-list-1 {
  columns: 1
}

.headerTop .mm-simple {
  min-width: 290px;
  padding: 10px 14px;
  border: 1px solid #dbe1ea;
  border-radius: 0;
  background: #fffdf8;
  box-shadow: 0 20px 50px rgba(26, 41, 66, .12)
}

.headerTop .mm-simple li .nav-link {
  padding: 8px 4px
}

.headerTop .navbar-toggler {
  border: 0;
  padding: 8px 10px;
  color: var(--ink);
  box-shadow: none;
  font-size: 26px
}

.headerTop .mitem {
  display: none
}

@media(max-width:1199px) {
  .headerTop .navbar {
    padding-left: 10px;
    padding-right: 10px
  }

  .headerTop .navbar-brand {
    margin-right: 10px
  }

  .headerTop .real-menu>.nav-item>.nav-link {
    padding-left: 7px;
    padding-right: 7px;
    font-size: 13px
  }
}

@media(max-width:991px) {
  .headerTop .navbar {
    padding: 9px 10px
  }

  .gix-logo-shell {
    padding: 7px 10px
  }

  .gix-logo-shell img {
    width: 180px;
    height: 38px
  }

  .headerTop .navbar-collapse {
    position: fixed;
    top: 0;
    left: 10px;
    right: 10px;
    height: 550px;
    background: #fffdf8;
    border: 1px solid #d8dee8;
    box-shadow: 0 20px 60px rgba(27, 40, 61, .16);
    padding: 58px 14px 18px;
    overflow-y: auto;
    z-index: 1200
  }

  .headerTop .navbar-collapse:not(.show) {
    display: none !important
  }

  .headerTop .navbar-collapse.show {
    display: block !important
  }

  .headerTop .navbar-collapse>.d-flex {
    display: block !important
  }

  .headerTop .real-menu {
    display: block;
    width: 100%;
    margin: 0
  }

  .headerTop .real-menu>.nav-item {
    border-bottom: 1px solid #e4e8ee
  }

  .headerTop .real-menu>.nav-item>.nav-link {
    padding: 13px 4px;
    font-size: 14px
  }

  .headerTop .real-menu>.nav-item>.nav-link::after {
    display: none
  }

  .headerTop .mega-menu,
  .headerTop .mm-simple {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 100%;
    margin: 0 0 10px;
    padding: 7px;
    border: 0;
    box-shadow: none;
    background: var(--peach)
  }

  .headerTop .mega-menu .container-fluid {
    display: block
  }

  .headerTop .mega-menu .row {
    margin: 0
  }

  .headerTop .mega-menu .mm-col {
    width: 100%;
    padding: 3px
  }

  .headerTop .mega-menu-column {
    padding: 10px;
    border-color: #e2e6ec
  }

  .headerTop .mm-list {
    columns: 1
  }

  .headerTop .mega-menu li .nav-link,
  .headerTop .mm-simple li .nav-link {
    padding: 7px 2px
  }

  .headerTop .mitem {
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--peach);
    font-size: 20px;
    z-index: 2
  }

  .headerTop .navbar-collapse.show~.navbar-toggler {
    opacity: 0;
    pointer-events: none
  }
}

@media(max-width:575px) {
  .headerTop .navbar {
    padding: 8px
  }

  .gix-logo-shell img {
    width: 154px;
    height: 34px
  }

  .headerTop .navbar-collapse {
    left: 6px;
    right: 6px;
    height: 550px
  }
}

/* HERO */
.staff-hero {
  position: relative;
  padding: 25px 0 40px;
  background: linear-gradient(90deg, #fffdf8 0%, #fff6ef 58%, #eef8ff 100%);
  overflow: hidden;
  border-bottom: 1px solid #e6e9ee
}

.staff-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: .36;
  background-image: linear-gradient(#d9dde5 1px, transparent 1px), linear-gradient(90deg, #d9dde5 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 90%)
}

.hero-ledger {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  min-height: 560px
}

.hero-copy-zone {
  padding: 24px 0 38px;
  position: relative;
  z-index: 2
}

.hero-copy-zone h1 {
  font-size: 65px;
  line-height: .98;
  letter-spacing: -3.6px;
  margin: 14px 0 22px;
  font-weight: 900;
  max-width: 820px
}

.hero-lead {
  font-size: 20px;
  line-height: 1.55;
  margin: 0 0 14px;
  max-width: 720px;
  font-weight: 700;
  color: #344159
}

.hero-body {
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  color: var(--muted);
  max-width: 720px
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap
}

.hero-rise {
  opacity: 0;
  transform: translateY(28px);
  animation: heroUp .7s cubic-bezier(.2, .7, .2, 1) forwards
}

.hero-copy-zone .hero-rise:nth-child(2) {
  animation-delay: .08s
}

.hero-copy-zone .hero-rise:nth-child(3) {
  animation-delay: .16s
}

.hero-copy-zone .hero-rise:nth-child(4) {
  animation-delay: .24s
}

.hero-copy-zone .hero-rise:nth-child(5) {
  animation-delay: .32s
}

@keyframes heroUp {
  to {
    opacity: 1;
    transform: none
  }
}

.talent-desk {
  position: relative;
  height: 460px;
  transform-style: preserve-3d;
  perspective: 900px;
  animation-delay: .25s
}

.desk-sheet {
  position: absolute;
  background: #fff;
  border: 1px solid #bfc7d3;
  box-shadow: 18px 18px 0 rgba(255, 184, 143, .5)
}

.desk-sheet--back {
  inset: 46px 18px 16px 58px;
  transform: rotate(-6deg);
  background: var(--lilac);
  box-shadow: none
}

.desk-sheet--mid {
  inset: 28px 42px 28px 34px;
  transform: rotate(4deg);
  background: var(--mint);
  box-shadow: none
}

.desk-sheet--front {
  inset: 40px 24px 20px 46px;
  padding: 28px 28px 30px;
  transform: rotate(-1deg);
  overflow: hidden
}

.sheet-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 1.3px;
  font-weight: 900;
  color: #465167
}

.sheet-topline span:last-child {
  font-size: 28px;
  color: var(--coral);
  letter-spacing: -1px
}

.sheet-rule {
  height: 1px;
  background: #cfd5de;
  margin: 12px 0 16px
}

.candidate-row {
  display: grid;
  grid-template-columns: 28px 34px 1fr 28px;
  gap: 10px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed #ccd3dd;
  position: relative;
  transition: transform .3s ease, background .3s ease, padding .3s ease
}

.candidate-row:hover {
  transform: translateX(6px);
  background: var(--butter);
  padding-left: 8px;
  padding-right: 8px
}

.candidate-index {
  font-size: 10px;
  color: #8b95a7;
  font-weight: 800
}

.candidate-row>i {
  font-size: 20px;
  color: var(--blue)
}

.candidate-row b {
  display: block;
  font-size: 14px
}

.candidate-row small {
  display: block;
  color: #788397;
  font-size: 10px;
  margin-top: 3px
}

.candidate-score {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint);
  border: 1px solid #addcc1;
  font-size: 12px;
  font-weight: 900;
  color: var(--green)
}

.sheet-stamp {
  position: absolute;
  right: 26px;
  bottom: 25px;
  border: 2px solid var(--coral);
  color: var(--coral);
  font-size: 10px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
  padding: 8px 12px;
  transform: rotate(-7deg);
  opacity: .75
}

.desk-cursor {
  position: absolute;
  left: 48%;
  top: 48%;
  font-size: 22px;
  color: var(--blue);
  animation: cursorMove 4s ease-in-out infinite
}

@keyframes cursorMove {

  0%,
  100% {
    transform: translate(0, 0) rotate(-8deg)
  }

  45% {
    transform: translate(55px, 70px) rotate(-8deg)
  }

  70% {
    transform: translate(-25px, 92px) rotate(-8deg)
  }
}

.desk-tab {
  position: absolute;
  z-index: 5;
  padding: 10px 14px;
  border: 1px solid #b8c1cd;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  box-shadow: 4px 4px 0 #dfe6ee
}

.desk-tab--one {
  right: 3px;
  top: 80px;
  background: var(--butter);
  transform: rotate(5deg)
}

.desk-tab--two {
  left: 6px;
  bottom: 106px;
  background: var(--sky);
  transform: rotate(-7deg)
}

.desk-tab--three {
  right: 22px;
  bottom: 70px;
  background: var(--peach);
  transform: rotate(8deg)
}

.hero-marketline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-top: 1px solid #dfe4eb;
  padding-top: 18px;
  animation-delay: .45s;
  font-size: 12px;
  letter-spacing: .7px;
  text-transform: uppercase;
  font-weight: 800;
  color: #566178
}

.hero-marketline b {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral)
}

@media(max-width:1199px) {
  .hero-copy-zone h1 {
    font-size: 55px;
    letter-spacing: -2.8px
  }

  .hero-ledger {
    gap: 28px
  }

  .talent-desk {
    height: 430px
  }
}

@media(max-width:991px) {
  .staff-hero {
    padding-top: 34px
  }

  .hero-ledger {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0
  }

  .hero-copy-zone {
    padding-bottom: 10px
  }

  .hero-copy-zone h1 {
    font-size: 50px;
    max-width: 760px
  }

  .talent-desk {
    height: 430px;
    max-width: 650px;
    width: 100%;
    margin: 0 auto
  }
}

@media(max-width:767px) {
  .staff-hero {
    padding: 24px 0 18px
  }

  .hero-copy-zone h1 {
    font-size: 38px;
    line-height: 1.02;
    letter-spacing: -1.7px;
    margin-bottom: 16px
  }

  .hero-lead {
    font-size: 17px
  }

  .hero-body {
    font-size: 15px;
    line-height: 1.65
  }

  .talent-desk {
    height: 390px
  }

  .desk-sheet--front {
    inset: 40px 12px 18px 20px;
    padding: 22px 18px
  }

  .desk-sheet--back {
    inset: 50px 6px 24px 34px
  }

  .desk-sheet--mid {
    inset: 30px 24px 26px 14px
  }

  .sheet-stamp {
    right: 18px
  }

  .hero-marketline {
    gap: 10px;
    flex-wrap: wrap
  }

  .hero-marketline b {
    display: none
  }
}

@media(max-width:480px) {
  .talent-desk {
    height: 360px
  }

  .candidate-row {
    grid-template-columns: 22px 28px 1fr 25px;
    gap: 7px;
    padding: 12px 0
  }

  .candidate-row b {
    font-size: 12px
  }

  .candidate-row small {
    font-size: 9px
  }

  .sheet-topline span:last-child {
    font-size: 23px
  }

  .sheet-stamp {
    display: none
  }

  .desk-tab--two {
    left: 0
  }

  .desk-tab--three {
    right: 8px
  }
}

/* SERVICES */
.service-studio {
  background: #fff
}

.service-runway {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--ink)
}

.service-slip {
  display: grid;
  grid-template-columns: 70px 70px 1fr 90px;
  gap: 18px;
  align-items: start;
  min-height: 170px;
  padding: 24px 0;
  background: #fff;
  transition: background .3s ease, padding .3s ease, transform .3s ease
}

.service-slip::before {
  inset: -1px 0 auto;
  height: 1px;
  border: 0;
  background: var(--ink);
  clip-path: inset(0 100% 0 0)
}

.service-slip.is-visible::before {
  clip-path: inset(0)
}

.service-slip__index {
  font-size: 12px;
  font-weight: 900;
  color: #7d8798;
  padding-top: 14px
}

.service-slip__icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd5de;
  background: var(--peach);
  font-size: 23px;
  transition: transform .3s ease, background .3s ease
}

.service-slip__copy {
  max-width: 870px
}

.service-slip__copy h3 {
  font-size: 25px;
  letter-spacing: -.7px;
  margin: 9px 0 10px;
  font-weight: 850
}

.service-slip__copy p {
  font-size: 14px;
  line-height: 1.68;
  color: var(--muted);
  margin: 0 0 8px
}

.service-slip__edge {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px dashed #cfd5de;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  color: #788398
}

.service-slip:hover {
  background: var(--paper);
  padding-left: 16px;
  padding-right: 12px
}

.service-slip:hover .service-slip__icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--butter)
}

.service-slip--feature {
  background: var(--peach)
}

.service-slip--feature:hover {
  background: var(--peach-2)
}

@media(max-width:767px) {
  .service-slip {
    grid-template-columns: 38px 54px 1fr;
    gap: 10px;
    padding: 18px 0;
    min-height: 0
  }

  .service-slip__edge {
    display: none
  }

  .service-slip__icon {
    width: 46px;
    height: 46px;
    font-size: 20px
  }

  .service-slip__copy h3 {
    font-size: 21px;
    margin-top: 7px
  }

  .service-slip__copy p {
    font-size: 14px
  }

  .service-slip:hover {
    padding-left: 8px;
    padding-right: 6px
  }
}

@media(max-width:480px) {
  .service-slip {
    grid-template-columns: 30px 1fr
  }

  .service-slip__icon {
    grid-column: 2
  }

  .service-slip__copy {
    grid-column: 2
  }

  .service-slip__index {
    grid-row: 1 / span 2
  }

  .service-slip__copy h3 {
    margin-top: 0
  }
}

/* WHY / PROOF */
.proof-section {
  background: var(--sky)
}

.proof-ledger {
  display: grid;
  grid-template-columns: 330px 1fr;
  border: 1px solid var(--ink);
  background: #fff
}

.proof-ledger__intro {
  padding: 28px;
  background: var(--butter);
  border-right: 1px solid var(--ink);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.proof-big {
  font-size: 92px;
  line-height: .8;
  font-weight: 900;
  letter-spacing: -8px;
  color: #ff846b;
  transform: rotate(-90deg);
  transform-origin: center;
  width: 160px;
  margin: 70px auto 0
}

.proof-ledger__intro p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  font-weight: 700
}

.proof-ledger__rows {
  display: flex;
  flex-direction: column
}

.proof-row {
  display: grid;
  grid-template-columns: 46px 54px 1fr;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid #dfe4ea;
  background: #fff;
  transition: transform .28s ease, background .28s ease
}

.proof-row::before {
  inset: auto 0 0;
  height: 1px;
  border: 0;
  background: var(--ink);
  clip-path: inset(0 100% 0 0)
}

.proof-row:last-child {
  border-bottom: 0
}

.proof-row:hover {
  background: var(--peach);
  transform: translateX(-8px)
}

.proof-no {
  font-size: 11px;
  font-weight: 900;
  color: #8c95a5;
  padding-top: 12px
}

.proof-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd5de;
  background: var(--lilac);
  font-size: 19px
}

.proof-row h3 {
  font-size: 19px;
  margin: 9px 0 7px;
  font-weight: 850
}

.proof-row p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0
}

.market-dossier {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start
}

.market-dossier__title {
  position: sticky;
  top: 20px;
  padding: 22px 0
}

.market-dossier__title h3 {
  font-size: 29px;
  line-height: 1.12;
  letter-spacing: -1px;
  margin: 12px 0
}

.market-dossier__title p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted)
}

.market-dossier__board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}

.market-note {
  min-height: 210px;
  background: #fff;
  padding: 22px;
  transition: transform .28s ease, box-shadow .28s ease
}

.market-note:nth-child(2) {
  background: var(--peach)
}

.market-note:nth-child(3) {
  background: var(--mint)
}

.market-note:nth-child(4) {
  background: var(--lilac)
}

.market-note:nth-child(5) {
  grid-column: 1 / -1;
  background: var(--butter);
  min-height: 160px
}

.market-note .seq-icon {
  font-size: 22px;
  margin-bottom: 22px
}

.market-note h4 {
  font-size: 18px;
  margin: 0 0 8px
}

.market-note p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0
}

.market-note:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 8px 8px 0 rgba(255, 120, 93, .18)
}

@media(max-width:991px) {
  .proof-ledger {
    grid-template-columns: 220px 1fr
  }

  .proof-big {
    font-size: 72px
  }

  .market-dossier {
    grid-template-columns: 1fr
  }

  .market-dossier__title {
    position: static;
    max-width: 620px
  }
}

@media(max-width:767px) {
  .proof-ledger {
    grid-template-columns: 1fr
  }

  .proof-ledger__intro {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
    padding: 20px
  }

  .proof-big {
    transform: none;
    width: auto;
    margin: 0 0 22px;
    font-size: 52px;
    letter-spacing: -4px
  }

  .proof-row {
    grid-template-columns: 32px 44px 1fr;
    gap: 10px;
    padding: 18px 12px
  }

  .proof-icon {
    width: 40px;
    height: 40px
  }

  .proof-row h3 {
    font-size: 17px
  }

  .market-dossier {
    margin-top: 22px;
    gap: 12px
  }

  .market-dossier__board {
    grid-template-columns: 1fr
  }

  .market-note:nth-child(5) {
    grid-column: auto
  }

  .market-note {
    min-height: 0;
    padding: 18px
  }
}

/* PORTFOLIO */
.portfolio-section {
  background: var(--paper);
  overflow: hidden
}

.portfolio-stage {
  position: relative;
  padding: 34px 80px 36px 72px;
  border: 1px solid var(--ink);
  background: var(--lilac)
}

.portfolio-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  border-right: 1px solid var(--ink);
  background: var(--butter);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 900
}

.dossierSwiper {
  overflow: visible
}

.role-file {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: #fff;
  border: 1px solid var(--ink);
  min-height: 350px;
  transition: transform .35s ease, box-shadow .35s ease
}

.swiper-slide-active .role-file {
  box-shadow: 12px 12px 0 rgba(255, 184, 143, .65)
}

.role-file figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 350px;
  border-right: 1px solid var(--ink)
}

.role-file figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .4s ease
}

.role-file:hover figure img {
  transform: scale(1.05) rotate(.5deg);
  filter: saturate(1.08)
}

.role-file figure span {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--butter);
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 900
}

.role-file__copy {
  padding: 34px 30px;
  align-self: center
}

.role-file__copy h3 {
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -1.3px;
  margin: 0 0 18px;
  font-weight: 900
}

.role-file__copy p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 12px
}

.portfolio-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 24px
}

.portfolio-nav button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  transition: transform .2s ease, background .2s ease
}

.portfolio-nav button:hover {
  background: var(--butter);
  transform: translateY(-3px)
}

.dossier-count {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900
}

.dossier-count i {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--ink)
}

.dossier-current {
  font-size: 24px;
  color: var(--coral)
}

.role-footnotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px
}

.footnote {
  background: #fff;
  padding: 22px 24px 24px
}

.footnote:nth-child(2) {
  background: var(--mint)
}

.footnote .seq-icon {
  font-size: 22px;
  margin-bottom: 18px
}

.footnote h3 {
  font-size: 20px;
  margin: 0 0 8px
}

.footnote p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 7px
}

.footnote:hover {
  transform: translateY(-6px) rotate(.5deg)
}

@media(max-width:991px) {
  .portfolio-stage {
    padding-right: 32px
  }

  .role-file {
    grid-template-columns: 1fr
  }

  .role-file figure {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--ink)
  }
}

@media(max-width:767px) {
  .portfolio-stage {
    padding: 20px 12px 20px 44px
  }

  .portfolio-label {
    width: 34px
  }

  .role-file {
    min-height: 0
  }

  .role-file figure {
    min-height: 250px
  }

  .role-file__copy {
    padding: 22px 18px
  }

  .role-file__copy h3 {
    font-size: 25px
  }

  .portfolio-nav {
    justify-content: center
  }

  .role-footnotes {
    grid-template-columns: 1fr
  }

  .footnote {
    padding: 18px
  }
}

/* INDUSTRIES */
.industries-section {
  background: #fff
}

.industry-board {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink)
}

.industry-line {
  display: grid;
  grid-template-columns: 54px 54px 280px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 12px;
  border-bottom: 1px solid #e0e5eb;
  background: #fff;
  transition: background .28s ease, padding .28s ease
}

.industry-line:last-child {
  border-bottom: 0
}

.industry-line::before {
  inset: auto 0 0;
  height: 1px;
  border: 0;
  background: var(--ink);
  clip-path: inset(0 100% 0 0)
}

.industry-line>span {
  font-size: 11px;
  color: #8893a4;
  font-weight: 900
}

.industry-line .seq-icon {
  width: 42px;
  height: 42px;
  border: 1px solid #d7dde6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky);
  font-size: 18px;
  transition: transform .3s ease
}

.industry-line:nth-child(3n+2) .seq-icon {
  background: var(--peach)
}

.industry-line:nth-child(3n) .seq-icon {
  background: var(--mint)
}

.industry-line h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 850
}

.industry-line p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0
}

.industry-line:hover {
  background: var(--paper);
  padding-left: 24px;
  padding-right: 20px
}

.industry-line:hover .seq-icon {
  transform: rotate(9deg) scale(1.08)
}

@media(max-width:991px) {
  .industry-line {
    grid-template-columns: 44px 50px 220px 1fr
  }
}

@media(max-width:767px) {
  .industry-line {
    grid-template-columns: 30px 42px 1fr;
    padding: 16px 6px;
    align-items: start
  }

  .industry-line p {
    grid-column: 3
  }

  .industry-line h3 {
    font-size: 17px;
    margin-top: 8px
  }

  .industry-line:hover {
    padding-left: 10px;
    padding-right: 6px
  }
}

/* PROCESS */
.process-section {
  background: var(--peach)
}

.work-model-strip {
  display: grid;
  grid-template-columns: 270px 1fr;
  border: 1px solid var(--ink);
  background: #fff;
  margin-bottom: 30px
}

.work-model-strip__title {
  padding: 24px;
  background: var(--butter);
  border-right: 1px solid var(--ink)
}

.work-model-strip__title>span {
  font-size: 10px;
  letter-spacing: 1.4px;
  font-weight: 900
}

.work-model-strip__title h3 {
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -.8px;
  margin: 20px 0 0
}

.work-model-strip__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr)
}

.work-mode {
  padding: 18px 14px;
  border-right: 1px solid #dfe4ea;
  min-height: 260px;
  background: #fff
}

.work-mode:last-child {
  border-right: 0
}

.work-mode::before {
  inset: 0 0 auto;
  height: 1px;
  border: 0;
  background: var(--ink);
  clip-path: inset(0 100% 0 0)
}

.work-mode .seq-icon {
  font-size: 20px;
  margin-bottom: 34px
}

.work-mode h4 {
  font-size: 17px;
  margin: 0 0 10px
}

.work-mode p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0
}

.work-mode:hover {
  background: var(--sky)
}

.process-stack {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 0 8px 72px
}

.process-stack::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #b9c2ce
}

.process-sheet {
  display: grid;
  grid-template-columns: 58px 54px 1fr;
  gap: 18px;
  align-items: start;
  background: #fff;
  margin-bottom: 14px;
  padding: 22px 24px;
  box-shadow: 7px 7px 0 rgba(255, 255, 255, .7);
  transition: transform .3s ease, box-shadow .3s ease
}

.process-sheet::before {
  border-color: var(--ink)
}

.process-sheet::after {
  content: "";
  position: absolute;
  left: -51px;
  top: 34px;
  width: 32px;
  height: 1px;
  background: #b9c2ce
}

.process-sheet__no {
  font-size: 12px;
  font-weight: 900;
  color: #8490a2;
  padding-top: 12px
}

.process-sheet__mark {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd6df;
  background: var(--lilac);
  font-size: 20px
}

.process-sheet:nth-child(even) .process-sheet__mark {
  background: var(--mint)
}

.process-sheet h3 {
  font-size: 21px;
  margin: 9px 0 8px
}

.process-sheet p {
  font-size: 13px;
  line-height: 1.62;
  color: var(--muted);
  margin: 0
}

.process-sheet:hover {
  transform: translateX(12px);
  box-shadow: -7px 7px 0 rgba(255, 185, 143, .55)
}

@media(max-width:1199px) {
  .work-model-strip {
    grid-template-columns: 220px 1fr
  }

  .work-model-strip__items {
    grid-template-columns: repeat(3, 1fr)
  }

  .work-mode {
    min-height: 220px;
    border-bottom: 1px solid #dfe4ea
  }
}

@media(max-width:767px) {
  .work-model-strip {
    grid-template-columns: 1fr
  }

  .work-model-strip__title {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
    padding: 18px
  }

  .work-model-strip__title h3 {
    font-size: 23px;
    margin-top: 10px
  }

  .work-model-strip__items {
    grid-template-columns: 1fr
  }

  .work-mode {
    min-height: 0;
    border-right: 0;
    padding: 16px
  }

  .work-mode .seq-icon {
    margin-bottom: 14px
  }

  .process-stack {
    padding-left: 34px
  }

  .process-stack::before {
    left: 10px
  }

  .process-sheet {
    grid-template-columns: 36px 44px 1fr;
    gap: 10px;
    padding: 18px 12px
  }

  .process-sheet::after {
    left: -25px;
    width: 18px
  }

  .process-sheet__mark {
    width: 40px;
    height: 40px
  }

  .process-sheet h3 {
    font-size: 18px;
    margin-top: 8px
  }

  .process-sheet:hover {
    transform: translateX(4px)
  }
}

/* PRICING */
.pricing-section {
  background: var(--mint)
}

.fee-sheet {
  display: grid;
  grid-template-columns: 64px 1fr;
  border: 1px solid var(--ink);
  background: #fff;
  box-shadow: 10px 10px 0 rgba(78, 115, 255, .12)
}

.fee-sheet__rail {
  background: var(--lilac);
  border-right: 1px dashed var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px
}

.fee-sheet__rail i {
  height: 90px;
  width: 1px;
  background: var(--ink)
}

.fee-tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.fee-ticket {
  min-height: 330px;
  padding: 24px;
  border-right: 1px dashed #aeb8c5;
  background: #fff
}

.fee-ticket:last-child {
  border-right: 0
}

.fee-ticket:nth-child(2) {
  background: var(--butter)
}

.fee-ticket .ticket-no {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: #8690a1;
  margin-bottom: 22px
}

.fee-ticket .seq-icon {
  font-size: 24px;
  margin-bottom: 28px
}

.fee-ticket h3 {
  font-size: 22px;
  line-height: 1.1;
  margin: 0 0 12px
}

.fee-ticket p {
  font-size: 13px;
  line-height: 1.62;
  color: var(--muted);
  margin: 0 0 10px
}

.fee-ticket:hover {
  transform: translateY(-7px)
}

@media(max-width:767px) {
  .fee-sheet {
    grid-template-columns: 38px 1fr
  }

  .fee-sheet__rail {
    font-size: 9px
  }

  .fee-tickets {
    grid-template-columns: 1fr
  }

  .fee-ticket {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px dashed #aeb8c5;
    padding: 20px
  }

  .fee-ticket:last-child {
    border-bottom: 0
  }

  .fee-ticket .seq-icon {
    margin-bottom: 16px
  }

  .fee-ticket h3 {
    font-size: 20px
  }
}

/* TEAM / SCREENING */
.screening-section {
  background: #fff
}

.screening-room {
  display: grid;
  grid-template-columns: 260px 1fr;
  border: 1px solid var(--ink);
  min-height: 500px;
  background: var(--paper)
}

.screening-film {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-right: 1px solid var(--ink);
  background: #ffffff
}

.screening-thumb {
  position: relative;
  border: 0;
  border-bottom: 4px solid var(--ink);
  padding: 0;
  background: #fff;
  overflow: hidden;
  min-height: 96px;
  text-align: left
}

.screening-thumb:last-child {
  border-bottom: 0
}

.screening-thumb img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  filter: grayscale(1);
  opacity: .72;
  transition: transform .35s ease, filter .35s ease, opacity .35s ease
}

.screening-thumb span {
  position: absolute;
  left: 10px;
  bottom: 8px;
  background: #fff;
  border: 1px solid var(--ink);
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 900
}

.screening-thumb:hover img,
.screening-thumb.active img {
  transform: scale(1.08);
  filter: grayscale(0);
  opacity: 1
}

.screening-thumb.active::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 14px solid var(--paper)
}

.screening-display {
  position: relative;
  padding: 42px;
  overflow: hidden
}

.screening-display::before {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 120px;
  height: 120px;
  border: 1px dashed #dfe4ea;
  border-radius: 50%;
  pointer-events: none
}

.screening-panel {
  display: none;
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: panelIn .45s ease both
}

.screening-panel.active {
  display: block
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.screening-panel .panel-index {
  font-size: 12px;
  font-weight: 900;
  color: #7f899a;
  margin-bottom: 40px
}

.screening-panel>i {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--peach);
  border: 1px solid var(--ink);
  font-size: 28px;
  margin-bottom: 26px;
  box-shadow: 6px 6px 0 var(--butter)
}

.screening-panel h3 {
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 0 16px
}

.screening-panel p {
  font-size: 16px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0;
  max-width: 720px
}

.shortlist-document {
  margin-top: 24px;
  border: 1px solid var(--ink);
  padding: 28px;
  background: var(--lilac);
  position: relative
}

.shortlist-document::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 8px #fff
}

.shortlist-document__header {
  max-width: 680px
}

.shortlist-document__header h3 {
  font-size: 30px;
  margin: 12px 0 8px
}

.shortlist-document__header p {
  font-size: 14px;
  color: var(--muted)
}

.shortlist-document__list {
  margin: 24px 0 0;
  padding: 0;
  counter-reset: short;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #cbd2dc;
  border: 1px solid #cbd2dc;
  list-style: none
}

.shortlist-document__list li {
  counter-increment: short;
  background: #fff;
  padding: 18px 18px 18px 54px;
  position: relative;
  font-size: 13px;
  line-height: 1.55
}

.shortlist-document__list li::before {
  content: counter(short, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 17px;
  font-size: 10px;
  font-weight: 900;
  color: var(--coral)
}

.shortlist-document__note {
  font-size: 13px;
  font-weight: 800;
  margin: 18px 0 0
}

@media(max-width:991px) {
  .screening-room {
    grid-template-columns: 190px 1fr
  }

  .screening-display {
    padding: 30px
  }

  .screening-panel h3 {
    font-size: 31px
  }

  .screening-display::before {
    width: 100px;
    height: 100px
  }
}

@media(max-width:767px) {
  .screening-room {
    grid-template-columns: 1fr;
    min-height: 0
  }

  .screening-film {
    grid-template-columns: repeat(5, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--ink)
  }

  .screening-thumb {
    border-bottom: 0;
    border-right: 3px solid var(--ink);
    min-height: 72px
  }

  .screening-thumb:last-child {
    border-right: 0
  }

  .screening-thumb img {
    height: 72px
  }

  .screening-thumb.active::after {
    display: none
  }

  .screening-display {
    padding: 22px 18px;
    min-height: 360px
  }

  .screening-display::before {
    width: 80px;
    height: 80px;
    right: 12px
  }

  .screening-panel .panel-index {
    margin-bottom: 22px
  }

  .screening-panel>i {
    width: 54px;
    height: 54px;
    font-size: 22px;
    margin-bottom: 20px
  }

  .screening-panel h3 {
    font-size: 27px
  }

  .screening-panel p {
    font-size: 14px
  }

  .shortlist-document {
    padding: 20px 14px
  }

  .shortlist-document__list {
    grid-template-columns: 1fr
  }

  .shortlist-document__header h3 {
    font-size: 25px
  }

  .shortlist-document::after {
    width: 18px;
    height: 18px;
    right: 14px;
    top: 14px;
    box-shadow: 0 0 0 5px #fff
  }
}

/* FAQ */
.faq-section {
  background: var(--butter)
}

.dossier-faq {
  border: 1px solid var(--ink);
  background: #fff
}

.dossier-faq .accordion-item {
  border: 0;
  border-bottom: 1px solid #dbe1e8;
  border-radius: 0
}

.dossier-faq .accordion-item:last-child {
  border-bottom: 0
}

.dossier-faq .accordion-button {
  border-radius: 0 !important;
  box-shadow: none !important;
  background: #fff;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  padding: 18px 20px;
  gap: 16px
}

.dossier-faq .accordion-button span {
  font-size: 10px;
  color: var(--coral);
  font-weight: 900;
  min-width: 26px
}

.dossier-faq .accordion-button:not(.collapsed) {
  background: var(--peach)
}

.dossier-faq .accordion-button::after {
  background-size: 14px
}

.dossier-faq .accordion-body {
  padding: 2px 62px 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  background: var(--peach)
}

.dossier-faq .accordion-body p {
  margin: 0 0 8px
}

@media(max-width:767px) {
  .dossier-faq .accordion-button {
    font-size: 15px;
    padding: 16px 12px;
    gap: 8px
  }

  .dossier-faq .accordion-body {
    padding: 2px 44px 16px;
    font-size: 13px
  }
}

/* CONTACT */
.contact-section {
  background: var(--sky)
}

.contact-desk {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border: 1px solid var(--ink);
  background: #fff;
  box-shadow: 12px 12px 0 rgba(255, 120, 93, .18)
}

.contact-desk__brief {
  padding: 34px;
  background: var(--peach);
  border-right: 1px solid var(--ink)
}

.contact-desk__brief h2 {
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 14px 0
}

.contact-desk__brief>p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted)
}

.brief-lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px
}

.brief-lines span {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid #d7dde6;
  padding: 10px;
  font-size: 12px;
  font-weight: 800
}

.brief-lines i {
  color: var(--blue)
}

.contact-desk__form {
  position: relative;
  padding: 34px
}

.form-stamp {
  position: absolute;
  right: 28px;
  top: 18px;
  border: 2px solid var(--coral);
  color: var(--coral);
  padding: 7px 10px;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 900;
  transform: rotate(6deg)
}

.contact-desk__form label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
  margin-bottom: 6px;
  text-transform: uppercase
}

.contact-desk__form .form-control,
.contact-desk__form .form-select {
  border: 1px solid #cfd6df;
  border-radius: 0;
  min-height: 46px;
  background: var(--paper);
  font-size: 14px;
  box-shadow: none
}

.contact-desk__form textarea.form-control {
  min-height: 120px
}

.contact-desk__form .form-control:focus,
.contact-desk__form .form-select:focus {
  border-color: var(--blue);
  box-shadow: 4px 4px 0 var(--lilac)
}

@media(max-width:991px) {
  .contact-desk {
    grid-template-columns: 1fr
  }

  .contact-desk__brief {
    border-right: 0;
    border-bottom: 1px solid var(--ink)
  }
}

@media(max-width:767px) {

  .contact-desk__brief,
  .contact-desk__form {
    padding: 20px 14px
  }

  .contact-desk__brief h2 {
    font-size: 30px
  }

  .brief-lines {
    grid-template-columns: 1fr
  }

  .form-stamp {
    right: 14px;
    top: 12px
  }
}

/* FOOTER */
.gix-footer {
  background: #fffaf0;
  border-top: 1px solid var(--ink);
  padding: 48px 0 18px;
  color: var(--ink)
}

.gix-footer__inner {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px
}

.gix-footer__main-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.45fr 1fr .8fr 1.15fr;
  border: 1px solid #d9dfe7;
  background: #fff
}

.gix-footer__brand,
.gix-footer__column {
  padding: 24px 20px;
  border-right: 1px solid #e2e6ec
}

.gix-footer__column:last-child {
  border-right: 0
}

.gix-footer__logo span,
.gix-footer__logo {
  display: inline-flex
}

.gix-footer__logo span {
  background: var(--logo-bg);
  padding: 8px 12px
}

.gix-footer__logo img {
  width: 190px;
  height: auto
}

.gix-footer__brand>p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin: 18px 0
}

.gix-footer__brand-mark {
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

.gix-footer__brand-mark span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  border: 1px solid #cfd6df;
  background: var(--butter);
  padding: 6px 8px
}

.gix-footer__title {
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .8px
}

.gix-footer__office {
  margin-bottom: 16px
}

.gix-footer__office:last-child {
  margin-bottom: 0
}

.gix-footer__office h3 {
  font-size: 13px;
  margin: 0 0 5px
}

.gix-footer__office p,
.gix-footer__office a {
  font-size: 11px;
  line-height: 1.55;
  color: var(--muted);
  display: block
}

.gix-footer__office a:hover {
  color: var(--blue)
}

.gix-footer__inline-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.gix-footer__links,
.gix-footer__sector-links {
  list-style: none;
  padding: 0;
  margin: 0
}

.gix-footer__links li {
  margin: 0 0 9px
}

.gix-footer__links a,
.gix-footer__sector-links a {
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted)
}

.gix-footer__links a:hover,
.gix-footer__sector-links a:hover {
  color: var(--blue)
}

.gix-footer__sector-links li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 7px;
  align-items: start;
  margin-bottom: 9px
}

.gix-footer__sector-links i {
  font-size: 12px;
  color: var(--coral)
}

.gix-footer__reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #d9dfe7;
  border-top: 0;
  background: #fff
}

.gix-footer__review-card {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  padding: 14px 18px;
  border-right: 1px solid #e2e6ec;
  color: var(--ink);
  transition: background .25s ease, transform .25s ease
}

.gix-footer__review-card:last-child {
  border-right: 0
}

.gix-footer__review-card:hover {
  background: var(--peach);
  transform: translateY(-3px);
  color: var(--ink)
}

.gix-footer__review-card img {
  max-height: 24px;
  max-width: 110px;
  object-fit: contain
}

.gix-footer__review-card span {
  font-size: 10px;
  color: var(--muted)
}

.gix-footer__review-card i {
  grid-row: 1 / 3;
  grid-column: 2;
  font-size: 13px
}

.gix-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 18px 2px 0
}

.gix-footer__bottom p,
.gix-footer__legal a {
  font-size: 10px;
  color: var(--muted);
  margin: 0
}

.gix-footer__legal {
  display: flex;
  gap: 14px
}

.gix-footer__legal a:hover {
  color: var(--blue)
}

.gix-footer__social {
  display: flex;
  gap: 7px
}

.gix-footer__social a {
  width: 30px;
  height: 30px;
  border: 1px solid #cfd6df;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 12px;
  transition: transform .2s ease, background .2s ease
}

.gix-footer__social a:hover {
  transform: translateY(-3px);
  background: var(--butter);
  color: var(--ink)
}

@media(max-width:1199px) {
  .gix-footer__main-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .gix-footer__brand,
  .gix-footer__column {
    border-bottom: 1px solid #e2e6ec
  }

  .gix-footer__main-grid>*:nth-child(3n) {
    border-right: 0
  }

  .gix-footer__reviews {
    grid-template-columns: repeat(2, 1fr)
  }

  .gix-footer__review-card:nth-child(2) {
    border-right: 0
  }

  .gix-footer__review-card:nth-child(-n+2) {
    border-bottom: 1px solid #e2e6ec
  }
}

@media(max-width:767px) {
  .gix-footer {
    padding: 20px 0 12px
  }

  .gix-footer__inner {
    padding: 0 10px
  }

  .gix-footer__main-grid {
    grid-template-columns: 1fr
  }

  .gix-footer__brand,
  .gix-footer__column {
    border-right: 0 !important;
    padding: 18px 14px
  }

  .gix-footer__main-grid>*:last-child {
    border-bottom: 0
  }

  .gix-footer__reviews {
    grid-template-columns: 1fr
  }

  .gix-footer__review-card {
    border-right: 0 !important;
    border-bottom: 1px solid #e2e6ec !important
  }

  .gix-footer__review-card:last-child {
    border-bottom: 0 !important
  }

  .gix-footer__bottom {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .gix-footer__legal {
    flex-wrap: wrap
  }

  .gix-footer__social {
    flex-wrap: wrap
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important
  }
}