:root {
    --ink: #171716;
    --paper: #fffaf2;
    --cream: #fff5df;
    --peach: #ffd4c5;
    --butter: #ffed7a;
    --mint: #bdf1d7;
    --sky: #cbe8ff;
    --lilac: #d8d0ff;
    --rose: #ffc8df;
    --line: rgba(23, 23, 22, .22);
    --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Manrope', Arial, sans-serif;
    overflow-x: hidden
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .18;
    background-image: radial-gradient(rgba(0, 0, 0, .16) .45px, transparent .45px);
    background-size: 4px 4px;
    mix-blend-mode: multiply
}

::selection {
    background: #ff715b;
    color: #fff
}

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

.section-space {
    padding: 50px 0
}

.container {
    max-width: 1320px
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase
}

.section-eyebrow span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: #fff
}

.section-title-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 34px
}

.section-title-wrap h2 {
    margin: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 58px;
    line-height: 57px;
    letter-spacing: -2.5px;
    font-weight: 800
}

.section-title-wrap p {
    margin: 0;
    font-size: 16px;
    line-height: 27px;
    color: #4b4b47
}

.assemble {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity .72s var(--ease), transform .92s var(--ease)
}

.assemble.in {
    opacity: 1;
    transform: none
}

.assemble::before {
    transition: transform .7s var(--ease)
}

.seq-icon,
.seq-title,
.seq-copy {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s var(--ease), transform .8s var(--ease)
}

.assemble.in .seq-icon {
    opacity: 1;
    transform: none;
    transition-delay: .10s
}

.assemble.in .seq-title {
    opacity: 1;
    transform: none;
    transition-delay: .22s
}

.assemble.in .seq-copy {
    opacity: 1;
    transform: none;
    transition-delay: .34s
}

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

    .section-title-wrap {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 22px
    }

    .section-title-wrap h2 {
        font-size: 40px;
        line-height: 42px;
        letter-spacing: -1.5px
    }
}

@media(max-width:575px) {
    .section-title-wrap h2 {
        font-size: 34px;
        line-height: 36px
    }

    .section-eyebrow {
        font-size: 11px
    }
}

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

.headerTop .navbar {
    padding: 10px 18px
}

.gix-nav-shell {
    max-width: 1480px;
    margin: auto
}

.navbar-brand {
    padding: 0;
    margin-right: 30px
}

.gix-logo-pad {
    display: flex;
    align-items: center;
    background: #171716;
    padding: 10px 16px;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%)
}

.gix-logo-pad img {
    display: block;
    width: 184px;
    height: auto
}

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

.headerTop .nav-link {
    position: relative;
    padding: 12px 13px !important;
    color: #171716 !important;
    font-size: 14px;
    font-weight: 700
}

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

.headerTop .real-menu>.nav-item>.nav-link:hover::after {
    transform: scaleX(1)
}

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

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

.mega-menu {
    left: 50% !important;
    transform: translateX(-50%);
    top: calc(100% + 8px) !important;
    width: 1180px;
    /* max-width: calc(100% - 30px); */
    padding: 15px;
    background: #fffaf2;
    border: 1px solid #171716;
    border-radius: 0;
    box-shadow: 10px 10px 0 rgba(23, 23, 22, .10)
}

.mega-menu-column {
    padding: 14px
}

.mega-menu-title {
    display: flex;
    gap: 9px;
    align-items: center;
    border-bottom: 1px solid #d9d1c6;
    padding-bottom: 8px;
    margin-bottom: 7px
}

.mega-menu-title>.nav-link {
    font-size: 14px !important;
    font-weight: 800 !important;
    padding: 0 !important
}

.mm-icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    background: var(--butter);
    border-radius: 50%
}

.mm-list,
.mm-list-1 {
    list-style: none;
    padding: 0;
    margin: 0
}

.mega-menu .mm-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 8px
}

.mega-menu li .nav-link,
.mm-simple .nav-link {
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 6px 4px !important;
    color: #494945 !important
}

.mega-menu li .nav-link:hover,
.mm-simple .nav-link:hover {
    color: #171716 !important;
    transform: translateX(3px)
}

.mm-simple {
    border: 1px solid #171716;
    border-radius: 0;
    background: #fffaf2;
    padding: 8px;
    min-width: 285px
}

.navbar-toggler {
    border: 1px solid #171716;
    border-radius: 0;
    color: #171716;
    padding: 7px 10px
}

.navbar-toggler:focus {
    box-shadow: none
}

.mitem {
    display: none
}

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

    .gix-logo-pad {
        padding: 8px 12px
    }

    .gix-logo-pad img {
        width: 165px
    }

    .headerTop .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 550px;
        max-height: calc(100% - 10px);
        overflow-y: auto;
        background: #fffaf2;
        padding: 58px 15px 20px;
        z-index: 1100;
        border-bottom: 1px solid #171716;
        box-shadow: 0 14px 30px rgba(0, 0, 0, .12)
    }

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

    .mitem {
        display: block;
        position: absolute;
        right: 12px;
        top: 12px
    }

    .real-menu {
        align-items: stretch;
        gap: 0
    }

    .headerTop .nav-link {
        padding: 10px 8px !important
    }

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

    .mega-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin: 0 !important;
        border: 0;
        border-bottom: 1px solid #171716;
        box-shadow: none;
        background: #fff
    }

    .mega-menu .container-fluid {
        padding: 0
    }

    .mega-menu .mm-list {
        grid-template-columns: 1fr
    }

    .mm-simple {
        position: static !important;
        width: 100%;
        border: 0;
        border-bottom: 1px solid #171716;
        background: #fff;
        box-shadow: none
    }

    .navbar-nav .dropdown-menu {
        max-height: none
    }

    .navbar-brand {
        margin-right: 0
    }
}

