/* =========================================================
   JOHN MULHOLLAND — ABOUT PAGE STARTER
   Loads after jem-editorial.css.
   Page-specific only: hero, bio/video, archive, monde, contact.
   ========================================================= */

.aboutPage {
    --about-paper: #efe8dc;
    --about-ink: #211f1c;
    --about-muted: rgba(33,31,28,0.68);
    --about-line: rgba(33,31,28,0.18);
    --about-gold: #b99562;
    --about-dark: #101010;
    --about-dark-2: #151515;
    background: var(--about-paper);
    color: var(--about-ink);
}

/*
   Shared width follows the homepage/index page.
   The About page uses Bootstrap's native .container behavior from
   jem-editorial.html / jem-editorial.css instead of forcing a wider
   Press-page-style gutter.

   In the HTML, most wrappers are written as:
   <div class="container aboutWide">
   so .container supplies the same side padding and responsive widths
   used by the index page.
*/
.aboutWide,
.container.aboutWide,
.aboutHeroInner,
.container.aboutHeroInner {
    box-sizing: border-box;
}

.aboutPage a {
    color: inherit;
}


.aboutPage a:hover,
.aboutPage a:focus {
    color: var(--about-gold);
}


/* HERO */
.aboutHero {
    position: relative;
    aspect-ratio: 1920 / 825;
    min-height: 0;
    background: #080808;
    overflow: hidden;
    color: #fff;
}

.aboutHeroImage {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    opacity: 1;
}

.aboutHeroOverlay {
    display: none !important;
}

.aboutHeroInner {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding-top: 86px;
}

.aboutHeroCopy {
    max-width: 560px;
}

.aboutEyebrow,
.aboutSectionKicker {
    margin: 0 0 14px;
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--about-gold);
}

.aboutHero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: 55px;
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.96);
}

.aboutRole {
    margin: 6px 0 0;
    font-family: var(--serif);
    font-size: 24px;
    color: var(--about-gold);
}

.aboutHeroRule {
    width: 86px;
    height: 1px;
    margin: 18px 0;
    background: var(--about-gold);
}

.aboutHeroText {
    max-width: 480px;
    margin: 0;
    font-size: 18px;
    line-height: 1.72;
    color: rgba(255,255,255,0.84);
}

/* BIO + VIDEO */
.aboutBioVideoSection {
    padding: 38px 0 46px;
    background: var(--about-paper);
}

.aboutBioVideoGrid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 90px;
    align-items: start;
}

.aboutBioPanel {
    min-width: 0;
}

.aboutBioScroll {
    max-height: 470px;
    overflow-y: auto;
    padding-right: 26px;
    border-right: 1px solid var(--about-line);
}

.aboutBioScroll p {
    margin: 0 0 17px;
    font-size: 15.5px;
    line-height: 1.82;
    color: var(--about-muted);
}

.aboutBioScroll em {
    color: rgba(33,31,28,0.9);
}

.dropcap {
    float: left;
    margin: 5px 8px 0 0;
    font-family: var(--serif);
    font-size: 72px;
    line-height: 0.8;
    color: var(--about-gold);
}

.aboutBioScroll::-webkit-scrollbar {
    width: 7px;
}
.aboutBioScroll::-webkit-scrollbar-track {
    background: rgba(33,31,28,0.05);
}
.aboutBioScroll::-webkit-scrollbar-thumb {
    background: rgba(33,31,28,0.24);
}

.aboutVideoPanel {
    position: relative;
    top: auto;
    align-self: start;
}

.aboutVideoFrame,
.aboutVideoFrame video {
    border: none;
    outline: none;
}

.aboutVideoFrame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.aboutVideoCaption {
    margin: 18px 0 0;
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    text-align: center;
    color: rgba(33,31,28,0.62);
}

/* DOCUMENTARY WORK */
.aboutDocsSection {
    padding: 36px 0 50px;
    background: #111;
    color: #fff;
}

.aboutCenteredHeader {
    text-align: center;
}

.aboutCenteredHeader h2,
.contactRepHeader h2,
.mondeCopy h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.14;
    font-weight: 300;
    letter-spacing: 9px;
    text-transform: uppercase;
    padding-bottom: 15px;
}

.aboutCenteredHeader h2::before,
.aboutCenteredHeader h2::after {
    content: "";
    display: inline-block;
    width: 86px;
    height: 1px;
    margin: 0 22px 10px;
    background: rgba(185,149,98,0.7);
}

.aboutCenteredHeader p {
    margin: 10px auto 0;
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    color: rgba(33,31,28,0.66);
}

.aboutDocsSection .aboutCenteredHeader h2 {
    color: rgba(255,255,255,0.9);
}

.aboutDocGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px;
    margin-top: 34px;
}

