/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* ========================
           GENERAL 
 ========================== */
:root {
  --couleur-principale: #000000;
  --couleur-secondaire: #D4FF46;
  --couleur-accent: #1A1A1A;
  --couleur-texte: #FFFFFF;
}

.grecaptcha-badge { display : none!important};

.scrolling {
  background-color: #000000 !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.scroll-background {
  position: fixed;
  margin-top: 0px;
  z-index: 999999999;
}

html, body {
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: black !important;
  overflow-x: hidden !important;
}

.elementor.elementor-11 {
    overflow: hidden;
}

body>*:not(div[style*="backdrop-filter"]) {
  position: relative;
}

a#background-logo {
  margin-top: -25px;
}

div#menu-logo {
  margin-top: 9px;
}

.sous-menu a {
  font-size: 12px !important;
  color: grey !important;
  margin-top: -15px;
}

li.menu-nav.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-1745 {
    margin-top: 35px;
}

.current-menu-item.page_item.page-item-11.current_page_item.menu-item-800, .menu-item-home.menu-item-800 {
    margin-bottom: 20px;
}

/* ========================
          VIDEOS 
 ========================== */
.video-radius-gauche {
  border-radius: 0px 20px 20px 0px;
  overflow: hidden;
}

.video-radius-gauche iframe {
  width: 100%;
  height: 100%;
}

/* ========================
  ANIMATION TITRE — ACCUEIL 
 ========================== */
.big-logo {
  position: fixed;
  font-family: 'Krona One', sans-serif;
  font-weight: 400;
  color: white;
  z-index: 9999999;
  pointer-events: none;
  white-space: nowrap;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#bigLogo {
  position: fixed;
  z-index: 9999999;
}

#header {
  position: fixed;
  z-index: 99999;
}

/* ========================
      TRAIT TITRE H2 
 ========================== */
.titre-underline h2::after,
.titre-underline h1::after {
  content: '';
  display: block;
  height: 1px;
  width: 15%;
  margin-top: 6px;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.titre-underline-noir h2::after {
  content: '';
  display: block;
  height: 1px;
  width: 15%;
  margin-top: 6px;
  background: linear-gradient(to right, rgb(0, 0, 0) 0%, transparent 100%);
}

/* ========================
        FOND BLANC 
 ========================== */

.fond-blanc {
  background-color: white;
  transform: skewY(-3deg);
}

.fond-blanc .penchement {
  transform: skewY(3deg);
}

.fond-blanc,
.fond-blanc .penchement {
  backface-visibility: hidden;
  will-change: transform;
}

.background-list span.elementor-icon-list-text {
  background: #1a1a1a;
  padding: 10px 20px 10px 20px;
  margin-bottom: 30px;
}

/* ========================
       BOUTON ACTION 
========================== */

.button-action {
  --black-700: hsla(0 0% 12% / 1);
  --border_radius: 12px;
  --transtion: 0.3s ease-in-out;
  --offset: 2px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform-origin: center;
  padding: 1rem 2rem;
  background-color: transparent;
  border: none;
  border-radius: var(--border_radius);
  transform: scale(calc(1 + (var(--active, 0) * 0.1)));
  transition: transform var(--transtion);
}

button:hover {
  background-color: rgb(255, 255, 255);
}

span.text_button {
  font-family: 'Krona One';
  font-size: 12px !important;
  text-transform: uppercase;
  padding-top: 4px;
}

.button-action::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #141414;
  border-radius: var(--border_radius);
  box-shadow: inset 0 0.5px hsl(0, 0%, 100%), inset 0 -1px 2px 0 hsl(0, 0%, 0%);
  transition: all var(--transtion);
  z-index: 0;
}

.button-action::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #1f1f1f;
  background-image: none;
  background-position: top;
  opacity: var(--active, 0);
  border-radius: var(--border_radius);
  transition: opacity var(--transtion);
  z-index: 2;
}

.button-action:is(:hover, :focus-visible) {
  --active: 1;
}

.button-action:active {
  transform: scale(1);
}

.button-action .dots_border {
  --size_border: calc(100% + 2px);
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--size_border);
  height: var(--size_border);
  background-color: transparent;
  border-radius: var(--border_radius);
  z-index: -10;
}

