@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --ff: 'Montserrat', sans-serif;
    --ff-title: 'Playfair Display', serif;

    --clr-primary-hsl: 56, 100%, 50%;
    --clr-accent-hsl: 27, 91%, 49%;
    --clr-400-hsl: 0, 0%, 64%;
    --clr-600-hsl: 0, 0%, 24%;
    --clr-bg-hsl: 0, 0%, 10%;
    --clr-txt-hsl: 0, 0%, 100%;

    --clr-primary: hsl(var(--clr-primary-hsl));
    --clr-accent: hsl(var(--clr-accent-hsl));
    --clr-bg: hsl(var(--clr-bg-hsl));
    --clr-txt: hsl(var(--clr-txt-hsl));
    --clr-400: hsl(var(--clr-400-hsl));
    --clr-600: hsl(var(--clr-600-hsl));

    --br: 0.8rem;

    /* hsl(var(--color-primary-hsl)) / hsla(var(--color-primary-hsl), 0.5) */
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-txt);
    font-size: 1.125rem;
    font-family: var(--ff);
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
}

:where(a) {
    color: currentColor;
}

::selection {
    background-color: hsla(var(--clr-accent-hsl), 0.75);
    color: var(--clr-bg);
}
.box-accent ::selection {
    background-color: hsla(var(--clr-primary-hsl), 0.8);
    color: var(--clr-600);
}

input,
textarea {
    font-size: 1rem;
    font-family: var(--ff);
    color: currentColor;
}

.pb0 {
    padding-bottom: 0 !important;
}
.pb2 {
    padding-bottom: 2rem !important;
}
.mb0 {
    margin-bottom: 0 !important;
}
.mb2 {
    margin-bottom: 2rem !important;
}
.profil-padding {
    padding: 3rem 0;
}

.br {
    border-radius: var(--br);
    overflow: hidden;
}

.fadeIn {
    opacity: 0;
}
.fadeIn.fadedIn {
    opacity: 1;
}

.titre {
    font-family: var(--ff-title);
    font-size: 3rem;
    font-weight: normal;
    line-height: 1;
}
.titre.titre-medium {
    font-size: 2.5rem;
}
.titre.titre-small {
    font-size: 2rem;
}
.titre.titre-smaller {
    font-size: 1.5rem;
}
.titre.titre-alt {
    font-weight: bold;
    font-family: var(--ff);
}
.sous-titre {
    font-family: var(--ff);
    font-size: 1.125rem;
    color: var(--clr-400);
    font-weight: 500;
}
.sous-titre.wborder {
    padding: 1rem 0;
    border-bottom: 1px solid var(--clr-400);
}
.titre-p {
    font-size: 1.125rem;
    font-weight: bold;
}

.bouton {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    width: max-content;
    gap: 0.8rem;
    font-size: 1rem;
    font-family: var(--ff);
    font-weight: 500;
    color: var(--clr-txt);
    border: 1px solid currentColor;
    border-radius: var(--br);
    padding: 0.9rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
}
.bouton:hover,
.bouton.bouton-filled,
.standard-form fieldset input[type='checkbox']:checked + label {
    background-color: var(--clr-txt);
    border-color: var(--clr-txt);
    color: var(--clr-accent);
}
.bouton.bouton-filled:hover,
.bouton.bouton-accent.bouton-filled:hover {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-bg);
}

.bouton.bouton-alt {
    color: var(--clr-bg);
}
.bouton.bouton-alt:hover,
.bouton.bouton-alt.bouton-filled {
    background-color: var(--clr-bg);
    border-color: var(--clr-bg);
    color: var(--clr-primary);
}

.bouton.bouton-primary {
    color: var(--clr-primary);
}
.bouton.bouton-primary:hover,
.bouton.bouton-primary.bouton-filled {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-txt);
}

.bouton.bouton-accent {
    color: var(--clr-accent);
}
.bouton.bouton-accent:hover,
.bouton.bouton-accent.bouton-filled,
.standard-form fieldset input[type='checkbox']:checked + label {
    background-color: var(--clr-accent);
    border-color: var(--clr-accent);
    color: var(--clr-txt);
}

.bouton img,
.bouton svg {
    width: 1.325rem;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    fill: currentColor;
}

.wrap {
    width: 100%;
    padding-inline: 1.5rem;
}

.bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--br);
    margin: 1.5rem 0;
}
.bento.gap3 {
    gap: calc(var(--br) * 3);
}
.bento:has(.team-card) {
    gap: calc(var(--br) * 2);
}
.box-bento-full {
    grid-column: 1 / -1;
    aspect-ratio: auto !important;
}
.box-bento-full:last-child:first-child {
    aspect-ratio: 16/5 !important;
}

.bento.bento-layout {
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(2, 1fr);
}
.bento.bento-layout .box,
.bento.bento-third .box,
.bento.bento-5-layout .box {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 1rem;
    font-size: 95%;
    font-family: var(--ff-title);
    padding-top: 2.5rem;
}
.bento.bento-layout > .box:first-child {
    grid-column: 1 / span 6;
    grid-row: 1 / span 2;
}
.bento.bento-layout > .box:nth-child(2) {
    grid-column: 7 / span 2;
    grid-row: 1;
}
.bento.bento-layout > .box:nth-child(3) {
    grid-column: 9 / span 2;
    grid-row: 1;
}
.bento.bento-layout > .box:nth-child(4):not(:has(+ .box)) {
    grid-column: 7 / span 4;
    grid-row: 2;
    justify-content: end;
}
.bento.bento-layout > .box:nth-child(4):has(+ .box) {
    grid-column: 7 / span 2;
    grid-row: 2;
    aspect-ratio: 1;
}
.bento.bento-layout > .box:nth-child(5) {
    grid-column: 9 / span 2;
    grid-row: 2;
    aspect-ratio: 1;
}

