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

/* Animation for cards in "connect" section */
.pro-card-animate {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    overflow: hidden !important;
    /* We use a variable for the radius so each card can be different */
    border-radius: var(--idle-radius, 64px 64px 0px 64px); 
}

.pro-card-animate:hover {
    transform: scale(1.03) translateY(-5px);
    border-radius: var(--hover-radius, 0px 64px 64px 64px) !important;
}

/* Targeting the children */
.pro-card-animate .e-con, 
.pro-card-animate .e-con-inner,
.pro-card-animate .elementor-widget-container {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: var(--idle-radius, 64px 64px 0px 64px);
}

.pro-card-animate:hover .e-con,
.pro-card-animate:hover .e-con-inner,
.pro-card-animate:hover .elementor-widget-container {
    border-radius: var(--hover-radius, 0px 64px 64px 64px) !important;
    transform: scale(0.95);
}