/* HERO */
.poster-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #fff9ef 0, #fff9ef 48%, #f7f0ff 48%, #f7f0ff 100%);
    padding: 0 0;
    min-height: 675px;
    border-bottom: 1px solid var(--ink)
}

.poster-hero::before {
    content: "APP";
    position: absolute;
    right: -45px;
    top: 74px;
    font-family: 'Bricolage Grotesque';
    font-size: 250px;
    font-weight: 800;
    line-height: 1;
    color: rgba(23, 23, 22, .035);
    letter-spacing: -18px
}

.hero-grain {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 49.85%, rgba(23, 23, 22, .08) 50%, transparent 50.15%);
    background-size: 72px 100%;
    pointer-events: none
}

.hero-shell {
    position: relative;
    z-index: 2
}

.hero-stamp {
    position: absolute;
    right: 20px;
    top: 80px;
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 7px
}

.hero-row {
    min-height: 610px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    background: var(--butter);
    border: 1px solid var(--ink);
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 22px;
    transform: rotate(-1deg)
}

.poster-title {
    font-family: 'Bricolage Grotesque';
    font-size: 72px;
    line-height: 67px;
    letter-spacing: -3.8px;
    font-weight: 800;
    margin: 0 0 22px;
    max-width: 780px
}

.mask-line {
    display: block;
    overflow: hidden
}

.mask-line>span {
    display: block;
    transform: translateY(115%);
    animation: titleUp 1s var(--ease) .18s forwards
}

.mask-line:nth-child(2)>span {
    animation-delay: .28s
}

.mask-line:nth-child(3)>span {
    animation-delay: .38s
}

.mask-line.alt>span {
    color: #ff654d;
    -webkit-text-stroke: 1px #171716;
    text-shadow: 4px 4px 0 #ffdcae
}

.hero-lead,
.hero-copyline {
    max-width: 760px;
    font-size: 16px;
    line-height: 27px;
    margin: 0 0 13px;
    color: #343431
}

.hero-copyline {
    font-size: 14px;
    line-height: 24px;
    max-width: 720px
}

.poster-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    padding: 13px 16px 13px 18px;
    border: 1px solid var(--ink);
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    box-shadow: 7px 7px 0 var(--mint);
    transition: transform .25s ease, box-shadow .25s ease
}

.poster-cta:hover {
    transform: translate(4px, 4px);
    box-shadow: 3px 3px 0 var(--mint)
}

.paper-machine {
    position: relative;
    height: 530px;
    perspective: 1100px;
    transform-style: preserve-3d
}

.machine-axis {
    position: absolute;
    left: 50%;
    top: 55px;
    width: 2px;
    height: 400px;
    background: #171716;
    opacity: .23
}

.paper-slab {
    position: absolute;
    width: 260px;
    height: 155px;
    padding: 22px;
    border: 1px solid var(--ink);
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: 42px 1fr auto;
    gap: 6px 13px;
    align-items: center;
    box-shadow: 10px 12px 0 rgba(23, 23, 22, .10);
    transform-style: preserve-3d;
    transition: transform .28s ease;
    clip-path: polygon(0 0, 93% 0, 100% 14%, 100% 100%, 7% 100%, 0 86%)
}

.paper-slab span {
    font-size: 11px;
    font-weight: 800
}

.paper-slab i {
    font-size: 30px
}

.paper-slab b {
    font-family: 'Bricolage Grotesque';
    font-size: 30px;
    grid-column: 1/3;
    line-height: 1
}

.paper-slab small {
    grid-column: 1/3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .7px
}

.slab-a {
    background: var(--butter);
    left: 55px;
    top: 55px;
    transform: rotate(-8deg) translateZ(20px)
}

.slab-b {
    background: var(--peach);
    right: 28px;
    top: 190px;
    transform: rotate(7deg) translateZ(60px)
}

.slab-c {
    background: var(--mint);
    left: 65px;
    bottom: 34px;
    transform: rotate(-3deg) translateZ(100px)
}

.machine-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    margin: -60px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--ink);
    border-radius: 50%;
    z-index: 5;
    box-shadow: 8px 8px 0 var(--lilac)
}

.machine-core i {
    font-size: 38px
}

.machine-core em {
    position: absolute;
    bottom: 18px;
    font-style: normal;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px
}

.machine-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px dashed rgba(23, 23, 22, .35);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 16s linear infinite
}

.orbit-one {
    width: 320px;
    height: 320px
}

.orbit-two {
    width: 430px;
    height: 430px;
    animation-direction: reverse;
    animation-duration: 23s
}

.motion-marquee {
    height: 66px;
    border-top: 1px solid var(--ink);
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center
}

.motion-marquee>div {
    display: flex;
    align-items: center;
    gap: 22px;
    white-space: nowrap;
    min-width: max-content;
    animation: marquee 24s linear infinite
}

.motion-marquee span {
    font-family: 'Bricolage Grotesque';
    font-size: 22px;
    font-weight: 800
}

.motion-marquee i {
    font-style: normal;
    color: #ff654d
}

.motion-marquee:hover>div {
    animation-play-state: paused
}

