/*
SOMMAIRE

00 - Mentions & politique
01 - Accueil
02 - Contact
03 - A propos
04 - Finance
05 - Service
06 - Realisation
07 - Realisation Single

*/

/****** SECTION NUMERO ******/
.sectionNumber div.col-sm-4 div{
    background: #1A1A1A;
    border: 1px solid var(--color04);
    border-radius: 10px;
    padding: 16px 24px;
    transition: all .3s ease;
}
    .sectionNumber div p{
        color: var(--color03);
        margin: 6px 0 0 0;
        font-size: 17px;
    }
    .sectionNumber div span{
        font-size: 32px;
        font-family: 'sb';
        transition: color .3s ease;
    }


/****** 00 - Mentions & politique ******/
body.page-template-page-mentions section#content ul{
    list-style-type: inherit;
    margin: 0 0 20px 0 !important;
    padding: 0 0 0 40px !important;
}
/****** 00 - Mentions & politique ******/


/****** 01 - Accueil ******/
body.page-template-page-home header{
    position: fixed;
    width: 100dvw;
    z-index: 999;
}
body.page-template-page-home .heroSection{
    position: relative;
    margin-bottom: 80px;
}
    body.page-template-page-home .heroSection a.bouton2, body.page-template-page-home .heroSection a.bouton3{
        padding: 16px 24px;
    }
    body.page-template-page-home .heroSection a.bouton2:hover{
        color: var(--color02) !important;
    }
    body.page-template-page-home .heroSection .heroText{
        z-index: 7;
    }
    body.page-template-page-home .heroSection h2{
        font-size: 61px;
        margin-bottom: 20px;
    }
    body.page-template-page-home .heroSection .blocBtn{
        margin: 20px 0 40px 0;
    }
    body.page-template-page-home .heroSection .imgHero{
        position: absolute;
        height: 100%;
        width: 46%;
        top: 0;
        right: 0;
        overflow: visible;
    }
    body.page-template-page-home .heroSection .imgHero::after{
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        right: 0;
        background: linear-gradient(231.1deg, #F5AF19 -12.25%, rgba(41, 41, 41, 0) 26.68%);
    }
body.page-template-page-home .heroSection .boutonBloc {
    position: absolute;
    width: 130px;
    height: 130px;
    top: 18%;
    left: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color04);
    border-radius: 120px;
    z-index: 7;
    transition: all 0.3s ease;
    overflow: hidden; /* Assure que le pseudo-élément ne dépasse pas */
}
body.page-template-page-home .heroSection .boutonBloc:hover{
    border: 1px solid var(--color02);
    box-shadow: 0px 2px 10px rgba(245, 175, 25, 0.25);
}
body.page-template-page-home .heroSection .boutonBloc::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../img/heroIcon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: inherit; /* Match le cercle du bouton */
    transition: transform 0.7s ease;
}
body.page-template-page-home .heroSection .boutonBloc:hover::before{
    transform: rotate(-60deg);
}
body.page-template-page-home .heroSection .boutonBloc a.fullLink{
    z-index: 4;
}
    body.page-template-page-home .heroSection .boutonBloc .boutonBlocBorder{
        width: 60px;
        height: 60px;
        background: #141414;
        border: 1.59091px solid #262626;
        border-radius: 159.091px;
        z-index: 3;
        transition: transform 0.7s ease;
    }
    body.page-template-page-home .heroSection .boutonBloc:hover .boutonBlocBorder{
        transform: rotate(45deg);
    }
        body.page-template-page-home .heroSection .boutonBloc .boutonBlocBorder svg{
            width: 20px;
            transition: color 0.7s ease;
        }
        body.page-template-page-home .heroSection .boutonBloc:hover .boutonBlocBorder svg{
            color: var(--color02);
        }
body.page-template-page-home .heroSection .spline-wrapper{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100dvw;
    height: 100%;
    z-index: 5;
}
    body.page-template-page-home .heroSection .spline-wrapper iframe{
        width: 100%;
        left: 20%;
        position: absolute;
    }
          


body.page-template-page-home .bannerBloc {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    bottom: 0;
    width: 100%;
    z-index: 6;
}

body.page-template-page-home .bannerBloc img {
    width: 52%;
    margin-right: -1px;
    animation: moveBandeau 25s linear infinite;
}

@keyframes moveBandeau {
    0% {
        transform: translateX(0); /* Commence à la position initiale */
    }
    50% {
        transform: translateX(-100%); /* Va jusqu'à la gauche complète (en tenant compte de la largeur totale de l'image) */
    }
    100% {
        transform: translateX(0); /* Retourne à la position initiale */
    }
}