.aboutDocCard {
    text-align: center;
}
.aboutDocCard img {
    filter: saturate(0.9) contrast(0.95) brightness(0.93);
}

.aboutDocCard img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #000;
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}

.aboutDocCard h3 {
    margin: 16px 0 10px;
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.18;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
}

.aboutDocCard a,
.archiveFeatureCopy a,
.mondeCopy a {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--about-gold);
}

/* QUOTE PARALLAX */
.aboutQuoteParallax {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    color: #fff;
}

.aboutQuoteParallax .jarallax-img {
    position: absolute;
    object-fit: cover !important;
    width: 100%;
    height: 100%;
    z-index: -100;
}

.aboutQuoteParallax .quoteOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.28);
    z-index: 1;
    pointer-events: none;
}

.aboutQuoteParallax .quoteContent {
    position: relative;
    z-index: 2;
}

.aboutQuoteParallax .pullQuote {
    position: relative;
    z-index: 2;
    max-width: 940px;
    margin: 0 auto;
    padding: 0 24px;
    border: 0;
    text-align: center;
}

.aboutQuoteParallax .pullQuote p {
    margin: 0;
    font-family: var(--serif);
    font-size: 29px;
    line-height: 1.34;
    font-style: italic;
    color: rgba(255,255,255,0.92);
}

.aboutQuoteParallax .pullQuote footer {
    margin-top: 18px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--about-gold);
}

.aboutQuoteParallax .pullQuote footer::before {
    content: "— ";
}

/* ARCHIVE & RELEASES */
.archiveReleaseSection {
    padding: 38px 0 48px;
    background: var(--about-paper);
}

.archiveReleaseGrid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    margin-top: 30px;
}

/* No boxes around the archive/release elements. */
.archiveFeatureSide,
.archiveGallerySide {
    min-width: 0;
    background: transparent;
    border: none;
    min-height: 320px;
}

.archiveFeatureSide {
    display: grid;
    grid-template-columns: minmax(190px, 0.48fr) minmax(0, 0.52fr);
    gap: 28px;
    align-items: center;
    padding: 12px 42px 12px 0;
    border-right: 1px solid var(--about-line);
}

.archiveGallerySide {
    display: block;
    align-self: center;
    padding: 12px 0 12px 42px;
}

.archiveDvdArt {
    margin: 0;
    width: 255px;
    max-width: 100%;
    justify-self: center;
}

.archiveDvdArt img {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    object-fit: contain;
}

.archiveFeatureCopy .archiveLabel {
    margin: 0 0 10px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(33,31,28,0.72);
}

.archiveFeatureCopy h3 {
    margin: 0 0 16px;
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1.12;
    font-weight: 400;
}

.archiveFeatureCopy p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.68;
    color: var(--about-muted);
}

.archiveGalleryHeader p {
    margin: 0 0 14px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-align: center;
    text-transform: uppercase;
    color: rgba(33,31,28,0.72);
}

/* Gallery: large image left / two-thumbnail rail right / caption below image. */
.archiveGalleryShell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 18px;
    align-items: start;
    max-width: 720px;
    margin: 0 auto;
}

.archiveGalleryMain {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    min-width: 0;
    text-align: center;
}

.archiveGalleryMain a {
    display: block;
    background: #000;
}

.archiveGalleryMain img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
}

.archiveGalleryMain figcaption {
    margin-top: 10px;
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    color: rgba(33,31,28,0.72);
}
.archiveGalleryNote {
    max-width: 620px;
    margin: 26px auto 0;
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
    color: rgba(33,31,28,0.62);
}

.archiveGalleryNote em {
    color: rgba(33,31,28,0.78);
}
/*
   Thumbnail rail.
   The first thumbnail is visually flush with the top of the large image.
   Arrows are positioned outside the thumbnail stack so they do not push
   the thumbnails downward.
*/
.archiveThumbColumn {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    width: 160px;
    align-self: start;
    padding-top: 0;
    padding-bottom: 0;
}

.archiveThumbViewport {
    overflow: hidden;
    height: 190px;
}

.archiveThumbRail {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 520ms ease;
    will-change: transform;
}

.archiveThumbItem {
    display: block;
    width: 100%;
    padding: 0;
    border: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    opacity: 1;
    filter: none;
    transition: border-color 220ms ease;
}

.archiveThumbItem.is-active,
.archiveThumbItem:hover,
.archiveThumbItem:focus {
    border-color: var(--about-gold);
    outline: none;
}

.archiveThumbItem img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
    opacity: 1;
    filter: none;
}

.archiveThumbArrow {
    position: absolute;
    left: 0;
    width: 100%;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--about-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 220ms ease;
    z-index: 2;
}

.archiveThumbPrev {
    top: -34px;
}

.archiveThumbNext {
    bottom: -34px;
}

.archiveThumbArrow i {
    font-size: 24px;
    line-height: 1;
}

