.elementor-kit-6{--e-global-color-primary:#80836C;--e-global-color-secondary:#FFFFFF;--e-global-color-text:#000000;--e-global-color-accent:#4E0B161C;--e-global-color-edb916b:#F7E8D7;--e-global-color-23e8846:#FAFBFC;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-size:48px;--e-global-typography-primary-font-weight:500;--e-global-typography-primary-text-transform:none;--e-global-typography-primary-font-style:normal;--e-global-typography-primary-text-decoration:none;--e-global-typography-primary-line-height:1em;--e-global-typography-secondary-font-family:"Roboto";--e-global-typography-secondary-font-size:36px;--e-global-typography-secondary-font-weight:500;--e-global-typography-secondary-text-transform:none;--e-global-typography-secondary-font-style:normal;--e-global-typography-secondary-text-decoration:none;--e-global-typography-secondary-line-height:1em;--e-global-typography-text-font-family:"Montserrat";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-text-text-transform:none;--e-global-typography-text-font-style:normal;--e-global-typography-text-text-decoration:none;--e-global-typography-accent-font-family:"Montserrat";--e-global-typography-accent-font-size:22px;--e-global-typography-accent-font-weight:400;--e-global-typography-accent-text-transform:none;--e-global-typography-accent-font-style:normal;--e-global-typography-accent-text-decoration:none;--e-global-typography-accent-line-height:1em;--e-global-typography-e7b633c-font-family:"IvyOra Display";--e-global-typography-e7b633c-font-size:24px;--e-global-typography-e7b633c-font-weight:600;--e-global-typography-e7b633c-text-transform:uppercase;--e-global-typography-e7b633c-line-height:1em;}.elementor-kit-6 h2{color:var( --e-global-color-text );font-family:"Roboto", Sans-serif;font-size:28px;font-weight:500;text-transform:none;font-style:normal;text-decoration:none;line-height:1em;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1440px;}.e-con{--container-max-width:1440px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){margin-block-end:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-kit-6{--e-global-typography-primary-font-size:32px;--e-global-typography-secondary-font-size:24px;--e-global-typography-text-font-size:16px;--e-global-typography-accent-font-size:18px;--e-global-typography-e7b633c-font-size:20px;}.elementor-kit-6 h2{font-size:24px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6{--e-global-typography-primary-font-size:28px;--e-global-typography-e7b633c-font-size:16px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */p {
    margin: 0 !important;
}

#content ul, #content ol {
    margin-bottom: 0px !important;
    margin-left: 1rem !important;
}

p + p, ul + p, #content p +  ul, ol + p, p + ol, #content li + li {
    margin-top: 1rem !important;
}

.ast-container, .site-content .ast-container, .ast-separate-container #content .ast-container {
    all: unset;
}

.container {
    padding: 60px 20px;
}

@media screen and (min-width: 1024px) {
    .container {
        padding: 75px 100px;
    }
}

/*BTN*/

.btn-perso {
    cursor: pointer;
}

.btn-perso .btn-right, .btn-perso .btn-left {
    transition: .3s ease;
    background-color: #4E0B16 ;
    backdrop-filter: blur(2px)
}

.btn-perso .btn-right.blue, .btn-perso .btn-left.blue {
    transition: .3s ease;
    background-color: #F7E8D7 !important;
    backdrop-filter: blur(2px)
}


.btn-perso .btn-left {
    border-radius: 25px 0 0 25px;
}

.btn-perso .btn-right {
    border-radius: 0 25px 25px 0;
    padding-right: 10px;
}

.btn-perso .btn-right.blue svg *, .btn-perso .btn-right.blue svg {
    stroke: #F7E8D7;
    transition: .2s ease;
}

.btn-perso .btn-right svg *, .btn-perso .btn-right svg {
    stroke: white;
    transition: .2s ease;
}

.btn-perso .btn-right svg {
    transform-origin: center;
}

.btn-perso:hover .btn-left {
    border-radius: 25px;
}

.btn-perso:hover .btn-right {
    padding: 7px;
    padding-inline: 10px;
    border-radius: 50%;
}

.btn-perso:hover .btn-right svg path {
    transform: scale(0.6, 1);
    transform-origin: right;
}

.btn-perso:hover .btn-right svg {
    rotate: -45deg;
    margin-left: -10px;
    margin-bottom: -8px;
}

/*HOVER EFFECT*/

.hover-effect {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hover-effect:before {
    content: "";
    position: absolute;
    background-color: #F7E8D7;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    z-index: -1;
    border: none;
}

.hover-effect.active-top::before {
    animation: enter-top .3s forwards;
}

.hover-effect.active-bot::before {
    animation: enter-bot .3s forwards;
}

.hover-effect.retire-top::before {
    animation: back-top .3s ;
}

.hover-effect.retire-bot::before {
    animation: back-bot .3s forwards;
}

@keyframes enter-top {
    from {
        top: -100%;
    }
    
    to {
        top: 0;
    }
}

@keyframes enter-bot {
    from {
        top: 100%;
    }
    
    to {
        top: 0;
    }
}

@keyframes back-top {
    from {
        top: 0;
    }
    
    to {
        top: -100%;
    }
}

@keyframes back-bot {
    from {
        top: 0;
    }
    
    to {
        top: 100%;
    }
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'IvyOra Display';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://www.drbenoitphilippe.fr/wp-content/uploads/2025/07/IvyOraDisplay-Regular.ttf') format('truetype');
}
/* End Custom Fonts CSS */