@keyframes titleUp {
    to {
        transform: none
    }
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@media(max-width:991px) {
    .poster-hero {
        padding: 48px 0 0;
        min-height: auto;
        background: linear-gradient(180deg, #fff9ef 0, #fff9ef 58%, #f7f0ff 58%, #f7f0ff 100%)
    }

    .poster-hero::before {
        font-size: 140px;
        right: -20px;
        top: 120px
    }

    .hero-row {
        min-height: auto
    }

    .hero-stamp {
        position: static;
        width: max-content;
        margin-left: auto;
        margin-bottom: 20px
    }

    .poster-title {
        font-size: 52px;
        line-height: 50px;
        letter-spacing: -2.4px
    }

    .paper-machine {
        height: 470px;
        margin-top: 20px
    }

    .slab-a {
        left: 6%;
        top: 45px
    }

    .slab-b {
        right: 3%;
        top: 170px
    }

    .slab-c {
        left: 10%;
        bottom: 35px
    }

    .motion-marquee {
        height: 52px
    }

    .motion-marquee span {
        font-size: 18px
    }
}

@media(max-width:575px) {
    .poster-title {
        font-size: 41px;
        line-height: 41px;
        letter-spacing: -1.6px
    }

    .hero-lead {
        font-size: 14px;
        line-height: 23px
    }

    .paper-machine {
        height: 400px
    }

    .paper-slab {
        width: 220px;
        height: 132px;
        padding: 16px
    }

    .paper-slab b {
        font-size: 24px
    }

    .slab-a {
        left: 0
    }

    .slab-b {
        right: 0;
        top: 150px
    }

    .slab-c {
        left: 5%;
        bottom: 15px
    }

    .orbit-two {
        width: 330px;
        height: 330px
    }

    .orbit-one {
        width: 260px;
        height: 260px
    }

    .machine-core {
        width: 96px;
        height: 96px;
        margin: -48px
    }

    .motion-marquee {
        height: 46px
    }
}

/* SERVICES */
.services-paper {
    background: #fffdf8
}

.tear-list {
    border-top: 1px solid var(--ink)
}

.tear-strip {
    position: relative;
    display: grid;
    grid-template-columns: 78px 80px minmax(260px, 340px) 1fr;
    gap: 20px;
    align-items: start;
    padding: 27px 18px;
    border-bottom: 1px solid var(--ink);
    background: linear-gradient(90deg, var(--accent) 0, var(--accent) 0, #fff 0);
    overflow: hidden;
    transition: background-position .45s var(--ease), padding-left .35s ease;
    background-size: 28% 100%;
    background-repeat: no-repeat
}

.tear-strip::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 100%;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left
}

.tear-strip.in::after {
    transform: scaleX(1);
    transition: transform .65s var(--ease)
}

.tear-strip:hover {
    background-size: 100% 100%;
    padding-left: 28px
}

.tear-no {
    font-family: 'Bricolage Grotesque';
    font-size: 17px;
    font-weight: 800
}

.tear-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: #fff;
    font-size: 24px
}

.tear-title {
    font-family: 'Bricolage Grotesque';
    font-size: 27px;
    line-height: 29px;
    margin: 8px 0 0;
    font-weight: 800
}

.tear-copy p {
    font-size: 14px;
    line-height: 23px;
    margin: 0;
    color: #41413e
}

.tear-copy small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 700
}

.tear-strip:nth-child(even) .tear-icon {
    transform: rotate(-7deg)
}

@media(max-width:991px) {
    .tear-strip {
        grid-template-columns: 52px 62px 1fr;
        padding: 22px 8px;
        background-size: 16% 100%
    }

    .tear-copy {
        grid-column: 2/4
    }

    .tear-title {
        font-size: 23px;
        line-height: 25px
    }

    .tear-strip:hover {
        padding-left: 14px
    }
}

@media(max-width:575px) {
    .tear-strip {
        grid-template-columns: 42px 48px 1fr;
        gap: 10px;
        padding: 18px 4px
    }

    .tear-icon {
        width: 44px;
        height: 44px;
        font-size: 19px
    }

    .tear-title {
        font-size: 20px;
        line-height: 22px;
        margin-top: 7px
    }

    .tear-copy {
        grid-column: 1/4;
        padding-left: 52px
    }

    .tear-copy p {
        font-size: 13px;
        line-height: 21px
    }
}

/* WHY */
.why-proof {
    background: #fff4e5;
    overflow: hidden
}

.proof-wall {
    position: relative;
    min-height: 760px
}

.proof-path {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.proof-path path {
    fill: none;
    stroke: #171716;
    stroke-width: 2;
    stroke-dasharray: 8 12;
    opacity: .4
}

.proof-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%) rotate(-5deg);
    display: grid;
    place-items: center;
    background: var(--butter);
    border: 1px solid var(--ink);
    clip-path: polygon(8% 0, 100% 9%, 93% 100%, 0 91%);
    z-index: 1
}

.proof-center span {
    font-family: 'Bricolage Grotesque';
    font-size: 74px;
    font-weight: 800;
    line-height: 60px
}

.proof-center small {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px
}

.proof-note {
    position: absolute;
    width: 360px;
    padding: 18px 18px 20px;
    background: #fff;
    border: 1px solid var(--ink);
    clip-path: polygon(0 0, 96% 0, 100% 12%, 97% 100%, 3% 96%, 0 8%);
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    box-shadow: 7px 8px 0 rgba(23, 23, 22, .08)
}

.proof-note:hover {
    transform: translateY(-6px) rotate(-1deg)
}

.proof-pin {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--accent, var(--sky));
    font-size: 21px
}

.proof-index {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px
}

.proof-note h3 {
    font-family: 'Bricolage Grotesque';
    font-size: 22px;
    line-height: 24px;
    margin: 4px 0 8px;
    font-weight: 800
}

.proof-note p {
    font-size: 13px;
    line-height: 21px;
    margin: 0;
    color: #454541
}

.proof-1 {
    left: 1%;
    top: 8%;
    --accent: var(--butter)
}

