/* =====================================================================
   ABOUT / COMPANY PAGE  —  daybreak
   Copy: daybreak-website-preview.pages.dev/about
   Layout language: Figma about-page (20:1496) + homepage/product CTA &
   editorial patterns. 100% on --db-* tokens. Manrope throughout.
   ===================================================================== */

:root {
    --ab-maxw: 1328px;
    --ab-pad: clamp(20px, 5vw, 56px);
    --ab-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ab-hairline: rgba(34, 34, 34, 0.12);
    --ab-hairline-strong: rgba(34, 34, 34, 0.22);
}

.ab-page {
    width: 100%;
    background-color: var(--db-light);
    color: var(--db-dark);
    overflow-x: hidden;
    font-family: 'Manrope', sans-serif;
}

/* ---------- Shared primitives ---------- */
.ab-container {
    width: 100%;
    max-width: var(--ab-maxw);
    margin-inline: auto;
    padding-inline: var(--ab-pad);
    box-sizing: border-box;
}

.ab-eyebrow {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--db-green-dark);
    margin: 0;
}

.ab-h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--db-dark);
    margin: 0;
}

.ab-accent {
    color: var(--db-green);
}

.ab-lead {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(19px, 2.1vw, 26px);
    font-weight: 400;
    line-height: 1.45;
    color: var(--db-dark);
    margin: 0;
}

/* ---------- Scroll reveals (driven by about-reveal.js) ---------- */
.ab-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--ab-ease), transform 0.8s var(--ab-ease);
    will-change: opacity, transform;
}

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

.ab-reveal-stagger>* {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--ab-ease), transform 0.7s var(--ab-ease);
    will-change: opacity, transform;
}

.ab-reveal-stagger.is-visible>* {
    opacity: 1;
    transform: none;
}

.ab-reveal-stagger.is-visible>*:nth-child(1) { transition-delay: 0.04s; }
.ab-reveal-stagger.is-visible>*:nth-child(2) { transition-delay: 0.10s; }
.ab-reveal-stagger.is-visible>*:nth-child(3) { transition-delay: 0.16s; }
.ab-reveal-stagger.is-visible>*:nth-child(4) { transition-delay: 0.22s; }
.ab-reveal-stagger.is-visible>*:nth-child(5) { transition-delay: 0.28s; }
.ab-reveal-stagger.is-visible>*:nth-child(6) { transition-delay: 0.34s; }
.ab-reveal-stagger.is-visible>*:nth-child(7) { transition-delay: 0.40s; }

/* =====================================================================
   1. OUR STORY  —  editorial intro on pale lime, lead first, mission below
   ===================================================================== */
.ab-story {
    background: var(--db-lime-light);
    /* extra top padding clears the nav since Our Story is now section 1 */
    padding-top: clamp(112px, 13vw, 168px);
    padding-bottom: clamp(64px, 7vw, 96px);
}

.ab-story .ab-container {
    max-width: 1060px;
}

.ab-story-inner {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ab-story-eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--db-green-dark);
    margin: 0 0 clamp(22px, 3vw, 36px);
}

.ab-story-lead {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.16;
    letter-spacing: -0.022em;
    font-weight: 600;
    color: var(--db-dark);
    margin: 0 0 clamp(28px, 3.2vw, 40px);
    max-width: 22em;
}

.ab-story-rule {
    border: none;
    border-top: 1px solid var(--db-grey-2);
    margin: 0 0 clamp(22px, 2.6vw, 32px);
}

.ab-story-mission {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(17px, 1.7vw, 21px);
    font-weight: 400;
    line-height: 1.55;
    color: var(--db-grey-1);
    margin: 0;
    max-width: 56em;
}

/* =====================================================================
   3. LEADERSHIP  —  3×2 B&W grid with lime accent rail + numbered cards
   ===================================================================== */
.ab-leaders {
    background-color: var(--db-white);
    padding-block: clamp(96px, 11vw, 160px) clamp(56px, 7vw, 96px);
}

.ab-leaders-head {
    max-width: 780px;
    margin-bottom: clamp(56px, 7vw, 88px);
}

.ab-leaders-eyebrow {
    margin-bottom: 22px;
}

