:root {
    --about-cyan: #13c9ee;
    --about-green: #14d7a8;
    --about-ink: #000000;
    --about-panel: #0b141a;
    --about-line: rgba(255, 255, 255, .12);
    --about-muted: #aab8c2;
}

.about-page {
    background: var(--about-ink);
    color: #fff;
    overflow: hidden
}
.about-btn i{
    display: none;
}

.about-page .container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto
}

.about-eyebrow {
    margin: 0 0 10px ! important;
    color: var(--about-cyan);
    font-size: .8rem;
    font-weight: 400;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 750;
    text-decoration: none;
    transition: .25s ease
}

.about-btn:hover {
    transform: translateY(-2px);
    color: #000;
}

.about-btn--ghost-light {
    display: none;
}

.about-btn--primary {
    background: linear-gradient(135deg, var(--about-cyan), var(--about-green));
    color: #031014
}

.about-btn--ghost {
    border-color: rgba(255, 255, 255, .38);
    color: #fff;
    background: rgba(0, 0, 0, .18);
    backdrop-filter: blur(8px)
}

.about-hero {
    position: relative;
    height: clamp(620px, 82vh, 650px);
    /* min-height: 620px; */
    background: #020608
}

.about-hero__track,
.about-hero__slide,
.about-hero__media,
.about-hero__media img,
.about-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.about-hero__slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s
}

.about-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1
}

.about-hero__slide.is-actionable {
    cursor: pointer
}

.about-hero__slide--image .about-hero__content {
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 110px;
    pointer-events: none
}

.about-hero__slide--image .about-actions {
    pointer-events: auto
}

.about-hero__slide--image .about-btn {
    box-shadow: 0 12px 36px rgba(0, 0, 0, .28)
}

.about-hero__media img {
    object-fit: cover;
    object-position: var(--about-focal, center)
}

.about-hero__shade {
    background: linear-gradient(90deg, rgba(2, 7, 10, .96) 0%, rgba(2, 7, 10, .76) 46%, rgba(2, 7, 10, .2) 75%), linear-gradient(0deg, rgba(2, 7, 10, .8), transparent 45%)
}

.about-hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 70px
}

.about-hero h1 {
    max-width: 660px;
    margin: 0;
    line-height: 1.01;
    letter-spacing: -.05em;
}

.about-hero__lead {
    max-width: 680px;
    margin: 14px 0 32px !important;
    color: #d8e1e6;
    font-size: clamp(1rem, 1.5vw, 1rem);
    line-height: 1.7;
}

.about-hero__controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 58px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px
}

.about-hero__controls>button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: rgba(4, 10, 14, .65);
    color: #fff
}

.about-hero__dots {
    display: flex;
    gap: 7px
}

.about-hero__dots button {
    width: 26px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, .3)
}

.about-hero__dots button.is-active {
    width: 48px;
    background: var(--about-cyan)
}

.about-hero__scroll {
    position: absolute;
    z-index: 4;
    right: max(20px, calc((100% - 1180px)/2));
    bottom: 66px;
    color: #d9e3e8;
    text-decoration: none;
    font-size: .86rem
}

/* .about-section {
    padding: clamp(78px, 9vw, 130px) 0
} */

.about-heading {
    max-width: 820px;
    margin-bottom: 52px
}

.about-heading h2,
.about-method h2,
.about-trust h2,
.about-final h2 {
    margin: 0;
    color: #fff;
    /* font-size: clamp(2rem, 4vw, 3.8rem); */
    line-height: 1.08;
    /* letter-spacing: -.04em */
}

.about-heading>p:last-child,
.about-method__intro>p,
.about-final p {
    margin: 22px 0 0;
    color: var(--about-muted);
    font-size: 1.08rem;
    line-height: 1.75
}

.about-heading--row {
    max-width: none;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: end
}

.about-heading--row>p {
    margin: 0 !important
}

.about-challenge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.about-challenge-grid article,
.about-expertise-grid article {
    position: relative;
    padding: 34px;
    border: 1px solid var(--about-line);
    border-radius: 18px;
    background: linear-gradient(60deg, rgb(0 0 0 / 88%), rgb(2 6 8 / 88%));
    transition: .25s
}

.about-challenge-grid article:hover,
.about-expertise-grid article:hover {
    border-color: rgba(19, 201, 238, .5);
    transform: translateY(-5px)
}

