@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');


dl, ol, ul {
  margin-top: 0 !important;
  margin-bottom: 0rem !important; 
}

nav{
  position: relative;
  z-index: 97;
  width: 100%;
  /* height: 10vh; */
  /* background: #242526; */
  background: #ffffff;
}


nav .wrapper{
  position: relative;
  /* max-width: 1300px; */
  padding: 0px 30px;
  /* height: 70px; */
  /* height: 10vh; */
  /* line-height: 70px; */
  /* margin: auto; */
  display: flex;
  align-items: center;
  justify-content: space-between;

}


.wrapper .nav-links{
  display: inline-flex;
}

.logo{
  /* height: 8vh; */
  margin-left: 5%;
}

.logo img{
  max-height: 100%;
}

.nav-links li{
  list-style: none;
}

.nav-links li a{
  /* color: #f2f2f2; */
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 15px;
  border-radius: 5px;
  word-spacing: 0.2rem;
  transition: all 0.3s ease;
}

.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  /* background: #242526; */
  background: white;
  width: 180px;
  line-height: 45px;
  top: 85px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  border-bottom: 10px solid green ;

}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 80%;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
  transition: all 0.5 ease;
}
.drop-menu li a:hover{
  color: #000000;
  margin-left: 5%;
  font-weight: bold;
}
.mega-box{
  position: absolute;
  left: 10%;
  width: 80%;
  /* padding: 0 30px; */
  /* top: 80px; */
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  /* background: #242526; */
  background: white;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-around;
  /* justify-content: flex-start; */
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  border-bottom: 10px solid green ;

}
.mega-box .content .rowww{
  width: calc(25% - 30px);
  /* line-height: 45px; */
}
/* .content .roww img{
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
/* .content .roww header{
  color: #f2f2f2;
  font-size: 13px;
  font-weight: 500;
} */


.content .roww .mega-links{
  /*! margin-left: -10%; */
  /*! border-left: 1px solid rgba(255,255,255,0.09); */
}
.roww .mega-links li{
  margin-top: 0;
  /*! padding: 0 20px; */
}
.roww .mega-links li a{
  padding: 9px 0px;
  color: #000000;
  font-size: 13px;
  display: block;
  transition: all 0.5s ease;
}
.roww .mega-links li a:hover{
  color: #008000;
 /*  margin-left: 5%;
  font-weight: bold; */

}
.wrapper .btn{
  color: rgb(0, 0, 0);
  font-size: 14px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

.header{
  color: green;
  font-size: 14px;
  /*! margin-left: 21px; */

}

@media screen and (max-width: 1350px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #e9e9e9;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 14px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }

  #showMega1:checked ~ .mega-box1{
    max-height: 100%;
  }

  #showMega2:checked ~ .mega-box2{
    max-height: 100%;
  }

  #showMega3:checked ~ .mega-box3{
    max-height: 100%;
  }

  #showMega4:checked ~ .mega-box4{
    max-height: 100%;
  }

  #showMega5:checked ~ .mega-box5{
    max-height: 100%;
  }

  .mega-box{
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
  }


  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #020202;
    font-size: 14px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #f7f7f7;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 14px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .roww{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .roww:nth-child(1),
  .mega-box .content .roww:nth-child(2){
    border-top: 0px;
  }
  .content .roww .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .roww .mega-links li{
    margin: 0;
  }
  .content .roww header{
    font-size: 14px;
  }
}
nav input{
  display: none;
}