@font-face {
    font-family: 'DM Sans';
    src: url('fonts/DMSans-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
}

@font-face {
    font-family: 'Epilogue';
    src: url('fonts/Epilogue-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
}

:root {
    --color-green: #29725f;
    --color-lightblue: #82a0ff;
    --color-darkblue: #4b69f0;
    --color-lightgreen: #e6fab9;
    --color-orange: #f5693c;
    --color-maroon: #a0325a;
    --color-pink: #f0befa;
    --bg-color: #f0ebe6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    font-family: 'Epilogue', sans-serif;
    color: #1a1a1a;
    overflow-x: hidden;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE and Edge */
    cursor: url(https://cdn.prod.website-files.com/683703490bc01e1b8c052e06/68384fb10e12e8d4c16e38e5_cursor-default.svg) 2 0, auto;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari and Opera */
}

/* Navbar */
.main-header {
    width: 100%;
}

/* Navigation Bar */
.logo-work-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 55px;
}

.nav-bar__work-blob-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.logo-work-text {
    position: relative;
    z-index: 2;
    font-family: 'Epilogue', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    margin-left: 70px;
    color: inherit;
    letter-spacing: -0.5px;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    z-index: 1000;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.on-dark {
    color: #f0ebe6;
}

.navbar.on-light {
    color: #1a1a1a;
}

.logo-truus {
    display: block;
    width: 150px;
    height: auto;
}

.logo-truus path,
.nav-bar__whatsapp-svg path {
    fill: currentColor;
    transition: fill 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar__whatsapp-svg {
    width: 32px;
    height: auto;
    display: block;
    color: inherit;
}

.header-content {
    background-color: #1a1a1a;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f0ebe6;
}

.header-content h1 {
    color: inherit;
    font-size: 3rem;
    font-family: 'DM Sans', sans-serif;
}

/* Content Section */
.content-section {
    padding: 200px 20px 0px;
    /* Increased top padding from 40px to 160px */
    text-align: center;
}

.title-container {
    margin-bottom: 80px;
    /* Increased bottom margin */
    position: relative;
    display: inline-block;
}

/* Main Title refinement */
.main-title {
    font-size: 6rem;
    font-family: 'Epilogue', sans-serif;
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 0.9;
    color: #000;
}

.italic-text {
    font-family: 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    margin-left: -5px;
}

.title-underline-svg {
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 160px;
    height: auto;
    color: #000;
}

.title-underline-svg path {
    stroke-dasharray: 200;
    /* Set a large dasharray */
    stroke-dashoffset: 200;
    /* Initially hide the paths */
}

/* Cards Wrapper */
.cards-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 650px;
    margin: 100px auto 100px 100px;
    display: flex;
    justify-content: center;
    /* Ensure no scrollbar appears from this section */

}

/* Base Card Styles */
.card {
    /* Fixed Dimensions */
    width: 320px;
    height: 460px;

    /* Layout */
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    padding: 3.5rem 1.5rem 1.5rem;
    cursor: pointer;
    /* Styling */
    border-radius: 10px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform-origin: center center;
    /* transition removed — GSAP handles all card animations */
}

.card-title {
    text-align: left;
    font-size: 2.2rem;
    font-family: 'Epilogue', sans-serif;
    font-weight: 800;
    margin-top: 30px;
    line-height: 1;
    letter-spacing: -1px;
}

.card-divider-svg {
    width: 100%;
    height: auto;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Card Specifics - The "Same to Same" Positioning */
/* Shifted everything left by 100px to center visual weight */

.card-green {
    background-color: var(--color-green);
    left: calc(50% - 700px);
    /* MOVED LEFT */
    top: 50px;
    /* ROTATION: Change the degree value below to rotate this card */
    transform: rotate(4deg);
    z-index: 1;
}

.card-darkblue {
    background-color: var(--color-lightblue);
    color: #1a1a1a;
    left: calc(50% - 430px);
    /* MOVED LEFT */
    top: 100px;
    /* ROTATION: Change the degree value below to rotate this card */
    transform: rotate(-5deg);
    z-index: 2;
}

.card-orange {
    background-color: var(--color-orange);
    color: #1a1a1a;
    left: calc(50% - 220px);
    /* MOVED LEFT */
    top: 20px;
    /* ROTATION: Change the degree value below to rotate this card */
    transform: rotate(5deg);
    z-index: 3;
}

.card-maroon {
    background-color: var(--color-maroon);
    left: calc(50% + 50px);
    /* MOVED LEFT */
    top: 30px;
    /* ROTATION: Change the degree value below to rotate this card */
    transform: rotate(-8deg);
    z-index: 4;
}

.card-pink {
    background-color: var(--color-pink);
    color: #1a1a1a;
    left: calc(50% + 320px);
    /* MOVED LEFT */
    top: 70px;
    /* ROTATION: Change the degree value below to rotate this card */
    transform: rotate(5deg);
    z-index: 5;
}

/* Expand hit area for middle cards to bridge gaps */
.card-darkblue::after,
.card-orange::after,
.card-maroon::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -35px;
    right: -35px;
    /* Invisible but captures mouse events */
}


/* Specific Card Styles overrides */
.card-pink .card-divider-svg,
.card-orange .card-divider-svg,
.card-darkblue .card-divider-svg {
    color: rgba(0, 0, 0, 0.8);
}

.card-list {
    list-style: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

/* List Items */
.card-list li {
    margin-bottom: 8px;
    /* Tighter list spacing */
    font-size: 1.15rem;
    /* Readable size */
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.services-card__bullet-svg {
    width: 14px;
    /* Larger bullet */
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: currentColor;
}

/* Stickers - Configuration Variables */
:root {
    /* Card Sticker Sizes */
    --sticker-camera-w: 160px;
    --sticker-phone-w: 120px;
    --sticker-smiley-w: 120px;
    --sticker-hand-w: 120px;
    --sticker-heart-w: 140px;

    /* Card Sticker Positions */
    --sticker-camera-top: -45px;
    --sticker-camera-left: 120px;

    --sticker-phone-top: -45px;
    --sticker-phone-left: 155px;

    --sticker-smiley-top: -50px;

    --sticker-hand-top: -40px;

    --sticker-heart-top: -50px;
    --sticker-heart-right: 15px;
}

.card-sticker {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    /* Allows clicking card through sticker */
}

.card-sticker svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Sticker Positions - Applied via variables for easy manual changes */
.card-sticker.sticker-camera {
    width: var(--sticker-camera-w);
    height: auto;
    top: var(--sticker-camera-top);
    left: var(--sticker-camera-left);
    transform: rotate(3deg);
}

.card-sticker.sticker-phone {
    width: var(--sticker-phone-w);
    height: auto;
    top: var(--sticker-phone-top);
    left: var(--sticker-phone-left);
    transform: rotate(1deg);
}

.card-sticker.sticker-smiley {
    width: var(--sticker-smiley-w);
    height: auto;
    top: var(--sticker-smiley-top);
    left: 70%;
    transform: translateX(-50%) rotate(4deg);
}

.card-sticker.sticker-hand {
    width: var(--sticker-hand-w);
    height: auto;
    top: var(--sticker-hand-top);
    left: 70%;
    transform: translateX(-50%) rotate(8deg);
}

.card-sticker.sticker-heart {
    width: var(--sticker-heart-w);
    height: auto;
    top: var(--sticker-heart-top);
    right: var(--sticker-heart-right);
    transform: rotate(1deg);
}


/* Double Marquee Section */
.Double-marquee {
    background-color: var(--bg-color);
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    min-height: 100vh;
}

.marquee-left {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
}

.marquee-text-container {
    position: relative;
    z-index: 5;
    text-align: left;
}

.marquee-left h2 {
    font-family: 'Epilogue', sans-serif;
    font-size: 4rem;
    font-weight: 1000;
    line-height: 0.95;
    letter-spacing: -2px;
    color: #000;
    margin-bottom: 120px;
    margin-right: 50px;
}

.text-with {
    font-family: 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    position: relative;
}

.marquee-underline {
    position: absolute;
    top: 7.5rem;
    right: 7.8rem;
    width: 100px;
    height: auto;
    color: #000;
    z-index: 6;
    transform: scaleX(0);
    opacity: 0;
    transform-origin: left;
}


.marquee-blob-container {
    position: absolute;
    top: 55%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 500px;
    z-index: 1;
}

.marquee-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.marquee-svg-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.marquee-svg-item {
    position: absolute;
}

.marquee-svg-item:nth-child(1) {
    bottom: 18%;
    left: 68%;
    width: 90px;
    height: auto;
    transform: translateX(-50%) scale(0) rotate(-20deg);
    opacity: 0;
    z-index: 2;
}

.marquee-svg-item:nth-child(2) {
    bottom: 3%;
    left: 70%;
    width: 350px;
    height: auto;
    color: #1a1a1a;
    transform: rotate(190deg) scaleX(-1);
    z-index: 1;
}

.marquee-svg-item:nth-child(2) path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: marqueeArrowDraw 2s ease-out 1.2s forwards;
}



.marquee-right {
    flex: 0 0 auto;
    display: flex;
    gap: 5px;
    height: 850px;
    position: relative;
    overflow: hidden;
    width: 500px;
    margin-right: 80px;
}

.marquee-column {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.marquee-column::before,
.marquee-column::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-column::before {
    top: 0;
    background: linear-gradient(to bottom, var(--bg-color) 0%, transparent 100%);
}

.marquee-column::after {
    bottom: 0;
    background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee-column:nth-child(1) .marquee-track {
    animation: marqueeUp 12s linear infinite;
}

.marquee-column:nth-child(2) .marquee-track {
    animation: marqueeDown 12s linear infinite;
}

@keyframes marqueeUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes marqueeDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

.marquee-item {
    width: 90%;
    height: 240px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.main-footer {
    padding: 10px;
    background-color: var(--bg-color);
}

.footer-inner {
    background-color: var(--color-darkblue);
    border-radius: 20px;
    padding: 80px 40px 40px;
    position: relative;
    overflow: hidden;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 5;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: white;
}

.footer-badge {
    display: inline-block;
    font-family: "Epilogue", Arial, sans-serif;
    padding: 8px 15px;
    background: #fff;
    color: #000;
    align-items: center;
    border-radius: 20px;
    border-bottom-left-radius: 1px;
    font-size: 0.85rem;
    font-weight: 550;
    width: fit-content;
    text-transform: lowercase;
}

.footer-column h3 {
    font-family: "Epilogue", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.footer-column address {
    font-family: "Epilogue", Arial, sans-serif;
    font-style: normal;
    font-size: 1.5rem;
    font-weight: 1000;
    line-height: 1.2;
}

.footer-map-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    width: fit-content;
    padding-bottom: 4px;
    margin-top: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.draw-btn__svg {
    width: 40%;
    height: auto;
    margin-top: 2px;
}

.footer-email {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
    width: fit-content;
    display: inline-block;
}

.footer-whatsapp {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: -10px;
    color: white;
    text-decoration: none;
    width: fit-content;
    display: inline-block;
}

.footer-note {
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1.4;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 1px;
}

.footer-socials a {
    color: white;
    width: 120;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    position: relative;
    width: 100%;
    margin-top: 50px;
}

.footer-big-text {
    width: 100%;
    color: white;
    text-align: center;
    pointer-events: none;
    user-select: none;
    margin-bottom: -50px;
    /* Pull down content or adjust as needed */
}

.footer-logo__svg {
    width: 104.9%;
    height: auto;
    margin-left: -2.5%;
    /* Center overshoot */
}

.footer-bottom-row {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
    z-index: 10;
}

.footer-url {
    display: none;
}

.footer-credits {
    background: #000;
    font-family: "Epilogue";
    color: rgb(206, 206, 206);
    margin-right: -25px;
    margin-bottom: -25px;
    padding: 6px 11px;
    border-radius: 20px;
    border-bottom-left-radius: 1px;
    text-decoration: none;
    font-size: 0.85rem;
    pointer-events: auto;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.footer-stickers {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-sticker {
    position: absolute;
    width: 100px;
    height: auto;
}

.sticker-boom {
    left: -1%;
    bottom: 15%;
    width: 150px;
    transform: rotate(-10deg);
}

.sticker-smiley {
    left: 20%;
    bottom: 45%;
    width: 130px;
    transform: rotate(-20deg);
}

.sticker-heart {
    left: 45%;
    bottom: 30%;
    width: 130px;
    transform: rotate(-15deg);
}

.footer-sticker.sticker-hands {
    left: 55%;
    bottom: 0%;
    width: 130px;
    transform: rotate(10deg);
}

.footer-sticker.sticker-100 {
    left: 60%;
    bottom: 55%;
    width: 130px;
    transform: rotate(-0deg);
}

.footer-sticker.sticker-camera {
    right: 8%;
    bottom: 15%;
    width: 130px;
    transform: rotate(5deg);
}

@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        gap: 60px;
    }

    .footer-column h3,
    .footer-column address,
    .footer-email {
        font-size: 1.5rem;
    }

    .footer-big-text {
        font-size: 40vw;
    }
}

/* Marquee Item Styling for SVG Logos */
.marquee-item[data-logo-theme="a"] {
    background-color: #a52a5f;
}

.marquee-item[data-logo-theme="b"] {
    background-color: #4b69f0;
}

.marquee-item[data-logo-theme="c"] {
    background-color: #ff6b4a;
}

.marquee-item[data-logo-theme="d"] {
    background-color: #29725f;
}

/* Brand specific themes */
/* Brand specific themes are now randomized via JavaScript in script.js */

.marquee-logo {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-logo__before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cover-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Assume logos should be white on colored background */
}

/* Tablet layout: flex column */
@media (min-width: 769px) and (max-width: 1200px) {
    .cards-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
        padding-bottom: 50px;
        gap: 30px;
        overflow: visible;
    }

    .card {
        position: relative;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 90%;
        max-width: 400px;
        height: auto;
        min-height: 400px;
        margin-bottom: 20px;
    }
}

/* Mobile layout: GSAP-controlled stacking */
@media (max-width: 768px) {

    /* ── Navbar ─────────────────────── */
    .navbar {
        padding: 14px 16px;
    }

    .logo-truus {
        width: 100px;
    }

    .logo-work-container {
        width: 48px;
        height: 44px;
    }

    .logo-work-text {
        font-size: 1.4rem;
        margin-left: 52px;
    }

    .nav-bar__whatsapp-svg {
        width: 26px;
    }

    /* ── Header hero ────────────────── */
    .header-content {
        height: 100svh;
        padding: 0 24px;
        text-align: center;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    /* ── Content section title ──────── */
    .content-section {
        padding: 80px 0 0;
        overflow: visible;
    }

    .main-title {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .title-underline-svg {
        width: 100px;
        bottom: -10px;
    }

    .title-container {
        margin-bottom: 50px;
    }

    /* ── Cards: GSAP-controlled ─────── */
    .cards-wrapper {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        margin: 0 auto !important;
        overflow: visible !important;
    }

    .card {
        width: 82vw;
        max-width: 340px;
        min-height: 420px;
        height: auto;
    }

    .card-sticker {
        pointer-events: none;
    }

    /* ── Double Marquee ─────────────── */
    .Double-marquee {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 24px 0;
        gap: 0;
        min-height: unset;
    }

    .marquee-left {
        max-width: 100%;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        min-height: 340px;
    }

    .marquee-text-container {
        text-align: left;
    }

    .marquee-left h2 {
        font-size: 2.6rem;
        letter-spacing: -1.5px;
        margin-bottom: 0;
        margin-right: 0;
    }

    /* Blob gets smaller and repositioned */
    .marquee-blob-container {
        width: 240px;
        height: 280px;
        top: 45%;
        left: 20%;
    }

    /* Finger/hand icon — keep visible, reposition */
    .marquee-svg-item:nth-child(1) {
        width: 60px;
        bottom: 10%;
        left: 55%;
    }

    /* Arrow SVG — reposition below hand */
    .marquee-svg-item:nth-child(2) {
        width: 220px;
        bottom: -5%;
        left: 55%;
    }

    /* Underline stays near text */
    .marquee-underline {
        top: 5rem;
        right: auto;
        left: 9.5rem;
        width: 70px;
    }

    /* ── Logo columns → 2-row horizontal scroll grid ── */
    .marquee-right {
        display: grid;
        grid-template-rows: 130px 130px;
        grid-auto-flow: column;
        grid-auto-columns: 130px;
        gap: 8px;
        width: 100%;
        height: auto;
        margin-right: 0;
        padding: 20px 24px 32px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .marquee-right::-webkit-scrollbar {
        display: none;
    }

    /* Make columns and tracks invisible to grid — items flow directly in */
    .marquee-column {
        display: contents;
    }

    .marquee-column::before,
    .marquee-column::after {
        display: none;
    }

    .marquee-column:nth-child(1) .marquee-track,
    .marquee-column:nth-child(2) .marquee-track {
        display: contents;
        animation: none;
    }

    .marquee-item {
        width: 130px;
        height: 130px;
        flex-shrink: 0;
    }

    /* ── Footer ─────────────────────── */
    .main-footer {
        padding: 6px;
    }

    .footer-inner {
        padding: 50px 20px 30px;
        border-radius: 14px;
        min-height: 100svh;
    }

    .footer-top {
        flex-direction: column;
        gap: 36px;
    }

    .footer-column h3 {
        font-size: 1.4rem;
        letter-spacing: -0.5px;
    }

    .footer-column address {
        font-size: 1.25rem;
    }

    .footer-email {
        font-size: 1.3rem;
    }

    .footer-whatsapp {
        font-size: 1.1rem;
        margin-top: -6px;
    }

    .footer-map-link {
        font-size: 0.95rem;
    }

    /* Stickers: spread across the bottom */
    .sticker-boom {
        left: 2%;
        bottom: 10%;
        width: 90px;
    }

    .sticker-smiley {
        left: 30%;
        bottom: 5%;
        width: 90px;
    }

    .sticker-heart {
        left: 50%;
        bottom: 18%;
        width: 85px;
    }

    .footer-sticker.sticker-hands {
        left: 60%;
        bottom: 2%;
        width: 90px;
    }

    .footer-sticker.sticker-100 {
        left: 72%;
        bottom: 20%;
        width: 80px;
    }

    .footer-sticker.sticker-camera {
        right: 2%;
        bottom: 8%;
        width: 85px;
    }

    /* TRUUS big text — scale for mobile */
    .footer-bottom {
        margin-top: 200px;
    }

    .footer-logo__svg {
        width: 110%;
        margin-left: -5%;
    }

    /* Credits badge */
    .footer-credits {
        margin-right: -15px;
        margin-bottom: -15px;
        font-size: 0.75rem;
    }
}