/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body{
    background-color: var(--background-clair);
    font-family:Inter;
    width: 100%;
    max-width: 100%;
    display : -webkit-box;
    display : -ms-flexbox;
    display : flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}
@media only screen and (min-width: 901px) {
    body{
        font-size: 20px;
    }
}
/** ================================================================================================================================ */
/** GÉNÉRAL **/
h1{
    color: var(--h1-dark-brown);
    font-weight: bold;
    font-size: 28px;
}
h2{
    color: var(--h2-brown);
    margin: 0;
    padding: 0;
    text-align: justify;
    line-height:1.6;
    font-size: 24px;

}
p{
    color: var(--p-light-brown);
    font-weight: 500;
    text-align: justify;
    line-height: 1.6;
    font-size: 16px;
}
h1.light{
    color: var(--h1-light);
}
h2.light{
    color: var(--h2-light);
}
p.light{
    color: var(--p-light);
}
*.uppercased-text{
    text-transform: uppercase;
}

a{
    text-decoration: none;
    color: var(--h1-dark-brown);
}
span.ligne-separatrice{
    display:block;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    height: 3px;
    background-color: var(--h1-dark-brown);
}
.pointer{
    cursor: pointer;
}
.container{
    padding: 39px 13px;
}
.glow{
    -webkit-box-shadow: 0 0 60px 30px var(--p-light), 0 0 100px 60px #ebddbe, 0 0 140px 90px #ffffff;
            box-shadow: 0 0 60px 30px var(--p-light), 0 0 100px 60px #ebddbe, 0 0 140px 90px #ffffff;
}
@media only screen and (min-width: 1101px) {
    h1{
        font-size: 32px;
    }
    h2{
        font-size: 28px;
    }
    p{
        font-size: 20px;
    }

    .is-visible-mobile{
        display : none;
    }

    .container{
    padding: 39px 10vw 39px 10vw;
}
}
@media only screen and (max-width: 1100px) {
    .is-visible-pc{
        display : none;
    }
}


/** ================================================================================================================================ */
/** HEADER **/
header{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    position: sticky;
    top: 0px;
    left: 0;
    z-index: 1000;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
        -ms-flex-direction:column;
            flex-direction:column;
    background-color: var(--background-light-brown);
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    padding-top: 13px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: var(--h1-dark-brown);
    height: 58px;
}
.header-not-burger-menu{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 1000;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    padding: 0px 13px 13px 13px;
}

