.elementor-kit-9{--e-global-color-primary:#FC4C2B;--e-global-color-secondary:#000000;--e-global-color-text:#9E9E9E;--e-global-color-accent:#FC4C2B;--e-global-color-3991d34:#EDEDED;--e-global-typography-primary-font-family:"Inter";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Inter";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-weight:500;}.elementor-kit-9 button,.elementor-kit-9 input[type="button"],.elementor-kit-9 input[type="submit"],.elementor-kit-9 .elementor-button{background-color:var( --e-global-color-secondary );font-size:18px;color:#FFFFFF;border-radius:10px 10px 10px 10px;padding:17px 25px 17px 25px;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.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);}.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 *//* Target the button itself */
.my-btn .elementor-button {
    position: relative; /* Needed for ::before positioning */
    overflow: hidden;   /* Keeps the fill inside rounded corners */
    border-radius: 10px; /* Always keep rounded corners */
    z-index: 0;
}

/* Fill box */
.my-btn .elementor-button::before {
    content:'';
    position: absolute;
    background: #f64f2e; /* <-- Fill color */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right; /* <-- Fill out direction */
    transition: transform .4s ease; /* <-- Fill speed */
    border-radius: inherit; /* Match button’s radius */
    z-index: 0;
}

/* Hover class */
.my-btn .elementor-button:hover::before {
    transform: scaleX(1);
    transform-origin: left; /* <-- Fill in direction */
}

/* Button text */
.my-btn .elementor-button-text {
    position: relative;
    z-index: 1;
}

/* Hover Icon */
.my-btn:hover .elementor-button-icon {
    color: white; /* <-- Change Icon color */
    z-index: 1;
    transition: color .5s ease;
}

/* Icon size */
.my-btn .elementor-button-icon {
    transform: scale(1.3); /* <-- Change icon size */
    padding-left: 5px;
}/* End custom CSS */