.elementor-kit-7{--e-global-color-primary:#1D1D1D;--e-global-color-secondary:#7F7F7F;--e-global-color-text:#393939;--e-global-color-accent:#FFFFFF;--e-global-color-ea1afe0:#FFFFFF;--e-global-color-b5f5693:#000000;--e-global-typography-primary-font-family:"Cus-Mhiora";--e-global-typography-primary-font-size:55px;--e-global-typography-primary-font-weight:500;--e-global-typography-primary-text-transform:uppercase;--e-global-typography-primary-line-height:1.2em;--e-global-typography-primary-letter-spacing:1.2px;--e-global-typography-secondary-font-family:"DM Sans";--e-global-typography-secondary-font-size:15px;--e-global-typography-secondary-font-weight:400;--e-global-typography-secondary-text-transform:uppercase;--e-global-typography-secondary-line-height:1.2em;--e-global-typography-secondary-letter-spacing:1px;--e-global-typography-text-font-family:"DM Sans";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.5em;--e-global-typography-accent-font-family:"DM Sans";--e-global-typography-accent-font-size:14px;--e-global-typography-accent-font-weight:600;--e-global-typography-accent-text-transform:uppercase;--e-global-typography-accent-line-height:1.3em;--e-global-typography-accent-letter-spacing:0.5px;--e-global-typography-035963a-font-family:"Cus-Mhiora";--e-global-typography-035963a-font-size:20px;--e-global-typography-035963a-font-weight:600;--e-global-typography-035963a-text-transform:uppercase;--e-global-typography-035963a-line-height:1.2em;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1350px;}.e-con{--container-max-width:1350px;}.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-kit-7{--e-global-typography-primary-font-size:45px;--e-global-typography-secondary-font-size:14px;--e-global-typography-035963a-font-size:19px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-7{--e-global-typography-primary-font-size:35px;--e-global-typography-secondary-font-size:13px;--e-global-typography-text-font-size:15px;--e-global-typography-accent-font-size:13px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */body{
    overflow-x: hidden;
}


.jet-popup.jet-popup--front-mode .jet-popup__container-inner{
    z-index: 99 !important;
}
.jet-popup.jet-popup--front-mode .jet-popup__close-button{
    top: 20px !important;
    right: 20px !important;
    z-index: 999 !important;
}

.cus-border-white a{
    border-bottom: 1px solid #fff;
}
.cus-border-gray a{
    border-bottom: 1px solid #ddd;
}
.cus-border-black{
    border-bottom: 1px solid #999;
}




/*
.cus-split{
    overflow: hidden;
}

.cus-split h2, .cus-split h3, .cus-split h4, .cus-split h5, .cus-split h6, .cus-split p, .cus-split .elementor-button{
    display: block;
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

@keyframes reveal {
  0% {
    transform: translate(0,100%);
  }
  100% {
    transform: translate(0,0);
  }
}
*/

/* Hide initially */
.cus-split {
  position: relative;
  overflow: hidden;
}

.cus-split > * {
  opacity: 0;
  transform: translateY(100%);
}

/* Animation styles added via JS */
.reveal-animate {
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes reveal {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}





.cus-special-sec {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.cus-special-sec::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.85);
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.4s ease; /* Smooth fade */
  z-index: 2;

  mask-image: none;
  -webkit-mask-image: none;
}



/* Active state with visible spotlight */
.cus-special-sec.active::after {
  opacity: 0.8;
  transition: opacity 0.4s ease; /* Optional: duplicate for clarity */
  mask-image: radial-gradient(circle 120px at var(--x) var(--y), transparent 0%, black 100%);
  -webkit-mask-image: radial-gradient(circle 120px at var(--x) var(--y), transparent 0%, black 100%);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}






@media screen and (max-width: 767px){
    .cus-btn a{
        min-width: 170px !important;
    }
    .cus-btn a .elementor-button-content-wrapper{
        justify-content: space-between;
    }
}






/* Improved Animations Stylesheet from https://element.how/elementor-improve-entrance-animations/ , works for the 'fade' animations */

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.elementor-element.fadeInDown {
    animation-name: fadeDown
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.elementor-element.fadeInLeft {
    animation-name: fadeLeft
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.elementor-element.fadeInRight {
    animation-name: fadeRight
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate3d(0,20px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.elementor-element.fadeInUp {
    animation-name: fadeUp
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Cus-Mhiora';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://afamdesign.com/wp-content/uploads/2025/08/Mhiora.ttf') format('truetype');
}
/* End Custom Fonts CSS */