/* 
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.3.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, #content{
    -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;
}

/*
 * Fix Slider Display
 */
.swiper-wrapper {
    display: inline-flex !important;
}

/*
 * CookieYes 
 */
.cky-btn{
    background-color : var(--e-global-color-primary) !important;
    border-color: var(--e-global-color-primary) !important;
}
.cky-btn.cky-btn-customize {
    background-color: white !important;
    color: var(--e-global-color-primary)!important;
}

/**
 * Button
 **/
.elementor-button-info .elementor-button {
    background-color: transparent !important;
    color: var(--e-global-color-primary) !important;
    fill: currentColor !important;
    box-shadow: none !important;
    padding: 0 !important;
    text-decoration: underline !important;
    text-underline-offset: 8px !important;
}

.elementor-button-info .elementor-button:hover,
.elementor-button-info .elementor-button:focus,
.elementor-button-info .elementor-button:active {
    color: var(--e-global-color-accent) !important;
}

.elementor-button-success .elementor-button {
    background-color: var(--e-global-color-primary) !important;
    color: var(--e-global-color-dee9a46) !important;
    fill: currentColor !important;
    box-shadow: none !important;
}

.elementor-button-success .elementor-button:hover,
.elementor-button-success .elementor-button:focus,
.elementor-button-success .elementor-button:active {
    background-color: var(--e-global-color-accent) !important;
    color: var(--e-global-color-dee9a46) !important;
}


/*
 * Responsive 
 */
@media (max-width: 1024px) {
	.elementor-counter-title{
		text-align: center;
	}
}

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