.bento-5-layout {
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: repeat(3, 1fr);
}
.bento.bento-5-layout > .box:first-child {
    grid-column: 1 / span 6;
    grid-row: 1 / span 3;
}
.bento.bento-5-layout > .box:nth-child(2) {
    grid-column: 7 / span 4;
    grid-row: 1;
}
.bento.bento-5-layout > .box:nth-child(3) {
    grid-column: 11 / span 4;
    grid-row: 1;
}
.bento.bento-5-layout > .box:nth-child(4) {
    grid-column: 7 / span 4;
    grid-row: 2;
}
.bento.bento-5-layout > .box:nth-child(5) {
    grid-column: 11 / span 4;
    grid-row: 2;
}
.bento.bento-5-layout > .box:nth-child(6) {
    grid-column: 7 / span 8;
    grid-row: 3;
}

.bento.bento-third {
    grid-template-columns: repeat(3, 1fr);
}

.bento.bento-quarter {
    grid-template-columns: repeat(4, 1fr);
}

.bento.bento-fifth {
    grid-template-columns: repeat(5, 1fr);
}

.box {
    --p: 1rem;
    border-radius: var(--br);
    padding: var(--p);
}
.box:not(.sticky-panel),
.team-card {
    translate: 0 1.5rem;
    opacity: 0;
    transition:
        translate 1s 0.2s ease,
        opacity 0.7s 0.2s ease;
}
.box.placed,
.team-card.placed {
    translate: 0 0;
    opacity: 1;
}
.box.box-primary {
    background-color: var(--clr-primary);
    color: var(--clr-bg);
}
.box.box-accent {
    background-color: var(--clr-accent);
    color: var(--clr-txt);
}
.box.box-outline {
    border: 0.2rem solid var(--clr-600);
}
.box.box-reverse {
    color: var(--clr-bg);
}
.box.box-txt {
    background-color: var(--clr-txt);
    color: var(--clr-bg);
}
.box.box-bg {
    background-size: cover;
    background-position: center;
}
.box.box-bg.box-real {
    aspect-ratio: 16/9;
    background-size: 100%;
    transition:
        background-size 3s ease-out,
        translate 1s 0.2s ease,
        opacity 0.7s 0.2s ease;
}
.box.box-bg.box-real:has(.real-pictures):hover,
.box.box-bg.box-real:has(.bouton:hover) {
    background-size: 115%;
    cursor: zoom-in;
}
.box.box-bg-overlay {
    position: relative;
    overflow: hidden;
}
.box-bg-overlay > * {
    position: relative;
    z-index: 2;
}
.box.box-bg-overlay::after {
    content: '';
    --a: 0.5;
    position: absolute;
    inset: 0;
    background-color: hsla(var(--clr-bg-hsl), var(--a));
    pointer-events: none;
    z-index: 1;
    transition: all 0.8s;
}
.box.box-reverse.box-bg-overlay::after {
    background-color: hsla(var(--clr-txt-hsl), var(--a));
}
.box.box-bg-overlay.box-real:has(.real-pictures):hover::after,
.box.box-bg.box-real:has(.bouton:hover)::after,
.galerie .box.box-bg-overlay:hover::after {
    transition: all 1.6s;
    --a: 0.75;
}

.box.box-bg-overlay.box-real:has(.real-pictures)::before,
.galerie .box.box-bg-overlay::before {
    content: '';
    position: absolute;
    top: var(--p);
    right: var(--p);
    width: 1.25rem;
    aspect-ratio: 1;
    background-image: url(../images/expand.svg);
    background-size: cover;
    filter: invert(1);
    opacity: 0;
    z-index: 5;
    transition: all 0.8s;
}
.box.box-bg-overlay.box-real:has(.real-pictures):hover::before,
.galerie .box.box-bg-overlay:hover::before {
    opacity: 1;
}

.box.box-titre {
    position: relative;
}
.box.box-titre > div {
    position: absolute;
    bottom: 0;
    min-height: calc(50% + 3rem);
    width: 100%;
    left: 0;
    padding: 0 1rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    gap: 1rem;
}
.box.box-titre.box-titre-2 > div {
    min-height: 0;
}
.box.box-titre .titre {
    max-width: 26ch;
    margin-left: auto;
    margin-right: auto;
}
.box.box-titre.box-titre-2 .titre {
    margin-bottom: 1rem;
}
.box.box-titre .bouton {
    margin-left: auto;
    margin-right: auto;
}

/* header */
.menu-trigger {
    display: none;
}

.header-primary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 2rem;
}

.header-primary > .wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3.5rem;
}

.logo-header {
    width: 10rem;
    flex-shrink: 0;
}

.nav-primary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
}

.nav-primary ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

.nav-primary a:not(.bouton) {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    text-shadow: 0px 0px 0.5rem var(--clr-bg);
    transition:
        all 0.3s,
        opacity 0.7s;
}
.nav-primary a.selected:not(.bouton) {
    color: var(--clr-accent);
}
.nav-primary a:not(.bouton):active {
    color: var(--clr-primary);
}

.nav-primary:has(a:not(.switchlink):not(.bouton):hover) a:not(:hover):not(.bouton) {
    opacity: 0.4;
}
.nav-primary a:not(.bouton):hover {
    text-shadow: 0px 0px 0.5rem black;
}
.nav-primary a.switchlink:hover {
    color: var(--clr-accent);
}

/* Footer */
.cta-box-wrap + .primary-footer {
    margin-top: 0;
}
.primary-footer {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: end;
    padding-bottom: 1.5rem;
    margin-top: 4rem;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-inner a {
    text-decoration: none;
    transition: all 0.3s;
}
.footer-inner a:hover {
    color: var(--clr-accent);
}
.footer-inner li {
    list-style-type: none;
    margin-bottom: 1.325rem;
}
.footer-inner h3 {
    margin-bottom: 1.825rem;
}

.footer-inner address {
    font-style: normal;
    line-height: 1.25;
    margin-bottom: 1.825rem;
}

.footer-inner .socials {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1.825rem;
}
.footer-inner .socials a svg {
    width: 2rem;
    aspect-ratio: 1;
}

.copy-wrap {
    width: 100%;
    margin-top: 6rem;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5rem;
    font-size: 0.85rem;
    color: var(--clr-400);
}

.footer-ctas {
    display: grid;
    gap: 1rem;
}

.footer-ctas .box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    font-size: 1rem;
    line-height: 1.4;
}

.footer-ctas .bouton {
    width: 100%;
    justify-content: center;
    margin-top: 3rem;
}

.footer-ctas .img {
    width: 10.5rem;
}

