.elementor-kit-77{--e-global-color-primary:#116CFB;--e-global-color-secondary:#00C9FF;--e-global-color-text:#000000;--e-global-color-accent:#FFFFFF;--e-global-color-8630d9f:#7E222200;--e-global-typography-primary-font-family:"Lato";--e-global-typography-primary-font-size:45px;--e-global-typography-primary-font-weight:300;--e-global-typography-primary-text-transform:capitalize;--e-global-typography-primary-line-height:1.2em;--e-global-typography-secondary-font-family:"Lato";--e-global-typography-secondary-font-size:16px;--e-global-typography-secondary-font-weight:300;--e-global-typography-secondary-text-transform:capitalize;--e-global-typography-text-font-family:"Lato";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:300;--e-global-typography-text-line-height:1.4em;--e-global-typography-accent-font-family:"Lato";--e-global-typography-accent-font-size:16px;--e-global-typography-accent-font-weight:500;--e-global-typography-accent-text-transform:capitalize;--e-global-typography-accent-line-height:1.2em;}.elementor-kit-77 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1400px;}.e-con{--container-max-width:1400px;--container-default-padding-top:10px;--container-default-padding-right:10px;--container-default-padding-bottom:10px;--container-default-padding-left:10px;}.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-77{--e-global-typography-primary-font-size:32px;--e-global-typography-secondary-font-size:18px;--e-global-typography-text-font-size:15px;--e-global-typography-accent-font-size:15px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-77{--e-global-typography-primary-font-size:30px;--e-global-typography-secondary-font-size:16px;--e-global-typography-text-font-size:15px;--e-global-typography-accent-font-size:15px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ECG Hover Effect Styles */
.ecg-hover {
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
}

.ecg-hover svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    pointer-events: none;
}

.ecg-hover .ecg-path {
    fill: none;
    stroke: #116cfb;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1.2s ease;
}

.ecg-hover:hover .ecg-path {
    stroke-dashoffset: 0;
}
/* Permanent ECG Effect - Always Visible */
.ecg-permanent {
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
}

.ecg-permanent svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    pointer-events: none;
}

.ecg-permanent .ecg-path {
    fill: none;
    stroke: #116cfb;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.ecg-permanent.animate-once .ecg-path {
    animation: ecgDraw 1.2s ease forwards;
}

@keyframes ecgDraw {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* White ECG Hover Effect Styles */
.ecg-hover-white {
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
}
.ecg-hover-white svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    pointer-events: none;
}
.ecg-hover-white .ecg-path {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1.2s ease;
}
.ecg-hover-white:hover .ecg-path {
    stroke-dashoffset: 0;
}

/* Permanent White ECG Effect - Always Visible */
.ecg-permanent-white {
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
}
.ecg-permanent-white svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    pointer-events: none;
}
.ecg-permanent-white .ecg-path {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}
.ecg-permanent-white.animate-once .ecg-path {
    animation: ecgDrawWhite 1.2s ease forwards;
}
@keyframes ecgDrawWhite {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}/* End custom CSS */