.proof-2 {
    right: 2%;
    top: 3%;
    --accent: var(--mint);
    transform: rotate(2deg)
}

.proof-3 {
    left: 8%;
    top: 42%;
    --accent: var(--peach);
    transform: rotate(-2deg)
}

.proof-4 {
    right: 5%;
    top: 40%;
    --accent: var(--sky)
}

.proof-5 {
    left: 18%;
    bottom: 2%;
    --accent: var(--lilac);
    transform: rotate(2deg)
}

.proof-6 {
    right: 13%;
    bottom: 1%;
    --accent: var(--rose);
    transform: rotate(-1deg)
}

.decision-sheet {
    background: #fff;
    border: 1px solid var(--ink);
    padding: 0;
    margin-top: 35px;
    box-shadow: 12px 12px 0 var(--mint)
}

.decision-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 20px;
    background: var(--butter);
    border-bottom: 1px solid var(--ink);
    font-family: 'Bricolage Grotesque';
    font-size: 24px;
    font-weight: 800
}

.decision-table {
    margin: 0;
    min-width: 800px
}

.decision-table th,
.decision-table td {
    padding: 13px 15px;
    border-color: #d9d2c8;
    font-size: 12px;
    line-height: 19px;
    background: transparent
}

.decision-table thead th {
    font-size: 13px;
    font-weight: 800;
    background: #fffaf1
}

.decision-table tbody th {
    font-weight: 800
}

.decision-sheet>p {
    margin: 0;
    padding: 18px 20px;
    border-top: 1px solid var(--ink);
    font-size: 14px;
    line-height: 23px
}

@media(max-width:991px) {
    .proof-wall {
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }

    .proof-path,
    .proof-center {
        display: none
    }

    .proof-note {
        position: relative !important;
        inset: auto !important;
        width: auto;
        transform: none !important
    }

    .decision-head {
        font-size: 20px
    }

    .decision-sheet {
        margin-top: 22px
    }
}

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

    .proof-note {
        padding: 15px
    }

    .decision-sheet {
        box-shadow: 7px 7px 0 var(--mint)
    }
}

/* WORK ACROSS INDIA */
.dispatch-section {
    background: #f3fbff
}

.dispatch-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding-top: 55px
}

.dispatch-line::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 79px;
    height: 2px;
    background: repeating-linear-gradient(90deg, #171716 0, #171716 10px, transparent 10px, transparent 18px);
    opacity: .4
}

.dispatch-stop {
    position: relative;
    padding-top: 70px
}

.dispatch-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 52px;
    height: 52px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 21px;
    z-index: 2
}

.dispatch-no {
    position: absolute;
    right: 0;
    top: 6px;
    font-family: 'Bricolage Grotesque';
    font-size: 36px;
    font-weight: 800;
    color: rgba(23, 23, 22, .15)
}

.dispatch-stop h3 {
    font-family: 'Bricolage Grotesque';
    font-size: 22px;
    line-height: 24px;
    font-weight: 800;
    margin: 0 0 10px
}

.dispatch-stop p {
    font-size: 13px;
    line-height: 21px;
    margin: 0;
    color: #454541
}

.dispatch-stop:nth-child(2) .dispatch-dot {
    background: var(--peach)
}

.dispatch-stop:nth-child(3) .dispatch-dot {
    background: var(--butter)
}

.dispatch-stop:nth-child(4) .dispatch-dot {
    background: var(--mint)
}

@media(max-width:991px) {
    .dispatch-line {
        grid-template-columns: 1fr 1fr;
        padding-top: 15px
    }

    .dispatch-line::before {
        display: none
    }

    .dispatch-stop {
        padding-top: 65px
    }
}

@media(max-width:575px) {
    .dispatch-line {
        grid-template-columns: 1fr
    }

    .dispatch-stop {
        border-top: 1px solid var(--ink);
        padding: 70px 0 15px
    }

    .dispatch-no {
        right: 5px
    }
}

/* PROJECTS */
.project-peel {
    background: #fffdf7;
    overflow: hidden
}

.project-wide {
    padding: 0
}

.project-swiper {
    padding: 10px 7% 35px !important
}

.project-swiper .swiper-slide {
    width: 64%;
    transition: opacity .45s ease, transform .7s var(--ease);
    opacity: .36;
    transform: scale(.91) rotate(1deg)
}

.project-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1) rotate(0)
}

.peel-frame {
    position: relative;
    margin: 0;
    background: #fff;
    border: 1px solid var(--ink);
    padding: 14px;
    box-shadow: 12px 14px 0 rgba(23, 23, 22, .09);
    clip-path: polygon(0 0, 96% 0, 100% 8%, 100% 100%, 4% 100%, 0 92%);
    overflow: hidden
}

.peel-frame img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: saturate(.85) contrast(1.02);
    transition: transform .8s var(--ease)
}

.peel-frame:hover img {
    transform: scale(1.035)
}

.peel-no {
    position: absolute;
    left: 24px;
    top: 22px;
    z-index: 2;
    font-family: 'Bricolage Grotesque';
    font-size: 68px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    text-shadow: 2px 2px 0 rgba(23, 23, 22, .4)
}

.peel-frame figcaption {
    display: grid;
    grid-template-columns: 110px 1fr 42px;
    align-items: center;
    gap: 15px;
    padding: 15px 4px 4px
}

.peel-frame figcaption span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px
}

.peel-frame figcaption b {
    font-family: 'Bricolage Grotesque';
    font-size: 22px
}

.peel-frame figcaption i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--ink);
    border-radius: 50%
}

.project-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 16px
}

.project-prev,
.project-next {
    width: 46px;
    height: 46px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: #fff
}