/** Header général **/
header img.logo-header{
    width: 45px;
    height: 45px;
    margin-right: 10px;
    border-radius: 50%;
}
header svg{
    width: 45px;
    height: 45px;
    margin-right: 10px;
    fill: var(--h1-dark-brown) !important;
    scale: 0.8;
}
header a.logo-text-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: bold;
}
header h1{
    font-size: 18px;
}
ul.nav-header-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    list-style: none;
    padding-left: 13px;
    gap: 16px;
}
ul.nav-header-list li{
    font-size: 20px;
    color: var(--h1-dark-brown);
    cursor: pointer;
}
@media only screen and (max-width: 999px) {
    li.nav-header-item{
        display: none;
    }
    
}
@media only screen and (min-width: 1000px) {
    .burger-menu-logo{
        display:none;
    }
    .burger-menu-container{
        display: none !important;
    }
}
.nav-header-item a{
    font-weight: 600;
}
li.menu-item a:hover{
    opacity: 0.8;
}
li.current-menu-item a{
    font-weight: 500;
    opacity:0.7;
}
/** Burger menu **/
.burger-menu-container{
    display: none;
    z-index: 999;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--background-clair);
    -webkit-box-shadow: 0px 20px 20px 12px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 20px 20px 12px rgba(0, 0, 0, 0.1);
}
.burger-menu-container.animate-in{
    -webkit-animation: slide-in 0.3s ease-in-out forwards;
            animation: slide-in 0.3s ease-in-out forwards;
}
.burger-menu-container.animate-out{
    -webkit-animation: slide-out 0.3s ease-in-out forwards;
            animation: slide-out 0.3s ease-in-out forwards;
}
@-webkit-keyframes slide-in {
    from {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
        opacity: 0;
    }
    to {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slide-in {
    from {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
        opacity: 0;
    }
    to {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        opacity: 1;
    }
}
@-webkit-keyframes slide-out {
    from {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        opacity: 1;
    }
    to {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
        opacity: 0;
    }
}
@keyframes slide-out {
    from {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        opacity: 1;
    }
    to {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
        opacity: 0;
    }
}

.menu-nav-header-item{
    font-size: 16px;
}
.nav-header-burger{
    width: 100%;
}
.menu-nav-header-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
}
.menu-nav-header-list li{
    width: 100%;
    cursor: pointer;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 13px;
    padding-bottom: 13px;
    border-top: 1px solid var(--h1-dark-brown);
}
.menu-nav-header-list li:last-child{
    border-bottom: 1px solid var(--h1-dark-brown);
}
.menu-nav-header-list li a{
    text-decoration: none;
    color: var(--h1-dark-brown);
    font-weight: bold;
}
/**FIN HEADER**/
/** ================================================================================================================================ */
/** HERO **/
div.hero{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    height: 285px;
    background-image: url(../img/hero-accueil-background.jpg);
    content-visibility: auto;
    background-size: cover;
    background-position: center;
    -ms-flex-pack: distribute;
        justify-content: space-around
}
span.fade-out-after{
    will-change: opacity;
    position: absolute;
    width:100%;
    height: 100%;
    opacity: 0;
    background-color: var(--background-light-brown);
    -webkit-transform: translate(0,-38px);
        -ms-transform: translate(0,-38px);
            transform: translate(0,-38px);
}
/** POUR LES PAGES AUTRES QUE L'ACCUEIL **/
div.hero-text-only{
    height: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
div.hero-text-only h1{
    color: var(--h1-light);
    text-align: center;
}
/** =================================== **/
div.hero-text-container{
    width: 80vw;
    z-index: 2;
}
div.hero-text-button-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    height: 100%;
}
div.hero-text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 13px;
    width:50%;
}
div.hero-text h1{
    text-align: left;
    color: var(--h1-light);
}
div.hero-text h2{
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: var(--h2-light);
}
div.hero-text h2 strong{
    color: #e0e0e0;
    font-weight: 600;
}
div.hero-button{
    background-color: var(--background-clair);
    border-radius: 55px;
    padding: 10px;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    background-image: -o-linear-gradient(left,transparent 10%,var(--p-light));
    background-image: -webkit-gradient(linear,left top, right top,color-stop(10%, transparent),to(var(--p-light)));
    background-image: linear-gradient(90deg,transparent 10%,var(--p-light));
    
}
[data-theme="dark"] {
    div.hero-button{
        background-image: unset;
    }
}
div.hero-button:hover{
    scale: 1.05;
}
img.hero-photo{
    position: absolute;
    right: calc(-200px + 10vw);
    top: -30px;
}

@media only screen and (min-width: 901px) {

    div.hero-text-container{
        width: 90%;
    }

    div.hero-text h2{
        font-size : 32px;
    }
    
}
@media only screen and (min-width: 901px) {
    div.hero{
        height: calc(100vh - 71px); /* 71px = header height */
        padding: 0px 10vw 0px 10vw;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    }
    div.hero-button{
        padding: 16px 32px 16px 32px;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        text-align: center;
    }
    img.hero-photo{
        right: calc(20vw - 200px);
    }

    div.hero-text-only{
        height: 300px;
    }   
    span.fade-out-after{
        -webkit-transform: translate(0,0);
            -ms-transform: translate(0,0);
                transform: translate(0,0);
    }
}

