/* 
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 */
.glass-card {
  border-radius: 20px;
  box-shadow:
    0 2px 4px 0 rgba(0, 0, 0, 0.10),
    0 8px 24px 0 rgba(0, 0, 0, 0.12),
    0 16px 48px 0 rgba(0, 0, 0, 0.10);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease all;
}

.glass-card:hover{
  transform: scale(1.01);
}
.glass-card .fx-container{
  z-index: 0 !important;
}
.glass-card > *{
  z-index: 1;
}
.glass-card > .elementor-widget-container{
	position: relative;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.25) 30%, rgba(255, 255, 255, 0.10) 70%, rgba(255, 255, 255, 0.7) 100%),
    linear-gradient(300deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.10) 60%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0 0 12px 2px rgba(255, 255, 255, 0.25) inset;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  opacity: .5;

}