.about-challenge-grid span {
    position: absolute;
    right: 24px;
    top: 20px;
    color: rgba(255, 255, 255, .25);
    font-weight: 800
}

.about-challenge-grid i {
    color: var(--about-muted);
    font-size: 1.6rem
}

.about-challenge-grid h3 {
    margin: 34px 0 12px;
    font-size: 1.35rem
}

.about-challenge-grid p,
.about-expertise-grid p,
.about-principles p {
    margin: 0;
    line-height: 1.7
}

.about-challenge-grid p,
.about-expertise-grid p {
    color: var(--about-muted);
}

.about-principles p {
    color: #142430;
}

.about-method {
    background: linear-gradient(135deg, #07131a, #0b2029)
}

.about-split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(50px, 8vw, 120px);
    align-items: start
}

.about-method__intro {
    position: sticky;
    top: 120px
}

.about-text-link,
.about-expertise-grid a {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    margin-top: 28px;
    color: var(--about-cyan);
    font-weight: 700;
    text-decoration: none
}

.about-steps {
    list-style: none;
    margin: 0;
    padding: 0
}

.about-steps li {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-top: 1px solid var(--about-line)
}

.about-steps li:last-child {
    border-bottom: 1px solid var(--about-line)
}

.about-steps span {
    color: var(--about-cyan);
    font-weight: 800
}

.about-steps h3 {
    margin: 0 0 8px;
    font-size: 1.3rem
}

.about-steps p {
    margin: 0;
    color: var(--about-muted)
}

.about-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.about-expertise-grid article {
    min-height: 310px;
    display: flex;
    flex-direction: column
}

.about-expertise__top {
    display: flex;
    justify-content: space-between;
    color: var(--about-muted);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .12em
}

.about-expertise-grid img {
    width: 100%;
    height: 62px;
    margin: 34px 0 28px;
    object-fit: contain;
    object-position: left center
}

.about-expertise-grid a {
    margin-top: auto;
    display: none;
}

/* .about-trust {
    background: #f4f7f8;
    color: #071017
} */

/* .about-trust h2 {
    color: #071017
} */

.about-principles {
    display: grid;
    gap: 14px
}

.about-principles article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid #dbe4e8;
    border-radius: 16px;
    background: #fff
}

.about-principles i {
    color: #079fc0;
    font-size: 1.35rem
}

.about-principles h3 {
    margin: 0 0 7px;
    color: #071017;
    font-size: 1.12rem
}

/* .about-page .clients {
    padding: 75px 0;
    background: #f4f7f8
} */

.about-page .clients .section-header {
    margin-bottom: 30px !important
}

.about-final {
    padding: clamp(70px, 8vw, 110px) 0;
    background: linear-gradient(120deg, #09a9cc, #14d7a8);
    color: #031014
}

.about-final .container {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 70px;
    align-items: center
}

.about-final .about-eyebrow,
.about-final h2 {
    color: #031014
}

.about-final p {
    color: rgb(3 16 20);
}

.about-final .about-actions {
    justify-content: flex-end
}

.about-btn--light {
    background: #fff;
    color: #071017
}

.about-btn--ghost-light {
    border-color: rgba(3, 16, 20, .35);
    color: #031014
}

@media(max-width:1024px) {

    .about-heading--row,
    .about-split,
    .about-final .container {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .about-method__intro {
        position: static
    }

    .about-challenge-grid,
    .about-expertise-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-final .about-actions {
        justify-content: flex-start
    }

    .about-hero__scroll {
        display: none
    }
}

@media(max-width:640px) {
    .about-page .container {
        width: min(100% - 28px, 1180px)
    }

    .about-hero {
        height: 760px;
        min-height: 700px
    }

    .about-hero__shade {
        background: linear-gradient(0deg, rgba(2, 7, 10, .97) 4%, rgba(2, 7, 10, .76) 68%, rgba(2, 7, 10, .32))
    }

    .about-hero__content {
        justify-content: flex-end;
        padding-bottom: 125px;
        padding-top: 100px
    }

    .about-hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.5rem)
    }

    .about-hero__lead {
        font-size: .98rem;
        line-height: 1.6;
        margin: 18px 0 24px
    }

    .about-actions,
    .about-btn {
        width: 100%
    }

    .about-hero__controls {
        bottom: 62px
    }

    .about-section {
        padding: 72px 0
    }

    .about-challenge-grid,
    .about-expertise-grid {
        grid-template-columns: 1fr
    }

    .about-heading {
        margin-bottom: 34px
    }

    .about-challenge-grid article,
    .about-expertise-grid article {
        padding: 26px
    }

    .about-expertise-grid article {
        min-height: 280px
    }

    .about-final .about-actions {
        width: 100%
    }
}