.button-action .dots_border::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  transform-origin: left;
  transform: rotate(0deg);
  width: 100%;
  height: 2rem;
  background-color: white;
  mask: linear-gradient(transparent 0%, white 120%);
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.button-action .text_button {
  position: relative;
  z-index: 10;
  background-image: linear-gradient(90deg,
      hsla(0 0% 100% / 1) 0%,
      hsla(0 0% 100% / 1) 120%);
  background-clip: text;
  font-size: 1rem;
  color: transparent;
  transition: color var(--transtion);
}

.button-action:is(:hover, :focus-visible) .text_button {
  color: white;
  background-image: none;
}

/* ========================
HALO LUMINEUX VIDEO - ACCUEIL 
 ========================== */
/*.halo-video {
  position: relative;
  z-index: 1;
}

.halo-video::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30%;
  transform: translate(-50%, -50%);
  filter: blur(65px);
  z-index: -1;
  pointer-events: none;
}*/

/* animations test */
/*.horizontal-section {
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.horizontal-wrapper {
  display: flex;
  height: 100vh;
  width: max-content;
}

.panel {
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 10vw, 10rem);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  padding: 0 5vw;
}



/* ANIMATION SMOOTH */
/*.controls .content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}

.controls svg {
  width: 150px;
  height: 150px;
  z-index: -1;
  overflow: visible
}

.controls .smooth-settings {
  height: auto;
  overflow: hidden;
}

.controls {
  display: none;
}

/* ANIMATION LETTRE CHANGEMENT */
/*.ml6 {
  position: relative;
  font-weight: 900;
  font-size: 3.3em;
}

.ml6 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.2em;
  padding-right: 0.05em;
  padding-bottom: 0.1em;
  overflow: hidden;
}

.ml6 .letter {
  display: inline-block;
  line-height: 1em;
}*/



/* ========================
            BLOG 
 ========================== */

.bloc-ia span.impaakt-ai-links__label {
    color: white;
}

article.elementor-post.elementor-grid-item:hover {
    transform: rotate(2deg)!important;
    transition: 0.5s;
}

article.elementor-post.elementor-grid-item {
    transition: 0.5s!important;
}

/* sidebar article */
.formulaire-fixe {
  position: sticky !important;
  top: 100px !important;
}

.formulaire-fixe,
.sidebar,
.section-article-wrapper,
body,
html {
  overflow: visible !important;
}
/* --- */

/* design article */
.blog-border-white {
    border: solid 2px #4f4f4f;
    padding: 30px;
    border-radius: 20px;
    transition: 0.2s;
}

.blog-border-white:hover {
    border: solid 2px white;
}

.blog-border-white  h2.wp-block-heading,
.blog-background-grey  h2.wp-block-heading,
.blog-background-grey-right  h2.wp-block-heading,
.blog-background-grey-left  h2.wp-block-heading {
  margin: 0px !important;
}