.project-pagination {
    width: auto !important
}

.project-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 3px;
    border-radius: 0;
    background: #171716;
    opacity: .25
}

.project-pagination .swiper-pagination-bullet-active {
    opacity: 1
}

@media(max-width:991px) {
    .project-swiper {
        padding: 6px 18px 25px !important
    }

    .project-swiper .swiper-slide {
        width: 82%
    }

    .peel-frame img {
        height: 360px
    }
}

@media(max-width:575px) {
    .project-swiper .swiper-slide {
        width: 92%
    }

    .peel-frame {
        padding: 8px
    }

    .peel-frame img {
        height: 280px
    }

    .peel-no {
        font-size: 46px;
        left: 14px;
        top: 14px
    }

    .peel-frame figcaption {
        grid-template-columns: 80px 1fr 36px
    }

    .peel-frame figcaption b {
        font-size: 18px
    }

    .peel-frame figcaption i {
        width: 34px;
        height: 34px
    }
}

/* INDUSTRIES */
.industry-ladder {
    background: #fff7f1
}

.ladder-list {
    border-top: 1px solid var(--ink)
}

.ladder-rung {
    position: relative;
    display: grid;
    grid-template-columns: 72px 64px 1fr 46px;
    align-items: center;
    gap: 16px;
    padding: 16px 12px;
    border-bottom: 1px solid var(--ink);
    overflow: hidden;
    transition: padding .3s ease
}

.ladder-rung::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--accent);
    transition: width .55s var(--ease);
    z-index: 0
}

.ladder-rung>* {
    position: relative;
    z-index: 1
}

.ladder-rung:hover::before,
.ladder-rung.in::before {
    width: var(--w)
}

.ladder-rung:hover {
    padding-left: 22px
}

.rung-no {
    font-family: 'Bricolage Grotesque';
    font-weight: 800
}

.rung-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: #fff;
    font-size: 20px
}

.rung-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    align-items: center
}

.rung-main h3 {
    margin: 0;
    font-family: 'Bricolage Grotesque';
    font-size: 24px;
    font-weight: 800
}

.rung-main p {
    margin: 0;
    font-size: 13px;
    line-height: 21px;
    color: #454541
}

.rung-arrow {
    font-size: 22px;
    transition: transform .25s
}

.ladder-rung:hover .rung-arrow {
    transform: translate(4px, 4px)
}

.industry-end {
    font-family: 'Bricolage Grotesque';
    font-size: 20px;
    font-weight: 700;
    margin: 28px 0 0
}

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

    .ladder-rung {
        grid-template-columns: 52px 54px 1fr 34px
    }

    .rung-main h3 {
        font-size: 21px
    }
}

@media(max-width:575px) {
    .ladder-rung {
        grid-template-columns: 38px 46px 1fr;
        gap: 9px;
        padding: 14px 4px
    }

    .rung-arrow {
        display: none
    }

    .rung-main p {
        grid-column: 1/2
    }

    .rung-icon {
        width: 42px;
        height: 42px
    }

    .rung-main h3 {
        font-size: 19px
    }

    .industry-end {
        font-size: 17px
    }
}

/* PROCESS */
.rotary-process {
    background: #f8f5ff
}

.dial-sticky {
    position: sticky;
    top: 110px;
    height: 430px;
    display: grid;
    place-items: center
}

.process-dial {
    position: relative;
    width: 360px;
    height: 360px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--butter) 0 60deg, #fff 60deg 120deg, var(--peach) 120deg 180deg, #fff 180deg 240deg, var(--mint) 240deg 300deg, #fff 300deg 360deg);
    transition: transform .9s var(--ease);
    box-shadow: 12px 12px 0 rgba(23, 23, 22, .08)
}

.dial-ring {
    position: absolute;
    border: 1px dashed rgba(23, 23, 22, .35);
    border-radius: 50%;
    inset: 28px
}

.ring-b {
    inset: 63px;
    border-style: solid;
    opacity: .25
}

.dial-pointer {
    position: absolute;
    left: 50%;
    top: -18px;
    width: 32px;
    height: 58px;
    background: #ff6c52;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: translateX(-50%);
    z-index: 4
}

.dial-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.dial-center span,
.dial-center small {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px
}

.dial-center b {
    font-family: 'Bricolage Grotesque';
    font-size: 58px;
    line-height: 54px
}

.dial-tick {
    position: absolute;
    font-style: normal;
    font-size: 12px;
    font-weight: 800
}

.tick-1 {
    left: 50%;
    top: 12px
}

.tick-2 {
    right: 40px;
    top: 80px
}

.tick-3 {
    right: 26px;
    bottom: 82px
}

.tick-4 {
    left: 50%;
    bottom: 12px
}

.tick-5 {
    left: 35px;
    bottom: 82px
}

.tick-6 {
    left: 34px;
    top: 80px
}

.process-stack {
    padding-bottom: 80px
}

.process-step {
    position: relative;
    min-height: 230px;
    padding: 28px 10px 38px 78px;
    border-top: 1px solid var(--ink)
}

.step-rule {
    position: absolute;
    left: 22px;
    top: 30px;
    width: 28px;
    height: 28px;
    border: 1px solid var(--ink);
    background: var(--butter);
    transform: rotate(45deg)
}

.process-step:nth-child(2) .step-rule {
    background: var(--peach)
}

.process-step:nth-child(3) .step-rule {
    background: var(--sky)
}

.process-step:nth-child(4) .step-rule {
    background: var(--mint)
}

.process-step:nth-child(5) .step-rule {
    background: var(--lilac)
}

.process-step:nth-child(6) .step-rule {
    background: var(--rose)
}