/** FIN HERO **/
/** ================================================================================================================================ */
/** SECTION ACTIVITES **/
div.activites{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    background-color: var(--background-light-brown);
    padding-top : 13px;
    padding-bottom : 13px;
}
div.box-activites{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 13px;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    border: solid var(--background-clair);
    border-width: 10px 0 10px 0 ;
}
div.activites h1{
    padding-top: 39px;
    font-weight: bold;
    color: var(--h1-dark-brown);
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    max-width: 80%;
    text-align: center;
}
div.activites p{
    padding-bottom: 39px;
    color: var(--h1-dark-brown);
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    max-width: 80%;
}
@media only screen and (min-width: 901px) {

    div.activites h1{
        max-width: 60%;
    }
    div.activites h2{

        max-width: 60%;
    }
    
}
/** FIN SECTION ACTIVITES **/
/** ================================================================================================================================ */
/** SECTION QUI SUIS-JE **/
div.presentation{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
        -ms-flex-direction:column;
            flex-direction:column;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;    
    gap: 13px;
    /**background-color: var(--background-clair);**/
}
div.presentation h1.catch-phrase{
    opacity: 0;
}
div.presentation h1.catch-phrase.animate{
    /** Animation **/
    will-change: width, border-color;
    opacity: 1;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid var(--h1-dark-brown); /* The typwriter cursor */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    -webkit-animation: 
        typing 3.5s steps(40, end),
        blink-caret .75s step-end 7;
            animation: 
        typing 3.5s steps(40, end),
        blink-caret .75s step-end 7;  
     /* Ensures the animation does not affect other elements */
}
/* The typing effect */
@-webkit-keyframes typing {
  from { width: 0% }
  to { width: calc(26 * 0.58em); }
}
@keyframes typing {
  from { width: 0% }
  to { width: calc(26 * 0.58em); }
}

/* The typewriter cursor effect */
@-webkit-keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--h1-dark-brown); }
}
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--h1-dark-brown); }
}

