.elementor-kit-5{--e-global-color-primary:#1C445D;--e-global-color-secondary:#BD957B;--e-global-color-accent:#3C5F73;--e-global-color-text:#121212;--e-global-color-eec0e70:#EEEEEE;--e-global-color-a5e1f39:#FFFFFF;--e-global-color-f0ceef4:#DCDCDC;--e-global-color-5844ddc:#7389A6;--e-global-color-3ec38cb:#F7F1E5;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-size:30px;--e-global-typography-primary-font-weight:800;--e-global-typography-primary-text-transform:uppercase;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Open Sans";--e-global-typography-text-font-size:17px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.4em;--e-global-typography-accent-font-family:"Montserrat";--e-global-typography-accent-font-weight:500;--e-global-typography-9a286bc-font-family:"Montserrat";--e-global-typography-9a286bc-font-size:47px;--e-global-typography-9a286bc-font-weight:800;--e-global-typography-9a286bc-text-transform:uppercase;color:#585858;font-family:"Poppins", Sans-serif;font-size:17px;line-height:1.7em;}.elementor-kit-5 button,.elementor-kit-5 input[type="button"],.elementor-kit-5 input[type="submit"],.elementor-kit-5 .elementor-button{background-color:var( --e-global-color-primary );font-family:"Montserrat", Sans-serif;font-size:20px;font-weight:600;text-transform:uppercase;color:var( --e-global-color-a5e1f39 );border-radius:0px 0px 0px 0px;}.elementor-kit-5 button:hover,.elementor-kit-5 button:focus,.elementor-kit-5 input[type="button"]:hover,.elementor-kit-5 input[type="button"]:focus,.elementor-kit-5 input[type="submit"]:hover,.elementor-kit-5 input[type="submit"]:focus,.elementor-kit-5 .elementor-button:hover,.elementor-kit-5 .elementor-button:focus{background-color:var( --e-global-color-secondary );}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-kit-5 a{color:var( --e-global-color-primary );}.elementor-kit-5 h1{color:var( --e-global-color-primary );font-size:50px;line-height:1.4em;}.elementor-kit-5 h2{color:var( --e-global-color-primary );font-size:40px;line-height:1.4em;}.elementor-kit-5 h3{color:var( --e-global-color-primary );font-size:30px;line-height:1.4em;}.elementor-kit-5 h4{color:var( --e-global-color-primary );font-size:20px;line-height:1.4em;}.elementor-kit-5 h5{color:var( --e-global-color-primary );font-size:18px;line-height:1.3em;}.elementor-kit-5 h6{color:var( --e-global-color-primary );font-size:14px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1250px;}.e-con{--container-max-width:1250px;}.elementor-widget:not(:last-child){margin-block-end: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-kit-5{--e-global-typography-9a286bc-font-size:45px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-5{--e-global-typography-primary-font-size:27px;--e-global-typography-9a286bc-font-size:48px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Make the button a clipping context and carry the radius */
.elementor-button-wrapper .elementor-button {
  position: relative;            /* contain the pseudo-element */
  overflow: hidden;              /* clip the highlight to the button */
  border-radius: inherit;        /* use the existing button radius */
  box-sizing: border-box;        /* avoid width surprises */
  max-width: 100%;               /* prevent horizontal overflow */
  z-index: 0;                    /* create a baseline stacking context */
  isolation: isolate;            /* ensure pseudo-element stays inside */
}

/* Keep text/icon above the overlay */
.elementor-button-wrapper .elementor-button .elementor-button-text,
.elementor-button-wrapper .elementor-button .elementor-button-icon {
  position: relative;
  z-index: 1;
}

/* The highlight overlay */
.elementor-button-wrapper .elementor-button:before {
  content: "";
  position: absolute;
  inset: 0;                      /* replaces top/left/right/bottom: 0 */
  border-radius: inherit;        /* match the button corners exactly */
  background-color: transparent; /* starts invisible */
  transform: scaleY(0);          /* collapsed overlay */
  transform-origin: 50% 100%;    /* grow from bottom up (nice feel) */
  transition: transform 0.20s linear, background-color 0.20s linear;
  pointer-events: none;          /* never block clicks */
  z-index: 0;
}

/* On hover/focus, reveal the highlight */
.elementor-button-wrapper .elementor-button:hover:before,
.elementor-button-wrapper .elementor-button:focus-visible:before {
  background-color: var(--e-global-color-secondary);
  transform: scaleY(1);
}

/* Mobile safeguards: allow wrapping and full-width buttons if needed */
@media (max-width: 767px) {
  .elementor-button-wrapper {
    max-width: 100%;
  }
  .elementor-button-wrapper .elementor-button {
    width: 100%;                 /* optional: make it full width on mobile */
    white-space: normal;         /* let long labels wrap instead of overflow */
    word-break: break-word;      /* break super-long words/URLs if any */
  }
}/* End custom CSS */