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

body{
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.elementor-widget-posts .elementor-pagination{
    margin-top: 20px;
}

h2,h3,h4,h5,h6{
    font-family: var(--e-global-typography-primary-font-family);
}

.grecaptcha-badge { 
    visibility: hidden;
}

/*
 * Equipe 
 */
.team .elementor-flip-box__back{
	background: linear-gradient(180deg,rgba(246, 246, 246, 0.65) 0%, var(--e-global-color-primary) 100%) !important;
}
.team .elementor-flip-box__button{
	padding: 0;
}

.team .elementor-flip-box::after {
    content: url("/wp-content/uploads/2025/12/arrow-right-white.svg");
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
	padding : 10px 20px;
}


/**
 * Button
 **/
.cky-btn{
	padding: 10px 25px !important;
}

.elementor-element.elementor-button-info .elementor-button{
    background-color: var(--e-global-color-secondary);
	color : var(--e-global-color-primary);
}

.elementor-button .elementor-button-content-wrapper svg {
	fill: var(--e-global-color-secondary);
}

.elementor-button-info .elementor-button-content-wrapper svg {
	fill: var(--e-global-color-primary);
}

.elementor-button-content-wrapper svg {
	transition: 100ms linear all;
}

/* Hover bouton */
.elementor-button:hover {
	transform: translateY(-5px);
}

.elementor-button:hover .elementor-button-content-wrapper svg {
	transform: rotateZ(45deg);
}

/*
 * Annimations 
 */
.fadeInRight{
    animation-name: fadeInRightCustom !important;
}
.fadeInLeft{
    animation-name: fadeInLeftCustom !important;
}
.fadeInUp{
    animation-name: fadeInUpCustom !important;
}
.fadeInDown{
    animation-name: fadeInDownCustom !important;
}
@keyframes fadeInRightCustom {
    from {
        opacity: 0;
        transform: translate3d(20%, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInLeftCustom {
    from {
        opacity: 0;
        transform: translate3d(-20%, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInUpCustom {
    from {
        opacity: 0;
        transform: translate3d(0, 20%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInDownCustom {
    from {
        opacity: 0;
        transform: translate3d(0, -20%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}