#dnztiles-custom-header {
    background: transparent;
}

#dnztiles-custom-header.is-stuck .e-con-inner {
    background: #F5F4F4;
    border-radius: 0 35px 0 35px;
    padding-bottom: 0px;
}

#dnztiles-custom-footer {
    background: transparent;
}

.dnztiles-menu-container {
    display: flex;
    align-items: center;
}

.dnztiles-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.dnztiles-menu li a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

.dnztiles-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.dnztiles-hamburger span {
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.3s;
}

#dnztiles-custom-header button:focus,
#dnztiles-custom-header button:hover {
    background-color: #fff !important;
}

@media (max-width: 1024px) {
    .dnztiles-hamburger {
        display: flex;
    }

    .dnztiles-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        padding: 80px 40px;
        transition: 0.3s cubic-bezier(0.7, 0, 0.3, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 10000;
    }

    .dnztiles-menu {
        flex-direction: column;
        gap: 15px;
    }

    .is-active .dnztiles-menu-wrapper {
        right: 0;
    }

    .is-active .dnztiles-hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .is-active .dnztiles-hamburger span:nth-child(2) {
        opacity: 0;
    }

    .is-active .dnztiles-hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}