.ab-leaders-head .ab-h2 {
    margin-bottom: 28px;
}

.ab-leaders-intro {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--db-grey-1);
    margin: 0 0 10px;
}

.ab-leaders-pedigree {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--db-grey-2);
    margin: 0;
}

.ab-leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2vw, 28px);
    counter-reset: leader;
}

.ab-leader {
    position: relative;
    background: var(--db-white);
    border: 1px solid var(--db-grey-3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    counter-increment: leader;
    transition: transform 0.4s var(--ab-ease), box-shadow 0.4s var(--ab-ease);
}

/* Lime accent rail — animates from short stub to full width on hover */
.ab-leader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--db-lime);
    z-index: 3;
    transform: scaleX(0.16);
    transform-origin: left center;
    transition: transform 0.55s var(--ab-ease);
}

.ab-leader:hover::before {
    transform: scaleX(1);
}

/* Auto-numbered 01–06 badge over the photo */
.ab-leader::after {
    content: counter(leader, decimal-leading-zero);
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 3;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.92);
    mix-blend-mode: difference;
    pointer-events: none;
}

.ab-leader:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(34, 34, 34, 0.12);
}

.ab-leader-photo {
    background-color: var(--db-light);
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.ab-leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* default face-area crop — overridden per leader below to equalize face size */
    object-position: center 22%;
    filter: grayscale(100%);
    transition: filter 0.5s var(--ab-ease), transform 0.6s var(--ab-ease);
    transform-origin: center top;
}

/* Per-leader face-size normalization — different source photos crop in/out
   to bring every face to roughly the same scale in the card. */
.ab-leaders-grid .ab-leader:nth-child(1) .ab-leader-photo img {
    /* Tim Krug — wider upper-body shot, zoom in */
    transform: scale(1.18);
    object-position: center 34%;
}

.ab-leaders-grid .ab-leader:nth-child(2) .ab-leader-photo img {
    /* Michael Ciatto */
    object-position: center 22%;
}

.ab-leaders-grid .ab-leader:nth-child(3) .ab-leader-photo img {
    /* Waleed Ayoub */
    transform: scale(1.04);
    object-position: center 24%;
}

.ab-leaders-grid .ab-leader:nth-child(4) .ab-leader-photo img {
    /* Fallon Jensen */
    object-position: center 22%;
}

.ab-leaders-grid .ab-leader:nth-child(5) .ab-leader-photo img {
    /* Gretl Blodgett */
    object-position: center 22%;
}

.ab-leaders-grid .ab-leader:nth-child(6) .ab-leader-photo img {
    /* Elyse Hallstrom */
    object-position: center 22%;
}

.ab-leader:hover .ab-leader-photo img {
    filter: grayscale(0%);
}

.ab-leader-info {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ab-leader-name {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(18px, 1.7vw, 22px);
    font-weight: 600;
    color: var(--db-dark);
    margin: 0;
}

.ab-leader-role {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #5E5E5E;
}

/* ---- Pedigree strip ("We come from leading technology companies") ---- */
.ab-pedigree {
    margin-top: clamp(64px, 8vw, 104px);
    padding-top: clamp(48px, 6vw, 80px);
    border-top: 1px solid var(--ab-hairline);
    text-align: center;
}

.ab-pedigree-eyebrow {
    color: var(--db-green-dark);
    margin-bottom: 14px;
}

.ab-pedigree-label {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--db-dark);
    margin: 0 0 clamp(40px, 5vw, 60px);
}

.ab-pedigree-logos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.8vw, 26px);
}

/* uniform cell — every logo occupies the same footprint, all 7 fit on one row at desktop */
.ab-pedigree-logos li {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(96px, 9.5vw, 128px);
    height: 44px;
}

.ab-pedigree-logos img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.ab-pedigree-logos li:hover img {
    opacity: 0.95;
    filter: grayscale(0%);
}

.ab-pedigree-wordmark {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--db-grey-2);
    opacity: 0.7;
    white-space: nowrap;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.ab-pedigree-logos li:hover .ab-pedigree-wordmark {
    opacity: 1;
    color: var(--db-dark);
}

