.elementor-kit-6{--e-global-color-primary:#CA9933;--e-global-color-secondary:#844B22;--e-global-color-text:#1A1A1A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Geist";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Geist";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Geist";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Plus Jakarta Sans";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}body{overflow-x:inherit !important;}.elementor a, .elementor a:link, .elementor a:focus, .elementor a:active, .elementor a:hover{text-decoration:inherit !important;}.elementor a:link, .elementor .smooth-hover a:link, {transition:inherit;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@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 */body {
    overflow-x: hidden;
}

.sl-anim-image-grid {
    display: grid;
    grid-template-areas: "stack";
    width: 100%;
    height: 350px;
    aspect-ratio: 16/9;
    border-radius: 20px; /* Optional: adds rounded corners to the image area */
    overflow: hidden; /* Important: keeps the zooming image within the bounds */
}

/* Styles for EACH image (inactive state) */
.sl-anim-image {
    grid-area: stack;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    /* Start invisible and slightly zoomed IN */
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    
    /* 
    * Animate both opacity and transform.
    * The transform has a longer duration for a slow, cinematic zoom.
    */
    transition: opacity 0.6s ease, 
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.6s ease;
}

/* Styles for the ACTIVE image */
.sl-anim-image.active {
    /* Become visible and zoom OUT to normal size */
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Geist';
	font-display: auto;
	src: url('/wp-content/uploads/2025/07/Geist-VariableFont_wght.ttf') format('truetype');
}
/* End Custom Fonts CSS */