/* 
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.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

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

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

.grecaptcha-badge { 
    visibility: hidden;
}

.souligne-espace{
	text-decoration: underline;
    text-decoration-thickness: 7px;
    text-underline-offset: 20px;
	text-decoration-color: var(--e-global-color-accent);
}

.elementor-widget-posts .elementor-pagination{
    margin-top: 20px;
}
.elementor-widget-n-menu button, #form-nl button{
	box-shadow : none !important;
}

.elementor-flip-box__layer {
  pointer-events: none;
}

.video-zoom {
  transition: transform 0.6s ease;
  display: inline-block; 
  cursor: pointer;
}

.video-zoom:hover {
  transform: scale(1.2);
  outline: none;
}

.fs-left-padding{
	padding-left: calc((100vw - 1420px) / 2) !important;
}
/**
 * Button
 **/
.elementor-element.elementor-button-info .elementor-button{
    background-color: var(--e-global-color-secondary);
}

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

/*
 * Annimations 
 */

/* Pour l’ancien système basé sur animate.css */
:root { --animate-duration: 1s; }
.elementor .animated { animation-duration: 1s !important; }

/* Pour le système e-animations d’Elementor */
.elementor .e-animated { animation-duration: 1s !important; }

/* Cas où un thème/plugin a mis une durée à 0 par défaut */
.elementor .animated,
.elementor .e-animated {
  animation-delay: var(--animate-delay, 0s);
  animation-fill-mode: both;
}

.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;
    }
}

/* Small devices (mobile/tablets, 767px and below) */
@media only screen and (max-width: 766px) {
	.souligne-espace{
		text-decoration-thickness: 4px;
		text-underline-offset: 5px;
	}
	.video-zoom:hover {
	  transform: scale(1);
	}
}