div.headline{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    font-weight: bold;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
div.headline h1{
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-wrap-mode: nowrap;
    padding-right: 1.5vw;
}
span.headline span{
    color: var(--h2-brown);
    margin-left: 13px;
}
img.presentation-photo{
    max-width: 50%;
    max-height:530px;
    border-top:  solid 3px transparent;
    border-right: solid 3px transparent;
    border-radius: 20px;
    background-image: 
    -o-linear-gradient(white, white),
    -o-linear-gradient(top right, var(--h1-dark-brown), rgba(0,0,0,0) ) ;
    background-image: 
    -webkit-gradient(linear, left top, left bottom, from(white), to(white)),
    -webkit-gradient(linear, right top, left bottom, from(var(--h1-dark-brown)), to(rgba(0,0,0,0)) ) ;
    background-image: 
    -o-linear-gradient(white, white),
    -o-linear-gradient(top right, var(--h1-dark-brown), rgba(0,0,0,0) ) ;
    background-image: 
    linear-gradient(white, white),
    linear-gradient(to bottom left, var(--h1-dark-brown), rgba(0,0,0,0) ) ;
    background-origin: border-box;
    background-clip: padding-box, border-box;
}
div.text-image-presentation-text{
    width: 100%;
}
div.text-image-presentation{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    height: 100%;
    gap: 23px;
}
div.text-image-presentation strong{
    color: var(--h2-brown);
    font-weight: 600;
}
div.text-image-presentation-text p{
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    -ms-grid-column-align: left;
        justify-self: left;
}
div.text-image-presentation-image p{
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
}
div.text-image-presentation-image li{
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    color: var(--p-light-brown);
    font-family: Inter;
    font-weight: 500;
    font-size: 16px ;
    line-height: 1.6;
    padding-left: 10px ;
    list-style: disc;
    margin-left: 50px;
}
@media only screen and (min-width: 1101px) {
    div.text-image-presentation-image li{ 
        font-size: 20px;
    }
}
div.text-image-presentation-image{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack:justify;
        -ms-flex-pack:justify;
            justify-content:space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    height: 100%;
    gap: 13px;
}
div.sparks{
    display: none;
}
@media only screen and (max-width:900px){
    div.presentation h1.catch-phrase{
        font-size : 24px;
    }
}
@media only screen and (max-width:400px){
    div.presentation h1.catch-phrase{
        font-size : 18px;
    }
}
@media only screen and (min-width: 1101px) {
    div.text-image-presentation-image{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    div.text-presentation{
        max-width: 60%;
    }
    img.presentation-photo{
        overflow: hidden;
        margin-left: 13px;
        max-width: 30%;
    }
    div.sparks{
        display: block;
        position: absolute;
        top: -130px;
        right: -170px;
        scale : 0.2;
    }
    div.sparks svg path{
        fill: var(--h1-dark-brown) !important;
    }
}


    
/** FIN SECTION QUI SUIS-JE **/
/** ================================================================================================================================ */
/** SECTION RETOURS CLIENTES **/
div.retours-clientes{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    background-color: var(--background-light-brown);
    padding: 13px 0 13px 0;
}
div.bandeau-retours-clientes{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    height: 100%;
    gap: 13px;
    padding: 10px 0 10px 0;
    border: solid var(--background-clair);
    border-width: 10px 0 10px 0 ;
    overflow: hidden;

}

@media only screen and (min-width: 901px) {
    div.retours-clientes{
        padding: 13px 10vw 13px 10vw;
    }
    div.bandeau-retours-clientes{
        padding: 10px 0 10px 0;
    }
}

div.ti-prev::before , div.ti-prev::after , div.ti-next::before , div.ti-next::after{
    background: #FFFFFF !important;
}
/** FIN SECTION RETOURS CLIENTES **/
/** ================================================================================================================================ */
/** SECTION SERVICES **/
div.services{
    background-color: var(--background-brown);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap:13px;
}
div.services h1{

    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    color: var(--h1-light);
}
div.services h2{

    color : var(--h2-light);
    font-weight: 500;
}
div.services h1.service-title{

    text-align: center;
}

div.services-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}
div.service{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 13px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
div.service-image-container:hover::after{
    content:'VOIR PLUS';
    position: absolute;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--p-light);
    font-size: 12px;
    font-weight: 700;
    color: var(--h1-dark-brown);
    border-radius: 10px;
    -webkit-animation: appear 0.3s ease-in-out forwards;
            animation: appear 0.3s ease-in-out forwards;
}
div.service-image-container{
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    border-radius: 10px;
    height: 120px;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    position: relative;
    display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
@-webkit-keyframes appear {
    0% {
        -webkit-filter: blur(50px);
                filter: blur(50px);
        -webkit-backdrop-filter:  blur(0px);
                backdrop-filter:  blur(0px);
        -webkit-transform: translate(0, 50%);
                transform: translate(0, 50%);
        opacity: 0;
    }
    70% {
        opacity: 0;
    }
    100% {
        -webkit-backdrop-filter:  blur(50px);
                backdrop-filter:  blur(50px);
        -webkit-filter: blur(0px);
                filter: blur(0px);
        -webkit-transform: translate(0, 0);
                transform: translate(0, 0);
        opacity: 1;
    }
}
@keyframes appear {
    0% {
        -webkit-filter: blur(50px);
                filter: blur(50px);
        -webkit-backdrop-filter:  blur(0px);
                backdrop-filter:  blur(0px);
        -webkit-transform: translate(0, 50%);
                transform: translate(0, 50%);
        opacity: 0;
    }
    70% {
        opacity: 0;
    }
    100% {
        -webkit-backdrop-filter:  blur(50px);
                backdrop-filter:  blur(50px);
        -webkit-filter: blur(0px);
                filter: blur(0px);
        -webkit-transform: translate(0, 0);
                transform: translate(0, 0);
        opacity: 1;
    }
}
div.service-text{
    max-width: 70%;
    padding: 13px 0 13px 0;
}
div.service-text h1{
    padding: 0 0 13px 0;
}
div.service-image-container img{
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
}
span.span-service{
    background-color: var(--h1-light);
    height: 5px;
    width: 70%;
}
div.service.conference{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
@media only screen and (min-width: 901px) {
    div.services{
        gap: 13px;
    }
    div.service{
        gap: 39px;
    }
    div.service-text {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        max-width: 70%;
        padding: 13px 0 13px 0;
    }
    div.services-container{
        gap: 26px;
    }
    div.service-image-container{
        width: 100%;
        max-width: 500px;
        height: 300px;
    }
    div.service-image-container img{
        height: 80%;
        border-radius: inherit;
    }
    div.service-image-container:hover::after{
        height: 80%;
        font-size: 24px;
    }
}
/** FIN SECTION SERVICES **/
/** ================================================================================================================================ */
/** SECTION CONTACT **/
@media only screen and (min-width: 901px) {
    div.contact-formulaire{
        min-width: 50vw;
    }
}

div.contact{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient : vertical;
    -webkit-box-direction : normal;
        -ms-flex-direction : column;
            flex-direction : column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 13px 0 13px 0;
}
div.contact h1{

    text-align: center;
    color: var(--h1-dark-brown);
    padding: 13px 0 13px 0;
}
div.contact form{
    display : -webkit-box;
    display : -ms-flexbox;
    display : flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack:left;
        -ms-flex-pack:left;
            justify-content:left;
    -webkit-box-align:start;
        -ms-flex-align:start;
            align-items:flex-start;
    gap: 5px;
    width: 100%;
}
div.form-group{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
}
div.form-group label{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    color: var(--h1-dark-brown);
}

div.form-group input{
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    outline: none; 
    font-family: Inter;
}
div.form-group textarea{
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    outline: none; 
    resize: none;
    font-family: Inter;
    height: 6em;
}	
div.form-group input:focus {
    border: 1px solid var(--h1-dark-brown);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
div.form-group input:hover {
    border: 1px solid var(--h1-dark-brown);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
div.form-group textarea#message:focus {
    border: 1px solid var(--h1-dark-brown);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
div.form-group textarea#message:hover {
    border: 1px solid var(--h1-dark-brown);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
div.form-checkbox-group{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap:1vw;
}
div.form-checkbox-group label{
    cursor: pointer;
}
input.checkbox{
    display: none;
    width: 0vw;
    height: 0vw;
    margin-right: 10px;
}
form.wpcf7-form div.form-checkbox-group p {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}
div.wpcf7{
    width: 80%;
}
.wpcf7-form-control{
    width:100%;
    padding : 5px 0px;
}
form.wpcf7-form p{
        display : -webkit-box !important;
        display : -ms-flexbox !important;
        display : flex !important;
}
div.form-checkbox-group .wpcf7-form-control-wrap{
    width: 80%;
}
.stylised-checkbox{
    width: 4vw;
    height: 4vw;
    margin-right: 10px;
    border-radius: 3px;
    background-color: var(--background-clair);
    border: 1px solid var(--h1-dark-brown);
    cursor: pointer;
}
.stylised-checkbox.checked{
    background-color: var(--h1-dark-brown);
    border-radius: 3px;
    width: 4vw;
    height: 4vw;
}
.stylised-checkbox::after{
    content: ".";
    position:relative;
    display: none;
}
.stylised-checkbox.checked::after{
    content: "";
    display:block;
    left: 1vw;
    top: 0vw;
    width: 1vw;
    height: 2.5vw;
    border: solid var(--background-clair);
    border-width: 0 0.7vw 0.7vw 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

div.form-button-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
}

.form-button-envoyer{
    background-color: var(--background-light-brown);
    color: var(--h2-brown);
    border-radius: 5px;
    padding: 10px 20px 10px 20px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: Inter;
}
.form-button-envoyer:hover {
    opacity: 0.8;
}
.form-button-envoyer:active {
    opacity: 0.6;
}
@media only screen and (min-width: 700px) {
    div.contact h1{
        font-size: 32px;
    }
    div.contact form{
        gap: 15px;
    }
    div.form-group input{
        font-size: 20px; 
    }
    div.form-group textarea{
        font-size: 20px; 
    }	
    .form-button-envoyer{
        padding: 16px 32px 16px 32px;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        text-align: center;
    }
    .stylised-checkbox{
        width: 30px;
        height: 30px;
    }
    .stylised-checkbox.checked{
        width: 30px;
        height: 30px;
    }
    .stylised-checkbox.checked::after{
        left: 7px;
        top: 3px;
        width: 8px;
        height: 15px;
        border-width: 0 5px 5px 0;
    }  
    div.form-checkbox-group span{
        font-size: 16px ;
        line-height: 1.2;
    }
}

[data-theme="dark"]{
    .wpcf7-form-control {
        background: unset;
        color: var(--h1-dark-brown)
    }
}

/** FIN SECTION CONTACT **/
/** ================================================================================================================================ */
/** SECTION FOOTER **/
footer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 17px;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    padding: 13px 33px;
    background-color: var(--h1-dark-brown);
    z-index : 600;
}
[data-theme="dark"] {
  footer{
    background-color: var(--background-light-brown);
  }
}
footer h1{

    color: var(--h1-light);
    text-align: center;
}
footer .footer-nav-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 13px;
    color: var(--h1-light);
}
ul.footer-nav-header-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 16px;
    text-align: center;
}
li.footer-nav-header-item a{

    color: var(--h1-light);
    font-weight: 500;
    cursor: pointer;
}
footer .footer-social-media{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 13px;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
}
footer img{
    width: 50px;
}
footer div.footer-bottom-container{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    gap:13px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
footer span.ligne-separatrice{
    background-color: var(--h1-light);
    border-radius: 50%;
}
@media only screen and (min-width: 901px) {
    footer{
        padding: 13px 10vw 13px 10vw;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    footer h1{

        position: relative;
        left: 0px;
    }
    footer img{
        width: 30px;
    }
    footer .footer-social-media{
        gap: calc(10%+2vw);
    }
    footer div.footer-bottom-container{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: 100%;
        width: -webkit-fill-available;
        width: -moz-available;
    }
}
@media only screen and (min-width: 1200px) {
    footer img{
        width: 40px;
    }
}


/* POST ARTICLE SECTION ===============================================================*/

div.post-text{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap:13px;
    color: var(--p-light-brown);
}
div.sub-title{
    display :-webkit-box;
    display :-ms-flexbox;
    display :flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack:justify;
        -ms-flex-pack:justify;
            justify-content:space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
div.sub-title h2{
    font-size: 18px;
    color : var(--p-light-brown);
    text-align: left;
}
div.article-container{
    min-height: 80vh;
    min-width: 80vw;
    padding-top: 39px;
}

div.post-content{
    gap:13px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
div.post-content h2{
    font-weight: 600;;
}
div.post-content li{
    list-style-type: circle;
    margin-left: 20px;
    margin-bottom: 10px;
}
@media only screen and (min-width: 901px) {
    div.sub-title h2{
        font-size : 24px;
    }
}

/* SOCIAL MEDIA ICON ==================================================================*/

/* Style all font awesome icons */
.fa-brands {
    color: var(--background-clair);
    font-size: 10vw;
    text-align: center;
    text-decoration: none;
}

.fa-brands:hover {
  opacity: 0.7;
}

@media only screen and (min-width: 901px) {
    .fa-brands {
    font-size: xxx-large;
}
}

[data-theme="dark"] .fa-brands {
    color: var(--h1-dark-brown);
}

/** 404 PAGE =========================================================================**/
.container.error-404{
    z-index: 12;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.container.error-404 h1{
    font-size : 58px;
    text-align: center;
}
.container.error-404 h2{
    font-size : 32px;
    text-align: center;
}
.container.error-404 p{
    display : -webkit-box;
    display : -ms-flexbox;
    display : flex;
}
.container.error-404 .home-link{
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    padding-top: 13px;
    font-weight: 700;
    font-size: 42px;
}
.background-404 h1{
    font-size: 35vw;
    color: var(--p-light-brown);
    position: absolute;
    top:30%;
    left : 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    z-index: 10;
}
.background-404 span{
    --mask : linear-gradient(to top, var(--background-clair) 0%, transparent 100%);
    -webkit-mask: var(--mask);
    mask: var(--mask);
    -webkit-mask-composite: source-in, xor;
            mask-composite: intersect;
    mix-blend-mode: unset;
    z-index: 11;
    content : '';
    height: 50vh;
    width: 100vw;
    background-color: var(--background-clair);
    position: absolute;
    top:35%;
    left : 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);   
}

/** Search Form ======================================================================**/
div.search_form{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 90%;
    width: -webkit-fill-available;
    width: -moz-available;
}

div.search_form form{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
div.search_form form div{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 70%;

    gap: 13px;
}
div.search_form input{
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    outline: none;
    font-family: Inter;
    height: 30px;
}
div.search_form input[type="text"]{
    padding-left: 10px;
}
div.search_form input[type="submit"]{
    width : 20%;
    min-width: 130px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    background-color: var(--background-light-brown);
    color: var(--h2-brown);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
div.search_form input[type="submit"]:hover{
    opacity: 0.8;
}

/** Cookieyes fix ====================================================================**/
.cky-cookie-des-table li div:last-child p{
    font-size: unset;
    font-weight: 400;
}

/** ReCaptcha ========================================================================**/
.grecaptcha-badge { visibility: hidden; }
span.google-terms{
    font-size:12px;
    margin-bottom: 13px;
}

/** Google reviews ===================================================================**/
[data-theme="dark"]{
    div.ti-rating-text span{
        color:var(--h1-light) !important;
    }
    div.ti-rating-text span strong{
        color:var(--h1-light) !important;
    }
}
/** Dark Mode Switch =================================================================**/

div.dark-mode-switch{
    position: absolute;
    top: 0px; 
    z-index: 500;
    background-color: var(--background-light-brown);
    padding: 5px;
    padding-top: 73px; /* 78px = header height */;
    border-bottom-right-radius: 13px;
    
}
label.switch.theme-switch:hover span.fm-tooltip{
    display: block;
}
span.fm-tooltip{
    display: none;
    position: absolute;
    bottom: -2em;
    right: -9em;
    padding: 0.4em;
    background-color: var(--background-light-brown);
    font-family: Inter;
    font-weight: 550;
    border-radius: 5px;
    border-top-left-radius: 0px;
    -webkit-animation: tooltip--fade-in 0.5s ease-in-out forwards;
            animation: tooltip--fade-in 0.5s ease-in-out forwards;
}
@-webkit-keyframes tooltip--fade-in{
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    90% {
        opacity: 0;
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@keyframes tooltip--fade-in{
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    90% {
        opacity: 0;
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

/* From Uiverse.io by JustCode14 */ 
/* Theme Switch */
/* The switch - the box around the slider */
.switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 4em;
  height: 2.2em;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  scale:0.8;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2a2a2a;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 30px;
  overflow: hidden;
}

.slider:before {
  position: absolute;
  content: "";
  height: 1.2em;
  width: 1.2em;
  border-radius: 20px;
  left: 0.5em;
  bottom: 0.5em;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.81, -0.04, 0.38, 1.5);
       -o-transition-timing-function: cubic-bezier(0.81, -0.04, 0.38, 1.5);
          transition-timing-function: cubic-bezier(0.81, -0.04, 0.38, 1.5);
  -webkit-box-shadow: inset 8px -4px 0px 0px var(--h1-light);
          box-shadow: inset 8px -4px 0px 0px var(--h1-light);
}

.switch input:checked + .slider {
  background-color: var(--background-clair);
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(1.8em);
      -ms-transform: translateX(1.8em);
          transform: translateX(1.8em);
  -webkit-box-shadow: inset 15px -4px 0px 15px var(--background-light-brown);
          box-shadow: inset 15px -4px 0px 15px var(--background-light-brown);
}
.cloud_path{
    fill: var(--background-light-brown);
}
.star {
  background-color: var(--h1-light);
  border-radius: 50%;
  position: absolute;
  width: 5px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  height: 5px;
}

.star_1 {
  left: 2.5em;
  top: 0.5em;
}

.star_2 {
  left: 2.2em;
  top: 1.2em;
}

.star_3 {
  left: 3em;
  top: 0.9em;
}

.switch input:checked ~ .slider .star {
  opacity: 0;
}

.cloud {
  width: 3.5em;
  position: absolute;
  bottom: -1em;
  left: -0.8em;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.switch input:checked ~ .slider .cloud {
  opacity: 1;
}