.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--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;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:100%;}.e-con{--container-max-width:100%;--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);}@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 *//* --- Style for the button with the corner animation --- */
.corner-animated-button {
    position: relative !important; /* Use !important to override theme styles if needed */
    overflow: hidden !important;
    transition: all 0.4s ease-in-out !important;
}

/* --- Create the corner pieces --- */
.corner-animated-button::before,
.corner-animated-button::after {
    content: '' !important;
    position: absolute;
    width: 20px; /* The starting size of the corner lines */
    height: 20px;
    transition: all 0.4s ease-in-out;
    border-color: #DF1F31; /* The red color for the animation */
    border-style: solid;
}

/* --- Position the top-left corner piece --- */
.corner-animated-button::before {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
}

/* --- Position the bottom-right corner piece --- */
.corner-animated-button::after {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
}

/* --- The hover animation --- */
.corner-animated-button:hover {
    /* Make the original button border transparent on hover to see the effect clearly */
    border-color: transparent !important; 
}

/* --- Expand the corner pieces on hover --- */
.corner-animated-button:hover::before,
.corner-animated-button:hover::after {
    width: 100%;
    height: 100%;
}/* End custom CSS */