.elementor-kit-8{--e-global-color-primary:#DEDE18;--e-global-color-secondary:#202124;--e-global-color-text:#666666;--e-global-color-accent:#202124;--e-global-color-59c2e3c:#FFFFFF;--e-global-color-db5b997:#202124;--e-global-color-759bd04:#0000009C;--e-global-typography-primary-font-family:"DM Sans";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"DM Sans";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"DM Sans";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"DM Sans";--e-global-typography-accent-font-weight:500;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-kit-8 a{text-decoration:none;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1460px;}.e-con{--container-max-width:1460px;--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: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 */.hovbutton {
  position: relative;
  display: inline-block;
  background: transparent; /* 🔹 transparent by default */
  color: #dede18;          /* text in yellow */
  border-radius: 30px;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
  z-index: 1;
  padding: 1px 1px;
  line-height: 1;
  border: none;
  overflow: hidden; /* keeps the border rounded cleanly */
}

.hovbutton::before {
  content: "";
  position: absolute;
  inset: 0; /* same as top:0; right:0; bottom:0; left:0 */
  border: 1px solid transparent; /* hidden by default */
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.25s ease, border-color 0.25s ease;
  box-sizing: border-box;
  z-index: -1;

  /* crisp border */
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hovbutton:hover {
  color: #fff;              /* text turns white */
  background: #dede18;      /* yellow background */
}

.hovbutton:hover::before {
  border-color: #dede18;    /* yellow border */
  opacity: 1;
}/* End custom CSS */