body.page-template-page-home .sectionNumber div p{
    font-size: 16px;
}
body.page-template-page-home h2{
    margin-bottom: 10px;
}
    body.page-template-page-home .sectionSatisfaction .sectionSatisfactionBloc .sectionSatisfactionInnerBloc {
        padding: 30px;
    }
    body.page-template-page-home .sectionSatisfaction .sectionSatisfactionBloc .sectionSatisfactionInnerBloc div.bloc{
        padding: 0 20px;
    }
    body.page-template-page-home .sectionSatisfaction .sectionSatisfactionBloc .sectionSatisfactionInnerBloc p{
        margin: 0;
    }
    body.page-template-page-home .sectionSatisfaction .sectionSatisfactionBloc .sectionSatisfactionInnerBloc .satisSubTitle {
        margin: 10px 0 4px 0;
    }
body.page-template-page-home .sectionSatisfaction{
    margin: 60px 0;
}
body.page-template-page-home .sectionContactBloc{
    align-items: center;
    text-align: center;
    padding: 40px 0;
}
body.page-template-page-home .sectionContact p{
    font-size: 40px;
    font-family: 'sb';
    line-height: 50px;
}
body.page-template-page-home .sectionContact hr{
    width: 50%;
    border-top: 2px solid;
    color: var(--color02);
    margin: 40px auto 0 auto;
}
    body.page-template-page-home .sectionContact p span.grey{
        color: #737373;
    }
    body.page-template-page-home .sectionContact p span.orange{
        color: var(--color02);
    }
    body.page-template-page-home .sectionContact a.bouton2 {
        padding: 16px 24px;
    }

/* .sectionMap .marker {
    background: var(--color01);
    backdrop-filter: blur(22px);
    width: 16px;
    height: 16px;
    border-radius: 50%;
}
.sectionMap .marker::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid var(--color02);
    border-radius: 50%;
    box-sizing: border-box;
}  */
  
.sectionMap .marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color01);
    cursor: pointer;
    box-shadow: 0 0 0 rgba(245,175,25, 0.4);
    animation: marker 2s infinite;
}
.sectionMap .marker::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid var(--color02);
    border-radius: 50%;
    box-sizing: border-box;
}
.sectionMap .marker::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color02);
    top: 4px;
    left: 4px;
    border-radius: 50%;
    box-sizing: border-box;
} 
.sectionMap .marker:hover {
    animation: none;
} 
@-webkit-keyframes marker {
0% {
    -webkit-box-shadow: 0 0 0 0 rgba(245,175,25, 0.4);
}
70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
}
100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
}
@keyframes marker {
0% {
    -moz-box-shadow: 0 0 0 0 rgba(245,175,25, 0.4);
    box-shadow: 0 0 0 0 rgba(245,175,25, 0.4);
}
70% {
    -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    box-shadow: 0 0 0 10px rgba(204,169,44, 0);
}
100% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
}

.sectionMap #map{
    border: 1px solid var(--color04);
    border-radius: 20px;
    margin: 0 auto;
}
.sectionMap .mapboxgl-popup .mapboxgl-popup-tip{
    display: none;
}
.sectionMap .mapboxgl-popup .mapboxgl-popup-content{
    background: url(.png), linear-gradient(180deg, rgba(32, 32, 32, 0.75) 0%, rgba(32, 32, 32, 0.75) 100%);
    background-blend-mode: overlay, normal;
    backdrop-filter: blur(16px);
    border: 1px solid var(--color02);
    border-radius: 20px 0 20px 20px;
    padding: 14px 20px;
    width: fit-content;
}
    
    .sectionMap .mapboxgl-popup .mapboxgl-popup-content h3{
        font-size: 1.6rem;
    }
    .sectionMap .mapboxgl-popup .mapboxgl-popup-content p.type{
        font-family: 'sm';
        margin-bottom: 4px;
    }
    .sectionMap .mapboxgl-popup .mapboxgl-popup-content p.date{
        font-family: 'sm';
        color: var(--color03);
        margin-bottom: 0;
    }
    .sectionMap .mapboxgl-popup .mapboxgl-popup-content button{
        font-size: 26px;
        color: var(--color03);
        font-family: 'sl';
        outline: none;
        top: 2px;
    }
    .sectionMap .mapboxgl-ctrl-bottom-left, .sectionMap .mapboxgl-ctrl-bottom-right{
        display: none;
    }
/****** 01 - Accueil ******/

