/*
 Theme Name:   Hello Elementor Child
 Theme URI:    url
 Description:  Child theme for Hello Elementor
 Author:       Arpin Tamang
 Author URI:   http://arpintamang.com.np
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  hello-elementor-child
*/

/* Add your custom CSS below */
.line {
	background-color: #2f2f2f !important;
	color: #2f2f2f;
}
.text-center {
	text-align: center;
	font-size: 18px !important;
	width: 100%;
	color: #dedede;
}
/* Initial State */
.glass-header {
   
    z-index: 9999;

    background: transparent;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);

    transition: background 0.35s ease,
                backdrop-filter 0.35s ease,
                box-shadow 0.35s ease;
}

/* On Scroll */
.glass-header.scrolled {
    background: rgba(255, 255, 255, 0.12); /* Adjust color & opacity */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}