.footer-ctas .box > div:first-child {
    width: calc(100% - 11rem);
}

.footer-ctas .titre {
    margin-bottom: 1.5rem;
}

/* Hero */
.hero-home {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 100dvh;
}
.hero-home video {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.6;
    transition:
        height 0s,
        opacity 0s;
}
.hero-logo {
    position: absolute;
    top: 57.5%;
    left: 50%;
    translate: -50% -50%;
    width: 20rem;
    z-index: 2;
}
.hero-logo svg {
    width: 100%;
}
.hero-home-content {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    translate: -50% 0;
    width: 100%;
    text-align: center;
    max-width: 70ch;
    text-shadow: 0px 0px 1rem var(--clr-bg);
    z-index: 2;
}
.hero-home-content .titre {
    margin-bottom: 1.5rem;
}
.nohero {
    padding-top: 14rem;
}
.nohero:has(.content-wrap) {
    padding-top: 7rem;
}
.hero {
    --pb: 7rem;
    text-align: center;
    padding-top: 15rem;
}
.hero .bouton {
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.hero:not(:has(.hero-img)) {
    padding-bottom: var(--pb);
}

.hero-img {
    aspect-ratio: 3/1;
    width: 100%;
    object-fit: cover;
    object-position: center;
    margin-top: var(--pb);
}

/* Sticky module */
.sticky-module {
    position: relative;
    top: 0;
    padding-bottom: 10rem;
}
body .sticky-panel {
    --basetop: 2rem;
    border: 1px solid var(--clr-bg);
    position: relative;
    top: var(--basetop);
    padding: 0 !important;
    margin-bottom: -7rem;
}

.sticky-panel.stacked::after {
    --a: 0.75;
}
.sticky-panel .content-wrap > div:nth-child(2) {
    transition:
        opacity 0.6s,
        translate 0.6s;
}
.sticky-panel.stacked:not(:last-child) .content-wrap > div:nth-child(2) {
    opacity: 0;
    translate: 0 5rem;
    transition:
        opacity 0.6s,
        translate 2s;
}
/* .sticky-panel:nth-child(2){
    translate: 0 6.5rem;
}
.sticky-panel:nth-child(3){
    translate: 0 14rem;
}
.sticky-panel:nth-child(4){
    translate: 0 22.5rem;
} */

.sticky-panel .content-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: start;
    padding-top: 2.5rem;
    padding-bottom: 30vh;
    gap: 1rem;
}

.sticky-panel h2.titre {
    translate: 0 -0.625rem;
}

.sticky-panel div:nth-child(3) .bouton {
    margin-left: auto;
}

.stats-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 5rem;
    font-size: 0.9rem;
}

.stat-num {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

/* Modal Réalisations */
.real-modal {
    position: fixed;
    inset: 0;
    background-color: hsla(var(--clr-bg-hsl), 0.9);
    z-index: 999;
    display: none;
}
.real-modal > div {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}
.real-modal svg {
    transition: all 0.3s;
}
.real-modal svg:hover {
    color: var(--clr-accent);
}
.rm-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    cursor: pointer;
}

.rm-slider-wrap > .rm-slider > .rm-slide:not(.startSlide) {
    display: none;
}
.rm-slide img,
.rm-slide video {
    max-width: 90vw;
    max-height: calc(100dvh - 12rem);
    margin-left: auto;
    margin-right: auto;
}
.rm-legend {
    text-align: center;
    padding: 0.325rem;
    font-weight: normal;
    font-size: 0.85rem;
}
.rm-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    translate: -50% 0;
}
.rm-prev,
.rm-next {
    width: 2rem;
}
.rm-active,
.rm-active {
    color: var(--clr-accent) !important;
}
.rm-prev {
    scale: -1 1;
}
.rm-fraction {
    min-width: 4rem;
    text-align: center;
    font-size: 1rem;
}

/* Timeline */
.timeline-controls {
    --pb: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: var(--pb);
    border-bottom: 1px solid var(--clr-txt);
    margin-bottom: 3.5rem;
}

.timeline-pager {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
}

.timeline-date {
    text-decoration: none;
    position: relative;
    cursor: pointer;
}
.timeline-date::after {
    content: '';
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    border: 1px solid var(--clr-txt);
    background-color: var(--clr-bg);
    position: absolute;
    bottom: calc(-1 * var(--pb));
    translate: 0 50%;
    left: 0;
    transition: all 0.3s;
}

.timeline-date:not(.current):hover::after {
    background-color: var(--clr-400);
}
.timeline-date.current::after,
.timeline-date:not(.current):active::after {
    background-color: var(--clr-txt);
}

.timeline-prev,
.timeline-next {
    width: 0.6rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s;
}
.timeline-prev::after,
.timeline-next::after {
    content: '';
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
.timeline-prev:hover,
.timeline-next:hover {
    color: var(--clr-accent);
}
.timeline-next {
    scale: -1 1;
}

.timeline-content {
    border-bottom: 1px solid var(--clr-txt);
    padding-bottom: 1.5rem;
}
.timeline-slide {
    display: grid;
    gap: 1rem;
    grid-template-columns: 3fr 7fr 8fr;
}
.timeline-slide .titre.titre-alt {
    font-weight: 400;
}
.timeline-slide .titre {
    margin-bottom: 1.5rem !important;
    line-height: 1.25;
}

.timeline-slide > div:nth-child(2) {
    border-left: 1px solid var(--clr-txt);
    padding-left: 2.5rem;
    padding-right: 1rem;
}

/* Nav réalisations */
.real-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 6rem;
}

/* Formulaires */
.standard-form {
    border: 3px solid var(--clr-600);
    border-radius: var(--br);
    padding: 2rem;
    width: 100%;
}

.standard-form .titre:has(+ hr) {
    text-align: center;
    margin-bottom: 2.5rem !important;
}
.standard-form .titre-small:has(+ .inner-form) {
    margin-bottom: 2.5rem;
}
.standard-form .titre.titre-smaller {
    margin-bottom: 1.5rem;
}
.standard-form .titre.titre-smaller + p {
    margin-top: 0.5rem;
}
.inner-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}
.field {
    position: relative;
}
.field.field-full {
    grid-column: 1 / -1;
}

