* {
    font-family: Bahnschrift, Helvetica, Arial, sans-serif;
}

body.admin-bar .your-header-class {
    margin-top: 32px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar .your-header-class {
        margin-top: 46px;
    }
}

.main-navigation {
    display: block;
    height: auto;
}

ul#menu-primary {
    display: flex;
    gap: 7px 44px;
    height: 100%;
    align-items: center;
}

ul#menu-main-menu li {}

.logo img {
    /* width: 80%; */
    max-width: 142px;
    width: 142px;
}

img.cst_top_call {
    width: 180px;
}

.menu-item a {
    font-family: Bahnschrift, Helvetica, Arial, sans-serif;
    line-height: 1.6em;
    font-size: 15px;
    font-size: 1rem;
    color: var(--ast-global-color-8);
}

.nav-menu li.current-menu-item>a,
.nav-menu li.current-page-ancestor>a,
.nav-menu li.current-menu-ancestor>a {
    color: #d53029 !important;
}


header {
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 14px;
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Active Animation */
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .html{
        display: none;
    }

    .menu {
        display: none;
        position: absolute;
        top: 80%;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 0 0 14px 14px;
        padding: 10px 20px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .menu.open { display: block; }

    .menu .nav-menu {
        flex-direction: column;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu .nav-menu li a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
        color: #333;
        text-decoration: none;  
    }

    button:hover {
        background-color: unset !important;
    }
}