.elementor-kit-8{--e-global-color-primary:#009413;--e-global-color-secondary:#8CA9D3;--e-global-color-text:#2F2F2F;--e-global-color-accent:#F26659;--e-global-color-efe20f2:#FFFFFF;--e-global-color-e025221:#FFFFFF;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:var( --e-global-color-efe20f2 );}.elementor-kit-8 button,.elementor-kit-8 input[type="button"],.elementor-kit-8 input[type="submit"],.elementor-kit-8 .elementor-button{background-color:var( --e-global-color-secondary );color:var( --e-global-color-e025221 );}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-kit-8 a{color:var( --e-global-color-primary );}.elementor-kit-8 h1{color:var( --e-global-color-text );}.elementor-kit-8 h2{color:var( --e-global-color-text );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1600px;}.e-con{--container-max-width:1600px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Hide search input initially */
    .fullscreen-search {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #000000D9; /* Dark overlay */
        display: flex;
        flex-direction: row; /* Elements align horizontally */
        align-items: center; /* Center vertically */
        justify-content: center; /* Center horizontally, no space-between */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: 9999;
    }

    /* Center the search form */
    .fullscreen-search .elementor-widget-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 0 1 auto; /* Size naturally, no stretching */
    }

    /* Style the search form as a flex row */
    .fullscreen-search .elementor-search-form {
        display: flex;
        align-items: center; /* Align input and submit vertically */
        flex-wrap: nowrap; /* Default: no wrapping above 720px */
    }

    /* Style the input */
    .fullscreen-search .elementor-search-form input {
        padding: 15px;
        font-size: 18px;
        border: none;
        outline: none;
    }

    /* Style the submit button */
    .fullscreen-search .elementor-search-form button[type="submit"] {
        padding: 15px;
        font-size: 18px;
        background: #EBC999 !important;
        border: none;
        cursor: pointer;
    }

    /* Close button positioned next to the form */
    .fullscreen-search .close-search {
        font-size: 18px; /* Adjust size */
        color: white;
        cursor: pointer;
        background: none;
        border: none;
        display: flex;
        align-items: center; /* Vertically center with form */
        margin-left: 10px; /* Small gap between form and close button */
    }

    /* Media query for screens smaller than 720px */
    @media (max-width: 720px) {
        .fullscreen-search .elementor-search-form {
            flex-wrap: wrap; /* Enable wrapping within the form */
            width: 90%; /* Constrain width to force wrapping */
            max-width: 100%; /* Ensure it fits the screen */
            justify-content: center; /* Center items */
        }

        /* Input on row 1 */
        .fullscreen-search .elementor-search-form input {
            flex: 1 0 100%; /* Force input to full width and wrap */
            margin-bottom: 10px; /* Space between input and buttons */
        }

        /* Submit and close on row 2 */
        .fullscreen-search .elementor-search-form button[type="submit"] {
            margin-right: 10px; /* Space before close button */
        }

        .fullscreen-search .close-search {
            margin-left: 0; /* Reset margin-left */
        }

        /* Ensure vertical centering of wrapped content */
        .fullscreen-search {
            align-content: center; /* Center the wrapped rows vertically */
        }
    }/* End custom CSS */