.elementor-kit-6{--e-global-color-primary:#CEF3FD;--e-global-color-secondary:#526871;--e-global-color-text:#000000;--e-global-color-accent:#02839B;--e-global-color-eeb27a7:#FAFEFF;--e-global-color-fde72a7:#DDFCF8;--e-global-color-fa9fa54:#E8FDFF;--e-global-color-720de24:#E1FCFE;--e-global-color-9439afb:#019AA4;--e-global-typography-primary-font-family:"Cormorant Garamond";--e-global-typography-primary-font-weight:800;--e-global-typography-secondary-font-family:"Roboto";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:var( --e-global-color-eeb27a7 );}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* Carte */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: #fff;
}

/* Rond en haut à droite */
.service-card::before {
    content: "";
    position: absolute;

    top: -70px;
    right: -70px;
    left: auto !important;

    width: 180px;
    height: 180px;

    background: #d8f6fb;
    border-radius: 50%;

    opacity: 0;
    transition: all 0.3s ease;

    z-index: 0;
}

/* Tout le contenu passe au-dessus du rond */
.service-card > * {
    position: relative;
    z-index: 2;
}

/* Lien caché par défaut */
.service-card .en-savoir-plus {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Apparition du rond au survol */
.service-card:hover::before {
    opacity: 1;
}

/* Apparition du lien au survol */
.service-card:hover .en-savoir-plus {
    opacity: 1;
    transform: translateY(0);
}

/* Ombre légère */
.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 120, 140, 0.12);
}/* End custom CSS */