.archiveThumbArrow:hover,
.archiveThumbArrow:focus {
    color: var(--about-ink);
    outline: none;
}

/* Restrained archive lightbox */
.mfp-bg {
    background: #050505;
    opacity: 0.88;
}

.mfp-wrap .mfp-content,
.mfp-image-holder .mfp-content {
    max-width: 1040px;
}

img.mfp-img {
    max-height: 82vh !important;
    width: auto;
    padding: 34px 0;
}

.mfp-figure:after {
    box-shadow: 0 18px 48px rgba(0,0,0,0.55);
    background: #111;
}

.mfp-title {
    padding-right: 0;
    font-family: var(--serif);
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    text-align: center;
}

.mfp-counter {
    display: none;
}

.mfp-close {
    font-size: 34px;
    opacity: 0.72;
}

.mfp-arrow {
    opacity: 0.62;
}

.mfp-arrow:hover,
.mfp-close:hover {
    opacity: 1;
}


/* Prevent page shift when Magnific Popup opens */
html {
    overflow-y: scroll;
}

/* Magnific Popup scroll-lock stabilization */
html.mfp-helper {
    overflow-y: scroll !important;
}

body.mfp-zoom-out-cur {
    overflow: hidden !important;
    padding-right: 0 !important;
}

/* MONDE */
.mondeSection {
    padding: 56px 0;
    background: #101010;
    color: #fff;
}

.mondeGrid {
    display: grid;
    grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
    gap: 64px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

.mondeCover {
    margin: 0;
}

.mondeCover img {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 42px rgba(0,0,0,0.5);
}

.mondeCopy h2 {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.mondeCopy p {
    margin: 0 0 16px;
    max-width: 640px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.66);
}

/* CONTACT */
/* Beige separator band between Monde Ciné Classique and Contact & Representation. */
.contactRepSection {
    padding: 42px 0;
    background: #111;
    color: #fff;
    border-top: 50px solid var(--about-paper);
}

.contactRepHeader {
    text-align: center;
    margin-bottom: 26px;
}

.contactRepHeader h2 {
    color: rgba(255,255,255,0.9);
}

.contactRepHeader p {
    margin: 10px auto 0;
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
    color: rgba(255,255,255,0.56);
}

.contactRepGrid {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.32fr 0.88fr;
    border: 1px solid rgba(255,255,255,0.16);
}

.contactRepColumn {
    min-width: 0;
    padding: 24px 28px;
    border-right: 1px solid rgba(255,255,255,0.16);
}

.contactRepColumn:last-child {
    border-right: none;
}

.contactRepColumn h3 {
    margin: 0 0 16px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--about-gold);
}

.contactRepColumn p {
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255,255,255,0.66);
}

.contactRepColumn strong {
    color: rgba(255,255,255,0.86);
    font-weight: 500;
}

.contactRepColumn a {
    color: rgba(255,255,255,0.76);
    text-decoration: underline;
    text-decoration-color: rgba(185,149,98,0.45);
    text-underline-offset: 3px;
}

.contactRepNote {
    display: inline-block;
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255,255,255,0.46);
}

.aboutBeigeGutter {
    height: 58px;
    background: var(--about-paper);
}

/* FOOTER */
.aboutFooter {
    padding: 26px 0;
    background: #101010;
    color: rgba(255,255,255,0.68);
}

.aboutFooter .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

.aboutFooterGrid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.aboutFooter p {
    margin: 0;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.aboutFooter p:last-child {
    text-align: right;
}

.aboutFooter nav {
    display: flex;
    gap: 28px;
}

.aboutFooter a {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* =========================================================
   ARCHIVE GALLERY — FINAL MAIN IMAGE ALIGNMENT
   Do not widen the shell. This preserves the gutter.
   ========================================================= */

.archiveGalleryMain {
    transform: scale(1.025) translateX(-2px);
    transform-origin: top left;
}

.archiveGalleryMain figcaption {
    transform: translateX(2px);
}

.publisherLogoStack {
    margin: 22px 0 0;
}

.publisherLogoStack img {
    display: block;
    width: 90%;
    max-width: 260px;
    height: auto;
    opacity: 0.88;
}
/* CONTACT COLUMN BALANCE — PUBLICIST FILLER + TRANSMULTIMEDIA LOGO */
.contactRepColumnPublicist {
    display: flex;
    flex-direction: column;
}

.contactRepFooterNote {
    padding-top: 12px;
}

.contactRepFooterNote span {
    display: block;
    margin-bottom: 8px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--about-gold);
}

.contactRepFooterNote p {
    margin: 0;
    font-size: 11px;
    line-height: 1.55;
    color: rgba(255,255,255,0.44);
}

.transmultimediaLogoStack {
    margin: 2px 0 0;
}

.transmultimediaLogoStack img {
    display: block;
    width: 80%;
    max-width: 220px;
    height: auto;
    opacity: 0.82;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .aboutBioVideoGrid,
    .archiveReleaseGrid,
    .mondeGrid {
        grid-template-columns: 1fr;
    }

    .aboutVideoPanel {
        position: static;
    }

    .aboutBioScroll {
        max-height: none;
        overflow: visible;
        padding-right: 0;
        border-right: none;
    }

    .archiveGalleryMain,
    .archiveGalleryMain figcaption {
        transform: none;
    }

    .archiveFeatureSide {
        padding: 0 0 34px;
        border-right: none;
        border-bottom: 1px solid var(--about-line);
    }

    .archiveGallerySide {
        padding: 34px 0 0;
    }

    .aboutDocGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contactRepGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contactRepColumn:nth-child(2) {
        border-right: none;
    }

    .contactRepColumn:nth-child(1),
    .contactRepColumn:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.16);
    }
}