.blog-design {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.wp-block-getwid-section.getwid-margin-top-large.getwid-margin-bottom-large.getwid-init {
  background: #d4ff46;
}

.contenu-article .wp-block-table thead {
  border-bottom: 3px solid;
  border-top: solid 2px;
}

/* -- */
.blog-background-grey {
  background: var(--couleur-accent);
  border-radius: 20px;
  padding: 30px;
}

.blog-background-grey:hover {
  background: var(--couleur-accent);
  rotate: 5deg;
  transition: 0.2s;
}

/* -- */
.blog-img-right img {
  border-radius: 20px 20px 0px 20px !important;
}

.blog-background-grey-right {
  background: var(--couleur-accent);
  border-radius: 20px;
  padding: 30px;
  margin-left: -135px;
}

.blog-img-left img {
  border-radius: 20px 20px 20px 0px !important;
}

.blog-background-grey-left {
  background: var(--couleur-accent);
  border-radius: 20px;
  padding: 30px;
  margin-right: -135px;
}
/* --- */

.contenu-article .wp-block-getwid-section .wp-block-getwid-section__wrapper .wp-block-getwid-section__inner-wrapper {
    max-width: 76.3%;
}

.contenu-article a {
    color: var(--couleur-secondaire)!important;
}

h2.wp-block-heading, .glossary h2, .cvg h2, .cookie-page h2  {
  font-family: 'Krona One'!important;
  margin-top: 50px!important;
  text-transform: uppercase!important;
  text-align: left!important;
  font-size: 30px!important;
}

h3.wp-block-heading , .glossary h3, .cvg h3{
  font-family: 'Krona One';
  color: var(--couleur-secondaire);
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 40px;
  text-align: left;
}

.contenu-article p a,
.elementor-element.elementor-widget-theme-post-content a {
  color: #ffffff;
  font-weight: 100;
}

.contenu-article p a:hover,
.elementor-element.elementor-widget-theme-post-content a:hover {
  color: var(--couleur-secondaire);
}

ul.wp-block-list {
  margin-top: 20px;
  margin-bottom: 20px;
  list-style: none;
}

.contenu-article {
  text-align: justify;
}

.contenu-article p {
    margin-bottom: 15px !important;
}

.contenu-article ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.contenu-article ul li::before  {
    content: "";
    position: absolute;
    left: 0px;
    top: 10px;
    width: 14px;
    height: 12px;
    background-image: url(/wp-content/uploads/2026/01/Group-4-2.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.wp-block-columns.lire-aussi {
  background-color: #1f1f1f !important;
  border-radius: 10px;
  font-family: 'Jost';
  margin-top: 25px;
  margin-bottom: 25px;
}

.lire-aussi p {
  font-size: 17px !important;
  margin: 0px !important;
}

h6#lire-aussi {
  font-family: 'Jost' !important;
  font-size: 17px !important;
}

.lire-aussi p.has-black-color.has-text-color {
  color: white !important;
  font-family: 'Jost';
}

.cta-custom a,
h3#CTA {
  color: black !important;
}

.wp-block-media-text.has-media-on-the-right.is-stacked-on-mobile.is-vertically-aligned-center.cta-custom {
  grid-template-columns: 100% 31% !important;
}

.wp-block-media-text.is-stacked-on-mobile.is-vertically-aligned-center.cta-custom {
  grid-template-columns: 31% 100% !important;
}

.wp-block-getwid-section__wrapper {
  position: relative;
  display: inline;
  align-items: self-start;
  height: 100%;
  padding: 1em;
  min-width: 70px;
}

.wp-block-spacer {
    height: 0px !important;
}

h3#CTA {
    margin-top: 20px;
}

span.impaakt-ai-links__label {
    font-family: 'Jost';
}

a.wp-block-button__link.wp-element-button:hover {
    resize: block;
    transform: scale(1.05);
    transition: 0.5s;
}

a.wp-block-button__link.wp-element-button {
    background: #1f1f1f;
    color: white !important;
    border: none;
    text-transform: uppercase;
    font-size: 12px!important;
    font-family: 'Krona One';
    border-radius: 10px !important;
    padding: 10px 30px 10px 30px;
    transition: 0.5s;
}

/* ========================
      FORMULAIRE BLOG 
 ========================== */
.contact-form__row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form__field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form__field--full {
  width: 100%;
}

.contact-form__row {
    display: flex;
    justify-content: center;
}

.contact-form-blog .wpcf7-response-output {
    margin-top: 65px !important;
    border-radius: 10px;
    font-family: 'Jost';
}

.contact-form-blog input.contact-form__input, 
.contact-form-blog textarea.contact-form__textarea {
    background: #00000000;
    color: rgb(255, 255, 255) !important;
    border-bottom: solid 1px rgb(255, 255, 255) !important;
    outline: none;
    border: none;
    border-radius: 0px;
    font-family: 'Jost';
}

.contact-form-blog .wpcf7-not-valid-tip {
    color: #ffffff;
    font-size: 13px;
    line-height: 15px;
    display: block;
    margin-top: 7px;
}

.contact-form-blog .contact-form__submit:hover {
  opacity: 0.9;
}

.contact-form-blog .contact-form__input::placeholder,
.contact-form-blog .contact-form__textarea::placeholder {
    color: rgb(255, 255, 255);
}

.contact-form-blog input.wpcf7-form-control.wpcf7-submit.has-spinner.contact-form__submit {
    background: var(--couleur-secondaire);
    color: black!important;
    font-size: 12px;
    font-family: 'Krona One';
    text-transform: uppercase;
    padding: 15px 30px 15px 30px;
    border: none;
    outline: none;
    border-radius: 10px;
    display: flex;
    margin-bottom: -45px;
    margin-top: 20px;
}