.field input,
.field textarea {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 0;
    background-color: transparent;
    border-bottom: 1px solid var(--clr-600);
    padding: 1.125rem 0 0.75rem;
    display: block;
    width: 100%;
    color-scheme: dark;
}
.field input:focus,
.field textarea:focus {
    outline: none;
    border-bottom: 1px solid var(--clr-txt);
}

.field textarea {
    min-height: 8rem;
    resize: vertical;
}

.field label {
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
    transition: all 0.3s;
}
.field label:has(+ textarea) {
    top: 1.25rem;
}
.field label:has(+ input:focus),
.field label:has(+ input:not(:placeholder-shown)),
.field label:has(+ textarea:focus),
.field label:has(+ textarea:not(:placeholder-shown)) {
    font-size: 0.6rem;
    top: 0;
    translate: 0 -0.25rem;
}

.standard-form fieldset {
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.standard-form fieldset input[type='checkbox'] {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.standard-form fieldset input[type='checkbox']:checked + label {
    cursor: pointer;
}
.submitfile-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}
.filefield {
    position: relative;
    display: flex;
    gap: 2rem;
    align-items: center;
}
.filefield input {
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    opacity: 0;
}
.filefield label.bouton.bouton-filled {
    color: var(--clr-bg);
    cursor: pointer;
}

.pagecontact .standard-form.reverse-form {
    border: none;
    padding: 0;
    margin-top: 3rem;
}

.pagecontact .field {
    margin-bottom: 1rem;
}

.reverse-form .field input,
.reverse-form .field textarea {
    border-bottom: 1px solid var(--clr-400);
}
.reverse-form .field input:focus,
.reverse-form .field textarea:focus {
    border-bottom: 1px solid var(--clr-bg);
}
.pagecontact .standard-form.reverse-form input:-webkit-autofill {
	background-color: #FFF !important;
	color: currentColor !important;
	-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #000 !important;
}	
.pagecontact .confirm-message {
	color: #008000;
    padding: 50px 0 200px 0;
    font-weight: bold;
    font-size: 1.2rem;
}
.formsoumission .confirm-message {
	padding: 50px 0;
    font-weight: bold;
    font-size: 1.2rem;
}
/* Content */
.cta-box-wrap {
    padding: 6rem 12rem 7rem;
}

.cta-box-wrap .box {
    padding: 4rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cta-box-wrap .box .titre {
    max-width: 25ch;
}

.content-wrap {
    padding: 6rem 10rem;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
}
.content-wrap.tac {
    text-align: center;
}
.content-wrap.tac .bouton,
.content-wrap.tac > * {
    margin-left: auto;
    margin-right: auto;
}

.content-wrap .titre,
.content-wrap .titre:has(+ .narrow-content),
.content-wrap .titre:last-child {
    margin-bottom: 2rem;
}
.content-wrap .titre {
    margin-bottom: 4rem;
}
.content-wrap .sous-titre {
    margin-bottom: 1rem;
}

.content-wrap p {
    line-height: 1.5;
}
.content-wrap p:not(:last-child) {
    margin-bottom: 1.5rem;
}

.content-wrap hr,
.pagecontact hr {
    margin: 1.5rem 0;
    border: 0;
    background-color: var(--clr-400);
    height: 1px;
    width: 100%;
}
.pagecontact hr {
    background-color: var(--clr-600);
}
.content-wrap hr.hr-padding {
    margin: 4.5rem 0;
}

.list-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.content-wrap ul ::marker {
    font-size: 0.8rem;
}
.content-wrap ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}
.content-wrap ul li {
    padding-left: 0.5rem;
    margin-bottom: 0.25rem;
}

.narrow-content {
    max-width: 50ch;
}
.content-wrap.tac .narrow-content {
    max-width: 65ch;
}

.box-real .real-det {
    position: absolute;
    bottom: var(--p);
    left: var(--p);
    right: var(--p);
}
.real-det .titre {
    margin-bottom: 1.5rem;
}
.real-det p {
    font-weight: 600;
    line-height: 1.4;
}
.box-tags {
    position: absolute;
    left: var(--p);
    right: calc(var(--p) + 1.75rem);
    top: var(--p);
    display: flex;
    flex-wrap: wrap;
    gap: 0.325rem;
}
.box-tags .tag {
    font-size: 0.8rem;
    padding: 0.5rem 0.625rem;
    border: 1px solid currentColor;
    border-radius: calc(var(--br) / 1.5);
}
.real-pictures {
    display: none !important;
}

.team-card {
    position: relative;
    z-index: 100;
    transition-delay: 0.2s;
}
.team-card:nth-child(4n + 2) {
    transition-delay: 0.3s;
}
.team-card:nth-child(4n + 3) {
    transition-delay: 0.4s;
}
.team-card:nth-child(4n + 4) {
    transition-delay: 0.5s;
}

.team-card img + div {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 1rem 0;
}

.team-card svg {
    width: 1.8rem;
}

.team-card svg:hover {
    color: var(--clr-accent);
    cursor: pointer;
    transform-origin: center;
    transition: all 0.3s;
}
.team-card.open svg {
    rotate: 45deg;
}
.full-profile {
    position: absolute;
    max-height: 0;
    overflow: hidden;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0rem 1rem;
    border-radius: var(--br);
    background-color: var(--clr-bg);
    translate: 0 100%;
    z-index: 9;
    transition:
        padding 0.4s,
        all 1s;
}
.full-profile svg {
    display: none;
}
.team-card.open .full-profile {
    max-height: 150%;
    padding: 1.5rem 1rem;
}

.team-card.open + .team-card + .team-card + .team-card + .team-card {
    opacity: 0.1;
    transition: all 0.3s !important;
}

.team-card .titre + p {
    margin-top: 0.5rem;
    font-weight: normal;
}

.clients-slider-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--br) * 2);
    margin-left: auto;
    margin-right: auto;
    max-width: 180rem;
    margin-bottom: 4rem;
}

.clients-slider-wrap > .clients-slider {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-content: center;
    gap: 1rem;
}

.clients-slide {
    background-color: var(--clr-txt);
    aspect-ratio: 1;
    padding: 1rem;
    display: grid;
    place-items: center;
}

