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

.sub_title_weight b{
    font-weight: 700;
}
.sub_title_weight800 b{
	font-weight: 800;
}
.gravity_form_css .gfield_label{
	font-family: "proxima-nova", Sans-serif;
font-weight: 600;
font-size: 14px;
line-height: 1.4px;
letter-spacing: 1.7px;
text-transform: uppercase;
--gf-local-color: #ffffff;
}
.gravity_form_css .gfield_required{
	display:none;
}
.up_arrow_btn .elementor-button-icon svg {
	height: 11.5px;
}
@media only screen and (max-width: 768px) {
.up_arrow_btn1 .elementor-button-icon svg {
	height: 8px;
}
}
div.gform_confirmation_message {
    color: #ffffff !important;
}
.left-content-wrapper {
     display: flex;
    justify-content: center;  /* horizontal center */
    align-items: center;
}

.left-content-wrapper .inner-content {
    max-width: 520px;
    width: 100%;
    text-align: left;
}
.blur_10{
    background-color: rgba(113, 115, 123, 0.2);
     backdrop-filter: blur(10px);
     
}

.glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-radius: 24px;
  
  color: #fff;

  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  overflow: hidden;
}

/* ✨ diagonal edge highlight */
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.6),   /* top-left highlight */
    rgba(255,255,255,0.2) 30%,
    transparent 50%,
    rgba(255,255,255,0.2) 70%,
    rgba(255,255,255,0.6)   /* bottom-right highlight */
  );

  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}