.step-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase
}

.process-step h3 {
    font-family: 'Bricolage Grotesque';
    font-size: 34px;
    line-height: 36px;
    margin: 8px 0 10px;
    font-weight: 800
}

.process-step p {
    font-size: 14px;
    line-height: 23px;
    max-width: 650px;
    margin: 0;
    color: #454541
}

.process-step small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700
}

.process-step.active .step-rule {
    animation: stepPulse 1s ease infinite alternate
}

@keyframes stepPulse {
    to {
        transform: rotate(45deg) scale(1.22)
    }
}

@media(max-width:991px) {
    .dial-sticky {
        position: relative;
        top: auto;
        height: 310px
    }

    .process-dial {
        width: 270px;
        height: 270px
    }

    .dial-center {
        width: 118px;
        height: 118px
    }

    .dial-center b {
        font-size: 46px
    }

    .process-step {
        min-height: auto;
        padding: 24px 6px 30px 64px
    }

    .process-step h3 {
        font-size: 28px;
        line-height: 30px
    }

    .process-stack {
        padding-bottom: 0
    }

    .dial-tick {
        display: none
    }
}

@media(max-width:575px) {
    .dial-sticky {
        height: 260px
    }

    .process-dial {
        width: 225px;
        height: 225px
    }

    .dial-center {
        width: 100px;
        height: 100px
    }

    .dial-center b {
        font-size: 40px
    }

    .dial-ring {
        inset: 22px
    }

    .ring-b {
        inset: 46px
    }

    .process-step {
        padding-left: 52px
    }

    .step-rule {
        left: 12px;
        width: 24px;
        height: 24px
    }

    .process-step h3 {
        font-size: 24px;
        line-height: 26px
    }
}

/* PRICING */
.price-tickets {
    background: #fffdf8
}

.ticket-stack {
    display: grid;
    gap: 14px
}

.price-ticket {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr 300px 40px;
    align-items: center;
    gap: 20px;
    min-height: 116px;
    padding: 20px 26px;
    border: 1px solid var(--ink);
    clip-path: polygon(0 0, 97% 0, 100% 50%, 97% 100%, 0 100%, 2.5% 50%);
    transition: transform .35s var(--ease)
}

.price-ticket:hover {
    transform: translateX(10px)
}

.ticket-a {
    background: var(--butter)
}

.ticket-b {
    background: var(--mint)
}

.ticket-c {
    background: var(--peach)
}

.ticket-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px
}

.price-ticket strong {
    font-family: 'Bricolage Grotesque';
    font-size: 42px;
    line-height: 1;
    font-weight: 800
}

.price-ticket small {
    font-size: 13px;
    font-weight: 700;
    line-height: 20px
}

.price-ticket i {
    font-size: 25px
}

.price-note {
    max-width: 1000px;
    margin: 22px 0 0;
    font-size: 14px;
    line-height: 23px
}

@media(max-width:991px) {
    .price-ticket {
        grid-template-columns: 160px 1fr 210px 30px
    }

    .price-ticket strong {
        font-size: 32px
    }
}

@media(max-width:575px) {
    .price-ticket {
        grid-template-columns: 1fr 32px;
        gap: 9px;
        padding: 18px 20px;
        clip-path: polygon(0 0, 95% 0, 100% 12%, 100% 100%, 5% 100%, 0 88%)
    }

    .ticket-label,
    .price-ticket strong,
    .price-ticket small {
        grid-column: 1/2
    }

    .price-ticket strong {
        font-size: 30px
    }

    .price-ticket i {
        grid-column: 2;
        grid-row: 1/4
    }

    .price-ticket:hover {
        transform: translateY(-4px)
    }
}

/* TEAM */
.team-cuts {
    background: #fff3f0;
    overflow: hidden
}

.portrait-collage {
    position: relative;
    min-height: 620px;
    margin-top: 25px
}

.portrait-cut {
    position: absolute;
    margin: 0;
    width: 330px;
    height: 500px;
    background: #fff;
    border: 1px solid var(--ink);
    padding: 8px;
    box-shadow: 11px 12px 0 rgba(23, 23, 22, .08);
    transition: transform .5s var(--ease), z-index .1s
}

.portrait-cut img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.82) contrast(1.03)
}

.portrait-cut figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: #fff;
    border: 1px solid var(--ink);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.portrait-cut figcaption span {
    font-size: 10px;
    font-weight: 800
}

.portrait-cut figcaption b {
    font-family: 'Bricolage Grotesque';
    font-size: 18px
}

.cut-1 {
    left: 3%;
    top: 65px;
    transform: rotate(-8deg);
    clip-path: polygon(0 0, 100% 4%, 94% 100%, 6% 96%)
}

.cut-2 {
    left: 27%;
    top: 0;
    transform: rotate(4deg);
    clip-path: polygon(4% 0, 100% 7%, 96% 100%, 0 94%)
}

.cut-3 {
    right: 27%;
    top: 75px;
    transform: rotate(-3deg);
    clip-path: polygon(0 6%, 96% 0, 100% 95%, 4% 100%)
}

.cut-4 {
    right: 3%;
    top: 15px;
    transform: rotate(7deg);
    clip-path: polygon(6% 0, 100% 4%, 94% 100%, 0 96%)
}

.portrait-cut:hover {
    z-index: 10;
    transform: rotate(0) translateY(-14px) scale(1.03)
}

@media(max-width:1199px) {
    .portrait-cut {
        width: 290px;
        height: 450px
    }

    .cut-1 {
        left: 0
    }

    .cut-2 {
        left: 24%
    }

    .cut-3 {
        right: 24%
    }

    .cut-4 {
        right: 0
    }
}

