html {
    overflow-x: hidden;
}

.top-header {
    display: flex;
    justify-content: space-between;
    background-color: black;
    height: 35px;
    padding: 0px 65px;
    flex-wrap: nowrap;
}

.top-header-cons {
    display: flex;
    border: 1pc solid none;
    align-items: center;
    height: auto;
    font-size: 12px;
    color: white;
    font-weight: normal;
}

.inner-right {
    display: flex;
    justify-content: flex-end;
    border: 1px solid none;
    min-width: 150px;
}

.menu {
    display: flex;
    border: 1px solid none;
    padding: 8px 100px;
    height: auto;
    justify-content: space-between;

}

.menu-nav2 {
    display: flex;
    border: 1px solid none;
    padding: 0px 65px;
    height: auto;
    justify-content: space-between;
    border-bottom: 1px solid #c6c6c6 ;

}

.menu ul {
    list-style-type: none;

}
.menu-nav2 ul {
    list-style-type: none;

}

.mobile-nav {
    display: none;
}

.dropdown-item:hover {
    background-color: rgb(216, 216, 216);

}


.nav-menu-2 {
    display: flex;

}

.nav-menu-2-item {
    font-size: 18px;
    font-weight: normal;
    padding: 0px 10px;

}



.nav2-menu-2-item {
    font-size: 14px;
    font-weight: 500;
    padding: 0px 10px;
    

}

.nav-menu-3 {
    display: flex;

}

.nav-menu-3-item {
    font-size: 14px;
    padding: 0px 15px;
    font-weight: normal;

}

.menu-section {
    display: flex;
    border: 1px solid none;
    align-items: center;

}

.menu-2-nav2 {
    flex-grow: 1;
    padding-left: 15%;

}


.menu-icon {
    display: flex;
}



.menu-4 {
    font-size: 14px;
    background-color: black;

    padding: 0px 15px;
    font-weight: normal;
    border-radius: 5px;


}

.menu-4 a {
    color: white;

}

.dropdown-menu {
    position: relative;
    border: 1px solid none;

}

.dropdown {
    display: none;
    position: absolute;
    background-color: white;
    z-index: 1;
    border: 1px solid none;
    margin-top: -2px;

    min-width: 200px;
    padding: 15px 15px;



}

.mega-dropdown-outer {
    min-width: 700px;
    border: 1px solid none;
    justify-content: space-between;





}

.mega-dropdown-inner {
    display: flex;
    border: 1px solid none;
    max-height: 500px;
}

.dropdown-menu:hover .dropdown {
    display: flex;


}

.dropdown li {
    padding: 15px;
    font-weight: 300;
    font-size: 14px;
    min-width: 200px;

}

.dropdown-single-menu {
    flex-direction: column;
}



@media screen and (max-width: 480px) and (max-width: 320px) {
    .menu-2 {
        display: none;
    }

    .menu-3 {
        display: none;
    }

    .menu-4 {
        display: none;
    }

    .menu-section {
        margin-left: -60px;

    }

    .mobile-nav {
        display: flex;
    }

    .top-header {
        display: none;

    }

}



@media screen and (max-width: 720px) {
    .menu-2 {
        display: none;
    }

    .menu-3 {
        display: none;
    }

    .menu-4 {
        display: none;
    }

    .menu-section {
        margin-left: -60px;

    }

    .mobile-nav {
        display: flex;
    }

    .top-header {
        display: none;

    }



}

@media screen and (min-width: 768px) {}

@media screen and (min-width: 1025px) {
    .menu {
        margin-bottom: 0px;
    }

}


@media screen and (max-width: 900px) {
    .menu-2 {
        display: none;
    }

    .menu-3 {
        display: none;
    }

    .menu-4 {
        display: none;
    }

    .menu-section {
        margin-left: -60px;

    }

    .mobile-nav {
        display: flex;
    }

    .top-header {
        display: none;

    }





}

@media screen and (max-width: 1024px) {
    .menu-2 {
        display: none;
    }

    .menu-3 {
        display: none;
    }

    .menu-4 {
        display: none;
    }

    .menu-section {
        margin-left: -60px;

    }

    .mobile-nav {
        display: flex;
    }

    .top-header {
        display: none;

    }



}

@media screen and (max-width: 1124px) {
    .menu-2 {
        display: none;
    }

    .menu-3 {
        display: none;
    }

    .menu-4 {
        display: none;
    }

    .menu-section {
        margin-left: -60px;

    }

    .mobile-nav {
        display: flex;
    }

    .top-header {
        display: none;

    }






}

/* basic styles for the header component */
.mobile-nav {
    width: 100%;
    padding: 20px;

}

/* Make nav menu items take full width allocated */
.navMenu ul {
    display: flex;
    justify-content: space-between;
}

.navMenu li {
    list-style: none;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
}

.navMenu li:hover {
    color: blue;
}



/* Styles for the hamburger menu icon */
#hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

#hamburger div {
    width: 22px;
    height: 2px;
    background-color: black;
    margin: 4px 0;
    transition: 0.5s;
}

#hamburger {
    display: none;
}

@media screen and (max-width: 767px) {


    html {
        overflow-x: hidden;
    }



    #hamburger {
        display: block;
    }



    .navMenu {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: black;
        display: none;
        transition: 0.5s;
        z-index: 10;


    }

    .navMenu ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 15px 0;
    }

    .navMenu li {
        color: white;
        padding: 15px 0;
    }
}


@media screen and (max-width: 1124px) {




    #hamburger {
        display: block;
    }



    .navMenu {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: black;
        display: none;
        transition: 0.5s;
        z-index: 10;

    }

    .navMenu ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 15px 0;

    }

    .navMenu li {
        color: white;
        padding: 15px 0;
    }

    .navMenu li a {
        color: white;
        padding: 15px 0;
    }
}

/* Extra utility classes to be added with JS */

.nav-active {
    display: flex;
}



#hamburger.toggle div {
    background-color: white;
}

.toggle #bar1 {
    transform: rotate(-45deg) translate(-5px, 4px);
}

.toggle #bar2 {
    opacity: 0;
}

.toggle #bar3 {
    transform: rotate(45deg) translate(-5px, -4px);
}