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

/*
 * Article Text Display
 */
.elementor-widget-theme-post-content h2,
.elementor-widget-theme-post-content h3 {
	padding-top: 15px;
}
.elementor-widget-theme-post-content h2{
	font-size: 2.3em;
	line-height: initial;
}
.elementor-widget-theme-post-content .wp-block-image{
	padding: 20px 0;
}

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

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

.contener-hover:hover .elementor-widget-icon .elementor-icon{
	background-color: var(--e-global-color-secondary) !important;
}

.elementor-widget-n-accordion .e-n-accordion-item-title-text {
    color: white !important;
}

.custom-counter .elementor-counter-number{
	background-image: linear-gradient(90deg, var(--e-global-color-primary) 0%, var(--e-global-color-9ef7da1) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-counter .elementor-counter-title{
	text-align: center;
}

/*
 * Member Card 
 */
.member-card .elementor-flip-box__back .elementor-flip-box__layer__inner{
	background-color : var(--e-global-color-secondary);
	border-radius: 30px;
	padding: 25px;
}
.member-card .elementor-flip-box__back{
	background: linear-gradient(180deg, rgba(16, 6, 86, 0.8) 0%, rgba(177, 255, 173, 0.8) 66.35%) !important;
}

.member-card .elementor-flip-box__front .elementor-flip-box__layer__inner{
	background-color : var(--e-global-color-secondary);
	border-radius: 30px;
	padding: 25px;
}
/**
 * Button
 **/
.elementor-button-info .elementor-button{
    background-color: transparent !important;
	border-color : var(--e-global-color-primary) !important;
}

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

.elementor-button-warning .elementor-button{
    background-color: transparent!important;
	color: var(--e-global-color-primary) !important;
	box-shadow: 0px 4px 4px 0px #00000040;
	border-color : var(--e-global-color-secondary) !important;
}

.elementor-button-success .elementor-button{
    background-color: #B1FFAD33 !important;
	color: var(--e-global-color-secondary) !important;
	box-shadow: 0px 0px 60px -10px #B1FFAD66;
	border : none !important;
}

.elementor-button-success .elementor-button:hover,
.elementor-button-warning .elementor-button:hover{
    background-color: var(--e-global-color-secondary) !important;
	color: var(--e-global-color-primary) !important;
}

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