@media(max-width:991px) {
    .portrait-collage {
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .portrait-cut {
        position: relative;
        inset: auto !important;
        width: 100%;
        height: 470px;
        transform: none !important
    }

    .portrait-cut:hover {
        transform: translateY(-6px) !important
    }
}

@media(max-width:575px) {
    .portrait-collage {
        grid-template-columns: 1fr
    }

    .portrait-cut {
        height: 440px
    }
}

/* REVIEWS */
.review-ribbons {
    background: #f2fbf7
}

.review-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--ink);
    border-left: 1px solid var(--ink)
}

.review-track a {
    position: relative;
    min-height: 190px;
    padding: 22px;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    overflow: hidden;
    transition: background .35s ease
}

.review-track a::before {
    content: "";
    position: absolute;
    left: -20%;
    right: -20%;
    bottom: -80px;
    height: 120px;
    background: var(--butter);
    transform: rotate(-8deg);
    transition: bottom .4s var(--ease)
}

.review-track a:nth-child(2)::before {
    background: var(--peach)
}

.review-track a:nth-child(3)::before {
    background: var(--mint)
}

.review-track a:nth-child(4)::before {
    background: var(--lilac)
}

.review-track a:hover::before {
    bottom: -25px
}

.review-track a>* {
    position: relative;
    z-index: 1
}

.review-track span {
    font-size: 11px;
    font-weight: 800
}

.review-track img {
    width: 110px;
    height: 42px;
    object-fit: contain;
    object-position: left center;
    filter: grayscale(1);
    transition: filter .25s
}

.review-track a:hover img {
    filter: none
}

.review-track b {
    font-family: 'Bricolage Grotesque';
    font-size: 20px
}

.review-track i {
    position: absolute;
    right: 18px;
    bottom: 18px;
    font-size: 20px
}

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

@media(max-width:575px) {
    .review-track {
        grid-template-columns: 1fr
    }

    .review-track a {
        min-height: 150px
    }
}

/* FAQ */
.faq-paper {
    background: #fffaf0
}

.faq-list {
    border-top: 1px solid var(--ink)
}

.faq-line {
    border-bottom: 1px solid var(--ink)
}

.faq-line h3 {
    margin: 0
}

.faq-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 64px 1fr 48px;
    align-items: center;
    gap: 12px;
    text-align: left;
    color: var(--ink)
}

.faq-trigger span {
    font-family: 'Bricolage Grotesque';
    font-size: 18px;
    font-weight: 800
}

.faq-trigger b {
    font-family: 'Bricolage Grotesque';
    font-size: 25px;
    line-height: 28px;
    font-weight: 800
}

.faq-trigger i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    transition: transform .3s ease, background .3s ease
}

.faq-trigger[aria-expanded="true"] i {
    transform: rotate(45deg);
    background: var(--butter)
}

.faq-trigger:hover b {
    transform: translateX(10px);
    transition: transform .3s var(--ease)
}

.faq-answer {
    padding: 0 56px 22px 76px;
    font-size: 14px;
    line-height: 23px;
    color: #454541;
    max-width: 1050px
}

@media(max-width:575px) {
    .faq-trigger {
        grid-template-columns: 38px 1fr 38px;
        padding: 16px 0
    }

    .faq-trigger b {
        font-size: 20px;
        line-height: 23px
    }

    .faq-trigger i {
        width: 36px;
        height: 36px
    }

    .faq-answer {
        padding: 0 38px 18px 38px;
        font-size: 13px;
        line-height: 21px
    }
}

/* CONTACT */
.contact-paper {
    background: #fff
}

.contact-sheet {
    border: 1px solid var(--ink);
    background: #fff;
    box-shadow: 13px 13px 0 var(--peach);
    overflow: hidden
}

.contact-poster {
    position: relative;
    background: var(--butter);
    padding: 42px;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-right: 1px solid var(--ink);
    overflow: hidden
}

.contact-poster::before {
    content: "QUOTE";
    position: absolute;
    left: -20px;
    top: -30px;
    font-family: 'Bricolage Grotesque';
    font-size: 150px;
    font-weight: 800;
    color: rgba(23, 23, 22, .08);
    transform: rotate(-8deg)
}

.contact-poster>span {
    position: absolute;
    left: 40px;
    top: 40px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px
}

.contact-poster h2 {
    position: relative;
    font-family: 'Bricolage Grotesque';
    font-size: 56px;
    line-height: 55px;
    letter-spacing: -2px;
    font-weight: 800;
    margin: 0 0 16px
}

.contact-poster p {
    position: relative;
    font-size: 15px;
    line-height: 24px;
    margin: 0 0 18px
}

.contact-poster a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 800
}

.quote-form {
    padding: 42px;
    background: repeating-linear-gradient(180deg, #fff 0, #fff 39px, #eee7dc 40px)
}

.quote-form label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px
}

.quote-form .form-control,
.quote-form .form-select {
    border: 0;
    border-bottom: 1px solid var(--ink);
    border-radius: 0;
    background: rgba(255, 255, 255, .82);
    padding: 11px 3px;
    font-size: 14px;
    box-shadow: none
}

.quote-form textarea.form-control {
    min-height: 120px;
    resize: vertical
}

.poster-submit {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    background: var(--mint);
    border: 1px solid var(--ink);
    padding: 14px 18px;
    font-weight: 800;
    box-shadow: 6px 6px 0 var(--ink);
    transition: transform .25s ease, box-shadow .25s ease
}

.poster-submit:hover {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0 var(--ink)
}