.clients-slider-prev,
.clients-slider-next {
    width: 1.325rem;
    flex-shrink: 0;
    transition: all 0.3s;
}
.clients-slider-prev:hover,
.clients-slider-next:hover {
    color: var(--clr-accent);
}
.clients-slider-prev {
    scale: -1 1;
}

.pagecontact {
    display: grid;
    grid-template-columns: 2.5fr 3fr 3fr;
    gap: 1rem;
}

.box.box-map {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.box-map iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 200%;
    height: 200%;
}

.pagecontact .sous-titre + p {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.icon-link svg {
    width: 1.5rem;
    height: 1.625rem;
}

.pagecontact .socials {
    display: flex;
    gap: 0.625rem;
    align-items: center;
    justify-content: start;
    color: var(--clr-400);
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.pagecontact .socials svg {
    width: 2rem;
}

.pagecontact .socials a:hover {
    color: var(--clr-accent);
}
.pagecontact .titre {
    margin-bottom: 1.5rem;
}

.pagecontact .box {
    padding: 2rem;
}

.box-postes {
    margin-top: 5rem;
}

.box-postes h2 {
    text-align: center;
}

.titre-poste {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.titre-poste:hover {
    opacity: 0.75;
}

.titre-poste svg {
    width: 1.825rem;
    transform-origin: center;
    transition: all 0.3s;
}

.titre-poste.open svg {
    rotate: 45deg;
}

.titre-poste + div .bento {
    grid-auto-rows: auto;
}
.titre-poste + div {
    padding-top: 2rem;
    display: none;
}

.imgs-grid .box {
    aspect-ratio: 0.85;
}

.imgs-grid .box:nth-child(5n + 1),
.imgs-grid .box:nth-child(5n + 3),
.imgs-grid .box:nth-child(5n),
.galerie a:nth-child(4n + 1),
.galerie a:nth-child(4n + 3) {
    transform: translateY(-1.5rem);
}
.imgs-grid .box:nth-child(5n + 2),
.galerie a:nth-child(4n + 2) {
    transform: translateY(-3rem);
}

.galerie {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--br);
}

.galerie .box {
    padding: 0;
    color: var(--clr-txt);
    text-decoration: none;
    cursor: zoom-in;
}

.galerie .box-bg-overlay > img {
    z-index: 0;
}

.galerie .box img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 3s ease-out;
}
.galerie .box:hover img {
    scale: 1.15;
}

.galerie .box h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--p);
    color: var(--clr-txt);
}

.sendingmsg {
    position: fixed;
    background-color: var(--clr-accent);
    border-radius: var(--br);
    color: var(--clr-txt);
    padding: 2rem 4rem;
    top: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    font-weight: bold;
    opacity: 0;
    text-align: center;
    translate: 0 200%;
    transition: all 0.5s;
}
.sendingmsg.err {
    background-color: darkred;
}
.sendingmsg.show {
    opacity: 1;
    translate: 0 0;
}
.pagecontact .box:has(.sendingmsg.show:not(.err)) > *:not(.sendingmsg) {
    opacity: 0.75;
    filter: blur(2px);
}