.contact-form-blog input.wpcf7-form-control.wpcf7-submit.has-spinner.contact-form__submit:hover {
    background: #000000;
    color: #ffffff!important;
}

.contact-form-blog span.wpcf7-list-item-label a,
.contact-form-blog span.wpcf7-list-item-label {
    color: #ffffff;
    font-size: 13px;
    font-family: 'Jost';
}

.contact-form-blog textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.contact-form__textarea {
    height: 100px;
}

.contact-form-blog label.politique-conf,
.contact-form-blog label.politique-conf a {
    color: rgb(255, 255, 255)!important;
    margin-top: -70px;
    font-size: 12px;
    text-align: left;
}

label.politique-conf {
    margin-left: 25px;
}

/* ========================
      FORMULAIRE CONTACT 
 ========================== */
.contact-form {
    font-family: jost !important;
}

.contact-form-page span.wpcf7-list-item-label {
    font-size: 13px;
}

.contact-form-page .wpcf7-response-output {
    border-radius: 5px;
    margin: 60px 0px 40px 0px !important;
    font-family: 'Jost';
}

.contact-form-page input.wpcf7-form-control.wpcf7-submit.has-spinner.contact-form__submit {
    display: flex;
    margin: auto;
    background: var(--couleur-secondaire);
    color: rgb(0, 0, 0);
    font-size: 12px;
    font-family: 'Krona One';
    text-transform: uppercase;
    padding: 15px 30px 15px 30px;
    border: none;
    outline: none;
    border-radius: 10px;
    display: flex;
    margin-bottom: -30px;
}

.contact-form-page input.wpcf7-form-control.wpcf7-submit.has-spinner.contact-form__submit:hover {
    background: #ffffff;
    color: rgb(0, 0, 0);
}

.contact-form__row.bouton-envoyer {
    margin-bottom: -25px!important;
}

.contact-form-page textarea.wpcf7-form-control.wpcf7-textarea.contact-form__textarea {
    height: 200px;
}

.contact-form-page a {
    color: white;
}

.contact-form-page input.contact-form__input,
.contact-form-page textarea.contact-form__textarea {
    background: #00000000;
    color: white !important;
    border-bottom: solid 1px rgb(255, 255, 255) !important;
    outline: none;
    border: none;
    border-radius: 0px;
}

.contact-form-page .contact-form__submit:hover {
  opacity: 0.9;
}

.contact-form-page .contact-form__input::placeholder,
.contact-form-page .contact-form__textarea::placeholder {
    color: rgb(255, 255, 255);
}

.contact-form-page label.politique-conf,
.contact-form-page label.politique-conf a {
    color: rgb(255, 255, 255)!important;
    margin-top: -70px;
    font-size: 12px;
    text-align: left;
}

.contact-form__row.checkbox {
    display: flex;
    justify-content: left;
}

.contact-form-page .contact-form__row {
    margin-bottom: 50px;
}

.fichier-contact {
    border-bottom: solid 1px white;
    margin-bottom: 30px;
}

label.contact-form__label {
    margin-bottom: 20px;
}

/* ========================
    GLOSSARY / LEXIQUE
 ========================== */
.hyperliens-glossary {
    margin-top: 100px;
}

.cm-glossary .listNav .ln-letters {
    font-family: jost;
}

.hyperliens-glossary img {
    border-radius: 20px;
    transition: 0.5s;
}

.hyperliens-glossary img:hover {
    transform: rotate(05deg);
    transition: 0.5s;
}

.glossary a.cmtt-backlink.cmtt-backlink-top {
    display: none;
}

.glossary p {
    text-align: justify;
}

.glossary-container li {
    margin-bottom: 15px!important;
}

.ln-letters a {
    font-size: 1em !important;
    border: none;
    margin-right: 6px;
    background: transparent;
    color: white;
    padding: 10px 15px !important;
    border: none !important;
}

a.ln-0.lnletter-a.ln-first.ln-selected {
    background: no-repeat;
    color: var(--couleur-secondaire);
}

a.ln-all,
a.ln-_.ln-disabled {
    display: none;
}

