.elementor-20 .elementor-element.elementor-element-fc8c7f4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-6a7b8c3 *//* General styles for the header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: transparent; /* Default transparent background */
}

.header-container {
    display: flex;
    align-items: center; /* Align vertically */
    justify-content: flex-start; /* Align everything to the left */
    padding: 0 20px;
    width: 100%;
}

/* Logo container styles */
.logo-container {
    display: flex;
    align-items: center; /* Align logo vertically */
    margin-right: 20px; /* Space between logo and menu */
}

.logo {
    max-height: 50px; /* Set your logo height */
    transition: filter 0.3s ease;
    filter: invert(1); /* Make the logo initially white */
}

/* Navbar styles */
.navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px; /* Adjusted space between menu items */
}

.navbar a {
    text-decoration: none;
    color: white; /* Initial color for the menu items */
    font-size: 14px; /* Smaller font size */
    font-weight: 300; /* Lighter font weight */
    font-family: 'Arial', sans-serif; /* Fine font style */
    transition: color 0.3s ease;
}

/* When the page is scrolled */
.scrolled {
    background-color: white; /* Background becomes white after scrolling */
}

.scrolled .logo {
    filter: invert(0); /* Make the logo black when scrolled */
}

.scrolled .navbar a {
    color: black !important; /* Change menu color to black when scrolled */
}/* End custom CSS */