/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
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
*/

/*
    Add your custom styles here
*/


/*temporary fix for flickering/flashing post archive feature image when set image ratio*/
.elementor-post__thumbnail > img{
	
	visibility:hidden;
	
}

.wpml-ls-statics-footer {
    display: none;
}

/*Edit elementor's fade in up animation movement*/
@keyframes fadeInUpDkR {
    from {
        opacity: 0;
        transform: translate3d(0,50px,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

body .fadeInUp {
    animation-name: fadeInUpDkR;
}

/*Custom slider content styling and animation on hover*/
.dkr-slider-hover-effect:hover .swiper-slide-inner{
    background: #595959A1;
    transition: 0.5s ease;
}

.dkr-slider-hover-effect .swiper-slide-contents {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 40px;
    transition: all 0.3s ease;
}

body:not(.elementor-editor-active) .dkr-slider-hover-effect .swiper-slide-contents {
	transform: translateY(100%);
}

body:not(.elementor-editor-active) .dkr-slider-hover-effect.hover-dkr .swiper-slide-contents{
		transform: translateY(0);

}

/*fixed section effect*/
body:not(.elementor-editor-active) .dkr-fixed-section{
    position: fixed;
    top: 8%;
    width: 100%;
    z-index: -10;
}

body:not(.elementor-editor-active) .dkr-section-over-fixed{
	margin-top: 75vh;
}