.ln-letters a:hover,
.ln-letters a.ln-selected {
    background-color: #1f1f1f;
    border-radius: 7px;
}

.glossary-container span {
    font-family: 'Jost';
    font-size: 18px;
    text-decoration: none;
}

.ln-letters a:hover,
.ln-letters a.ln-selected {
    color: var(--couleur-secondaire);
    background: #1f1f1f !important;
}

.ln-letter-count{
  display:none!important;
}
 
.ln-letters a:hover {
    margin-top: 0px!important;
    padding-top: 2px!important;
}


/* ========================
 CGV + COOKIES LISTES PUCES
 ========================== */
.wpb_text_column ul,
div#cmplz-document ul {
    list-style: none;
    padding-left: 0!important;
    margin-top: 20px;
    margin-bottom: 20px;
}

.wpb_text_column ul li,
div#cmplz-document ul li {
    position: relative;
    padding-left: 25px; 
    margin-bottom: 10px;
    font-size: 17px;
    font-family: 'Jost';
}

.wpb_text_column ul li::before,
div#cmplz-document li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px; 
    width: 14px;
    height: 12px;
    background-image: url("/wp-content/uploads/2026/01/Group-4-2.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

#cmplz-document ul {
    margin-left: 0px;
}

/* ========================
           FOOTER 
 ========================== */

/*.footer {
    margin-bottom: -42px;
}*/

.sous-footer {
    z-index: 9999999999999;
}

/* ========================
   FLECHE RETOUR EN HAUT
========================= */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.back-to-top .circle {
  position: relative;
  width: 125px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top svg {
  width: 140px;
  height: 140px;
  animation: rotate 12s linear infinite;
}

.back-to-top text {
  fill: #ffffff;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: 'Krona One';
}

.back-to-top .arrow-icon {
  position: absolute;
  width: 28px;
  height: auto;
  pointer-events: none;
}

/* Animation rotation */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


/* ========================
       REALISATIONS
 ========================== */

 .background-list span.elementor-icon-list-text {
    border-radius: 10px 10px 10px 10px;
}

.portfolio-real li.elementor-portfolio__filter:hover {
    color: var(--couleur-secondaire) !important;
}

 /*ICON ETUDE DE CAS */
.project--etude-de-cas {
    position: relative;
}

/*.project--etude-de-cas::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 23px;
    height: 23px;

    background-color: #fff;
    -webkit-mask-image: url("/wp-content/uploads/2026/01/etude-de-cas-asterisque-gris.svg");
    mask-image: url("/wp-content/uploads/2026/01/etude-de-cas-asterisque-gris.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    z-index: 6;
}*/

.project--etude-de-cas::after {
    content: "Étude de cas";
    position: absolute;
    top: 15px;
    left: 20px; 
    color: #bcbcbc;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 6;
    font-family: 'Krona One';
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 4px;
    margin-left: 6px;
    font-weight: 500;
}

.project--etude-de-cas:hover::after {
    opacity: 1;
}

.project--etude-de-cas:hover::before {
    background-color: #9b9b9b;
}

[data-filter="44"], [data-filter="46"], [data-filter="47"], [data-filter="48"], [data-filter="49"] {
    display: none !important;
}

[data-filter="__all"]::after {
    content: 'es';
}

.project--etude-de-cas::before,
.project--etude-de-cas::after {
    display: none;
}

/* uniquement sur la page portfolio : icône + texte */
.page-id-1700 .project--etude-de-cas::before,
.page-id-1700 .project--etude-de-cas::after {
    display: block;
}

/* ========================
         COOKIES 
 ========================== */
div#cmplz-header-1-optin {
    font-family: 'Krona One';
    text-transform: uppercase;
    font-size: 12px;
	color: white;
}

.cmplz-cookiebanner ul a {
    color: white !important;
    text-decoration: none;
}

.cmplz-cookiebanner.banner-1.banniere-a.optin.cmplz-bottom-left.cmplz-categories-type-view-preferences.cmplz-show {
    background: #1f1f1f;
    color: white !important;
}

.cmplz-cookiebanner path {
    fill: white;
}

button.cmplz-btn.cmplz-accept:hover,
button.cmplz-btn.cmplz-deny:hover {
    background: white !important;
    color: black !important;
}