@media(max-width:1024px) {

    .about-challenge-grid,
    .about-expertise-grid, .about-principles {
        display: flex;
        grid-template-columns: none;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        padding: 4px max(20px, calc((100vw - 100%)/2)) 18px;
        margin-inline: calc(-1 * max(20px, calc((100vw - 100%)/2)));
    }

    .about-challenge-grid::-webkit-scrollbar,
    .about-expertise-grid::-webkit-scrollbar,
    .about-principles::-webkit-scrollbar {
        display: none
    }

    .about-challenge-grid article,
    .about-expertise-grid article,
    .about-principles article{
        flex: 0 0 min(58vw, 390px);
        scroll-snap-align: start;
    }
    .about-principles article {
        padding: 15px;
        display: flex;
        flex-direction: column;
    }
    
    .about-steps {
        max-height: 150px;
        overflow-y: auto;
        scroll-snap-type: y mandatory;
        scroll-behavior: smooth;
        overscroll-behavior-y: contain;
        scrollbar-width: none;
    }

    .about-steps::-webkit-scrollbar {
        display: none
    }

    .about-steps li {
        min-height: 145px;
        align-content: center;
        scroll-snap-align: start;
    }
}

@media(max-width:640px) {

    .about-challenge-grid article,
    .about-expertise-grid article {
        flex-basis: 84vw;
        min-height: 275px
    }

    .about-steps {
        max-height: 138px
    }

    .about-steps li {
        min-height: 134px;
        padding: 20px 4px
    }
}

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

    .about-hero__slide,
    .about-btn,
    .about-challenge-grid article,
    .about-expertise-grid article {
        transition: none !important
    }
}

/* Format commun des espaces de communication en tete de page. */
@media (min-width: 992px) {
    .about-hero {
        height: clamp(360px, 38dvh, 400px);
        min-height: 360px;
    }

    .about-hero__content {
        padding-top: 34px;
        padding-bottom: 58px;
    }

    .about-hero__controls {
        bottom: 18px;
    }

    .about-hero__scroll {
        bottom: 26px;
    }
}

@media (min-width: 641px) and (max-width: 991.98px) {
    .about-hero {
        height: 360px;
        min-height: 360px;
    }

    .about-hero__content {
        padding-top: 34px;
        padding-bottom: 62px;
    }

    .about-hero__controls {
        bottom: 16px;
    }
}

@media (max-width: 640px) {
    .about-hero {
        height: 390px;
        min-height: 390px;
    }

    .about-hero__content {
        justify-content: center;
        padding-top: 34px;
        padding-bottom: 15px;;
    }
    .about-eyebrow {
    display: none;
}

    .about-hero h1 {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    .about-hero__lead {
        display: -webkit-box;
        margin: 12px 0 18px !important;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        font-size: .88rem;
        line-height: 1.48;
    }

    .about-btn {
        min-height: 42px;
    }

    .about-hero__controls {
        bottom: 15px;
    }
}

/*
 * Format unique des bannieres de communication gerees depuis le dashboard.
 * Le conteneur du composeur et le carrousel partagent exactement la meme
 * hauteur afin qu'une image importee ne puisse jamais agrandir sa section.
 */
@media (min-width: 992px) {
    .managed-page-section[data-section-template="about-hero-carousel.php"] {
        height: clamp(360px, 38dvh, 400px);
        min-height: 360px;
        max-height: 400px;
        overflow: hidden;
    }
}

@media (min-width: 641px) and (max-width: 991.98px) {
    .managed-page-section[data-section-template="about-hero-carousel.php"] {
        height: 360px;
        min-height: 360px;
        max-height: 360px;
        overflow: hidden;
    }
}

@media (max-width: 640px) {
    .managed-page-section[data-section-template="about-hero-carousel.php"] {
        height: 390px;
        min-height: 390px;
        max-height: 390px;
        overflow: hidden;
    }
}

.managed-page-section[data-section-template="about-hero-carousel.php"]>.about-hero {
    width: 100%;
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100%;
    overflow: hidden;
}