/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 08 2026 | 08:04:39 */
/* Normal header */
.myheaderis{
    position: relative;
    width: 100%;
    z-index: 99999;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

/* Sticky only after scroll */
.myheaderis.scroll-sticky{
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;

    width: 100% !important;

    background: rgba(255,255,255,.96) !important;

    box-shadow: 0 8px 30px rgba(20,30,45,.10);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    animation: headerSlideDown .4s ease;
}

@keyframes headerSlideDown{
    from{
        transform: translateY(-100%);
    }

    to{
        transform: translateY(0);
    }
}

/* Keep language dropdown visible */
.myheaderis.scroll-sticky,
.myheaderis.scroll-sticky .e-con-inner{
    overflow: visible !important;
}