.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-color-7fecf2c:#EC1F23;--e-global-color-b092671:#F15C24;--e-global-color-4bef6dd:#F78628;--e-global-color-c8a65e8:#000000;--e-global-color-bf389b4:#FFFFFF;--e-global-color-804f9c7:#26212D;--e-global-color-4e4c9e9:#222222;--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;color:var( --e-global-color-c8a65e8 );font-family:"Inter", Sans-serif;font-size:16px;font-weight:400;line-height:25px;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-kit-7 p{margin-block-end:0px;}.elementor-kit-7 h1{color:var( --e-global-color-c8a65e8 );font-family:"Barlow Semi Condensed", Sans-serif;font-size:55px;font-weight:700;text-transform:uppercase;line-height:60px;}.elementor-kit-7 h2{color:var( --e-global-color-c8a65e8 );font-family:"Barlow Semi Condensed", Sans-serif;font-size:40px;font-weight:700;text-transform:uppercase;line-height:60px;}.elementor-kit-7 h3{color:var( --e-global-color-c8a65e8 );font-family:"Barlow Semi Condensed", Sans-serif;font-size:25px;font-weight:700;text-transform:uppercase;line-height:20px;}.elementor-kit-7 h4{color:var( --e-global-color-c8a65e8 );font-family:"Barlow Semi Condensed", Sans-serif;font-size:20px;font-weight:700;text-transform:uppercase;line-height:20px;}.elementor-kit-7 button,.elementor-kit-7 input[type="button"],.elementor-kit-7 input[type="submit"],.elementor-kit-7 .elementor-button{font-family:"Barlow Semi Condensed", Sans-serif;font-size:20px;font-weight:700;text-transform:uppercase;line-height:14px;color:var( --e-global-color-bf389b4 );border-radius:0px 0px 0px 0px;padding:20px 40px 20px 40px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1530px;}.e-con{--container-max-width:1530px;--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:1200px){.elementor-kit-7{font-size:15px;}.elementor-kit-7 h1{font-size:45px;line-height:50px;}.elementor-kit-7 h2{font-size:35px;line-height:40px;}.elementor-kit-7 h3{font-size:23px;line-height:26px;}.elementor-kit-7 button,.elementor-kit-7 input[type="button"],.elementor-kit-7 input[type="submit"],.elementor-kit-7 .elementor-button{font-size:17px;padding:15px 30px 15px 30px;}}@media(max-width:1024px){.elementor-kit-7 h4{font-size:18px;line-height:18px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:880px){.elementor-kit-7{font-size:14px;}.elementor-kit-7 h1{font-size:35px;line-height:40px;}.elementor-kit-7 h2{font-size:30px;line-height:35px;}.elementor-kit-7 h3{font-size:20px;line-height:23px;}.elementor-kit-7 button,.elementor-kit-7 input[type="button"],.elementor-kit-7 input[type="submit"],.elementor-kit-7 .elementor-button{font-size:14px;padding:10px 20px 10px 20px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */:root{
    --main-grad: linear-gradient(90deg,
    rgba(236, 31, 35, 1) 3%,
    rgba(241, 92, 36, 1) 48%,
    rgba(247, 134, 40, 1) 100%);
    
    --main-grad-reverse: linear-gradient(180deg,
    rgba(236, 31, 35, 1) 3%,
    rgba(241, 92, 36, 1) 48%,
    rgba(247, 134, 40, 1) 100%);
    
    
}

.elementor-button{
   background-color: transparent;
    background-image: var(--main-grad);
    transition: all 0.3s ease-in-out;
    
}

.elementor-button:hover{
    transform: translateY(8px);
    background-color: transparent;
    background-image: var(--main-grad-reverse);
}


/* Main box */
.box {
    position: relative;
    isolation: isolate;
}

/* Navy background animation */
.box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-grad);
    border-radius: inherit;
    z-index: 0;
    pointer-events: none;

    -webkit-clip-path: circle(0% at 0% 0%);
    clip-path: circle(0% at 0% 0%);

    transition:
        clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1),
        -webkit-clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Fill from top-left to bottom-right */
.box:hover::before {
    -webkit-clip-path: circle(150% at 0% 0%);
    clip-path: circle(150% at 0% 0%);
}

/* Keep all box content above animated background */
.box > * {
    position: relative;
    z-index: 2;
}

/* Text animation */
.box h4,
.box p {
    transition: color 0.4s ease;
}

.box:hover h4,
.box:hover .elementor-widget-theme-post-excerpt {
    color: #ffffff !important;
}/* End custom CSS */