.menu, .menu-bars, .logo, .menu-items, .hamburger-menu > ul{
    display: grid;
    display: -ms-grid;
    display: -moz-grid;
}

nav{
    /* position: fixed;
    top:0;
    left:0;
    right:0; */
    /* background-color: white; */
    z-index:10;
    /* background-color: rgba(255, 255, 255, 0.8); */
    /* position: relative; */
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255) !important;
}
.logo{
    grid-template-columns: repeat(2, auto);
    align-content: center;
    column-gap: 1rem;
}

.menu{
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    padding:0.6rem 1rem;
    /* border:1px solid black; */
}

.power-wiz-logo{
    height: 35px;
}

/*.menu-bars{
    width: 38px;
    height: 35px;
    border-radius: 5px;
    grid-template-rows: repeat(3, auto);
    align-content: space-between;
    padding:0.6rem 0.5rem;
    box-shadow: 1px 1px 3px rgb(120, 120, 120);
    background-color: #fcc22c;
}

.menu-bars:hover{
    cursor: pointer;
}

.menu-bars:hover > div{
    background-color: rgb(245, 245, 245);
}

.menu-bars > div{
    height: 2px;
    background-color: black;
}

.menu-bars > div:nth-of-type(2){
    width:75%;
}

.menu-bars > div:nth-of-type(3){
    width:50%;
} */

.menu-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: #fcc22c;
    border-radius: 50%;
}

.menu-btn span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 3px;

    transition:
        transform 0.4s ease,
        opacity 0.3s ease;
}

/* Top bar */
.menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

/* Middle bar */
.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

/* Bottom bar */
.menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.menu-items{
    grid-template-columns: repeat(7, auto);
    column-gap:2rem;
    justify-content: right;
    list-style: none;
}

.sub-menu{
    margin-left: 2.5rem;
}

.our-services-container{
    overflow-y: auto;
    max-height: 80vh;
}

.our-services:hover ul{
    /* border: 1px solid black; */
    display: block;
}

.our-services > div{
    position: relative;
    top:0.8rem;
    left:-0.3rem;
    /* border:1px solid red; */
}

.our-services > div > ul{
    display: none;
    position: absolute;
    width: max-content;
    padding: 0.8rem 0rem;
    background-color: white;
    border-radius: 0px 0px 5px 5px;
}

.our-services > div > ul a{
    display: block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    border: 1px solid transparent;
    border-left:4px solid transparent;
    transition: border-color 1s;
}
.our-services > div > ul a:hover{
    border-color: #fcc22c;
    border-left-color: #fcc22c;
    /* box-shadow: 1px 1px 3px rgb(120, 120, 120); */
}
.menu-items li, .menu-items a{
    padding: 0.8rem 0.2rem;
    text-decoration: none;
    font-weight: 500;
    /* color: black; */
}

.menu-items li:hover, .menu-items a:hover{
    cursor: pointer;
}

.hamburger-menu{
    background-color: white;
    width: 100%;
    position: relative;
    height: 0px;
}

.hamburger-menu > ul{
    position: absolute !important;
    top: 0px;
    height:90vh;
    transition: width 0.5s;
    overflow: auto;
    background-color: rgba(255, 255, 255);
    width:0vw;
    padding-bottom: 3rem;
    padding-top: 3rem;
    z-index:2000;

    grid-template-columns: 45% 45%;
    justify-content: center;
    column-gap: 3rem;
    /* padding:2rem; */
}
@media (max-width:728px){
    .hamburger-menu > ul{
        grid-template-columns: auto;
    }
}
/* .hamburger-menu > ul > li:first-of-type{
    margin-left: 7rem;
} */

.navigation-submenu{
    margin-top: 1rem;
}

.navigation-submenu > p{
    font-weight: 500;
}
.navigation-submenu ul{
    margin-left:1.5rem;
}
@media (max-width:728px){
    .navigation-submenu{
        /* margin:1rem; */
    }
    .navigation-submenu ul{
        margin-left:0rem;
    }
    .hamburger-menu > ul > li{
        margin:auto 2rem;
    }
}
.hamburger-menu ul{
    list-style: none;
}

.hamburger-menu a{
    border: 2px solid rgb(202, 202, 202);
    margin:0.1rem;
}

.hamburger-menu a:hover{
    background-color: #fcc22c;
    border-color: #fcc22c;
}
.hamburger-menu a, .hamburger-menu span{
    display: block;
    padding: 0.8rem 0.5rem;
    color: black;
    text-decoration: none;
}

.small-screen-menu-bars{
    display: none;
}

.large-screen-menu-bars{
    display: flex;
}

@media (max-width:900px){
    .menu-items{
        display: none;
    }
    .small-screen-menu-bars{
        display: flex;
    }
    .large-screen-menu-bars{
        display: none;
    }
}
.dynamic-text{
    color: black;
}