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

.linearSection::before {
	background-image: linear-gradient(
  80deg,
  #FFF 40%,
  #FFFFFF80 60%,
  transparent 100%
) !important;
}

#toggleSearch{
	cursor: pointer;
}

#searchBox {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.25s ease;
    pointer-events: none;
}

#searchBox.is-open {
    max-height: 300px; /* must be larger than the real height */
    opacity: 1;
    pointer-events: auto;
}

/* Main menu normal state */
.MainMenu {
    position: relative;
    width: 100%;
    z-index: 9999;
    transition: all 0.35s ease;
}

/* When it becomes sticky */
.MainMenu.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* Header inner container */
.mainHeader {
    transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

/* Glass effect while scrolling */
.MainMenu.is-sticky .mainHeader {
    background: rgba(255, 255, 255, 0.25); /* transparent */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}