/* 
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
*/

:root{
 	--container-max: 1420px;
 	--gutter-min: 30px;
	--animate-duration: 1s;
}

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

.comments-area {
    padding: 13px 37px 22px 38px;
}

.title-comments, #reply-title {
    font-size: 1.5em;
    font-weight: bold;
}

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

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

.tagcloud .tag-cloud-link {
    font-size: 1em !important;
    padding: 10px;
    border: solid var( --e-global-color-secondary ) 2px;
    margin: 5px;
    display: inline-block;
}

.grecaptcha-badge { 
    visibility: hidden;
}


.fs-left-padding{
	padding-left: max(var(--gutter-min), calc(50% - (var(--container-max) / 2)));
	/*padding-right: max(var(--gutter-min), calc(50% - (var(--container-max) / 2)));*/
}

.temoignages .swiper-slide{
	padding-bottom : 10px;
}

/*
 * BUTTONS 
 */

/* Texte centré */
.elementor-button-text {
	margin: auto;
}

/* Icône bouton */
.elementor-button-icon {
	padding: 15px;
	background-color: var(--e-global-color-7b797d3);
	border-radius: 100px;
}
/* SVG */
.elementor-button:has(svg){
	padding: 10px 70px 10px 10px !important;
}
.elementor-button-content-wrapper svg {
	fill: var(--e-global-color-primary);
	width: 20px;
	transition: 100ms linear all;
}

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

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

/* Variante bouton "info" */
.elementor-element.elementor-button-info .elementor-button {
	background-color: var(--e-global-color-accent);
}


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

/*
 * Annimations 
 */
/* Pour l’ancien système basé sur animate.css */
.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;
    }
}