/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 08 2026 | 13:41:54 */
/* Header */
.nada-header {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

/* Header Scrolled: Glassmorphism */
.nada-header.header-scrolled {
    background: rgb(70, 105, 140, .38) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 4px 30px rgb(0, 0, 0, .25) !important;
    border-bottom: 1px solid rgb(70, 105, 140, .20) !important;
}

.menu-item {
    display: inline-block; /* important */
    border-bottom: 1px solid transparent;
    border-radius: 5px; 
    transition: all 0.3s ease;
}

.menu-item:hover,
.menu-item.current-menu-item {
    border-bottom: 1px solid #fff;
}