/* 
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, created by Elementor team
Author: Elementor Team
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
*/

/* Add your custom styles here */

.column_home {
    background-size: 0 0 !important;
    cursor: pointer;
}
.column_home:hover {
   background-size: cover !important;
}
.column_home .column_title h2, .column_home .column_content h3, .column_home .column_content p{
    transition: all 0.3s;   
}
.column_home:hover .column_title h2{
    font-weight: 600 !important;
}
.column_home:hover .column_title h2, .column_home:hover .column_content h3, .column_home:hover .column_content p{
    color:white !important;
}


.column_home::before{
    display: none;
}
.column_home:hover:before{
    display: block;
        background-color: var(--e-global-color-1204a98);
    --background-overlay: '';
}
@media(max-width:780px){
    .column_home {
        background-size: cover !important;
    }
    .column_home:before{
        display: block;
            background-color: var(--e-global-color-1204a98);
        --background-overlay: '';
    }
    .column_home .column_title h2, .column_home .column_content h3, .column_home .column_content p{
        color:white !important;
    }
    .column_home .column_title h2{
    font-weight: 600 !important;
}
}



//Cards fractional 
.card-container{
    height: 270px;
    transition: all 0.4s;
}
.card-title{
    transition: all 0.4s;
}
.card-text{
    height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s;
}
.card-icon{
    transition: all 0.4s;
    height: 80px;
}
.card-container:hover::before{
    background: #0040B7CC !important;
}
.card-container:hover .card-text{
    height: 100px;
    opacity: 1;
}
.card-container:hover .card-icon{
    height: 0px;
    opacity: 0;
}
@media(max-width:800px){
    .card-container::before{
        background: #0040B7CC !important;
    }
    .card-container .card-text{
        height: 100px;
        opacity: 1;
    }
    .card-container .card-icon{
        height: 0px;
        opacity: 0;
    }
}

@media(max-width:680px){
    .elementor-swiper-button-next{
        right: 0px !important;
    }
	.elementor-swiper-button-prev{
        left: 0px !important;
    }
}