
    @import url("https://use.typekit.net/hwy6bzs.css");

    @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css");

    * {

    /* COULEURS CHARTE */

    --bleu: #00A8E7;
    --bleu-clair: #80D3F3;
    --bleu-fonce: #0056A3;
    --bleu-sombre: #00417C;
    --bleu-tres-clair: #CCEEFA;

    --blanc: #FFFFFF;
    --noir: #000000;
    --rouge: #d40a10;
    --grisClair: #F0F0F0;
    --gris: #3b4347;
    --grisFonce: #3B4347;
    --jauneClair: #fdf9ce;

    /* COULEURS CSS */

    --couleur1: var(--bleu);
    --couleur2: var(--bleu-fonce);
    --couleur3: var(--bleu-clair);
    --couleur4: var(--bleu-sombre);
    --couleur5: var(--bleu-tres-clair);


    --couleurTexte: var(--noir);

    --fonte1: "montserrat", sans-serif;

    --bs-modal-border-radius: 1em;


    border-radius:0;
    box-sizing: border-box;
    }


    /*******************
    ANIMATIONS
    *******************/

    @keyframes blink {
    0% {
    opacity:1;
    }
    50% {
    opacity:0;
    }
    100% {
    opacity:1;
    }
    }

    @keyframes vague50px-inverse {
    0% {
    height:50px;
    }
    50% {
    height:20px;
    }
    100% {
    height:50px;
    }
    }

    @keyframes vague50px {
    0% {
    height:20px;
    }
    50% {
    height:50px;
    }
    100% {
    height:20px;
    }
    }

    @keyframes vague100px-inverse {
    0% {
    height:100px;
    }
    50% {
    height:20px;
    }
    100% {
    height:100px;
    }
    }

    @keyframes vague100px {
    0% {
    height:20px;
    }
    50% {
    height:100px;
    }
    100% {
    height:20px;
    }
    }

    @keyframes vagues {
    0% {
    background-size:100% 80%;
    }
    50% {
    background-size:100% 50%;
    }
    100% {
    background-size:100% 80%;
    }
    }


    @keyframes up-down {
    0% {
    transform: translateY(10px);
    }
    100% {
    transform: translateY(-10px);
    }
    }


    .upDownAnimation {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }


    /*******************
    GENERAL
    *******************/

    html, body {
    position:relative;
    z-index:-2;
    font-family: var(--fonte1);
    font-weight:500;
    font-style:normal;
    font-size:16px;
    line-height:1.2em;
    color:var(--couleurTexte);
    width:100vw;
    overflow-x:hidden;
    scroll-behavior: auto !important; /* Désactive le scroll automatique */
    }

    @media screen AND (max-width:767px) {
    body {
    font-size:15px;
    }
    }

    body#body {
    background: var(--blanc);
    }

    main { background: #FFFFFF; }

    figure {
    position:relative;
    }


    .masque {
    background-color:rgba(255,255,255,0.85);
    }


    .margesinterieures {
    padding-top:20px;
    padding-bottom:20px;
    }


    .no-gutters {
    margin-right: 0;
    margin-left: 0;
    }

    .fond-couleur {
    background:var(--couleur6);
    }

    .clear {
    clear:both;
    }


    b, strong {
    font-weight:600;
    }

    .font-weight-normal {
    font-weight:400;
    }
    .font-weight-bold {
    font-weight:500;
    }


    h1, h2, h3, h4, h5, h6 {
    letter-spacing:0;
    margin-bottom: 1rem;
    line-height:1.1em;
    font-weight:400;
    }


    h1 {
    color:var(--bleu);
    font-size:2.2em;
    margin-bottom: 2rem;
    font-family: var(--fonte1);
    text-transform:uppercase;
    line-height:1.1em;
    font-weight:700;
    }

    h2 {
    color:var(--couleur1);
    font-size:2.2em;
    font-family: var(--fonte1);
    font-weight:700;
    }

    h3 {
    font-family: var(--fonte1);
    color:var(--couleur2);
    font-size:1.8em;
    font-weight:700;
    }

    h4 {
    font-family: var(--fonte1);
    color:var(--couleur2);
    font-size:1.1em;
    font-weight:600;
    }


    h5 {
    font-family: var(--fonte1);
    color:var(--couleur5);
    font-size:1em;
    font-weight:500;
    }


    @media screen AND (max-width: 991px) {
    h2 {
    font-size: 2em;
    }
    h3 {
    font-size: 1.6em;
    }
    }

    @media screen AND (max-width: 539px) {
    h2 {
    font-size: 1.8em;
    }
    h3 {
    font-size: 1.4em;
    }
    }


    sub, sup {
    position: relative;
    font-size: 60%;
    line-height: 0;
    vertical-align: baseline;
    }

    sup {
    top: -.4em;
    }

    sub {
    bottom: -.2em;
    }

    blockquote {
    font-size:1em !important;
    padding:20px 45px 10px 50px;
    background:var(--couleur8);
    position:relative;
    }

    blockquote p:last-child {
    margin-bottom:0;
    }

    blockquote:before {
    content: "“";
    font-size: 100px;
    font-style: normal;
    color: var(--couleur9);
    position: absolute;
    top: 25px;
    left: 5px;
    }

    blockquote:after {
    content: "”";
    transform:translateY(0.25em);
    font-size: 60px;
    font-style: normal;
    color: var(--couleur9);
    position: absolute;
    bottom: 12px;
    right: 10px;
    }


    hr {
    background-color: transparent;
    border-top: 2px solid var(--couleur2);
    margin-top: 2rem;
    margin-bottom: 2rem;
    }

    /*******************
    LIENS ET BOUTONS
    *******************/

    a {
    color:var(--couleur1);
    cursor:pointer;
    transition:color 0.3s, background 0.3s, border 0.3s;
    text-decoration:none;
    position:relative;
    }

    h1 a, h2 a, h3 a, h4 a, h5 a { color:inherit; }  /* lien de la couleur des titres */

    a:hover, a:focus{
    color:var(--couleur4);
    text-decoration:none;
    }

    .btn, .btn-visited {
    display:inline-block;
    color:var(--blanc);
    font-weight: 700;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    background: var(--couleur4);
    font-size: 1.1em;
    text-decoration: none;
    line-height: 1.2;
    width:auto;
    transition:background 0.3s, box-shadow 0.3s;
    border:none;
    }

    .btn:hover, .btn:focus {
    color:var(--blanc);
    background:var(--couleur1);
    box-shadow: 0 0 20px 0 var(--blanc);
    border:none;
    }

    .btn-primary {
    border:none;
    padding:5px 10px;
    font-weight:500;
    font-size:1em;
    }

    .btn-secondary {
    border:none;
    padding:5px 10px;
    font-weight:500;
    background: var(--blanc);
    border:1px solid var(--couleur4);
    color:var(--couleur1);
    font-size:1em;
    }

    .btn-secondary:hover {
    background:var(--couleur5);
    border:1px solid var(--couleur4);
    color:var(--couleur4);
    }


    .btn-linkedin::before {
    content: "\F472";
    font-family: bootstrap-icons;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    margin-right: 8px; /* Espacement entre l'icône et le texte */
    vertical-align: middle;
    color:var(--couleur3);
    transition:all 0.3s;
    }

    .btn-video::before {
    content: "\F21B";
    font-family: bootstrap-icons;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    margin-right: 8px; /* Espacement entre l'icône et le texte */
    vertical-align: middle;
    color:var(--couleur3);
    transition:all 0.3s;

    }

    .btn-photo::before {
    content: "\F220";
    font-family: bootstrap-icons;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    margin-right: 8px; /* Espacement entre l'icône et le texte */
    vertical-align: middle;
    color:var(--couleur3);
    transition:all 0.3s;

    }

    .btn-pdf::before {
    content: "\F63E";
    font-family: bootstrap-icons;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    margin-right: 8px; /* Espacement entre l'icône et le texte */
    vertical-align: middle;
    color:var(--couleur3);
    transition:all 0.3s;

    }

    .btn-web::before {
    content: "\F3EF";
    font-family: bootstrap-icons;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    margin-right: 8px; /* Espacement entre l'icône et le texte */
    vertical-align: middle;
    color:var(--couleur3);
    transition:all 0.3s;

    }

    .btn-download::before {
    content: "\F30A";
    font-family: bootstrap-icons;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    margin-right: 8px; /* Espacement entre l'icône et le texte */
    vertical-align: middle;
    color:var(--couleur3);
    transition:all 0.3s;
    }

    .btn-mail::before {
    content: "\F84C";
    font-family: bootstrap-icons;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    margin-right: 8px; /* Espacement entre l'icône et le texte */
    vertical-align: middle;
    color:var(--couleur3);
    transition:all 0.3s;
    }

    .btn-telephone:before {
    content: "\F5C1";
    font-family: bootstrap-icons;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    margin-right: 8px; /* Espacement entre l'icône et le texte */
    vertical-align: middle;
    color:var(--couleur3);
    transition:all 0.3s;
    }


    .btn-linkedin:hover::before,
    .btn-video:hover::before,
    .btn-pdf:hover::before,
    .btn-web:hover::before,
    .btn-download:hover::before,
    .btn-photo:hover::before,
    .btn-mail:hover::before,
    .btn-telephone:hover::before
    {
    transform:scale(1.3);
    color:var(--couleur1);
    }

    .btn-primary.btn-linkedin:hover::before,
    .btn-primary.btn-video:hover::before,
    .btn-primary.btn-pdf:hover::before,
    .btn-primary.btn-web:hover::before,
    .btn-primary.btn-download:hover::before,
    .btn-primary.btn-photo:hover::before,
    .btn-primary.btn-mail:hover::before,
    .btn-primary.btn-telephone:hover::before
    {
    color:var(--couleur4);
    }


    /*****************************************
    statistiques
    *****************************************/

    .stat-card {
    text-align: center;
    padding: 20px;
    border-radius: 0 1rem 1rem 1rem;
    background: var(--couleur5);
    }
    .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--couleur1);
    line-height:2rem;
    margin-bottom:1rem;
    }
    .stat-text {
    }


    /*****************************************
    LISTES À PUCES ET LISTES NUMÉROTÉES
    *****************************************/

    .num {
    position: relative;
    padding-left: 2em; /* Espace pour la puce */
    }

    .num::before {
    content: "";
    position: absolute;
    left: 0;
    top: -0.2em;
    width: 1.4em; /* Taille de la puce */
    height: 1.4em;
    padding:0.25em 0.2em;
    font-size:1.2em;
    background-color: var(--couleur1); /* Couleur de la puce */
    color:var(--blanc);
    border-radius: 0 50% 50% 50%;
    }

    .num.num1::before {
    content:"\F797";
    font-family: "bootstrap-icons";
    }

    .num.num2::before {
    content:"\F79D";
    font-family: "bootstrap-icons";
    }

    .num.num3::before {
    content:"\F7A3";
    font-family: "bootstrap-icons";
    }

    .num.num4::before {
    content:"\F7A9";
    font-family: "bootstrap-icons";
    }

    .num.num5::before {
    content:"\F7AF";
    font-family: "bootstrap-icons";
    }

    .num.num6::before {
    content:"\F7B5";
    font-family: "bootstrap-icons";
    }

    .num.num7::before {
    content:"\F7BB";
    font-family: "bootstrap-icons";
    }

    .num.num8::before {
    content:"\F7C1";
    font-family: "bootstrap-icons";
    }

    .num.num9::before {
    content:"\F7C7";
    font-family: "bootstrap-icons";
    }


    /*****************************************
    LISTES À PUCES ET LISTES NUMÉROTÉES
    *****************************************/


    #pageContent ul {
    list-style: none; /* Supprime les puces par défaut */
    padding-left: 0;
    }

    #pageContent ul li {
    position: relative;
    padding-left: 25px; /* Espace pour la puce */
    margin-bottom: 8px; /* Espacement entre éléments */
    }

    #pageContent ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 0.9em; /* Taille de la puce */
    height: 0.9em;
    background-color: var(--couleur5); /* Couleur de la puce */
    border-radius: 0 50% 50% 50%;
    }

    #pageContent .encadre.modele2 ul li::before {
    background-color:var(--blanc);
    }


    br.break-xs {
    content:"";
    margin-left: 10px;
    }
    @media screen AND (max-width:540px) {
    br.break-xs {
    display:block;
    }
    }


    p.intro {
    font-size:1.3em;
    font-weight:600;
    color:var(--vertFonce);
    line-height:1.2em;
    }

    p.lead {
    font-size:1em;
    color: var(--couleur2);
    line-height: 1em;
    margin-bottom: 10px;
    display: inline-block;
    }


    .alert {
    border-radius:0;
    margin-bottom:3vh;
    }

    .alert-success {
    color: var(--couleur2);
    background-color: var(--couleur8);
    border-color: var(--couleur2);
    }

    .alert-danger {
    color: #FF0000 !important;
    background-color: rgba(255,0,0,0.1) !important;
    border-color: #FF0000 !important;
    border-width:2px;
    }

    .alert-warning {
    color: #FF0000 !important;
    background-color: rgba(255,0,0,0.1) !important;
    border-color: #FF0000 !important;
    }

    .alert *:last-child {
    margin-bottom:0;
    }


    .img-hover img {
    transition:transform 0.3s;
    }

    .img-hover:hover img {
    transform:scale(1.1);
    }


    .encadre {
    padding:1rem;
    }

    .encadre *:last-child {
    margin-bottom:0;
    }
    .encadre h1 + p {
    margin-top:0 !important;
    }
    .encadre p + h1 {
    margin-top:30px !important;
    }

    .encadre.modele1 {
    background:var(--blanc);
    box-shadow:0 0 10px 0 var(--couleur5);
    border-radius: 0 1rem 1rem 1rem;
    }

    .encadre.modele2 {
    background:var(--couleur5);
    border-radius: 0 1rem 1rem 1rem;
    }


    /**************
    pagination
    **************/

    .page-item.active .page-link {
    color: var(--couleur1);
    background: none;
    border:none;
    box-sizing:border-box;
    }

    .pagination-prev .page-link,
    .pagination-next .page-link {
    border:1px solid transparent !important;
    }

    .pagination-prev a span,
    .pagination-next a span {
    opacity:0;
    }

    .pagination-next a:after{
    content:url("images/green_right-arrow.svg");
    position:absolute;
    left:0;
    display:block;
    top:0;
    left:0;
    box-sizing:border-box;
    height:100%;
    width:100%;
    padding:0;
    transition:all 0.3s;
    }

    .pagination-next.disabled {
    opacity:0.3;
    }

    .pagination-next a:hover:after{
    transform:scale(1.2);
    }

    .pagination-prev a:after{
    content:url("images/green_left-arrow.svg");
    position:absolute;
    left:0;
    display:block;
    top:0;
    left:0;
    box-sizing:border-box;
    height:100%;
    width:100%;
    padding:0;
    transition:all 0.3s;
    }

    .pagination-prev.disabled {
    opacity:0.3;
    }

    .pagination-prev a:hover:after{
    transform:scale(1.2);
    }

    .page-link:hover {
    background:none;
    }


    /*******************
    TABLEAUX
    *******************/


    .table-dark {
    --bs-table-bg: var(--couleur2);
    border-color: var(--couleur2) !important;
    }

    .border-light {
    border-color: var(--couleur2) !important;
    }

    .table th {
    border-color: var(--blanc) !important;
    }

    .table td {
    border-color: var(--couleur2) !important;
    }

    .table tbody {
    vertical-align:middle;
    }

    .table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--couleur9);
    }

    .table-striped>tbody>tr:nth-of-type(even) {
    --bs-table-accent-bg: var(--couleur10);
    }

    .table-striped>tbody>tr.pair {
    --bs-table-accent-bg: var(--couleur9) !important;
    }

    .table-striped>tbody>tr.impair {
    --bs-table-accent-bg: var(--couleur10) !important;
    }

    .table p:last-of-type {
    margin-bottom:0;
    }


    /*******************************
    formulaire
    ********************************/

    .mentionsFormulaire {
    text-align:justify;
    font-size:0.8em;
    line-height:1em;
    border:1px solid var(--couleur1);
    background-image: linear-gradient(160deg, #ffffff 40%, var(--vertClair30pourcents) 40%, var(--vertClair30pourcents) 50%, #ffffff 50%, #ffffff 90%, var(--vertClair30pourcents) 90%, var(--vertClair30pourcents) 100%);
    background-size: 14.62px 5.32px;
    color:var(--couleur1);
    }
    .mentionsFormulaire *:last-of-type {
    margin-bottom:0 !important;
    }


    @media screen and (max-width: 539px) {
    .mentionsFormulaire {
    font-size:0.7em;
    line-height:1.1em;
    }
    }

    .form-control {
    border-radius:0;
    }

    .form-check {
    position:relative;
    padding-left: 30px;
    }

    .invalid-feedback, .valid-feedback, #erreur_kaptcha {
    font-size:0.8em;
    font-style:italic;
    margin-top:0;
    }

    .erreur {
    color: #dc3545;
    }

    .was-validated .form-control:valid,
    .was-validated .form-control:invalid {
    border-color: #ced4da;
    }

    .was-validated .form-control:valid {
    background-image:none;
    }

    .form-check-input.is-valid~.form-check-label,
    .was-validated .form-check-input:valid~.form-check-label {
    color: var(--couleurTexte);
    }


    /* Aspect de la case */
    [type="checkbox"] {
    opacity:0;
    transform:translate(2px,-1px);
    }

    [type="radio"] {
    opacity:0;
    transform:translate(2px,-1px);
    }


    [type="checkbox"]:not(:checked) + label::before,
    [type="checkbox"]:checked + label::before {
    display:block;
    content:"";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
    background: #FFF;
    border-radius: 0;
    transition: all .275s;
    border: 1px solid #ced4da;
    }

    /* Aspect de la coche */
    [type="checkbox"]:not(:checked) + label::after,
    [type="checkbox"]:checked + label::after {
    display:block;
    font-family: "bootstrap-icons";
    content: "\F633";
    color:var(--couleur5);
    position: absolute;
    top: 8px;
    left: -3px;
    font-size: 32px;
    line-height: 0;
    transition: all .2s; /* Petite transition */
    }

    /* Aspect non cochée */
    [type="checkbox"]:not(:checked) + label::after {
    opacity: 0;
    transform: scale(0);
    }

    /* Aspect cochée */
    [type="checkbox"]:checked + label::after {
    opacity: 1;
    transform: scale(1);
    }

    /* Aspect disabled */
    [type="checkbox"]:disabled + label::before {
    border: 1px solid #28ddcb66 !important;
    }


    /* Aspect de la case */
    [type="radio"]:not(:checked) + label::before,
    [type="radio"]:checked + label::before {
    display:block;
    content:"";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
    background: #FFF;
    border-radius: 0;
    transition: all .275s;
    border: 1px solid #ced4da;
    }


    /* Aspect de la coche */
    [type="radio"]:not(:checked) + label::after,
    [type="radio"]:checked + label::after {
    display:block;
    font-family: "bootstrap-icons";
    content: "\F633";
    color:var(--couleur5);
    position: absolute;
    top: 8px;
    left: -3px;
    font-size: 32px;
    line-height: 0;
    transition: all .2s; /* Petite transition */
    }

    /* Aspect non cochée */
    [type="radio"]:not(:checked) + label::after {
    opacity: 0;
    transform: scale(0) rotate(10deg);
    }

    /* Aspect cochée */
    [type="radio"]:checked + label::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    }

    /* Aspect disabled */
    [type="radio"]:disabled + label::before {
    border: 1px solid #28ddcb66 !important;
    }


    /* visuels */


    .visuel {
    position:relative;
    }

    .copyright {
    background:rgba(0,0,0,0.4);
    color:rgba(255,255,255,0.67);
    padding:0 3px;
    font-size:0.6em;
    position:absolute;
    bottom:5px;
    right:20px;
    line-height:1.2em;
    margin-bottom:0;
    }

    figcaption {
    background:rgba(0,0,0,0.4);
    color:rgba(255,255,255,0.67);
    padding:0 3px;
    font-size:0.6em;
    position:absolute;
    bottom:5px;
    right:20px;
    line-height:1.2em;
    margin-bottom:0;
    }


    .meta {
    font-size:0.8em;
    color:#999;
    }


    .modal-open .modal {
    padding-left: 0px !important;
    padding-right: 0px !important;
    overflow-y: scroll;
    }

    .modal-content {
    border-radius : 0 var(--bs-modal-border-radius) var(--bs-modal-border-radius) var(--bs-modal-border-radius);
    }

    #videoModal .modal-close, #galleryModal .modal-close {
    z-index:1000;
    color:var(--blanc);
    position:absolute;
    bottom:-1.4em;
    right:0;
    font-size:1.2em;
    text-transform:uppercase;
    text-shadow:0 0 10px var(--couleur4);
    font-weight:700;
    cursor:pointer;
    transition:all 0.3s;
    }

    #videoModal .modal-close:hover, #galleryModal .modal-close:hover {
    color:var(--couleur3);
    transform:scale(1.1);
    }


    .modal-backdrop {
    --bs-backdrop-bg: var(--couleur4);
    --bs-backdrop-opacity: 0.7;
    }


    .pageContent { background:var(--blanc);
    padding:0;
    margin-bottom: 50px;
    }

    #pageContent h4.intro {
    color:var(--couleur1);
    font-weight:500;
    font-size:1.4em;
    line-height:1.4em;
    }


    .pageContent p {
    text-align:justify;
    line-height: 1.4em;
    }

    .pageContent img {
    border-radius: 0 1rem 1rem 1rem;
    }

    @media screen AND (max-width:539px) {
    .pageContent p {
    text-align:left;
    }
    #pageContent h4.intro {
    font-size:1.2em;
    line-height:1.3em;
    }
    }

    .pageContent h2 {
    margin-top: 4rem !important;
    }

    , .pageContent h3 {
    margin-top: 3rem !important;
    }

    #pageContent .encadre h2:first-of-type {
    margin-top:0 !important;
    font-size:1.8em;
    }

    .pageContent h2 + h3 {
    margin-top: 1rem !important;
    }


    .pageContent figure, .pageContent .photo-legende, .pageContent .photo {
    position:relative;
    }

    .pageContent figcaption, .pageContent .photo-legende .legende {
    position:relative;
    font-size:0.8em;
    color:#999999;
    background:none;
    top:0;
    left:0;
    padding:5px 0 0 0;
    }

    .pageContent figure .copyright, .pageContent .photo-legende .copyright {
    background:rgba(0,0,0,0.4);
    color:rgba(255,255,255,0.67);
    padding:0 3px;
    font-size:0.6em;
    position:absolute;
    bottom:5px;
    right:5px;
    line-height:1.2em;
    margin-bottom:0;
    }

    p.legende {
    font-style:italic;
    color:var(--couleur3);
    text-align:center;
    }


    .visuel {
    position:relative;
    }

    .copyright {
    background:rgba(0,0,0,0.4);
    color:rgba(255,255,255,0.67);
    padding:0 3px;
    font-size:0.6em;
    position:absolute;
    bottom:0px;
    right:0px;
    line-height:1.2em;
    margin-bottom:0;
    }


    .bloc-menu {
    padding-bottom:10px;
    text-align:center;
    overflow:hidden;
    }

    .bloc-menu img {
    transition: all 0.3s;
    transform-origin:50% 0;
    }

    .bloc-menu .rubrique {
    text-transform:uppercase;
    padding:10px 5px;
    font-weight:600;
    min-height:100px;
    }

    a > .bloc-menu {
    color:#FFF;
    }

    a:hover > .bloc-menu img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    }


    .table-hover > tbody > tr:hover {
    background-color: #f9d82a;
    }

    .fichier {
    color:#999999;
    font-size:0.7em;
    margin-top:10px;
    }

    .stylish-input-group {
    margin-bottom:10px;
    background-color:white;

    }
    .stylish-input-group .input-group-addon{
    padding:6px 2px 0px;
    color:var(--couleur2);
    border:1px solid var(--couleur2);
    font-size:20px;
    border-radius:0;
    background:var(--couleur2)22 !important;
    transition:background 0.3s;

    }
    .stylish-input-group .input-group-addon:hover{
    background:var(--couleur2) !important;
    }
    .stylish-input-group .input-group-addon:hover button{
    color:var(--blanc);
    }

    .stylish-input-group .form-control{
    border-radius:0;
    border-right:0;
    box-shadow:0 0 0;
    border-color:var(--couleur2);
    }
    .stylish-input-group button{
    border:0;
    background:transparent;
    color:var(--couleur2);
    transition:color 0.3s;
    }


    .videotheque .col {
    margin-bottom:20px;
    }


    .videotheque img {
    cursor:pointer;
    transition:all 0.5s;
    -webkit-transition:all 0.5s;
    -moz-transition:all 0.5s;}

    .videotheque img:hover {
    cursor:pointer;
    }


    .modal-open .modal {
    padding-left: 0px !important;
    padding-right: 0px !important;
    overflow-y: scroll;
    }


    /* phototheque et videotheque */

    .phototheque .panel, .videotheque .panel {
    border:1px solid #ddd;
    box-shadow:0 2px 8px 0 rgba(0,0,0,0.3);
    }


    .panel-image img.panel-image-preview {
    width: 100%;
    }

    .panel-heading ~ .panel-image img.panel-image-preview {
    border-radius: 0px;
    }


    .panel-image ~ .panel-footer a {
    padding: 0px 10px;
    }

    .panel-body {
    padding: 10px !important;
    }

    .phototheque .credit {
    font-size:0.8em;
    color:#666666;
    }

    .phototheque p, .videotheque p {
    text-align:left !important;
    }


    /************************
    HOMEPAGE
    ************************/

    #homepage #page {
    margin: 30px 0;
    }

    /************************
    PAGE
    ************************/

    #page {
    position:relative;
    z-index:-1;
    background: var(--blanc);
    }


    /************************
    SIDEBAR
    ************************/


    .sidebar-widget {
    padding: 1rem;
    border-radius: 0;
    margin-bottom:2rem;
    position:relative;
    border:1px solid var(--couleur2);
    background:var(--vertClair10pourcents);
    }

    .sidebar-widget.active {
    background:var(--blanc);
    border:1px solid var(--couleur1);
    }

    .sidebar-widget h3 {
    font-family:var(--fonte1);
    color:var(--couleur1);
    }


    .sidebar-widget h5 {
    font-family:var(--fonte1);
    color:var(--couleur2);
    font-family:var(--fonte1);
    }

    .sidebar-widget article figure {
    margin-bottom:0.5rem;
    }


    .sidebar-widget.recent-post-widget .post,
    .sidebar-widget article {
    padding:10px 0 0;
    }
    .sidebar-widget.recent-post-widget .post + .post,
    .sidebar-widget article + article {
    border-top: 1px solid var(--couleur5);
    }

    .sidebar-widget.active.recent-post-widget .post + .post,
    .sidebar-widget.active article + article {
    border-top: 1px solid var(--couleur3);
    }


    .sidebar-widget.next-events-widget .post {
    padding:10px 0 0;
    }
    .sidebar-widget.next-events-widget .post + .post {
    border-top: 1px solid var(--couleur5);
    }

    .sidebar-widget.active.next-events-widget .post + .post {
    border-top: 1px solid var(--couleur3);
    }


    .sidebar-widget.category-widget ul a {
    display: block;
    position: relative;
    color:var(--couleur1);
    }
    .sidebar-widget.category-widget ul a:hover {
    color:var(--couleur2);
    }

    .sidebar-widget.category-widget ul {
    list-style:none;
    padding:0;
    margin-bottom:0;
    }

    .sidebar-widget.category-widget ul li {
    position:relative;
    transition:background 0.3s;
    padding:2px 0;
    }

    .sidebar-widget.category-widget ul > li + li {
    border-top: 1px solid var(--couleur6);
    }
    .sidebar-widget.active.category-widget ul > li + li {
    }

    .sidebar-widget.category-widget ul li span {
    font-size:0.8em;
    background:var(--couleurTexteLien);
    color:var(--blanc);
    border-radius:10px;
    position: absolute;
    right: 0;
    min-width:30px;
    text-align:center;
    }
    .sidebar-widget.category-widget ul a:hover span {
    background:var(--couleurTexteLienSurvol);
    color:var(--blanc);
    }


    #page .addthis-widget, #page .sharing-widget {
    border-top: 1px solid var(--couleur6);
    margin: 20px;
    color: var(--blanc);
    padding:10px 0 0;
    text-align:right;
    }

    #page .sharing-widget #sharing-widget {
    display: flex;
    justify-content: right;
    }

    #page .sharing-widget #sharing-widget .a2a_svg,
    #page .sharing-widget #sharing-widget .a2a_count {
    border-radius: 0 !important;
    width:20px !important;
    height:20px !important;
    line-height:20px !important;
    }


    /************************
    GALERIE PHOTOS
    ************************/

    .galerie {
    border-top: 1px solid var(--couleur2);
    border-bottom: 1px solid var(--couleur2);
    margin: 30px 0 0;
    padding: 20px 0;
    color: var(--blanc);
    }

    .galerie h3 {
    margin-top:0 !important;
    }

    .galerie .galeriePhotos .col {
    padding-top:15px;
    padding-bottom:15px;
    }

    .galerie .galerieContent figure {
    width: 100%;
    height:100%;
    overflow: hidden;
    margin:0 !important;
    }
    .galerie .galerieContent figure img {
    object-fit:cover;
    width:100%;
    height:100% !important;
    transition:transform 0.3s;
    }

    .galerie .galerieContent figure:hover img {
    transform:scale(1.1);
    }

    .galerie .galerieContent figcaption {
    padding:1px 3px 3px;
    font-size:0.8em;
    color:#999999;
    }


    .square-box{
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #EEEEEE;
    transition:transform 0.3s;
    }
    .square-box:hover {
    transform:scale(1.1);
    }

    .square-box:before{
    content: "";
    display: block;
    padding-top: 100%;
    }
    .square-content{
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: white;
    text-align: center;
    }


    /************************
    SIDEBAR
    ************************/

    #sidebar .sidebarContainer {
    margin-bottom:30px;
    position:relative;
    padding-bottom:5px;
    background:var(--couleur6);
    box-sizing:content-box;
    }


    /*****************
    LECTEUR VIDEO
    *****************/


    .lecteur-video {
    position:relative;
    line-height:0;
    }


    /*******************
    BANDEAU TITRE
    *******************/


    #bandeau-titre {
    position: relative;
    background-color: black;
    height: 25vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;

    }

    #bandeau-titre p {
    font-weight: 900;
    color: var(--couleur4);
    font-size: 4em;
    line-height: 1.2em;
    margin-bottom: 0;
    }

    #bandeau-titre video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background:var(--couleur3);
    }

    #bandeau-titre .container {
    position: relative;
    z-index: 2;
    }

    #bandeau-titre .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
    }

    #bandeau-titre h1 {
    font-size:4em;
    font-weight:900;
    color:var(--couleur4);
    margin-bottom:0;
    }

    #bandeau-titre h2 {
    font-size:3em;
    font-weight:700;
    color:var(--blanc);
    text-shadow: 0 0 10px var(--couleur1);
    margin-bottom:0;
    }


    #bandeau-titre:before {
    z-index: 1000;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 50px;
    background: url("/download/images/vague_blanc_header.png");
    background-size: 100% 100%;
    animation: vague50px 10s infinite ease-in-out;
    }

    #bandeau-titre:after {
    z-index: 1000;
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    left: 0;
    height: 50px;
    background: url("/download/images/vague_bas_bandeau-titre.png");
    background-size: 100% 100%;
    animation: vague50px 10s infinite ease-in-out;
    }

    @media screen AND (max-width: 991px) {
    #bandeau-titre h1 {
    font-size: 3em;
    }
    #bandeau-titre h2 {
    font-size:1.5em;
    }
    }


    /***********************
    ASTUCE POUR DECALER
    LES LIENS UTILISÉS
    COMME ANCRES
    ***********************/

    /* a:not([href]):not([class]):not([rel]):not([data-bs-toggle]):not([data-bs-target]):before {
    display: block;
    content: " ";
    margin-top: -100px;
    height: 100px;
    visibility: hidden;
    }
    */

    a:not([href]):not([class]):not([rel]):not([data-bs-toggle]):not([data-bs-target]) {
    scroll-margin-top: 100px;
    }


    #adminWidget {
    position:absolute;
    bottom:10px;
    right:10px;
    }


body #tarteaucitronRoot div#tarteaucitronAlertBig {
padding:5vh 0;
background: color-mix(in srgb, #000000, transparent 25%); /* Filtre sombre */
}

div#tarteaucitronAlertBig:before {
content: '' !important;
font-size: 50px;
}

#tarteaucitronDisclaimerAlert {
display:block !important;
text-align:center !important;
padding-bottom:10px !important;
}

#tarteaucitronAlertBig button {
margin-bottom:10px !important;
border-radius:0 1em 1em 1em;
}