/****** 02 - Contact ******/
body.page-template-page-contact section#content{
    margin: 0 0 20px 0;
}
body.page-template-page-contact .blocContact{
    padding: 40px 70px;
    /* background: var(--color04); */
    border: 1px solid #262626;
    border-radius: 20px;
    background: rgba(30, 30, 30, 0.2);
    backdrop-filter: blur(22px);
    /* Note: backdrop-filter has minimal browser support */
}
    body.page-template-page-contact .wpforms-container{
        width: 100%;
    }
    body.page-template-page-contact form input, body.page-template-page-contact form textarea{
        padding: 12 14px !important;
        font-size: 15px !important;
        background-color: rgba(30, 30, 30, 0.2) !important;
        border: 1px solid #262626 !important;
        border-radius: 8px !important;
        color: rgba(255, 255, 255, 0.6) !important;
        --wpforms-field-text-color: rgba(255, 255, 255, 0.6);
    }
    body.page-template-page-contact form input:focus, body.page-template-page-contact form textarea:focus{
        box-shadow: 0 0 0 1px var(--color02), 0px 1px 2px rgba(245, 175, 25, 0.15) !important;
    }
    body.page-template-page-contact label.wpforms-field-sublabel{
        display: none;
    }
    body.page-template-page-contact .wpforms-container .wpforms-field{
        padding: 6px 0;
    }
    body.page-template-page-contact form button{
        height: 50px !important;
        width: 100%;
        background: linear-gradient(180deg, #1A1A1A 0%, rgba(26, 26, 26, 0.25) 100%) !important;
        border: 1px solid var(--color04) !important;
        border-radius: 8px !important;
        text-transform: uppercase !important;
        font-family: 'ssb' !important;
        color: var(--color02) !important;
        transition: all .3s !important;
    }
    body.page-template-page-contact form button:hover{
        border: 1px solid var(--color02);
        box-shadow: 0px 2px 10px rgba(245, 175, 25, 0.25);
    }

/****** 02 - Contact ******/



/****** 03 - A propos ******/
body.page-template-page-about section#content {
    margin: 60px 0;
}
body.page-template-page-about .profilSection{
    position: sticky;
    top: 100px;
    border: 1px solid var(--color04);
    border-radius: 20px;
    text-align: center;
    height: fit-content;
}
    body.page-template-page-about .profilSection .spline-wrapper{
        position: absolute;
        bottom: -100px;
        right: -30px;
    }
    body.page-template-page-about .profilSection .aboutProfilNom{
        font-family: 'sb';
        font-size: 32px;
        margin-top: 20px;
        color: var(--color02);
        text-transform: uppercase;
    }
    body.page-template-page-about .profilSection .aboutProfilSub{
        font-family: 'ssb';
        color: var(--color00);
    }
    body.page-template-page-about .profilSection .bouton1{
        margin: 20px auto 0 auto;
        font-size: 14px;
    }
    body.page-template-page-about .profilSection .bouton1:hover{
        border: 1px solid var(--color02);
        box-shadow: 0px 2px 10px rgba(245, 175, 25, 0.25);
    }
body.page-template-page-about .textSection .aboutContact{
    color: var(--color00);
    font-family: 'ssb';
}
    body.page-template-page-about .textSection .aboutContact span.icon{
        margin-right: 15px;
        content: '';
        width: 26px;
        height: 26px;
        background-repeat: no-repeat;
        background-size: contain;
    }
    body.page-template-page-about .textSection .aboutContact span.icon.phone{
        background-image: url(../img/icon-phone.svg);
    }
    body.page-template-page-about .textSection .aboutContact span.icon.age{
        background-image: url(../img/icon-age.svg);
    }
    body.page-template-page-about .textSection .aboutContact span.icon.mail{
        background-image: url(../img/icon-mail.svg);
    }
    body.page-template-page-about .textSection .aboutContact span.icon.lieu{
        background-image: url(../img/icon-localisation.svg);
        background-position: 4px;
    }

body.page-template-page-about .sectionNumber{
    margin: 40px 0;
}

body.page-template-page-about .textSection .aboutNumber .number{
    color: var(--color02);
    font-family: 'sb';
    font-size: 48px;
}
body.page-template-page-about .textSection .aboutNumber p{
    color: var(--color03);
}
body.page-template-page-about .textSection .aboutNumber .numberDesc{
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}

.sectionSatisfaction .sectionSatisfactionBloc{
    background: #1A1A1A;
    border-radius: 20px;
    padding: 18px;
    transition: all .3s ease;
}
    .sectionSatisfaction .sectionSatisfactionBloc .sectionSatisfactionInnerBloc{
        border: 1px solid var(--color04);
        background-color: #141414;
        border-radius: 14px;
        padding: 50px;
        transition: all .3s ease;
    }
        .sectionSatisfaction .sectionSatisfactionBloc .sectionSatisfactionInnerBloc .satisSubTitle{
            font-family: 'ssb';
            margin-left: 15px;
            font-size: 20px;
        }
        .sectionSatisfaction .sectionSatisfactionBloc .sectionSatisfactionInnerBloc div p{
            color: var(--color03);
            font-size: 15px;
        }