@media (max-width: 767px) {
    .aboutFooter .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .aboutHero,
    .aboutHeroInner {
        min-height: 520px;
    }

    .aboutHero h1 {
        font-size: 48px;
    }

    .aboutRole {
        font-size: 20px;
    }

    .aboutBioVideoSection,
    .aboutDocsSection,
    .archiveReleaseSection,
    .mondeSection,
    .contactRepSection {
        padding-left: 0;
        padding-right: 0;
    }

    .aboutBioVideoGrid {
        gap: 34px;
    }

    .aboutCenteredHeader h2::before,
    .aboutCenteredHeader h2::after {
        width: 34px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .aboutDocGrid,
    .contactRepGrid {
        grid-template-columns: 1fr;
    }

    .archiveFeatureSide {
        grid-template-columns: 1fr;
    }
    .contactRepColumn,
    .contactRepColumn:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.16);
    }

    .contactRepColumn:last-child {
        border-bottom: none;
    }

    .aboutQuoteBlock p,
    .aboutQuoteParallax .pullQuote p {
        font-size: 25px;
    }

    .aboutFooterGrid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .aboutFooter nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }

    .aboutFooter p:last-child {
        text-align: center;
    }
}

/* =========================================================
   MOBILE FINAL — HERO + GALLERY
   Keep this as the LAST block in jem-about.css.
   ========================================================= */

@media (max-width: 767px) {

    html,
    body,
    body.aboutPage {
        max-width: 100%;
        overflow-x: hidden;
    }

    body.aboutPage main,
    body.aboutPage .container,
    body.aboutPage .aboutWide {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* HERO — mobile dedicated image, matched viewport */
    body.aboutPage .aboutHero {
        aspect-ratio: 3 / 4 !important;
        min-height: 0 !important;
        height: auto !important;
    }

    body.aboutPage .aboutHero .aboutHeroInner {
        min-height: 0 !important;
        height: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }

    body.aboutPage .aboutHero .aboutHeroCopy {
        width: 100% !important;
        max-width: 360px !important;
        min-width: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    body.aboutPage .aboutHero .aboutHeroText {
        width: 100% !important;
        max-width: 340px !important;
        font-size: 17px !important;
        line-height: 1.55 !important;
        box-sizing: border-box !important;
    }

    body.aboutPage .aboutHero .aboutHeroImage {
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-image: url("img/backgrounds/john-mulholland-mobile-hero.jpg") !important;
        background-size: 100% 100% !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        opacity: 1 !important;
    }

    /* GALLERY — landscape main image, two visible vertical thumbnails */
    .archiveGalleryShell {
        grid-template-columns: minmax(0, 1fr) 112px;
        gap: 14px;
        max-width: 94%;
        align-items: start;
    }

    .archiveThumbColumn {
        width: 112px;
    }

    .archiveThumbViewport {
        height: 136px;
        overflow: hidden;
    }

    .archiveThumbRail {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .archiveGalleryMain {
        transform: none !important;
    }

    .archiveGalleryMain img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: 136px;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center center;
    }

    .archiveGalleryMain figcaption {
        transform: none !important;
        margin-top: 10px;
    }

    .archiveGalleryNote {
        max-width: 88%;
        margin-top: 24px;
        font-size: 13px;
        line-height: 1.6;
    }
}

/* =========================================================
   ABOUT HERO — iPAD / TABLET LANDSCAPE NAV-HERO CORRECTION
   Scoped only to About page hero.
   Mirrors the press page approach without changing body layout.
   ========================================================= */

@media (min-width: 768px) and (max-width: 1366px) {

    body.aboutPage .aboutHero {
        padding-top: 0 !important;
    }

    body.aboutPage .aboutHeroImage {
        background-position: center 18% !important;
    }

    body.aboutPage .aboutHeroInner {
        padding-top: 132px !important;
    }
}

