/* assets/css/style.css */

/* =========================
   RESET
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Play', Arial, sans-serif;
}

.post, .page {
    margin: 0;
}


/*--------------------
        FONTS
-----------------------*/

@font-face {
    font-family: 'Play';
    src: url('../fonts/Play/Play-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Play';
    src: url('../fonts/Play/Play-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* =========================
   HERO
========================= */

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-home {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}


/* =========================
   HERO SLIDER
========================= */

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-slide-link {
    position: absolute;
    inset: 0;
    display: block;
    color: inherit;
    text-decoration: none;
}

.hero-slide-link:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -8px;
}

.hero-slide-headings {
    position: absolute;
    top: 50%;
    right: 30px;
    left: 30px;
    transform: translateY(-50%);
    text-align: center;
}

.hero-slide-title {
    margin: 0;
    color: #fff;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: clamp(64px, 9vw, 150px);
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.65);
    opacity: 0;
    transform: scale(0.92);
}

.hero-slide-service-logo {
    display: block;
    width: auto;
    max-width: min(280px, 55vw);
    max-height: 160px;
    margin: 0 auto 24px;
    object-fit: contain;
}

.hero-slide-service-title {
    margin: 20px 0 0;
    color: #fff;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: clamp(54px, 6vw, 150px);
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
    opacity: 0;
}

.hero-slider .owl-item.active .hero-slide-title {
    animation: heroSlideTitleFade 1.5s ease forwards;
}

.hero-slider .owl-item.active .hero-slide-service-title {
    animation: heroSlideServiceTitleFade 1.2s 0.35s ease forwards;
}

@keyframes heroSlideTitleFade {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroSlideServiceTitleFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================
   YOUTUBE VIDEO
========================= */

.youtube-bg {

    position: absolute;
    inset: 0;

    overflow: hidden;

    z-index: 1;
}

.youtube-bg iframe {

    position: absolute;

    top: 50%;
    left: 50%;

    width: 177.77777778vh;
    height: 56.25vw;

    min-width: 100%;
    min-height: 100%;

    transform: translate(-50%, -50%) scale(1.2);

    pointer-events: none;
}

/* =========================
   OVERLAY
========================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    /* background: rgba(36, 35, 35, 0.055); */

    z-index: 2;
}

/* =========================
   HEADER
========================= */

.mobile-header{
    display:none;
}

.site-header {

    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 105px 0;
}

/* Ajouter un bg noir dans le header pour les pages et single et pas home (front) */
.page:not(.home) .site-header,
.single .site-header {
    /* background: #eda041; */
}
/* =========================================
   HEADER NORMAL PAGES
========================================= */

.header-page {
    /* position: relative;
    padding: 12px 0; */
}

/* =========================================
   HEADER PAGE COLORS
========================================= */

.header-page .main-menu > li > a {

    color: #111;
}

.header-page .site-logo span {

    color: #111;
}
.header-page .desktop-navigation .main-menu > li > a {

    color: #111;
}

.page:not(.home) .site-header, .single .site-header, .header-page .desktop-navigation .main-menu > li > a {

    color: #ffffff;
}


/* =========================
   CONTAINER
========================= */

.container {

    width: 94%;
    max-width: 1520px;

    margin: auto;
}

/* HEADER FLEX */

.site-header .container{

    width:90%;
    max-width:1400px;
    margin:auto;
}

/* =========================
   LOGO
========================= */

/* LOGO */

.site-logo{
    flex:0 0 auto;
    margin:0 25px;
}

.site-logo img{

    width:clamp(220px,18vw,300px);
    aspect-ratio:524 / 175;
    object-fit:contain;
    height:auto;
    filter:drop-shadow(0 3px 15px rgba(0, 0, 0, 0.65));

    /* max-height: 145px;
    width:auto;
    height: auto;
    display: block; */
}

.site-logo a {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    text-decoration: none;
}




/* TITLE */

.site-logo span {

    display: block;

    color: white;

    font-size: 28px;
    font-weight: 800;

    line-height: 1.1;

    padding-top: 8px;
    padding-left: 15px;
}

/* =========================
   NAVIGATION
========================= */

.desktop-navigation {

    display: flex;
    align-items: center;
}

/* RIGHT PART */

.header-right {

    display: flex;

    align-items: center;

    gap: 40px;
}

/* RESET UL / LI */

.desktop-navigation ul,
.desktop-navigation li {

    margin: 0;
    padding: 0;

    list-style: none;
}

/* MAIN MENU */
.desktop-header{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
}
.left-menu{
    flex:0 1 auto;
    display:flex;
    justify-content:flex-end;
    margin:0;
}

.right-menu{
    flex:0 1 auto;
    display:flex;
    justify-content:flex-end;
    margin:0;
}

.desktop-navigation.right-menu .main-menu a{
    border: 1px solid rgb(255, 255, 255);
    padding:clamp(.35rem,.7vw,.6rem) clamp(.6rem,1vw,1rem);
    font-size: 20px;
    border-radius: 5px;

}   


.mobile-navigation{
    display:none;
}

.desktop-navigation .main-menu {

    display:flex;
    align-items:center;
    gap:clamp(15px,2vw,40px);
}

/* FIRST LEVEL LI */

.desktop-navigation .main-menu > li {

    position: relative;

    display: flex;
    align-items: center;
}

/* FIRST LEVEL LINKS */

.desktop-navigation .main-menu > li > a {

    font-size: 30px;
    padding:.35em .6em;
    color: white;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    text-shadow: 0 3px 15px rgba(0, 0, 0, .65);
}

.desktop-navigation .main-menu > li > a:hover {

    color: #d61717;
}

/* =========================
   SUBMENU
========================= */

.desktop-navigation .sub-menu {

    position: absolute;
    top: calc(100% + 12px);
    left: 0;

    min-width: 210px;

    padding: 0;

    background: #d9a289;

    border-radius: 8px;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition: all .25s ease;

    z-index: 999;
}

/* SHOW SUBMENU */

.desktop-navigation .menu-item-has-children:hover > .sub-menu {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

/* SUBMENU LI */

.desktop-navigation .sub-menu li {

    display: block;
}

/* SUBMENU LINKS */

.desktop-navigation .sub-menu li a {

    display: block;

    padding: 6px 24px;

    color: white;

    text-decoration: none;

    font-size: 20px;
    font-weight: 500;

    transition: 0.3s;
}

.desktop-navigation .sub-menu li a:hover {

    background: #c28c74;
}

/* =========================
   BUTTONS
========================= */

.n bouton avec le lien qui reste fixe à droites {
    margin: 25px 0;
}

.header-cta,
.hero-button {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    background: #d9a289;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    border-radius: 5px;
    font-size: 1.2rem;
}

.header-cta:hover,
.hero-button:hover {

    opacity: 0.85;
}

/* =========================
   HERO CONTENT
========================= */

/* Faire commencer le single en haut du header */
.page .single-hero,
.single .single-hero {
    margin-top: -140px;
    padding-top: 180px;
}

.hero-content {
    position: relative;
    z-index: 3;
}


/* =========================
   SLIDER TRANSITION
========================= */

.hero-slider .owl-item {
    transition: opacity 1s ease;
}

.hero-slider .owl-nav {
    position: absolute;
    right: 0;
    bottom: 45px;
    left: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 30px;
    pointer-events: none;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
    width: 90px;
    height: 90px;
    margin: 0;
    border: 2px solid rgba(255, 255, 255, 0.75) !important;
    border-radius: 20%;
    background: rgba(0, 0, 0, 0.25) !important;
    color: #fff !important;
    font-size: 27px !important;
    pointer-events: auto;
    transition: background 0.3s ease, border-color 0.3s ease;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover,
.hero-slider .owl-nav button.owl-prev:focus,
.hero-slider .owl-nav button.owl-next:focus,
.hero-slider .owl-nav button.owl-prev:focus-visible,
.hero-slider .owl-nav button.owl-next:focus-visible,
.hero-slider .owl-nav button.owl-prev:active,
.hero-slider .owl-nav button.owl-next:active {
    border: 2px solid rgba(255, 255, 255, 0.75) !important;
    border-radius: 24% !important;
    background: rgba(0, 0, 0, 0.25) !important;
    color: #fff !important;
    font-size: 40px !important;
    outline: none !important;
    box-shadow: none !important;
}

.hero-overlay {
    pointer-events: none;
}


/* SUBTITLE */

.hero-subtitle {

    font-size: 14px;

    letter-spacing: 4px;

    margin-bottom: 20px;

    color: rgba(255,255,255,0.75);

    text-transform: uppercase;
}

/* TITLE */

.hero-content h1 {

    font-size: 88px;
    line-height: .7;
    font-family: 'Bungee_Shade', Arial, sans-serif;
    text-align: center;
    color: white;
    margin: 140px 0 0;
    font-weight: 500;
}

.hero-buttons {

    display: flex;
    gap: 80px;
    margin-top: 145px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ANIMATION TITLE HERO */

.hero-title{
    font-family:'Monoton', Arial, sans-serif;
    font-size:88px;
    line-height:1.15;
    color:#fff;
    text-align:center;
    font-weight:500;
}

.hero-title .line1{
    display:block;
    opacity:0;
    transform:translateY(40px);
    animation:titleReveal .9s cubic-bezier(.2,.8,.2,1) forwards;
}

.hero-title .line2{
    display:block;

    font-size:125px;

    opacity:0;
    transform:translateY(60px) scale(.92);

    animation:titleRevealBig 1.2s cubic-bezier(.18,.8,.25,1) .45s forwards;
}
@keyframes titleReveal{

    from{
        opacity:0;
        transform:translateY(70px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes titleRevealBig{

    0%{
        opacity:0;
        transform:translateY(90px) scale(.92);
    }

    70%{
        opacity:1;
        transform:translateY(-6px) scale(1.02);
    }

    100%{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}

/* =========================================
   HOME PARTENAIRES
========================================= */


.home-partenaires {
    padding: 0;
    background: #f8f6f3;
}

.home-partenaires h2 {
    text-align: center;
    margin: 0;
    padding: 3rem 0;
    font-size: 45px;
}

.partenaire-item {

    position:relative;

    overflow:hidden;

    border-radius:10px;
}

.partenaire-image {

    position:relative;

    aspect-ratio:4/5;

    overflow:hidden;
}

.partenaire-image::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,.05) 0,
            rgba(255,255,255,.05) 2px,
            transparent 2px,
            transparent 10px
        ),
        linear-gradient(
            to top,
            rgba(0,0,0,.70),
            rgba(0,0,0,.25)
        );

    pointer-events: none;
}

.partenaire-image img {

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.partenaire-item:hover img {

    transform:scale(1.05);
}

.partenaire-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 30px;
    z-index: 6;
}

.partenaire-overlay h3 {

    color:#fff;
    font-size:22px;
    margin:0;
}

.partenaire-overlay p {

    color:#fff;
    font-size:15px;
    margin:0;
}

.partenaire-image{
    position:relative;
    overflow:hidden;
}

.partenaire-thumbnail{
    width:100%;
    display:block;
}

.partenaire-logo {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index:5;
    pointer-events:none;
}


.partenaire-logo img {
    max-width:350px;
    width: 320px !important;
    height: auto;
    object-fit: contain;
    filter:drop-shadow(0 4px 10px rgba(0,0,0,.35));
}

/* =========================================
   HOME GOOGLE AND MAP
========================================= */

/* =========================
   GOOGLE AVIS + MAP
========================= */

.home-googleavis-map{

    padding:120px 0;

    background:#EEF2FF;
}

.googleavis-map-grid{

    display:grid;

    grid-template-columns:minmax(0, 760px);

    gap:60px;

    align-items:center;

    justify-content:center;
}

.google-avis,
.google-map,
.instagram-gallery-panel{

    background:#fff;
    border-radius:8px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.google-avis h2,
.google-map h2{

    text-align:center;

    margin-bottom:30px;

    font-size:36px;
}

.google-widget{

    min-height:320px;

    display:flex;

    align-items:center;

    justify-content:center;
}

.trustindex-lazy-placeholder {
    margin: 0;
    color: #666;
    font-size: 15px;
}

.map-wrapper{

    overflow:hidden;

    border-radius:20px;
}

.map-wrapper iframe{

    display:block;

    width:100%;

    height:450px;
}

.instagram-gallery-panel { padding: 28px; }
.instagram-gallery-heading { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:24px; }
.instagram-gallery-heading h2 { margin:3px 0 0; font-size:30px; line-height:1.1; }
.instagram-gallery-kicker { color:#6b7280; font-size:32px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.instagram-follow-button { display:inline-flex; align-items:center; gap:1px; padding:10px 14px; color:#fff; background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); border-radius:999px; box-shadow:0 8px 20px rgba(193,53,132,.25); font-size:13px; font-weight:800; text-decoration:none; transition:transform .25s ease,box-shadow .25s ease; }
.instagram-follow-button:hover { color:#fff; transform:translateY(-2px); box-shadow:0 12px 24px rgba(193,53,132,.32); }
.instagram-gallery { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; }
.instagram-gallery > a { position:relative; aspect-ratio:1; overflow:hidden; border-radius:12px; background:#eef2f7; }
.instagram-gallery img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.instagram-gallery-overlay { position:absolute; inset:0; display:grid; place-items:center; color:#fff; background:rgba(17,24,39,.48); font-size:28px; opacity:0; transition:opacity .3s ease; }
.instagram-gallery a:hover img { transform:scale(1.08); }
.instagram-gallery a:hover .instagram-gallery-overlay,
.instagram-gallery a:focus-visible .instagram-gallery-overlay { opacity:1; }

.footer-instagram-widget {
    padding: 80px 0;
    background: #eef2ff;
}

.footer-instagram-widget .instagram-gallery-panel {
    width: min(100%, 920px);
    margin: 0 auto;
}

/* =========================
   LOGOS MARQUEE
========================= */

.logos-marquee{

    overflow:hidden;

    padding:20px 0;

    background:#fff;
}
.logos-marquee h2{

    text-align: center;
    margin-bottom: 50px;
    font-size: 45px;
}
.logos-track{

    display:flex;

    width:max-content;

    animation:marquee 25s linear infinite;
}

.logos-group{
    display:flex;
    flex:0 0 auto;
    justify-content:space-around;
    width:max(100vw, calc(var(--logo-count) * 260px));
}

.logo-item{

    flex:0 0 auto;

    width:180px;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:0 40px;
}

.logo-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    text-decoration: none;
}

.logo-item a:focus-visible {
    outline: 3px solid rgba(45, 114, 243, .4);
    outline-offset: 6px;
}

.logo-item img{

    max-width:326px;

    max-height:auto;

    width:auto;

    height:auto;

    object-fit:contain;

    transition:.3s;
}

.logo-item a:hover img { transform: scale(1.06); }

@keyframes marquee{

    from{

        transform:translateX(0);
    }

    to{

        transform:translateX(-50%);
    }

}



/* =========================================
   HOME POSTS
========================================= */

.home-presentation {
    padding: 70px 5% 70px;
    background: #fff;
}

@media (min-width: 993px) {
    .s3m-slider-v2 + .home-presentation {
        padding-top: 210px;
    }
}

.home-presentation-inner {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(560px, 2fr);
    gap: clamp(45px, 6vw, 100px);
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(35px, 4vw, 55px);
    border-radius: 24px;
    background: #f7f7f7;
}

.home-presentation-intro h2 {
    margin: 0 0 14px;
    color: #e82626;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: clamp(32px, 2.5vw, 44px);
    line-height: 1.1;
}

.home-presentation-intro p {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.45;
}

.home-presentation-phone {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 22px;
    border-radius: 16px;
    background: #e82626;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.home-presentation-phone:hover {
    background: #e74646;
    color: #fff;
    transform: translateY(-2px);
}

.home-presentation-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 55px;
    align-content: center;
}

.home-presentation-feature {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: start;
}

.home-presentation-feature > i {
    color: #e82626;
    font-size: 40px;
    line-height: 1;
    text-align: center;
}

.home-presentation-feature h3 {
    margin: 0 0 8px;
    color: #171717;
    font-size: 26px;
    line-height: 1.1;
}

.home-presentation-feature p {
    margin: 0;
    color: #242424;
    font-size: 16px;
    line-height: 1.4;
}

.home-presentation-intro ul {
        list-style-type: none;

}

.home-presentation-intro li {
    padding: 8px 0;
    font-size: 19px;
}

.home-presentation-intro a {
    color: rgb(187, 47, 47);
}

a.home-presentation-phone {
        color: rgb(253, 253, 253);
}

.home-posts {

    padding: 120px 0;

    background: #f5f5f5;
}

/* GRID */

.posts-grid {

    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 44px;
    background: #fff;
    padding: 38px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
    box-shadow:
        0 28px 65px rgba(15, 23, 42, 0.12),
        0 6px 18px rgba(15, 23, 42, 0.06);
}



/* RIGHT COLUMN */

.right-posts {

    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* LEFT COLUMN */

.left-post {

    height: 500px;
    overflow: hidden;
}

/* FEATURED POST */

.featured-post {

    height: 100%;
}

/* FEATURED POST */

.featured-post {

    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* LINK */

.featured-post a {

    display: block;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
}

/* IMAGE */

.post-image {

    position: absolute;
    inset: 0;
}

.post-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* OVERLAY */

.post-overlay {

    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.9),
            rgba(0,0,0,0.15)
        );
}

/* CONTENT */

.post-content {

    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 10;
}

/* CATEGORY */

.post-category {

    display: inline-block;
    padding: 7px 12px;
    background: rgba(8, 15, 27, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* TITLE */

.post-content h2 {

    margin: 0;
    font-size: 58px;
    line-height: 1.05;
    max-width: 700px;
    font-weight: 900;
}

/* SMALL POSTS */

.small-post a {

    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    color: #111;
    min-height: 138px;
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.09);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* SMALL IMAGE */

.small-post-image {

    width: 210px;
    height: 130px;

    overflow: hidden;
    border-radius: 11px;
    background: #eef1f4;
    box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.05);

    flex-shrink: 0;
}

.small-post-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

/* SMALL CONTENT */

.small-post-content {

    flex: 1;
    display: flex;

    flex-direction: column;
}

.small-post-content h3 {

    margin: 0;
    order: 1;
    font-size: 20px;
    line-height: 1.2;

    font-weight: 800;
}

.small-post-content .post-category {

    order: 2;
    margin-top: 20px;
    margin-bottom: 0;
    width: fit-content;
    align-self: flex-start;
}

/* HOVER */

.featured-post:hover img,
.small-post:hover img {

    transform: scale(1.08);
}

.featured-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.28);
}

.small-post:hover a {
    transform: translateY(-3px);
    border-color: rgba(17, 24, 39, 0.18);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.featured-post a:focus-visible,
.small-post a:focus-visible {
    outline: 3px solid rgba(20, 196, 255, 0.55);
    outline-offset: 4px;
}



/* =========================================
   HOME CATEGORIES
========================================= */

.home-categories-posts {

    padding: 150px 0;

    background: white;

    position: relative;

    background: url('/wp-content/uploads/2026/05/bg_splash.webp');

    background-size: cover;
    background-position: 356px 0;
    background-size: 900px;
    background-repeat: no-repeat;

}

/* LAYOUT */

.categories-layout {

    width: 90%;
    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 2fr 420px;

    gap: 70px;
}

/* CATEGORY BLOCK */

.category-block {

    margin-bottom: 80px;
}

/*  TOP HEADER */

.topbar{

    position:relative;
    z-index:1000;

    background:#171717;
    color:#fff;
    font-size:18px;
    font-weight:800;
    font-style: italic;

}

.topbar-mobile {
    display: none;
}

.topbar .container{

    max-width:1450px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:11px 35px;

}

.topbar-left{

    display:flex;

    align-items:center;

    gap:20px;

}

.topbar-marquee{
    min-width:0;
    flex:1;
    margin:0 28px;
    overflow:hidden;
    white-space:nowrap;
}

.topbar-marquee-track{
    display:flex;
    width:max-content;
    animation:topbar-marquee 12s linear infinite;
    animation-play-state:paused;
}

.has-user-interacted .topbar-marquee-track{
    animation-play-state:running;
    will-change:transform;
}

.topbar-marquee-track span{
    flex:none;
    padding-right:60px;
    font-size:17px;
    font-weight:600;
}

.topbar-marquee:hover .topbar-marquee-track{
    animation-play-state:paused;
}

@keyframes topbar-marquee{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
    .topbar-marquee-track{
        animation:none;
    }
}

.topbar-left a{

    display:flex;

    align-items:center;

    gap:10px;

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.topbar-left a:hover{

    color:#7FD9FF;

}

.topbar-left i{

    width:30px;

    height:30px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.8);

    color:#82E7FF;

    font-size:13px;

}

.separator{

    width:1px;

    height:18px;

    background:rgba(255,255,255,.18);

}

.topbar-right{

    display:flex;

    gap:12px;

}

.topbar-right a{

    width:38px;

    height:38px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#fff;

    border:1px solid rgba(255,255,255,.8);

    background:rgba(255,255,255,.04);

    transition:.35s;

}

.topbar-right a:hover{

    background:#14C4FF;

    color:white;

    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(20,196,255,.35);

}

/* HEADER */

.category-header {

    margin-bottom: 30px;

    border-top: 1px solid #ddd;

    padding-top: 20px;
}

.category-header span {

    display: inline-block;

    background: #0356a8;

    color: white;

    padding: 8px 16px;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
}

/* GRID */

.category-grid {

    display: grid;

    grid-template-columns: 1.3fr 1fr;

    gap: 35px;
}

/* FEATURED */

.category-featured-post a {

    text-decoration: none;

    color: #111;
}

/* IMAGE */

.category-featured-image {

    height: 360px;

    overflow: hidden;

    margin-bottom: 18px;
}

.category-featured-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

/* CONTENT */

.category-featured-content span,
.category-small-content span,
.sidebar-post span {

    display: block;

    color: #999;

    font-size: 13px;

    margin-bottom: 10px;
}

.category-featured-content h2 {

    margin: 0;

    font-size: 38px;
    line-height: 1.15;

    font-weight: 800;
}

/* SMALL POSTS */

.category-grid .category-small-post {

    margin-bottom: 25px;
}

.category-small-post a {

    display: flex;
    gap: 18px;

    text-decoration: none;

    color: #111;
}

/* SMALL IMAGE */

.category-small-image {

    width: 150px;
    height: 90px;

    overflow: hidden;

    flex-shrink: 0;
}

.category-small-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

/* SMALL CONTENT */

.category-small-content h3 {

    margin: 0;

    font-size: 24px;
    line-height: 1.2;

    font-weight: 700;
}

/* SIDEBAR */

.sidebar-block {

    margin-bottom: 70px;
}

.sidebar-block h3,
.sidebar-tags h3 {

    margin: 0 0 30px;

    font-size: 18px;

    text-transform: uppercase;
}

/* SIDEBAR POST */

.sidebar-post {

    margin-bottom: 40px;
}

.sidebar-post a {

    text-decoration: none;

    color: #111;
}

.sidebar-post img {

    width: 100%;
    height: 180px;

    object-fit: cover;

    margin-bottom: 15px;

    transition: transform 0.5s ease;
}

.sidebar-post h4 {

    margin: 0;

    font-size: 30px;
    line-height: 1.2;

    font-weight: 800;
}

/* TAGS */

.tags-list {

    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.tags-list a {

    display: inline-block;

    background: #111;

    color: white;

    padding: 8px 14px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;

    border-radius: 20px;

    transition: 0.3s;
}

.tags-list a:hover {

    background: #0356a8;
}

/* HOVER */

.category-featured-post:hover img,
.category-small-post:hover img,
.sidebar-post:hover img {

    transform: scale(1.08);
}


/* =========================================
   POSTS LIST STYLE
========================================= */

.posts-list-style {

    column-count: 2;

    column-gap: 50px;
}

/* ITEM */

.list-post {

    break-inside: avoid;

    margin-bottom: 1em;
}

/* LINK */

.list-post a {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    text-decoration: none;

    color: #111;
}

/* IMAGE */

.list-post-image {

    width: 90px;
    height: 90px;

    overflow: hidden;

    flex-shrink: 0;
}

.list-post-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

/* CONTENT */

.list-post-content span {

    display: block;

    color: #999;

    font-size: 13px;

    margin-bottom: 10px;
}

.list-post-content h3 {

    margin: 0;

    font-size: 25px;
    line-height: 1.2;

    font-weight: 500;
}

/* HOVER */

.list-post:hover img {

    transform: scale(1.08);
}


/* =========================================
   FOOTER
========================================= */

.site-footer {

    background: #111;

    color: rgba(255, 255, 255, 0.75);

    padding-top: 50px;
}

/* CONTAINER */

.footer-container {

    width: 90%;

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr !important;

    gap: 40px;
}

/* LOGO */

.footer-brand {
    text-align: center;
    margin-right: 210px;
}

.footer-brand img {

    max-height: 110px;
    width: auto;
    height: auto;
     margin-bottom: 25px;
}

/* TITLE */

.footer-brand h3 {

    margin: 0 0 20px;

    font-size: 42px;

    font-weight: 800;
}

/* TEXT */

.footer-brand p {

    color: rgba(255,255,255,0.7);

    font-size: 22px;

    line-height: 1.2;
}

/* TITLES */

.footer-links h4 {

    margin: 0 0 30px;

    font-size: 18px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.footer-cgv {

    margin: 0 0 30px;

    font-size: 18px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* MENU */

.footer-menu {

    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li {

    margin-bottom: 18px;
}

.footer-menu a {

    color: rgba(255,255,255,0.75);

    text-decoration: none;

    transition: 0.3s;
}

.footer-menu a:hover {

    color: #0356a8;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
    line-height: 1em;
}

/* BOTTOM */

.footer-bottom {

    margin-top: 0;

    border-top: 1px solid rgba(255,255,255,0.1);

    padding: 30px 0;

    background-color: #000000;
}

/* BOTTOM FLEX */

.footer-bottom-container {

    width: 90%;
    max-width: 1400px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   OVERLAP HERO / POSTS
========================================= */


.home-posts {

    position: relative;
    padding: 0 0 30px;
    background: transparent;
    /* z-index: 30; */
}

.home-posts h2{

    text-align: center;
    margin-bottom: 50px;
    font-size: 45px;
}


/* =========================================
   CONTACT PAGE
========================================= */

.contact-widget {
    padding: 90px 0;
    background: #ebebeb;
}

.contact-widget-inner {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: center;
}

.contact-widget-intro h2 {
    margin: 0 0 20px;
    font-size: 48px;
    line-height: 1.05;
}

.contact-widget-intro p {
    margin: 0 0 28px;
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

.contact-widget-phone {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: #0356a8;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

.contact-widget-form-wrap {
    min-width: 0;
    padding: 40px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.contact-widget-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-widget-form textarea {
    resize: vertical;
}

.contact-widget-form button {
    width: 100%;
    padding: 16px 28px;
    border: 0;
    background: #0356a8;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.contact-widget-form button:hover {
    opacity: .9;
}

/* Logo plus compact sur les fiches partenaires. */
body.single-service .site-logo img,
body.single-post .site-logo img,
body.page:not(.home) .site-logo img {
    width: clamp(160px, 13vw, 210px);
}

body.single-service .site-logo,
body.single-post .site-logo,
body.page:not(.home) .site-logo {
    margin-inline: 15px;
}

.callback-widget {
    background: linear-gradient(135deg, #eaf5ff 0%, #f4f8ff 48%, #eef2ff 100%);
}

.callback-widget .contact-widget-form-wrap {
    border: 1px solid rgba(3, 86, 168, .1);
    box-shadow: 0 24px 65px rgba(3, 86, 168, .12);
}

.callback-widget-promise {
    color: #24415e;
    font-size: 17px;
}

.callback-widget-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.callback-widget-title-row h2 {
    margin-bottom: 0;
}

.callback-widget-title-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    padding: 11px;
    fill: #fff;
    background: linear-gradient(135deg, #0356a8, #087dd4);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(3, 86, 168, .22);
}

.callback-widget-form select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d7dce2;
    border-radius: 4px;
    background: #fff;
    color: #222;
}

.callback-widget-form .contact-widget-fields {
    grid-template-columns: 1fr;
}

.callback-widget-form label span {
    color: #777;
    font-size: 12px;
    font-weight: 400;
}

.callback-widget-form button {
    border-radius: 6px;
    background: linear-gradient(135deg, #0356a8, #087dd4);
    box-shadow: 0 10px 24px rgba(3, 86, 168, .2);
}

.callback-success-popup {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 1;
    transition: opacity .2s ease;
}

.callback-success-popup.is-closing {
    opacity: 0;
}

.callback-success-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 25, .58);
    backdrop-filter: blur(3px);
}

.callback-success-popup__box {
    position: relative;
    z-index: 1;
    width: min(430px, 100%);
    padding: 38px 44px 34px;
    border-radius: 18px;
    background: #fff;
    color: #17211b;
    text-align: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.callback-success-popup__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #67716b;
    font-size: 27px;
    line-height: 30px;
    cursor: pointer;
}

.callback-success-popup__icon {
    width: 66px;
    height: 66px;
    margin-bottom: 18px;
    fill: #2eae65;
}

.callback-success-popup__icon path {
    fill: none;
    stroke: #fff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.callback-success-popup__box p {
    margin: 0;
    font-size: clamp(20px, 3vw, 25px);
    font-weight: 700;
    line-height: 1.35;
}

.contact-error {
    margin-bottom: 25px;
    padding: 16px 20px;
    border-radius: 6px;
    background: #fbe3e3;
    color: #8b1a1a;
    font-weight: 700;
}

.contact-page {
    padding: 80px 0 80px 0;
    background-color: #fff7eb61;
}

.contact-form select{

    width:100%;

    padding:18px 20px;

    border:1px solid #ddd;

    border-radius:8px;

    background:#fff;

    font-size:16px;

    font-family:inherit;

    color:#333;

    appearance:none;

    -webkit-appearance:none;

    -moz-appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5 8 12l6.5-6.5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 18px center;

    background-size:16px;
}

.contact-form select:focus{

    outline:none;

    border-color:#D9A489;

    box-shadow:0 0 0 3px rgba(217,164,137,.15);
}

/* LAYOUT */

.contact-layout {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;
}


/* LABEL */

.section-label {

    display: inline-block;

    padding: 8px 14px;

    background: #0356a8;

    color: white;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 25px;
}

/* TITLES */

.contact-info h2 {

    margin: 0 0 25px;

    font-size: 54px;

    line-height: 1.05;

    font-weight: 900;
}

/* TEXT */

.contact-info p {

    font-size: 18px;

    line-height: 1.7;

    color: #666;

    margin-bottom: 35px;
}

/* LIST */

.contact-list {

    margin: 0;
    padding: 0;

    list-style: none;
}

.contact-list li {

    margin-bottom: 18px;

    font-size: 18px;

    font-weight: 600;
}

/* FORM */

.contact-form-wrapper {

    background: white;

    padding: 50px;

    border-radius: 10px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* GROUP */

.form-group {

    margin-bottom: 25px;
}

/* LABEL */

.form-group label {

    display: block;

    margin-bottom: 10px;

    font-weight: 700;
}

/* INPUTS */

.form-group input,
.form-group textarea {

    width: 100%;

    padding: 16px 18px;

    border: 1px solid #ddd;

    font-size: 16px;

    border-radius: 6px;

    outline: none;

    transition: 0.3s;
}

/* FOCUS */

.form-group input:focus,
.form-group textarea:focus {

    border-color: #0356a8;
}

/* BUTTON */

.contact-form button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 28px;

    background: #f70f0f;

    color: white;

    border: none;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}

.contact-form button:hover {

    opacity: 0.9;
}

/* =========================================
   FAQ
========================================= */

.faq-section {

    padding: 120px 0;

    background: #f5f5f5;
}

/* CONTAINER */

.faq-container {

    max-width: 1000px;
}

/* INTRO */

.faq-intro {

    text-align: center;

    margin-bottom: 70px;
}

.faq-intro h2 {

    margin: 0 0 25px;

    font-size: 62px;

    line-height: 1;

    font-weight: 900;
}

.faq-intro p {

    max-width: 700px;

    margin: auto;

    font-size: 18px;

    line-height: 1.7;

    color: #666;
}

/* FAQ ITEMS */

.faq-items {

    display: flex;

    flex-direction: column;

    gap: 20px;
}

/* ITEM */

.faq-item {

    background: white;

    border-radius: 10px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* QUESTION */

.faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 28px 35px;

    background: white;

    border: none;

    cursor: pointer;

    font-size: 24px;

    font-weight: 800;

    text-align: left;
}

/* PLUS */

.faq-question span {

    font-size: 32px;

    color: #0356a8;

    flex-shrink: 0;
}

/* ANSWER */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.faq-answer p {

    margin: 0;

    padding: 0 35px 35px;

    font-size: 18px;

    line-height: 1.7;

    color: #666;
}

/* ACTIVE */

.faq-item.active .faq-answer {

    max-height: 300px;
}


/* =========================================
   SINGLE POST
========================================= */

.single-post {

    background: #f5f5f5;
}

/* =========================================
   HERO
========================================= */

.single-hero {

    position: relative;

    height: 85vh;

    min-height: 700px;

    overflow: hidden;

    display: flex;

    align-items: flex-end;

    color: white;
}

/* IMAGE HERO */


.single-hero-image.contact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.single-hero-image {

    position: absolute;
    inset: 0;
}

.single-category-item {
    background-color: rgb(45, 114, 243);
    padding: 5px;
    border-radius: 5px;
    font-size: 10px;
}

.single-hero-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.home-posts.blog-reveal-enabled .post-image,
.home-posts.blog-reveal-enabled .small-post-image {
    opacity: 0;
    transform: scale(0.82);
    transition:
        opacity 0.8s ease var(--reveal-delay, 0ms),
        transform 0.8s cubic-bezier(.2, .8, .2, 1) var(--reveal-delay, 0ms);
}

.home-posts.blog-reveal-enabled .post-image.is-visible,
.home-posts.blog-reveal-enabled .small-post-image.is-visible {
    opacity: 1;
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .home-posts.blog-reveal-enabled .post-image,
    .home-posts.blog-reveal-enabled .small-post-image {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* OVERLAY */

.single-hero-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.397),
            rgba(0, 0, 0, 0.062)
        );
}

/* CONTENT */

.single-hero-content {

    position: relative;

    z-index: 10;

    padding-bottom: 90px;

    padding-left: 25px;

    text-align: left;
}

/* CATEGORY */



/* TITLE */

.single-hero h1 {

    margin: 0 auto 30px;

    font-size: 92px;

    line-height: 1.2;

    max-width: 1000px;

    font-weight: 600;

    font-family: 'Oswald', Arial, sans-serif;
}

/* META */

.single-meta {

    display: flex;

    gap: 30px;

    color: rgba(255,255,255,0.8);

    font-size: 15px;
}

/* =========================================
   CONTENT
========================================= */

.single-content {

    margin-top: -80px;

    position: relative;

    z-index: 20;
}

/* CONTAINER */

.single-content-container {

    width: 90%;
    max-width: 900px;

    margin: auto;

    background: white;

    padding: 25px 80px;

    border-radius: 5px;

    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

/* TYPO */

.single-content-container p {

    font-size: 22px;

    line-height: 1.9;

    color: #222;

    margin-bottom: 35px;
}

.single-content-container ul,
.single-content-container ol {
    font-size: 22px;
    line-height: 1.9;
    color: #222;
    margin-left: 1em;
}

/* TITLES */

.single-content-container h2 {

    margin-top: 50px;

    font-size: 30px;

    line-height: 1.1;

    font-weight: 900;
}

/* IMAGES */

.single-content-container img {

    width: 100%;

    height: auto;

    border-radius: 10px;

    margin: 5px 0;
}

.single-content-container .service-registration-button {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 17px 24px;
    border: 1px solid #183b5b;
    border-radius: 7px;
    color: #183b5b;
    background: transparent;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.single-content-container .service-registration-button:hover,
.single-content-container .service-registration-button:focus-visible {
    color: #ffffff;
    background: #183b5b;
}

/* LINKS */

.single-content-container a {

    color: #ffffff;
    font-weight: 700;
}

/* Espace vertical entre les blocs de boutons successifs dans les articles. */
.single-content-container .wp-block-buttons + .wp-block-buttons {
    margin-top: 12px;
}

/* Galeries WordPress : masquer les légendes et leur fond dégradé. */
.single-content-container .wp-block-gallery figcaption {
    display: none;
}

.single-content-container .wp-block-gallery figure.wp-block-image::before {
    display: none;
    background: none;
}

/* Citations éditoriales dans les pages Service. */
.single-post .single-content-container .wp-block-quote {
    position: relative;
    margin: 45px 0;
    padding: 38px 55px;
    overflow: hidden;
    color: #183b5b;
    background: #f1f8fd;
    border: 0;
    border-left: 6px solid #0799dd;
    border-radius: 0 16px 16px 0;
}

.single-post .single-content-container .wp-block-quote::before,
.single-post .single-content-container .wp-block-quote::after {
    position: absolute;
    color: rgba(7, 153, 221, 0.2);
    font-family: Georgia, serif;
    font-size: 105px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.single-post .single-content-container .wp-block-quote::before {
    top: 5px;
    left: 15px;
    content: "\201C";
}

.single-post .single-content-container .wp-block-quote::after {
    right: 15px;
    bottom: -42px;
    content: "\201D";
}

.single-post .single-content-container .wp-block-quote p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: inherit;
    font-family: Georgia, serif;
    font-size: clamp(25px, 3.2vw, 34px);
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .single-post .single-content-container .wp-block-quote {
        margin: 32px 0;
        padding: 34px 28px 34px 35px;
        border-left-width: 5px;
        border-radius: 0 12px 12px 0;
    }

    .single-post .single-content-container .wp-block-quote::before,
    .single-post .single-content-container .wp-block-quote::after {
        font-size: 78px;
    }
}

.service-partners { margin: 0 0 55px; padding-bottom: 42px; border-bottom: 1px solid #e7edf3; }
.service-partners > h2 { margin: 8px 0 28px; color:#111827; font-size:clamp(28px,3.5vw,44px); }
.service-partners-grid { display:flex; flex-wrap:wrap; gap:18px; }
.service-partner-card { margin:0; }
.service-partner-card a { display:grid; place-items:center; width:150px; height:135px; padding:14px; background:#fff; border:1px solid rgba(17,24,39,.09); border-radius:18px; box-shadow:0 12px 30px rgba(15,23,42,.08); text-decoration:none; transition:transform .3s ease,box-shadow .3s ease; }
.service-partner-card a:hover { transform:translateY(-4px); box-shadow:0 18px 38px rgba(15,23,42,.13); }
.service-partner-logo { display:grid; place-items:center; width:100%; height:100%; padding:6px; overflow:hidden; background:#f6f8fb; border-radius:14px; }
.service-partner-logo img { display:block; width:100%; height:100%; max-width:none; margin:0; object-fit:contain; }

/* PARTNER ESTABLISHMENT CARD */
.partner-establishment-card {
    display: grid;
    grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    margin: 0 0 48px;
    padding: 28px;
    background: linear-gradient(135deg, #f5f9ff 0%, #fff 72%);
    border: 1px solid #dce8fa;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(15, 38, 74, 0.1);
}
.partner-establishment-logo {
    display: grid;
    place-items: center;
    min-height: 180px;
    padding: 22px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 38, 74, 0.09);
}
.partner-establishment-logo-image {
    display: block;
    width: 100%;
    max-height: 145px;
    margin: 0;
    object-fit: contain;
}
.partner-establishment-logo-link {
    display: grid;
    place-items: center;
    width: 100%;
    text-decoration: none;
    transition: transform .25s ease, opacity .25s ease;
}
.partner-establishment-logo-link:hover { transform: scale(1.03); }
.partner-establishment-logo-link:focus-visible {
    outline: 3px solid rgba(45, 114, 243, .35);
    outline-offset: 6px;
    border-radius: 8px;
}
.partner-establishment-details { display: grid; gap: 18px; }
.partner-establishment-heading {
    color: #2d72f3;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.partner-establishment-info {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}
.partner-establishment-info > div { display: grid; gap: 4px; }
.partner-establishment-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #fff;
    background: #2d72f3;
    border-radius: 14px;
}
.partner-establishment-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.partner-establishment-info strong,
.partner-establishment-info span:not(.partner-establishment-icon) { display: block; }
.partner-establishment-info strong {
    color: #172033;
    font-size: 20px;
    line-height: 1.25;
}
.partner-establishment-info span:not(.partner-establishment-icon):not(.partner-establishment-label) {
    color: #667085;
    font-size: 15px;
}
.partner-establishment-label {
    color: #718096;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}


/* TAGS / CATEGORIES */

.single-category {

    /* display: inline-block; */

    display: inline-flex;

    flex-wrap: wrap;

    gap: 12px;

    color: white;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 30px;
}

.single-category a {

    color: white;

    padding: 8px 8px;

    border-radius: 10px;

    background: #e0010c;

    text-decoration: none;

    font-weight: 700;

    letter-spacing: 1px;

    width: fit-content;

    display: inline-flex;
}

.single-category a:hover {

    opacity: 0.7;
}

/* =========================================
   GENERIC SECTION
========================================= */

.section {

    padding: 60px 0;
}

/* LIGHT */

.section-light {

    background: #f5f5f5;
}

/* WHITE */

.section-white {

    background: white;
}

/* SECTION TITLE */

.section-title {

    margin-bottom: 70px;
}

.section-title span {

    display: inline-block;

    margin-bottom: 20px;

    color: #0356a8;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.section-title h2 {

    margin: 0;

    font-size: 72px;

    line-height: 0.95;

    font-weight: 900;

    max-width: 900px;
}

/* IMAGE TEXT BLOCK */

.image-text-block {

    width: 90%;

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.1fr 1fr;

    gap: 80px;

    align-items: center;
}

/* IMAGE */


.image-side {

    overflow: hidden;

    border-radius: 14px;
}
.image-side img {

    width: 100%;

    height: 700px;

    object-fit: cover;

    display: block;
}

/* TEXT */

.text-side h2 {

    margin: 0 0 30px;

    font-size: 25px;

    line-height: 1;

    font-weight: 600;
    color: #222;
}

.text-side p {

    font-size: 20px;

    line-height: 1.8;

    color: #666;

    margin-bottom: 40px;
}

/* CARDS GRID */

.cards-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 35px;
}

/* CARD */

.course-card {

    background: white;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0,0,0,0.06);

    transition: 0.4s;
}

.course-card:hover {

    transform: translateY(-10px);
}

/* CTA SECTION */

.cta-section {

    padding: 140px 0;

    background: #111;

    color: white;

    text-align: center;
}

.cta-section h2 {

    font-size: 72px;

    line-height: 1;

    margin-bottom: 30px;
}


.contact-success {

    margin-bottom: 30px;

    padding: 18px 22px;

    background: #dff5e1;

    color: #1d6b2f;

    border-radius: 6px;

    font-weight: 700;
}

/* =========================================
   ICON BOOSTRAP
========================================= */
.info-card {
    text-align: center;
}

.info-card .icon {
    width: 80px;
    height: 80px;
    background: #ff9b8b;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-card .icon i {
    font-size: 42px;
    color: #fff;
    line-height: 1;
}

.info-card h4 {
    margin: 15px 0 8px;
    font-size: 14px;
    text-transform: uppercase;
    color: #ff9b8b;
    letter-spacing: 1px;
}

.info-card strong {
    display: block;
    font-size: 25px;
    font-weight: 700;
}

.pricing-card{
    max-width:340px;
    margin:40px auto;
    background:#495966;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    color:#fff;
    text-align:center;
}

.pricing-header{
    background:#0356a8;
    padding:18px;
}

.pricing-header h3{
    margin:0;
    color:#fff;
    font-size:24px;
    letter-spacing:2px;
}

.pricing-features{
    list-style:none;
    margin:0;
    padding:25px;
}

.pricing-features li{
    padding:12px 0;
    border-bottom:1px dashed rgba(255,255,255,.2);
}

.pricing-price{
    padding:25px;
    font-size:20px;
}

.pricing-price span{
    display:block;
    font-size:46px;
    font-weight:700;
    color:#ffb200;
    margin-top:8px;
}

/* Pricing table */

.pricing-button {
    display:inline-block;
    margin:0 0 30px;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    background:#0356a8;
    color:#fff;
}


.pricing-button:hover{
    background:#f5f5f5;
    color:#137ffc;
}

/* =========================================
   OWL Slider
========================================= */
/*arrow owl slider*/
/* En-tête de section */

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:50px;
}

.section-header h2{

    margin:0;
}

/* Navigation */

.slider-nav{

    display:flex;

    gap:12px;
}

.slider-nav .owl-prev,
.slider-nav .owl-next{

    width:52px;

    height:52px;

    border:none!important;

    border-radius:50%!important;

    background:#fff!important;

    color:#0b2b4a!important;

    display:flex!important;

    align-items:center;

    justify-content:center;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

    transition:.3s;
}

.slider-nav .owl-prev:hover,
.slider-nav .owl-next:hover{

    background:#D9A489!important;

    color:#fff!important;

    transform:translateY(-2px);
}

.slider-nav i{

    font-size:22px;
}

.gallery-caption {
    font-size: xxx-large !important;
    line-height: 1.1;
}














/**********************BREAKPOINTS**********************************/
/* =========================================
   BREAKPOINTS HEADER
========================================= */

/* Grand écran */

@media (max-width:1600px){

    .desktop-navigation .main-menu{

        gap:25px;
    }

}

/* Desktop compact */

@media (max-width:1200px){

    .desktop-navigation .main-menu{

        gap:12px;
    }

    .desktop-navigation .main-menu>li>a{

        font-size:14px;
    }

    .desktop-navigation.right-menu .main-menu a{

        padding:.45em .8em;
        border-radius: 5px;
    }

    .site-logo img{

        width:220px;
    }

}

/* =========================================
   MOBILE (992px et moins)
========================================= */

@media (max-width:992px){

    /* Desktop */

    .desktop-header{

        display:none;
    }

    /* Mobile */

    .mobile-header{

        display:flex;

        justify-content:space-between;

        align-items:center;

        padding:18px 20px;

        position:relative;

        z-index:1000;
    }

}

/* Footer editorial desktop */
@media (min-width: 901px) {
    .footer-seo {
        padding: 48px 0 52px;
        background: #111;
    }

    .footer-seo .footer-bottom-container {
        display: grid;
        grid-template-columns: minmax(230px, 0.7fr) minmax(420px, 1.55fr) minmax(300px, 0.95fr);
        grid-template-rows: auto 1fr;
        align-items: start;
        gap: 12px 56px;
        max-width: 1475px;
    }

    .footer-seo h2,
    .footer-seo p {
        margin: 0;
    }

    .footer-seo h2 {
        color: #f4f4f4;
        font-size: clamp(22px, 1.55vw, 28px);
        line-height: 1.25;
        letter-spacing: -0.02em;
    }

    .footer-seo p {
        color: rgba(255, 255, 255, 0.78);
        font-size: 16px;
        line-height: 1.55;
    }

    .footer-seo h2:first-child {
        grid-column: 1;
        grid-row: 1 / span 2;
        padding-left: 20px;
        border-left: 3px solid #0799dd;
    }

    .footer-seo h2:nth-of-type(2) {
        display: none;
    }

    .footer-seo p:nth-of-type(1) {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .footer-seo h2:nth-of-type(3) {
        grid-column: 3;
        grid-row: 1;
        color: #79c9ee;
    }

    .footer-seo p:nth-of-type(2) {
        grid-column: 3;
        grid-row: 2;
    }

    .footer-seo a {
        color: #79c9ee;
        text-decoration-thickness: 1px;
        text-underline-offset: 3px;
    }
}
/* Larger partner logos on desktop */
@media (min-width: 901px) {
    .logos-marquee .logo-item {
        width: 260px;
        padding: 0 20px;
    }

    .logos-marquee .logo-item img {
        width: 100%;
        max-width: 220px;
        max-height: 120px;
    }
}
/* Team hero portrait */
body.single-team .single-hero-image {
    overflow: hidden;
}

body.single-team .single-hero-image > img {
    filter: blur(5px);
    transform: scale(1.025);
}

body.single-team .single-hero-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18));
}

.team-hero-portrait {
    position: absolute;
    z-index: 5;
    top: 68%;
    left: 50%;
    width: min(25vw, 330px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.35);
    transform: translate(-50%, -50%);
}

.team-hero-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 900px) {
    body.single-team .single-hero-image > img {
        filter: blur(4px);
        transform: scale(1.04);
    }

    .team-hero-portrait {
        top: 75%;
        width: min(52vw, 230px);
        border-width: 4px;
        border-radius: 14px;
    }

    body.single-team .single-hero-content {
        z-index: 10;
    }
}
/* Team marquee cards desktop */
@media (min-width: 901px) {
    .logos-marquee {
        padding: 48px 0;
        background: #f5f8fc;
    }

    .logos-marquee .logos-group {
        width: max(100vw, calc(var(--logo-count) * 320px));
    }

    .logos-marquee .logo-item {
        width: 300px;
        padding: 12px;
    }

    .logos-marquee .logo-item a {
        flex-direction: column;
        gap: 14px;
        padding: 10px 10px 16px;
        background: #fff;
        border: 1px solid rgba(24, 59, 91, 0.1);
        border-radius: 20px;
        box-shadow: 0 16px 38px rgba(24, 59, 91, 0.12);
        color: #183b5b;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .logos-marquee .logo-item img {
        width: 100%;
        max-width: 270px;
        height: 300px;
        max-height: none;
        border-radius: 14px;
        object-fit: cover;
    }

    .logos-marquee .logo-item a:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 48px rgba(24, 59, 91, 0.18);
    }

    .logos-marquee .team-logo-name {
        font-size: 20px;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
    }
}