body.page-template-page-about .faq-content {
    margin: 0 auto;
}

body.page-template-page-about .faq-question {
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid var(--color04);
    background-color: #141414;
    margin: 0 0 20px 0;
}

body.page-template-page-about .panel-title {
    font-size: 17px;
    font-family: 'sr';
    position: relative;
    margin: 0;
    display: block;
    cursor: pointer;
}
body.page-template-page-about input.panel{
 display: none;
}
body.page-template-page-about .panel-content {
    font-size: 15px;
    color: var(--color00);
    width: 100%;
    padding: 0 !important;
    height: 0;
    overflow: hidden;
    z-index: 0;
    position: relative;
    opacity: 0;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

body.page-template-page-about .panel:checked ~ .panel-content{
    height: auto;
    opacity: 1;
    padding: 14px;
    padding: 15px 0 0 0 !important;
}

body.page-template-page-about .plus {
    margin-left: 20px;
    z-index: 5;
    font-size: 28px;
    line-height: 100%;
    color: var(--color02);
    border: 1px solid var(--color02);
    border-radius: 50px;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    -webkit-user-select: none;    
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

body.page-template-page-about .panel:checked ~ .plus {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

body.page-template-page-about .sectionExp .sectionExpBloc .line{
    padding: 5px 0 5px 30px;
    border-left: 3px dashed var(--color02);
}
    body.page-template-page-about .sectionExp .sectionExpBloc .line p{
        width: 70%;
        padding: 10px;
        color: var(--color03);
        margin: 20px 0;
        position: relative;
    }
    body.page-template-page-about .sectionExp .sectionExpBloc .line p:before{
        content: '';
        position: absolute;
        left: -48px;
        top: 10px;
        margin: 0 auto;
        width: 32px;
        height: 32px;
        background: var(--color02);
        border-radius: 50px;
    }
    body.page-template-page-about .sectionExp .sectionExpBloc .line p:after{
        content: '';
        position: absolute;
        left: -45px;
        top: 13px;
        margin: 0 auto;
        width: 26px;
        height: 26px;
        background: #0D0D0D;
        border-radius: 50px;
    }
        body.page-template-page-about .sectionExp .sectionExpBloc .line p span{
            font-family: 'sm', sans-serif;
            color: var(--color00);
            font-size: 1.2rem;
        }
/****** 04 - Finance ******/
body.page-template-page-finance section#content{
    margin: 60px 0;
}
body.page-template-page-finance a.bouton2{
    padding: 18px 24px 18px 24px;
}
body.page-template-page-finance .financementText p, body.page-template-page-finance .financementText li{
    color: var(--color03);
}


/****** 05 - Service ******/
body.page-template-page-service div.titreSection.one{
    margin-top: 30px;
}
body.page-template-page-service div.titreSection.two{
    margin-top: 80px;
}
body.page-template-page-service div.sectionAvis{
    margin-bottom: 80px;
}
.serviceCardBloc .serviceCard{
    padding: 15px;
}
    .serviceCardBloc .serviceCard .serviceCardInner::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../img/kd-servicebg.png);
        mix-blend-mode: multiply;
        opacity: 0.6;
    }
    .serviceCardBloc .serviceCard .serviceCardInner{
        position: relative;
        background: url(.png), linear-gradient(180deg, rgba(32, 32, 32, 0.2) 0%, rgba(32, 32, 32, 0.05) 100%);
        background-blend-mode: overlay, normal;
        backdrop-filter: blur(6px);
        border-radius: 20px;
        border: 1px solid #262626;
        transition: all .3s ease;
    }
    .serviceCardBloc .serviceCard .serviceCardInner:hover{
        box-shadow: 0px 0px 14px rgba(38, 38, 38, 0.4);
        cursor: pointer;
    }
    .serviceCardBloc .serviceCard .serviceCardInner:hover a.bouton2{
        border: 1px solid var(--color02);
	    box-shadow: 0px 2px 10px rgba(245, 175, 25, 0.25);
    }
    .serviceCardBloc .serviceCard .serviceCardInner:hover a.bouton2 .circle .icon.arrow::before {
        border-top: 0.125rem solid var(--color02);
        border-right: 0.125rem solid var(--color02);
    }
        .serviceCardBloc .serviceCard .serviceCardInner{
            background: url(.png), linear-gradient(180deg, rgba(32, 32, 32, 0.2) 0%, rgba(32, 32, 32, 0.05) 100%);
            background-blend-mode: overlay, normal;
            backdrop-filter: blur(6px);
            border-radius: 20px;
            padding: 50px 30px 30px 30px;
            text-align: center;
        }
            .serviceCardBloc .serviceCard .serviceCardInner h3{
                margin: 25px 0 20px 0;
            }
            .serviceCardBloc .serviceCard .serviceCardInner p{
                text-align: center;
                color: var(--color03);
            }
            a.bouton2 .circle {
                transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1);
                position: relative;
                display: block;
                margin: 0;
                width: 44px;
                height: 44px;
                background: #1A1A1A;
                border-radius: 1.625rem;
           }
            a.bouton2 .circle .icon {
                transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1);
                position: absolute;
                top: 0;
                bottom: 0;
                margin: auto;
                background: var(--color00);
           }
            a.bouton2 .circle .icon.arrow {
                transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1);
                left: 9px;
                width: 1.125rem;
                height: 0.125rem;
                background: none;
           }
            a.bouton2 .circle .icon.arrow::before {
                position: absolute;
                content: '';
                top: -0.25rem;
                right: 0.0625rem;
                width: 0.625rem;
                height: 0.625rem;
                border-top: 0.125rem solid var(--color00);
                border-right: 0.125rem solid var(--color00);
                transform: rotate(45deg);
                transition: all 0.3s cubic-bezier(0.65, 0, 0.076, 1);
            }
            .serviceCardBloc .serviceCard .serviceCardInner .serviceIconBox{
                border: 1px solid #262626;
                padding: 14px;
                background: linear-gradient(180deg, #1A1A1A 0%, rgba(26, 26, 26, 0) 56.6%);
                border-radius: 100px;
                transition: all .3s ease;
            }
            .serviceCardBloc .serviceCard .serviceCardInner:hover .serviceIconBox{
                transform: scale(1.1);
            }
            .serviceCardBloc .serviceCard .serviceCardInner:hover .serviceIconBox.one{
                box-shadow: 0px 0px 14px rgba(38, 38, 38, 0.4);
            }
            .serviceCardBloc .serviceCard .serviceCardInner .serviceIconBox.two{
                background: linear-gradient(180deg, #1A1A1A 0%, rgba(26, 26, 26, 0) 65.8%);
            }
            .serviceCardBloc .serviceCard .serviceCardInner .serviceIconBox.three{
                background: linear-gradient(180deg, #1A1A1A 0%, rgba(26, 26, 26, 0) 100%);
            }
                .serviceCardBloc .serviceCard .serviceCardInner .serviceIconBox .serviceIconBoxInner{
                    width: 46px;
                    height: 46px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 4px;
                }
                    .serviceCardBloc .serviceCard .serviceCardInner .serviceIconBox .serviceIconBoxInner .icon{
                        color: var(--color00); /* Couleur par défaut */
                        transition: color 0.3s; /* Transition fluide */
                    }
                    .serviceCardBloc .serviceCard .serviceCardInner:hover .serviceIconBox .serviceIconBoxInner .icon{
                        color: var(--color02);
                    }
body.page-template-page-service .whySection .serviceCard{
    padding: 40px;
}
body.page-template-page-service .whySection .serviceCard.borderCard{
    border-right: 1px solid #262626;
    border-left: 1px solid #262626;
}
    body.page-template-page-service .whySection span{
        font-family: 'sm', sans-serif;
        color: var(--color00);
        font-size: 20px;
        margin: 25px 0 12px 0;
    }
    body.page-template-page-service .whySection p{
        color: var(--color03);
    }
    body.page-template-page-service .whySection .serviceIconBox{
        background: #1A1A1A;
        border: 6px solid #4D4D4D;
        box-shadow: inset 8px 8px 12px 2px rgba(255, 255, 255, 0.1);
        border-radius: 75px;
        width: 90px;
        height: 90px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all .3s ease;
    }
    body.page-template-page-service .whySection .serviceCard:hover .serviceIconBox{
        border: 6px solid var(--color02);
        box-shadow: inset 8px 8px 12px 2px rgba(245, 175, 25, 0.1);
    }
        body.page-template-page-service .whySection .serviceCard:hover .serviceIconBoxInner svg{
            color: white;
            transition: all .3s ease;
        }
        body.page-template-page-service .whySection .serviceCard:hover .serviceIconBoxInner svg{
            color: var(--color02);
        }
body.page-template-page-service .sectionAvis .ti-reviews-container .ti-inner, body.page-template-page-home .sectionAvis .ti-reviews-container .ti-inner{
    border: 1px solid #262626 !important;
    background: url(.png), linear-gradient(180deg, #1A1A1A -29.71%, rgba(26, 26, 26, 0) 75.89%) !important;
    background-blend-mode: overlay, normal;
    border-radius: 14px !important;
    color: var(--color00) !important;
}
body.page-template-page-service .sectionAvis .ti-reviews-container .ti-inner span.ti-read-more-active, body.page-template-page-service .sectionAvis .ti-reviews-container .ti-name, body.page-template-page-home .sectionAvis .ti-reviews-container .ti-inner span.ti-read-more-active, body.page-template-page-home .sectionAvis .ti-reviews-container .ti-name{
    color: var(--color00) !important;
}
body.page-template-page-service .sectionAvis .ti-reviews-container .ti-review-header .ti-profile-img, body.page-template-page-service .sectionAvis .ti-reviews-container .ti-review-header .ti-profile-details, body.page-template-page-home .sectionAvis .ti-reviews-container .ti-review-header .ti-profile-img, body.page-template-page-home .sectionAvis .ti-reviews-container .ti-review-header .ti-profile-details{
    margin-top: 10px !important;
}
body.page-template-page-service .ti-widget.ti-goog .ti-review-header:before, body.page-template-page-home .ti-widget.ti-goog .ti-review-header:before{
    border-top-color: #262626;
}
body.page-template-page-service .sectionAvis .ti-reviews-container .ti-date, body.page-template-page-home .sectionAvis .ti-reviews-container .ti-date{
    color: var(--color03) !important;
}

body.page-template-page-service div.wrapper{
    position: relative;
}
body.page-template-page-service .spline-wrapper{
    position: absolute;
    width: 100%;
    height: 660px;
    top: 400px;
    left: 0;
    opacity: .5;
}
body.page-template-page-service .watermark-cover {
    background-color: #0e0e0e;
}

.modale{
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 8;
}
.modale-content{
    background: url(.png), linear-gradient(180deg, rgba(32, 32, 32, 0.2) 0%, rgba(32, 32, 32, 0.05) 100%);
    background-blend-mode: overlay, normal;
    backdrop-filter: blur(40px);
    border: 1px solid var(--color02);
    border-radius: 20px;
    padding: 30px 40px;
    max-width: 900px;
    height: fit-content;
}
.close-btn{
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5em;
    cursor: pointer;
}
.modale-content ul{
    list-style-type: inherit;
    margin: inherit !important;
    padding: 10px 0 20px 35px !important;
}
.modale-content span.service{
    font-weight: bold;
    font-size: 18px;
    text-decoration: underline;
}
.modale-content span.title{
    font-size: 2.8rem;
    font-family: 'ssb';
    color: var(--color02);
}
.modale-content p{
    margin-bottom: 40px;
}
.modale-content span.prix{
    color: var(--color03);
}
    .modale-content span.prix span{
        color: var(--color00);
    }
.modale-content a.bouton2{
    margin-top: 20px;
    border-radius: 0 50px 50px 0;
    padding: 8px 10px 8px 16px;
}
.modale-content img{
    border: 1px solid var(--color04);
    border-radius: 20px;
}
/****** 05 - Service ******/



/****** 06 - Realisation ******/
body.page-template-page-realisation .spline-wrapper {
    position: fixed;
    width: 100%;
    height: 660px;
    top: 500px;
    left: 0;
    opacity: .3;
}
body.page-template-page-realisation .watermark-cover {
    background-color: #0e0e0e;
}
body.page-template-page-realisation .titreSection{
    margin-top: 60px;
}
    body.page-template-page-realisation .button-group{
        margin: 20px auto 40px auto;
        padding: 25px;
        background: url(.png), linear-gradient(180deg, rgba(32, 32, 32, 0.2) 0%, rgba(32, 32, 32, 0.05) 100%);
        background-blend-mode: overlay, normal;
        backdrop-filter: blur(6px);
        border-radius: 20px;
        width: fit-content;
        border: 1px solid var(--color04);
    }
        body.page-template-page-realisation .button-group button{
            padding: 18px 24px;
            background: #141414;
            border: 1px solid var(--color04);
            border-radius: 14px;
            color: var(--color00);
        }
        body.page-template-page-realisation .button-group button{
            padding: 16px 22px;
            background: #141414;
            border: 1px solid var(--color04);
            border-radius: 14px;
            color: var(--color00);
            transition: all .3s ease;
        }
        body.page-template-page-realisation .button-group button.active{
            background: linear-gradient(360deg, #F5AF19 0%, rgba(245, 175, 25, 0.25) 100%);
            color: var(--color01);
            border: 1px solid var(--color02);
        }
        body.page-template-page-realisation .button-group button.marge{
            margin-left: 16px;
        }
.referenceResum{
    position: relative;
    padding: 40px;
    background: url(.png), linear-gradient(180deg, rgba(32, 32, 32, 0.2) 0%, rgba(32, 32, 32, 0.05) 100%);
    background-blend-mode: overlay, normal;
    backdrop-filter: blur(6px);
    border: 1px solid var(--color04);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all .3s ease;
}
.referenceResum:hover{
    border: 1px solid var(--color02);
    box-shadow: 0px 0px 15px rgba(245, 175, 25, 0.25);
}
    .referenceResum span.categorie{
        font-family: "ssb", sans-serif;
        color: var(--color02);
        text-transform: uppercase;
        font-size: 13px;
    }
    .referenceResum h2{
        font-size: 28px;
        margin: 15px 0;
    }
    .referenceResum p{
        width: 50%;
        color: var(--color03);
        font-size: 14px;
        margin-bottom: 15px;
    }
    .referenceResum img.topImg{
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        z-index: -1;
        transition: all .3s ease;
    }
    .referenceResum:hover img.topImg{
        height: 112%;
    }
    .referenceResum div.fullImg{
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 40%;
        z-index: -1;
        padding: 20px;
    }
    .referenceResum div.fullImg img{
        border: 1px solid var(--color04);
        border-radius: 14px;
    }
    .referenceResum:hover a.bouton2{
        border: 1px solid var(--color02);
        box-shadow: 0px 2px 10px rgba(245, 175, 25, 0.25);
    }
    .referenceResum:hover a.bouton2 .icon.arrow::before {
        border-top: 0.125rem solid var(--color02);
        border-right: 0.125rem solid var(--color02);
    }

/****** 06 - Realisation ******/

/****** 07 - Realisation Single ******/

body.single-realisation .realisationSingleBlocLeft{
    width: 30%;
    padding: 40px;
    background: url(.png), linear-gradient(180deg, rgba(32, 32, 32, 0.2) 0%, rgba(32, 32, 32, 0.05) 100%);
    background-blend-mode: overlay, normal;
    backdrop-filter: blur(6px);
    border: 1px solid var(--color04);
    border-radius: 20px;
    position: sticky;
    top: 100px;
    height: fit-content;
}
body.single-realisation .realisationSingleBlocLeft::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/kd-servicebg.png);
    mix-blend-mode: multiply;
    opacity: 0.6;
}
    body.single-realisation .realisationSingleBlocLeft h1{
       font-size: 32px;
       margin: 10px 0 10px 0;
    }
    body.single-realisation .realisationSingleBlocLeft span.subtitle{
        font-size: 16px;
        font-family: 'sm', sans-serif;
        color: var(--color02);
        margin-bottom: 10px;
    }
    body.single-realisation .realisationSingleBlocLeft p{
        color: var(--color03);
    }
    body.single-realisation .realisationSingleBlocLeft a.bouton2:hover .icon.arrow::before{
        border-top: 0.125rem solid var(--color02);
        border-right: 0.125rem solid var(--color02);
    }
    body.single-realisation .realisationSingleBlocLeft .serviceIconBox.one{
        width: 80px;
        height: 80px;
    }
    body.single-realisation .realisationSingleBlocLeft .serviceIconBox{
        border: 1px solid #262626;
        padding: 6px;
        background: linear-gradient(180deg, #1A1A1A 0%, rgba(26, 26, 26, 0) 56.6%);
        border-radius: 100px;
        transition: all .3s ease;
    }
    body.single-realisation .realisationSingleBlocLeft:hover .serviceIconBox{
        transform: scale(1.1);
    }
    body.single-realisation .realisationSingleBlocLeft:hover .serviceIconBox.one{
        box-shadow: 0px 0px 14px rgba(38, 38, 38, 0.4);
    }
    body.single-realisation .realisationSingleBlocLeft .serviceIconBox.two{
        background: linear-gradient(180deg, #1A1A1A 0%, rgba(26, 26, 26, 0) 65.8%);
    }
    body.single-realisation .realisationSingleBlocLeft .serviceIconBox.two .serviceIconBoxInner{
        border-radius: 50px;
        overflow: hidden;
    }
body.single-realisation .realisationSingleListImg{
    width: 67%;
}
    body.single-realisation .realisationSingleListImg .realisationSingleImg{
        margin-bottom: 40px;
        border: 1px solid var(--color04);
        border-radius: 20px;
    }

/****** 07 - Realisation Single ******/



/*RESPONSIVE
01 - DESKTOP */
@media screen and (max-width: 1400px), (max-device-width: 1400px) {
    body.page-template-page-contact h1{
        font-size: 3rem;
    }
    .sectionNumber div p {
        font-size: 14px;
    }
    .referenceResum img.topImg {
        top: inherit;
        bottom: 0;
        height: 80%;
    }
    body.page-template-page-home .bannerBloc img {
        width: 82%;
    }
}


/*02 MINI-DESKTOP */
@media screen and (max-width: 1200px), screen and (max-device-width: 1200px) { 
    .sectionSatisfaction .sectionSatisfactionBloc .sectionSatisfactionInnerBloc {
        padding: 40px;
    }
    body.page-template-page-service .whySection .serviceCard {
        padding: 16px;
    }
    .referenceResum img.topImg {
        height: 100%;
    }
    body.page-template-page-realisation .referenceBlocResum{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}



/*02 TABLETTE*/
@media screen and (max-width: 992px), screen and (max-device-width: 992px) {
    body.page-template-page-finance section#content, body.page-template-page-about section#content, body.page-template-page-realisation .titreSection{
        margin: 30px 0;
    }
    .margeTop {
        margin-top: 60px;
    }
    body.page-template-page-finance .financementImg{
        margin-top: 20px;
    }
    body.page-template-page-finance .financementImg:nth-of-type(1){
        order: 2;
    }
    footer .hdr-logo, footer .blocMentionDuBas{
        text-align: center;
    }
    footer nav {
        margin: 30px auto;
    }
    footer .blocBouton, body.page-template-page-home .heroSection .blocBtn{
       justify-content: center !important; 
    }
    body.page-template-page-about .profilSection img{
        max-width: 300px;
        margin: 0 auto;
    }
    body.page-template-page-about .profilSection .aboutProfil{
        padding: 30px 0 !important;
    }
    body.page-template-page-about .profilSection {
        position: relative;
        top: 0;
        margin-bottom: 90px;
    }
    header {
        z-index: 9;
    }
    .modale-content .col-12, .modale-content .col-5, body.page-template-page-home .heroSection .spline-wrapper{
        display: none;
    }
    .referenceResum img.topImg {
        height: 80%;
    }
    body.single-realisation .realisationSingleBlocLeft{
        width: 100%;
        position: relative;
        top: inherit;
        margin-bottom: 30px;
    }
    body.single-realisation .realisationSingleListImg{
        width: 100%;
    }
    body.page-template-page-home .sectionContact p {
        font-size: 30px;
        line-height: 40px;
    }
    body.page-template-page-home .heroSection .boutonBloc {
        top: 15%;
    }
    body.page-template-page-home .heroText{
        text-align: center;
        margin-top: 80px;
    }
    body.page-template-page-home .bannerBloc img {
        width: 100%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    body.page-template-page-finance .financementImg{
        height: 100%;
    }
    footer a.headerWA {
        width: 38px;
        height: 38px;
    }
}


/*03 MINI-TABLETTE et MOBILE */
@media screen and (max-width: 767px), screen and (max-device-width: 767px) { 
    #backToTop {
        display: none !important;
    }
    body.page-template-page-contact h1{
        font-size: 2.4rem;
    }
    body.page-template-page-contact .blocContact {
        padding: 30px 40px;
        text-align: center;
    }
    body.page-template-page-about .sectionExp .sectionExpBloc .line p {
        width: 100%;
    }
    body.page-template-page-service .whySection .serviceCard.borderCard, body.page-template-page-service .whySection p, body.page-template-page-about .plus{
        display: none !important;
    }
    body.page-template-page-realisation .button-group button {
        padding: 12px 14px;
    }
    .referenceResum {
        padding: 26px;
    }
    .referenceResum img.topImg, .referenceResum div.fullImg {
        position: relative;
        height: auto;
        right: 0;
        width: 100%;
        border: 1px solid var(--color04);
        border-radius: 20px;
    }
    .referenceResum .referenceResumBloc{
        text-align: center;
    }
    .referenceResum p {
        width: 100%;
    }
    .referenceResum a {
        margin: 0 auto 20px auto !important;
    }
    body.page-template-page-home .heroSection .boutonBloc, body.page-template-page-home .heroSection .sectionNumber{
        display: none !important;
    }
    body.page-template-page-home .heroSection a.bouton3{
        margin-left: 0px !important;
    }
}


@media screen and (max-width: 500px), screen and (max-device-width: 500px) {
    footer ul.listMenu{
        flex-direction: column;
        text-align: center
    }
    footer nav ul.listMenu li {
        margin: 0 0 20px 0 !important;
    }
    body.page-template-page-realisation .button-group button.bottom {
        margin-bottom: 16px;
        font-size: 16px;
    }
    body.page-template-page-realisation .button-group button.marge {
        margin-left: 8px;
    }
    body.single-realisation .realisationSingleBlocLeft{
        padding: 26px;
    }
    body.page-template-page-home .sectionContact p {
        font-size: 22px;
        line-height: 30px;
    }
}