@media(max-width:991px) {
    .contact-poster {
        min-height: 380px;
        border-right: 0;
        border-bottom: 1px solid var(--ink);
        padding: 30px
    }

    .contact-poster h2 {
        font-size: 44px;
        line-height: 44px
    }

    .quote-form {
        padding: 30px
    }
}

@media(max-width:575px) {
    .contact-sheet {
        box-shadow: 7px 7px 0 var(--peach)
    }

    .contact-poster {
        min-height: 330px;
        padding: 24px
    }

    .contact-poster h2 {
        font-size: 36px;
        line-height: 37px
    }

    .contact-poster::before {
        font-size: 100px
    }

    .quote-form {
        padding: 24px
    }
}

/* FOOTER */
.gix-footer {
    background: #eef7ff;
    color: #171716;
    border-top: 1px solid var(--ink);
    padding: 46px 0 20px
}

.gix-footer__inner {
    max-width: 1460px;
    margin: auto;
    padding: 0 28px
}

.gix-footer__main-grid {
    display: grid;
    grid-template-columns: 1.25fr 1.25fr 1fr .85fr 1.2fr;
    border-top: 1px solid var(--ink);
    border-left: 1px solid var(--ink)
}

.gix-footer__brand,
.gix-footer__column {
    padding: 24px;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink)
}

.gix-footer__logo {
    display: inline-flex;
    background: #171716;
    padding: 9px 12px;
    margin-bottom: 18px
}

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

.gix-footer__brand p,
.gix-footer__office p {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 9px;
    color: #4a4a47
}

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

.gix-footer__brand-mark span {
    font-size: 10px;
    font-weight: 800;
    border: 1px solid var(--ink);
    padding: 6px 8px;
    background: var(--butter)
}

.gix-footer__title {
    font-family: 'Bricolage Grotesque';
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 16px
}

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

.gix-footer__office h3 {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 5px
}

.gix-footer__office a {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-top: 3px
}

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

.gix-footer__links,
.gix-footer__sector-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px
}

.gix-footer__links a,
.gix-footer__sector-links a {
    font-size: 11px;
    font-weight: 650
}

.gix-footer__sector-links li {
    display: flex;
    align-items: flex-start;
    gap: 7px
}

.gix-footer__reviews {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--ink)
}

.gix-footer__review-card {
    min-height: 85px;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    padding: 12px 16px;
    display: grid;
    grid-template-columns: 80px 1fr 18px;
    align-items: center;
    gap: 10px;
    background: #fff
}

.gix-footer__review-card img {
    width: 74px;
    height: 32px;
    object-fit: contain
}

.gix-footer__review-card span {
    font-size: 11px;
    font-weight: 800
}

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

.gix-footer__bottom p {
    font-size: 11px;
    margin: 0
}

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

.gix-footer__legal a {
    font-size: 10px;
    font-weight: 700
}

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

.gix-footer__social a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: #fff
}

.gix-footer__social a:hover {
    background: var(--butter)
}

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

    .gix-footer__brand {
        grid-column: 1/2
    }

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

@media(max-width:767px) {
    .gix-footer {
        padding-top: 25px
    }

    .gix-footer__inner {
        padding: 0 12px
    }

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

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

    .gix-footer__review-card {
        grid-template-columns: 74px 1fr 18px
    }

    .gix-footer__bottom {
        grid-template-columns: 1fr;
        justify-items: start
    }

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

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }

    .assemble,
    .seq-icon,
    .seq-title,
    .seq-copy {
        opacity: 1 !important;
        transform: none !important
    }
}

/* =========================
   DESKTOP MEGA MENU FIX
========================= */
@media (min-width: 992px) {

    .headerTop .navbar,
    .headerTop .gix-nav-shell {
        position: relative;
    }

    .headerTop .has-mega {
        position: static !important;
    }

    .headerTop .has-mega > .mega-menu {
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        right: auto !important;

        width: calc(100% - 40px) !important;
        max-width: 1450px !important;
        min-width: 1000px !important;

        transform: translateX(-50%) !important;

        margin: 0 !important;
        padding: 25px !important;

        z-index: 99999 !important;

        overflow: visible !important;
    }

    .headerTop .mega-menu .container-fluid {
        width: 100% !important;
        max-width: none !important;

        padding-left: 12px !important;
        padding-right: 12px !important;
        margin: 0 !important;
    }

    .headerTop .mega-menu .mm-row {
        display: flex !important;
        flex-wrap: wrap !important;

        width: 100% !important;
        margin: 0 !important;
    }

    .headerTop .mega-menu .mm-col {
        position: relative !important;
        min-width: 0 !important;

        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .headerTop .mega-menu-column {
        width: 100% !important;
        min-width: 0 !important;
        height: 100% !important;
    }

    .headerTop .mega-menu-title {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;

        width: 100% !important;
        margin-bottom: 12px !important;
    }

    .headerTop .mega-menu-title .nav-link {
        width: auto !important;
        padding: 0 !important;

        white-space: normal !important;
        line-height: 1.3 !important;
    }

    .headerTop .mega-menu ul {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .headerTop .mega-menu li {
        width: 100% !important;
        display: block !important;
    }

    .headerTop .mega-menu li .nav-link {
        display: block !important;

        width: 100% !important;
        padding: 5px 0 !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;

        line-height: 1.35 !important;
    }

}

@media (max-width: 991px) {

    .headerTop .navbar-collapse {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        padding: 90px 20px 30px !important;
    }

    .headerTop .navbar-collapse > .d-flex {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

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

    .headerTop .real-menu > .nav-item {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .headerTop .real-menu > .nav-item > .nav-link {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;
        max-width: 100% !important;

        padding: 15px 10px !important;
        margin: 0 !important;

        text-align: left !important;
    }

}