@charset "utf-8";
/* Header container */
/* HEADER */
.epix-header {
    font-family: 'Roboto', sans-serif;
/*	font-family: Candara, Tahoma, sans-serif;*/
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
    width: 100%;
/*    background: #1a1a1a;
    border-bottom: 1px solid #333;*/
    padding: 2px 0;
	padding-top:2px;
/*    font-family: 'Open Sans', sans-serif;*/
}

.epix-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.epix-logo {
	font-family: Candara, Tahoma, sans-serif;
    font-size: 28px;
	padding: 0px;
	margin:0;
    font-weight: 400;
    color: #FFF7E3;
    text-decoration: none;
}

.epix-logo a {
    color: #FFF7E3;
    text-decoration: none;
}

/* MENU */
/*@supports (-webkit-touch-callout: none) {
    .epix-menu {
        font-stretch: 75%;
    }
}*/
@supports (-webkit-touch-callout: none) {
    .epix-menu {
        font-size: 15px;
        font-stretch: 95%;
        letter-spacing: -0.15px;
    }
}


.epix-menu {
    font-family: 'Roboto', sans-serif;
/*	font-family: Candara, Tahoma, sans-serif;*/
    font-size: 15px;
	font-weight:300;
    list-style: none;
    margin: 0;
    padding-left: 10px;
	margin-right:10px;
    display: flex;
    gap: 10px;
	position:relative;
	top:5px;
}

.epix-menu > li {
    position: relative;
}

.epix-menu a {
/*    font-family: 'Roboto', sans-serif;
	font-family: Candara, Tahoma, sans-serif;*/
    color: #FFF7E0;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}

.epix-menu a:hover {
/*    font-family: 'Roboto', sans-serif;
	font-family: Candara, Tahoma, sans-serif;*/
    color: #FFF7E0; /*ff3a36;*/
	background: #444; /*747068;*/
}

/* DROPDOWN (initial state) */

.epix-dropdown {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity 0.5s ease,
        transform 0.25s ease,
        visibility 0s linear 0.5s;   /* delay hiding until animation ends */
    position: absolute;
    top: 100%;
    left: -8px;
    background: #747068;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    min-width: 240px;
    z-index: 9999;
}
.epix-has-dropdown:hover .epix-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;           /* show immediately */
}



.epix-dropdown li a {
    display: block;
    padding: 10px 18px;         /* <-- THIS fixes the "glued to the left" issue */
    font-size: 14px;
    white-space: nowrap;
    color: #FFF7E3;               /* adjust to your taste */
}

.epix-dropdown li a:hover {
    background: #444;
    color: #FFF7E3; /*ff3a36; */           /* or whatever your accent color is */
}

/* Expand hover area */
.epix-menu > li {
    position: relative;
    padding-bottom: 0px;
}

/* Show dropdown */
.epix-has-dropdown:hover .epix-dropdown {
    display: block !important;
}

/* Align dropdown left edge with the text of "Use Cases" */
.epix-has-dropdown .epix-dropdown {
    left: -10px;     /* adjust this value until it aligns perfectly */
}

.epix-hamburger {
    display: none;
    font-size: 26px;
    color: #FFF7E3;
    cursor: pointer;
    padding: 6px 10px;
}

@media (max-width: 1024px) {

    .epix-hamburger {
        display: block;
    }

    .epix-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        background: #3f3a36; /* matches your header background */
        width: 100%;
        padding: 10px 0;
        position: absolute;
        top: 60px; /* adjust depending on header height */
        left: 0;
        z-index: 9999;
    }

    .epix-menu ul,
    .epix-menu li {
        display: block;
        white-space: normal;
    }

    .epix-menu ul ul {
        display: none !important;
    }
		
    .epix-menu.show {
        display: flex;
    }

    .epix-menu > li {
        padding: 10px 20px;
    }

    /* Dropdown inside mobile menu */
    .epix-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        max-height: none;
        padding-left: 20px;
        background: none;
    }

    .epix-has-dropdown:hover .epix-dropdown {
        transform: none;
    }
}