/* =====================================================================
   4. F.O.C.U.S  —  dramatic dark-forest band, 5-column card grid
   (mirrors the homepage/product CTA visual language: deep-forest surface,
   lime letters, cream type, lime accent rail on each card)
   ===================================================================== */
.ab-values {
    background-color: #143726;
    padding-block: clamp(80px, 9vw, 128px);
}

.ab-values-head {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 72px);
}

.ab-values-eyebrow {
    color: var(--db-lime);
    margin-bottom: 20px;
}

.ab-values-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    margin: 0;
    color: var(--db-lime);
}

.ab-values-dot {
    color: var(--db-lime);
}

.ab-foc-grid {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(16px, 1.8vw, 24px);
    max-width: 1280px;
}

.ab-foc {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(177, 217, 60, 0.18);
    border-radius: 8px;
    padding: clamp(24px, 2.4vw, 36px) clamp(20px, 1.8vw, 28px) clamp(28px, 2.6vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 250px;
    transition: transform 0.4s var(--ab-ease), border-color 0.4s var(--ab-ease), background 0.4s var(--ab-ease);
}

/* lime accent rail at the top of each card */
.ab-foc::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background: var(--db-lime);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transform: scaleX(0.18);
    transform-origin: left center;
    transition: transform 0.55s var(--ab-ease);
}

.ab-foc:hover {
    transform: translateY(-4px);
    border-color: rgba(177, 217, 60, 0.36);
    background: rgba(255, 255, 255, 0.06);
}

.ab-foc:hover::before {
    transform: scaleX(1);
}

.ab-foc-letter {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(44px, 4.8vw, 64px);
    font-weight: 700;
    line-height: 0.9;
    color: var(--db-lime);
    margin: 0 0 clamp(22px, 2.4vw, 34px);
}

.ab-foc-name {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(18px, 1.9vw, 22px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: #EFE7D5;
    margin: 0 0 10px;
}

.ab-foc-line {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(239, 231, 213, 0.86);
    margin: 0;
}

/* =====================================================================
   5. INVESTORS & BOARD  —  eyebrow + h2 + 2-col Directors / Investors
   ===================================================================== */
.ab-investors {
    background-color: var(--db-white);
    padding-block: clamp(96px, 11vw, 160px);
}

.ab-investors-head {
    margin-bottom: clamp(56px, 7vw, 88px);
    max-width: 920px;
}

.ab-investors-head .ab-eyebrow {
    margin-bottom: 22px;
}

.ab-investors-title {
    font-size: clamp(28px, 3.6vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--db-dark);
    margin: 0;
}

.ab-investors-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(48px, 7vw, 100px);
}

.ab-col-title {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--db-grey-1);
    margin: 0 0 32px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--db-grey-3);
}

.ab-directors-list {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 3.5vw, 48px);
}

.ab-director-name {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--db-dark);
    margin: 0 0 8px;
}

.ab-director-role {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--db-grey-2);
    margin: 0;
}

.ab-investor-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.4vw, 32px) clamp(20px, 2.4vw, 32px);
    align-items: center;
    justify-items: start;
}

.ab-investor-logo {
    height: 76px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    filter: grayscale(100%);
    opacity: 0.78;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.ab-investor-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* =====================================================================
   6. CUSTOMERS  —  matches the homepage "Trusted by" logo strip exactly
   (same 7 logos, same order, same compact centered styling)
   Currently hidden per the user — markup kept in place for easy revert.
   ===================================================================== */
.ab-customers {
    display: none;
    background-color: var(--db-light);
    padding-block: clamp(32px, 3.6vw, 48px);
    text-align: center;
}

.ab-customers-label {
    color: var(--db-green-dark);
    text-align: center;
    margin: 0 0 21px;
}

.ab-customers-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(22px, 3.6vw, 48px);
}