button.cmplz-btn.cmplz-view-preferences:hover {
    background: black !important;
    color: white !important;
	border: solid 1px black !important;
}

a.cmplz-link.cookie-statement, a.cmplz-link.privacy-statement {
    font-family: 'Jost';
}

div#cmplz-message-1-optin {
    font-family: 'Jost';
    font-size: 13px;
    line-height: 21px;
    text-align: justify;
	color: white;
}

button.cmplz-btn.cmplz-accept, button.cmplz-btn.cmplz-deny, button.cmplz-btn.cmplz-view-preferences {
    font-family: 'Krona One'!important;
    font-size: 10px !important;
    text-transform: uppercase!important;
}

#cmplz-document, .editor-styles-wrapper .cmplz-unlinked-mode {
    max-width: 100%;
}

#cmplz-document h2, #cmplz-document h3 {
    font-family: 'Krona One';
}

#cmplz-document a[target=_blank]::after, .editor-styles-wrapper .cmplz-unlinked-mode a[target=_blank]::after {
    filter: invert(1);
}

#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-always-active {
    color: var(--couleur-secondaire);
}

div#cmplz-cookies-overview h3 {
    font-family: 'Krona One'!important;
    text-transform: uppercase!important;
    font-size: 12px!important;
}

span.cmplz-category-header,
summary.cmplz-service-header {
    background: #3c3c3c !important;
    font-family: 'Krona One';
    text-transform: uppercase;
    font-size: 12px;
}

#cmplz-manage-consent .cmplz-btn.cmplz-manage-consent{
    overflow: hidden;
    color: #01061900 !important;
}

.cmplz-banner-checkbox label:before{
    box-shadow: none!important;
}

.cmplz-manage-consent::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    color: white;
}

p.cmplz-subtitle {
    font-family: 'Krona One'!important;
    font-size: 15px !important;
    text-transform: uppercase;
    font-weight: 100 !important;
    color: var(--couleur-secondaire);
}

#cmplz-manage-consent .cmplz-manage-consent {
    bottom: 30px !important;
    left: 30px !important;
    border-radius: 100% !important;
    color: #010619 !important;
    background: #010619 !important;
    padding: 15px 15px 15px 15px !important;
    min-width: unset !important;
    width: 45px;
    height: 45px !important;
    padding: 0 !important;
    background-image: url(/wp-content/uploads/2026/01/cookie.png) !important;
    background-position: center;
    background-repeat: no-repeat !important;
}

#cmplz-cookies-overview {
    background-color: #00000000;
}

@media screen and (min-width: 768px) and (max-width: 1024px){
    #cmplz-manage-consent .cmplz-manage-consent {
        bottom: 45px !important;
        left: 15px !important;
    }    
}

@media screen and (max-width: 768px){
    #cmplz-manage-consent .cmplz-manage-consent {
        bottom: 15px !important;
        left: 15px !important;
    }
}
.cmplz-show-banner.elementor-widget-button a:hover{
    cursor: pointer;
    background-color: var(--e-global-color-primary);
}

.cookie-page p {
    font-family: jost;
    font-size: 17px !important;
    text-align: justify;
}

.retention-header, .name-header, .function-header, .purpose, .name, .retention, .function {
    background: black !important;
}

div#cmplz-document a {
    color: var(--couleur-secondaire);
    text-decoration: none;
}

/* ========================
     AVIS / TEMOIGNAGES 
 ========================== */
.temoignages-clients .elementor-testimonial__text {
    text-align: justify;
}

/* ========================
         RESPONSIVE 
 ========================== */
@media (max-width: 1600px) {
.slider-animate-card.slider-animate-center p {
    font-size: 25px!important;
}
}

@media (max-width: 1366px) {
/* BLOG + GLOSSAIRE + COOKIES*/
h2.wp-block-heading, .glossary h2, .cvg h2, h3#CTA, .cookie-page h2  {
  font-size: 25px;
  line-height: 30px;
}

h3.wp-block-heading , .glossary h3, .cvg h3{
  font-size: 16px;
  line-height: 20px;
}

.contenu-article p a, .elementor-element.elementor-widget-theme-post-content a {
    font-size: 14px;
}
}

