.header-sec {
    position: fixed;
    z-index: 9;
    width: 100%;
    padding: 20px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.logo {
    width: 13%;
}

.navbar {

    display: flex;
    justify-content: center;
    align-items: center;
    width: 74%;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin {
    width: 13%;
    display: flex;
    justify-content: flex-end;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu-item a {
    text-decoration: none;
    color: #fff;
    padding: 40px 1rem;
    display: block;
    font-family: var(--font-one);
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
}

.admin a {
    display: inline-flex;
    margin: 0 10px 0 0;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 112px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 65px;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
}

.mega-content {
    display: flex;
    width: 100%;
	justify-content: space-evenly;
}

.links ul {
    list-style: none;
    padding: 0;
}

.links ul li a {
    text-decoration: none;
    color: black;
    display: block;
    padding: 8px 0;
    font-weight: 300
}

.menu-images img {

    margin-left: 20px;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    position: relative;
    z-index: 9;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 5px;
}

.hamburger span:nth-child(1) {
    width: 25px;
}

.hamburger span:nth-child(2) {
    width: 30px;
}

.hamburger span:nth-child(3) {
    width: 22px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    width: 30px;
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    width: 30px;
}

@media (max-width: 1025px) {
    .menu {
        flex-direction: column;
        display: none;
        background: white;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        padding: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        height: 100vh;
    }
    .mega-menu {
        position: static;
        width: 100%;
        display: none !important;
    }
    .menu.active {
   		display: flex;
        padding: 50px;
        z-index: 8;
        justify-content: center;
        align-items: center;
    }

    .hamburger.active {
        right: 30px;
        position: absolute;
    }

    .hamburger.active span {
        background: #333;
    }

    .hamburger {
        display: block;
    }

    .mega-menu {
        position: static;
        width: 100%;
    }

    .menu-images img {
        display: none;
    }

    .navbar {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 40%;
    }

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

}