.ab-customers-row img {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    mix-blend-mode: multiply;
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.ab-customers-row img.ab-logo-dot {
    height: 35px;
}

.ab-customers-row img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* =====================================================================
   7. CLOSING CTA  —  full-bleed misty-valley image as the section background,
   centered dark-forest card sitting on top with all text center-aligned
   ===================================================================== */
.ab-cta {
    position: relative;
    padding: clamp(60px, 7vw, 108px) 0;
    overflow: hidden;
    isolation: isolate;
}

/* Green/lime radial wash behind the card — ported from homepage/product closing CTA */
.ab-cta::before {
    content: '';
    position: absolute;
    inset: 0 -5% 0 -5%;
    z-index: -2;
    background:
        radial-gradient(ellipse 62% 54% at 22% 42%, rgba(86, 178, 116, 0.20) 0%, transparent 76%),
        radial-gradient(ellipse 68% 54% at 80% 74%, rgba(190, 216, 138, 0.32) 0%, transparent 78%),
        radial-gradient(ellipse 30% 26% at 72% 30%, rgba(120, 195, 230, 0.16) 0%, transparent 72%),
        radial-gradient(ellipse 50% 40% at 50% 60%, rgba(255, 255, 255, 0.34) 0%, transparent 72%),
        linear-gradient(135deg, #ECF3E5 0%, #E5EEDC 100%);
}

/* Fade the gradient into the footer's gray so the seam disappears */
.ab-cta::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 360px;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(180deg,
        rgba(248, 248, 248, 0) 0%,
        rgba(248, 248, 248, 0.6) 46%,
        #F8F8F8 78%,
        #F8F8F8 100%);
}

/* the dark-forest card with a photo peeking off the right edge */
.ab-cta-card {
    position: relative;
    background: #143726;
    border-radius: 8px;
    overflow: hidden;
    min-height: clamp(342px, 37.8vw, 468px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 92px rgba(20, 48, 30, 0.26);
}

.ab-cta-card-body {
    padding: clamp(40px, 5vw, 76px);
    position: relative;
    z-index: 2;
    text-align: center;
}

.ab-cta-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(27px, 3.24vw, 47px);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin: 0 auto 22px;
    max-width: 620px;
}

.ab-cta-accent {
    color: var(--db-green);
}

.ab-cta-text {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(17px, 1.4vw, 21px);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    max-width: none;
    margin: 0 auto 36px;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .ab-cta-text { white-space: normal; }
}

.ab-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.ab-cta-primary {
    display: inline-flex;
    align-items: center;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.1px;
    border-radius: 999px;
    padding: 14px 26px;
    background: #39B15A;
    color: #FFFFFF;
    border: 1px solid #39B15A;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ab-cta-primary:hover {
    background: #257A3F;
    border-color: #257A3F;
    color: #FFFFFF;
}

.ab-cta-photo {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 20%;
}

.ab-cta-photo-inner {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ab-cta-photo-inner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 100%;
    transform: scale(1.25);
    transform-origin: 50% 100%;
}

.ab-cta-photo-accent {
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--db-green);
    z-index: 2;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media screen and (max-width: 1100px) {
    .ab-foc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .ab-leaders-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-investor-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 760px) {
    .ab-foc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-foc:nth-child(4),
    .ab-foc:nth-child(5) {
        grid-column: auto;
    }

    .ab-foc:nth-child(5) {
        grid-column: 1 / span 2;
    }

    .ab-foc {
        min-height: 210px;
    }
}

@media screen and (max-width: 520px) {
    .ab-leaders-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-inline: auto;
    }

    .ab-foc-grid {
        grid-template-columns: 1fr;
    }

    .ab-foc:nth-child(5) {
        grid-column: auto;
    }

    .ab-foc {
        min-height: 0;
    }

    .ab-investors-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ab-investor-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .ab-cta-card-body {
        padding: clamp(32px, 7vw, 52px) clamp(24px, 5vw, 40px);
    }
}

@media (max-width: 860px) {
    .ab-cta-card {
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
    }

    .ab-cta-title,
    .ab-cta-text {
        max-width: 100%;
    }

    .ab-cta-photo {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        height: 170px;
    }

    .ab-cta-photo-accent {
        left: 0;
        right: 0;
        top: -4px;
        bottom: auto;
        width: auto;
        height: 4px;
    }
}

/* =====================================================================
   MOTION PREFERENCES
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {

    .ab-reveal,
    .ab-reveal-stagger>* {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ab-leader,
    .ab-leader::before,
    .ab-leader-photo img,
    .ab-foc,
    .ab-investor-logo,
    .ab-pedigree-logos img,
    .ab-customer {
        transition: none;
    }
}