@media (max-width: 1200px) {
/* BLOG + GLOSSAIRE + COOKIES */
h2.wp-block-heading, .glossary h2, .cvg h2, h3#CTA, .cookie-page h2  {
  font-size: 20px!important;
  line-height: 25px;
}

h3.wp-block-heading , .glossary h3, .cvg h3{
  font-size: 15px;
  line-height: 20px;
}

.wp-block-group.hyperliens-glossary.is-layout-grid.wp-container-core-group-is-layout-09953040.wp-block-group-is-layout-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.private-title {
    font-size: 60px!important;
}
}

@media (max-width: 1024px) {
.private-title {
    font-size: 60px!important;
}

.formulaire-fixe {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 880px) {
/* ANIMATION SCROLL ICON */
svg#windmill {
  width: 150px!important;
}

/* GLOSSAIRE */
.wp-block-group.hyperliens-glossary.is-layout-grid.wp-container-core-group-is-layout-09953040.wp-block-group-is-layout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* CONTACT FORMULAIRE */
.contact-form-page .contact-form__row {
    display: block;
}

.contact-form-page .contact-form__row {
    margin-bottom: 0px;
}

.contact-form-page input.wpcf7-form-control.wpcf7-text.contact-form__input {
    margin-bottom: 30px;
}

.contact-form-page input.wpcf7-form-control.wpcf7-file.contact-form__file {
    margin-bottom: 20px;
}


.contact-form-page .contact-form__row.checkbox {
    margin-bottom: 30px;
}
}

@media (max-width: 781px) {
/* GENERAL */
html, body {
  background: black !important;
  overflow-x: hidden !important;
}
/* BLOG */
.blog-background-grey-right, 
.blog-background-grey-left {
  margin-left: 0px!important;
  margin-right: 0px!important;
}

.blog-design {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}
}

@media (max-width: 768px) {
/* HEADER */
li.menu-nav.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-1745 {
    margin-top: 0px;
}

.current-menu-item.page_item.page-item-11.current_page_item.menu-item-800, .menu-item-home.menu-item-800 {
    margin-bottom: 0px;
}

/* ANIMATION TITRE ACCUEIL */
  .private-title {
    font-size: 40px!important;
  }

  .sous-menu a {
    font-size: 10px !important;
  }

  a.elementor-item {
    padding: 13px 10px 13px 10px !important;
  }

/* BLOG + GLOSSAIRE + COOKIE*/
h2.wp-block-heading, .glossary h2, .cvg h2, h3#CTA, .cookie-page h2  {
  font-size: 15px!important;
  line-height: 20px;
}

h3.wp-block-heading , .glossary h3, .cvg h3{
  font-size: 12px;
  line-height: 20px;
  margin-top: 20px;
}

p.cmplz-subtitle {
  font-size: 12px !important;
  line-height: 20px;
}

/* VIDEOS */
.video-radius-gauche {
  border-radius: 20px;
  overflow: hidden;
}

/* BLOG */
.cta-custom {
    background: var(--couleur-secondaire) !important;
    border-radius: 20px;
}

.contenu-article .wp-block-getwid-section .wp-block-getwid-section__wrapper .wp-block-getwid-section__inner-wrapper {
    max-width: 100%;
}

a.wp-block-button__link.wp-element-button {
    font-size: 10px !important;
}

/* BOUTON CATEGORIES REALISATIONS */
  .portfolio-toggle {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    text-align: center;
    margin-bottom: 10px;
    padding: 12px;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
  }

  .portfolio-real .elementor-portfolio__filters {
    display: none;
    flex-direction: column;
    gap: 5px;
  }

  .portfolio-real .elementor-portfolio__filters.active {
    display: flex;
  }

  .portfolio-real .elementor-portfolio__filter {
    width: 100%;
    text-align: center;
  }

.elementor-element.elementor-element-1c83c34.e-con-full.e-flex.e-con.e-child:hover span.elementor-button-text {
    color: #000000; /* couleur du texte au hover */
}
}

@media (max-width: 600px) {
figure.wp-block-media-text__media {
    display: none;
}

.wp-block-media-text.is-stacked-on-mobile.is-vertically-aligned-center.cta-custom {
    grid-template-columns: 100%!important;
}

/* RETOUR EN HAUT */
.back-to-top {
    display: none;
}
}