@media screen and (max-width: 100rem) {
    body,
    .titre-p {
        font-size: 1rem;
    }
}
@media screen and (max-width: 87.5rem) {
    /* 1400 */
    .header-primary {
        padding-left: 0;
        padding-right: 0;
    }
    .header-primary > .wrap {
        gap: 2rem;
    }
    .logo-header {
        width: 8.5rem;
    }
    .nav-primary {
        gap: 1.25rem;
    }
    .nav-primary ul {
        gap: 1.25rem;
    }
    .hero-home-content {
        bottom: 2rem;
        max-width: 75ch;
    }
    .bento.bento-layout {
        grid-template-columns: repeat(12, 1fr);
    }
    .bento.bento-layout > .box:first-child {
        grid-column: 1 / span 6;
    }
    .bento.bento-layout > .box:nth-child(2) {
        grid-column: 7 / span 3;
    }
    .bento.bento-layout > .box:nth-child(3) {
        grid-column: 10 / span 3;
    }
    .bento.bento-layout > .box:nth-child(4):not(:has(+ .box)) {
        grid-column: 7 / span 6;
    }
    .bento.bento-layout > .box:nth-child(4):has(+ .box) {
        grid-column: 7 / span 3;
    }
    .bento.bento-layout > .box:nth-child(5) {
        grid-column: 10 / span 3;
    }
    .bento-layout .box.box-titre .titre {
        font-size: 2.125rem;
        line-height: 1.2;
    }

    .content-wrap {
        padding: 4rem 4rem;
    }

    .primary-footer {
        grid-template-columns: 2fr 1.325fr;
    }
    .footer-ctas .bouton {
        margin-top: 1.5rem;
    }
    .footer-ctas .titre.titre-small {
        font-size: 1.8rem;
    }
    .copy-wrap {
        gap: 3.5rem;
    }
    .hero {
        padding-top: 12rem;
    }
    .cta-box-wrap {
        padding: 3rem 5.5rem 4rem;
    }
    .clients-slider-wrap > .clients-slider {
        grid-template-columns: repeat(5, 1fr);
    }
    .pagecontact .box {
        padding: 1rem;
    }
    .pagecontact .standard-form.reverse-form {
        margin-top: 1rem;
    }
}
@media screen and (max-width: 75rem) {
    /* 1200 */
    .header-primary {
        padding: 1rem 0;
    }
    .nav-primary a:not(.bouton) {
        font-size: 0.9rem;
    }
    .bouton {
        font-size: 0.9rem;
        gap: 0.5rem;
        padding: 0.75rem 1.125rem;
    }
    .logo-header {
        width: 7.75rem;
    }
    .nav-primary,
    .nav-primary ul {
        gap: 1rem;
    }
    .header-primary > .wrap {
        padding-inline: 0.75rem;
    }
    .hero-logo {
        top: 50%;
        width: 16rem;
    }
    .bento.bento-layout .box,
    .bento.bento-third .box {
        padding-top: 1.25rem;
    }

    .sticky-panel .content-wrap {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .real-det .titre {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .primary-footer {
        gap: 2.5rem;
    }
    .footer-inner {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    .footer-ctas .box {
        font-size: 0.9rem;
    }
    .copy-wrap {
        gap: 2.25rem;
    }
    .footer-ctas .img {
        width: 8rem;
    }
    .footer-ctas .box > div:first-child {
        width: calc(100% - 8.5rem);
    }
    .footer-ctas .titre.titre-small {
        font-size: 1.625rem;
    }
    .hero {
        padding-top: 10rem;
        --pb: 4rem;
    }

    .cta-box-wrap {
        padding: 3rem 1.5rem 4rem;
    }
    .cta-box-wrap .box {
        padding: 4rem 2.5rem;
        gap: 1rem;
    }
    .real-nav {
        padding-bottom: 3rem;
    }
    .bento:has(.team-card) {
        gap: 1rem;
    }

    .titre {
        font-size: 2.25rem;
    }
    .content-wrap {
        padding: 3rem 3rem;
    }

    .titre.titre-smaller {
        font-size: 1.25rem;
    }

    .timeline-slide {
        grid-template-columns: 2fr 9fr 7fr;
    }
    .timeline-slide > div:nth-child(2) {
        padding-left: 2rem;
        padding-right: 0.75rem;
    }
    .sous-titre {
        font-size: 1rem;
    }
    .team-card .titre + p {
        margin-top: 0;
    }
    .titre.titre-smaller {
        font-size: 1.125rem;
    }
    .team-card.open .full-profile {
        padding: 1rem 0;
    }
    .team-card .full-profile {
        font-size: 0.8rem;
        padding-left: 0;
        padding-right: 0;
    }
    .pagecontact {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media screen and (max-width: 64rem) {
    /* 1024 */
    .nav-primary {
        --w: 20rem;
        position: absolute;
        display: block;
        flex-direction: column;
        top: 0.5rem;
        right: 0.5rem;
        border-radius: var(--br);
        background: var(--clr-primary);
        color: var(--clr-bg);
        padding: 1rem;
        padding-bottom: 1rem;
        padding-top: 4rem;
        width: 0;
        max-height: 7.5rem;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition:
            opacity 0.3s,
            width 0.3s,
            max-height 0.6s 0.275s;
    }
    .nav-primary.open {
        width: var(--w);
        max-height: 100vh;
        opacity: 1;

        pointer-events: all;
    }
    .nav-primary a:not(.bouton) {
        font-weight: 500;
        font-size: 1rem;
        text-shadow: none !important;
    }
    .nav-primary ul {
        flex-direction: column;
        gap: 0.75rem;
        justify-content: start;
        align-items: start;
        white-space: nowrap;
        margin-top: 0.5rem;
        opacity: 0;
        transition: opacity 0.3s 0.45s;
    }
    .nav-primary.open ul {
        opacity: 1;
    }
    .nav-primary ul li:has(.bouton) {
        order: 1000;
        margin-top: 1.5rem;
    }
    .nav-primary .bouton {
        border-color: var(--clr-accent) !important;
        border-width: 2px !important;
    }
    .nav-primary .bouton:hover {
        border-color: var(--clr-bg) !important;
    }
    .header-primary {
        padding-top: 1.75rem;
    }
    .logo-header {
        width: 9rem;
    }
    .header-primary > .wrap {
        justify-content: space-between;
        align-items: start;
    }
    .menu-trigger {
        -webkit-appearance: none;
        appearance: none;
        background-color: transparent;
        color: var(--clr-txt);
        border: 1px solid currentColor;
        border-radius: var(--br);
        display: block;
        width: 3rem;
        height: 3rem;
        padding: 0.5rem;
        cursor: pointer;
        transition: all 0.3s;
    }
    .menu-trigger:hover,
    .menu-trigger:focus {
        color: var(--clr-accent);
        background-color: var(--clr-txt);
        border: 1px solid var(--clr-txt);
    }
    .menu-trigger.close {
        border-radius: calc(var(--br) / 1.5);
        width: 2.5rem;
        height: 2.5rem;
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        background-color: var(--clr-bg);
        border-color: var(--clr-bg);
        border-width: 2px;
        color: var(--clr-txt);
    }
    .menu-trigger.close svg {
        rotate: 45deg;
        stroke-width: 3px;
    }
    .menu-trigger.close:hover {
        color: var(--clr-bg);
        background-color: var(--clr-txt);
    }

    .hero-home {
        min-height: 35rem;
    }

    .bento.bento-layout {
        grid-template-columns: repeat(3, 1fr);
    }
    .bento.bento-layout > .box:first-child {
        grid-column: 1 / -1;
        grid-row: 1;
    }
    .bento.bento-layout > .box:nth-child(2) {
        grid-column: 1 / span 1;
        grid-row: 2;
    }
    .bento.bento-layout > .box:nth-child(3) {
        grid-column: 2 / span 1;
        grid-row: 2;
    }
    .bento.bento-layout > .box:nth-child(4):not(:has(+ .box)) {
        grid-column: 3 / span 1;
        grid-row: 2;
    }
    .content-wrap {
        padding: 3rem 2rem;
    }

    .sticky-panel .content-wrap {
        grid-template-columns: 2fr 1fr;
    }
    .sticky-panel .content-wrap > div:nth-child(1) {
        grid-column: 1 / -1;
    }
    .sticky-panel .content-wrap .titre br {
        display: none;
    }

    .box.box-bg.box-real,
    .box.box-bg.box-real:has(.real-pictures):hover,
    .box.box-bg.box-real:has(.bouton:hover) {
        aspect-ratio: 4/3;
        background-size: cover;
    }
    .real-det .titre {
        font-size: 1.75rem;
    }
    .footer-ctas .titre.titre-small {
        font-size: 1.5rem;
    }

    .footer-ctas {
        order: -1;
        grid-template-columns: 1fr 1fr;
    }
    .primary-footer {
        grid-template-columns: 1fr;
    }

    .footer-ctas .box {
        padding-bottom: 5rem;
        position: relative;
    }
    .footer-ctas .bouton {
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        width: auto;
    }

    .hero {
        --pb: 3rem;
    }

    .content-wrap ul {
        padding-left: 1rem;
    }

    .content-wrap > hr:last-child {
        margin-bottom: 0;
    }

    .cta-box-wrap .box {
        padding: 3rem 1rem;
    }

    .pb2 {
        padding-bottom: 1rem !important;
    }
    .content-wrap .titre,
    .content-wrap .titre:has(+ .narrow-content),
    .content-wrap .titre:last-child {
        margin-bottom: 1rem;
    }

    .bento.bento-layout-alt > .box:first-child {
        grid-column: 1 / span 2;
    }
    .bento.bento-layout-alt > .box:nth-child(2) {
        grid-column: 3 / span 1;
        grid-row: 1;
    }
    .bento.bento-layout-alt > .box:nth-child(3) {
        grid-column: 1 / span 1;
        grid-row: 2;
    }
    .bento.bento-layout-alt > .box:nth-child(5),
    .bento.bento-layout > .box:nth-child(4):has(+ .box) {
        grid-column: 2 / span 1;
        grid-row: 2;
    }
    .bento.bento-layout-alt > .box:nth-child(4),
    .bento.bento-layout > .box:nth-child(4):has(+ .box) {
        grid-column: 3 / span 1;
        grid-row: 2;
    }
    .timeline-slide {
        grid-template-columns: 4fr 6fr;
    }
    .timeline-slide > div:first-child {
        grid-column: 1 / -1;
        border-bottom: 2px solid var(--clr-600);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    .timeline-slide > div:first-child .titre {
        margin-bottom: 0 !important;
    }
    .timeline-slide > div:nth-child(2) {
        border-left: 0;
        padding-right: 0;
        padding-left: 1rem;
        order: 9;
    }
    .timeline-controls {
        margin-bottom: 2rem;
    }

    .bento.bento-quarter {
        grid-template-columns: repeat(3, 1fr);
    }
    .team-card.open + .team-card + .team-card + .team-card + .team-card {
        opacity: 1;
    }
    .team-card.open + .team-card + .team-card + .team-card {
        opacity: 0;
        transition: all 0.3s !important;
    }
    .team-card.open .full-profile,
    .full-profile {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .clients-slider-wrap > .clients-slider {
        grid-template-columns: repeat(4, 1fr);
    }
    .box.box-titre .titre {
        font-size: 1.75rem;
    }
    .box.box-titre > div {
        min-height: 50%;
    }
    .profil-padding {
        padding: 0;
    }
    .sous-titre.wborder {
        padding: 0.625rem 0;
        margin-bottom: 0.625rem;
    }
    .pagecontact {
        grid-template-columns: 1fr 1fr;
    }
    .pagecontact .box:last-child {
        grid-column: 1 / -1;
    }
    .pagecontact .box:first-child {
        padding-bottom: 3rem;
    }
    .pagecontact .socials {
        left: 1rem;
        bottom: 1rem;
    }

    .bento-5-layout {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .bento.bento-5-layout > .box:first-child {
        grid-column: 1 / -1;
        grid-row: 1;
    }
    .bento.bento-5-layout > .box:nth-child(3) {
        grid-column: 1 / span 2;
        grid-row: 2;
    }
    .bento.bento-5-layout > .box:nth-child(2) {
        grid-column: 3 / span 2;
        grid-row: 2;
    }
    .bento.bento-5-layout > .box:nth-child(4) {
        grid-column: 5 / span 2;
        grid-row: 2;
    }
    .bento.bento-5-layout > .box:nth-child(5) {
        grid-column: 1 / span 3;
        grid-row: 3;
    }
    .bento.bento-5-layout > .box:nth-child(6) {
        grid-column: 4 / span 3;
        grid-row: 3;
    }

    .galerie {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .galerie a:nth-child(3n + 1),
    .galerie a:nth-child(3n + 3) {
        transform: translateY(0);
    }
    .galerie a:nth-child(3n + 2) {
        transform: translateY(-1.5rem);
    }
    .galerie .sous-titre {
        --p: 0.75rem;
        font-size: 0.9rem;
    }
}
@media screen and (max-width: 48.5rem) {
    /* 776 */

    .wrap {
        padding-inline: 0.75rem;
    }
    .standard-form {
        padding: 1rem;
    }
}

@media screen and (max-width: 44rem) {
    /* 704 */
    body {
        font-size: 0.9rem;
    }
    .logo-header {
        width: 5.5rem;
    }
    .hero-logo {
        width: 14rem;
    }

    .footer-ctas {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        display: block;
        padding-bottom: 1rem;
    }

    .copy-wrap {
        margin-top: 3rem;
        display: block;
        opacity: 1;
        line-height: 1.75;
    }
    .copy-wrap a {
        display: block;
    }

    .bento.bento-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        margin-bottom: 0;
    }
    .bento-layout-alt {
        grid-template-rows: auto;
    }
    .box.box-titre > div {
        position: relative;
        min-height: 0;
        padding: 2rem 0;
    }
    .bento.bento-layout > .box:nth-child(2),
    .bento.bento-layout-alt > .box:first-child,
    .bento.bento-layout > .box:nth-child(2),
    .bento.bento-layout-alt > .box:nth-child(4),
    .bento.bento-layout > .box:nth-child(4):has(+ .box),
    .bento.bento-layout-alt > .box:nth-child(5),
    .bento.bento-layout > .box:nth-child(4):has(+ .box) {
        grid-column: 1 / span 1;
        grid-row: auto;
    }
    .bento.bento-layout > .box:nth-child(3) {
        grid-column: 1 / span 1;
        grid-row: auto;
    }
    .bento.bento-layout > .box:nth-child(4):not(:has(+ .box)) {
        grid-column: 1 / span 1;
        grid-row: auto;
    }
    .bento.bento-layout > .box {
        aspect-ratio: auto !important;
        min-height: 11rem;
    }

    .bento.bento-layout-alt .box-titre {
        justify-content: center;
    }

    .content-wrap {
        padding: 3rem 0.5rem;
    }
    .bento,
    .stats-wrap,
    .sticky-panel .content-wrap {
        grid-template-columns: 1fr;
    }

    .stats-wrap {
        margin-top: 3rem;
        margin-bottom: 2.5rem;
    }

    .sticky-panel .content-wrap {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        padding-bottom: 18vh;
    }
    .footer-inner li {
        margin-bottom: 0.75rem;
    }
    .footer-inner h3 {
        margin-bottom: 1rem;
    }
    .nav-footer {
        margin-bottom: 2.5rem;
    }

    .titre {
        font-size: 1.5rem !important;
    }
    .bento-layout .titre.titre-alt {
        font-size: 2.5rem !important;
    }
    .titre.titre-medium,
    .bento-layout.bento-layout-alt .titre.titre-alt {
        font-size: 1.325rem !important;
    }
    .titre.titre-small {
        font-size: 1.325rem !important;
    }
    .titre.titre-smaller {
        font-size: 1rem !important;
    }
    .sous-titre {
        font-size: 0.9rem !important;
    }
    .titre-p {
        font-size: 1rem !important;
    }

    .sticky-panel:nth-child(2) {
        translate: 0 5.5rem;
    }
    .sticky-panel:nth-child(3) {
        translate: 0 10rem;
    }

    .real-det p {
        font-size: 0.85rem;
        font-weight: 500;
    }
    .box {
        --p: 0.625rem;
    }
    .footer-ctas .bouton {
        bottom: 0.625rem;
        left: 0.625rem;
        right: 0.625rem;
    }

    .bouton {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        gap: 0.325rem;
    }
    .footer-ctas .img {
        width: 6.5rem;
    }
    .footer-ctas .box > div:first-child {
        width: calc(100% - 7rem);
    }
    .stat-num {
        margin-bottom: 0;
        font-size: 2.25rem;
    }
    .stats-wrap {
        gap: 0.75rem;
    }

    .hero-home-content {
        bottom: 1rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .cta-box-wrap {
        padding: 1.25rem 0.75rem;
    }
    .cta-box-wrap .box {
        padding: 2rem var(--p);
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .list-cols {
        grid-template-columns: 1fr;
    }
    .list-cols:has(> ul) {
        gap: 0;
    }
    .list-cols > ul {
        margin-bottom: 0;
    }
    .box-bento-full:last-child:first-child {
        aspect-ratio: 4/3 !important;
    }
    .hero-img {
        aspect-ratio: 1.75/1;
    }

    .real-nav {
        padding-bottom: 1.75rem;
        gap: 0.5rem;
    }
    .real-nav .bouton {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .timeline-controls {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 1.5rem;
        margin-bottom: -1.5625rem;
        padding-bottom: 0;
        border-bottom: 0;
        position: relative;
        z-index: 100;
    }
    .timeline-prev,
    .timeline-next {
        order: 4;
    }
    .timeline-pager {
        padding-bottom: 3.5rem;
        overflow: scroll;
        gap: 1rem;
        position: relative;
    }
    .timeline-pager::after {
        content: '';
        position: absolute;
        bottom: 2rem;
        left: 0;
        width: var(--w);

        height: 1px;
        background-color: var(--clr-txt);
        z-index: -1;
    }
    .timeline-slide > div:first-child .titre {
        text-align: center;
    }
    .timeline-slide {
        grid-template-columns: 1fr;
    }
    .timeline-slide > div:nth-child(2) {
        padding-left: 0;
    }

    .bento.bento-quarter {
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    }
    .team-card svg {
        width: 1.5rem;
    }

    .team-card.placed {
        translate: initial !important;
    }
    .team-card.open {
        z-index: 1000;
    }
    .team-card .full-profile {
        position: fixed;
        top: 50%;
        left: 1rem;
        translate: 0 -50%;
        z-index: 109;
        max-height: none;
        padding: 1rem;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        width: calc(100% - 2rem);
        display: block;
        bottom: auto;
        overflow: initial;
        background-color: var(--clr-txt);
        color: var(--clr-bg);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.1s;
    }
    .team-card.open .full-profile {
        opacity: 1;
        pointer-events: all;
        transition: opacity 0.3s 0.2s;
    }
    .team-card::after {
        content: '';
        width: 100%;
        height: 100%;
        background-color: var(--clr-bg);
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0;
        transition: all 0.1s;
    }
    .team-card.open::after {
        pointer-events: all;
        opacity: 0.9;
        transition: all 0.3s;
    }

    .team-card.open + .team-card + .team-card + .team-card {
        opacity: 1;
    }

    .full-profile svg {
        display: block;
        margin-left: auto;
        margin-top: -0.5rem;
        margin-bottom: 1rem;
        stroke-width: 2px;
    }

    .clients-slider-wrap > .clients-slider {
        grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
        gap: 0.5rem;
    }
    .clients-slider-wrap {
        gap: 0.5rem;
    }

    .bento.bento-third {
        grid-template-columns: 1fr;
    }

    .bento.bento-fifth {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
    }
    .imgs-grid .box:nth-child(5n + 1),
    .imgs-grid .box:nth-child(5n + 3),
    .imgs-grid .box:nth-child(5n),
    .galerie a:nth-child(4n + 1),
    .galerie a:nth-child(4n + 3) {
        transform: translateY(0);
    }
    .imgs-grid .box:nth-child(5n + 2),
    .galerie a:nth-child(4n + 2),
    .galerie a:nth-child(3n + 2) {
        transform: translateY(0);
    }
    .imgs-grid .box:nth-child(3n + 1):not(:last-child),
    .imgs-grid .box:nth-child(3n + 3):not(:last-child) {
        transform: translateY(50%);
    }
    .imgs-grid .box:last-child {
        grid-column: 2;
    }
    .titre-poste + div {
        padding-top: 0;
    }

    .inner-form,
    .pagecontact {
        grid-template-columns: 1fr;
    }
    .filefield {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    label.bouton {
        font-size: 0.75rem;
        padding: 0.5rem 0.625rem;
    }
    .standard-form fieldset {
        gap: 0.5rem;
    }

    .box.box-map {
        height: 12rem;
    }
    .box-map iframe {
        height: 300%;
    }
    .nohero {
        padding-top: 9rem;
    }

    .bento.bento-5-layout > .box:first-child,
    .bento.bento-5-layout > .box:nth-child(2),
    .bento.bento-5-layout > .box:nth-child(3),
    .bento.bento-5-layout > .box:nth-child(4),
    .bento.bento-5-layout > .box:nth-child(5),
    .bento.bento-5-layout > .box:nth-child(6) {
        grid-column: 1;
        grid-row: auto;
    }

    .galerie {
        grid-template-columns: 1fr 1fr;
    }
}
