.menu-open{
    overflow: hidden;
}
header{
    background: #fff;
    position: sticky;
    z-index: 999;
    top: 0px;
}
.header {
    background: #fff;
    width: 100%;
    padding: 15px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Logo */
.logo img {
    width: 105px;
}

/* Footer Logo */
.footer-logo img {
    width: 180px;
}

/* Nav */
nav {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #000;
    margin-left: 26px;
    font-size: 16px;
    transition: color 0.3s ease;
    letter-spacing: -0.12px;
    text-transform: capitalize;
    position: relative;
}
nav a.active:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #000;
    bottom: -7px;
    margin: auto;
    left: 0;
    right: 0;
    border-radius: 5px;
}
nav .custom-button.active:before{
    display: none;
}
nav a:hover {
    color: #555;
}

.logo {
    position: relative;
    z-index: 11;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #000;
    margin: 3px 0;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 9;
        gap: 8vw;
        justify-content: center;
    }

    nav.active {
        transform: translateX(0);
    }
    nav a{
        margin-left: 0px;
        font-size: 6vw;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1px;
        width: 34px;
        height: 25px;
        cursor: pointer;
        z-index: 1000;
    }

    .menu-toggle span {
        display: block;
        height: 2px;
        min-height: 2px;
        width: 100%;
        background: #000;
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }

    /* Hamburger turns into X */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

