/* default css start */
.navBarDivContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
}
/* default css end */


/* navbar regular css start */
.navBarDiv {
}
.navBarDivContainerNav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navBarDivContainerNav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.navBarDivContainerNav ul li a {
  color: whitesmoke;
  padding: 0.5rem;
  display: block;
  text-decoration: none;
}
.navBarDivContainerNav ul li a:hover {
}
/* navbar regular css end */


/* navMobileButton css start */
.navMobileButton {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  height: 5px;
  display: none;
}
.navMobileButton span, 
.navMobileButton span:before, 
.navMobileButton span:after {
  width: 20px;
  height: 3px;
  background-color: #fff;
  display: block;
  transition: .3s;
}
.navMobileButton span:before {
  content: '';
  transform: translateY(-9px);
}
.navMobileButton span:after {
  content: '';
  transform: translateY(6px);
}
.navMobileButton.toggler-open span {
  background-color: transparent;
}
.navMobileButton.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}
.navMobileButton.toggler-open span:after {
  transform: translateY(-3px) rotate(-45deg);
}
/* navMobileButton css start */

/* mobile breakpoint start */
@media screen and (max-width: 767px) {
  .navBarDivContainer {
    max-width: 100%;
  }
  /* navbar css for mobile start */
  .navMobileButton{
    display: block;
  }
  .navBarDivContainerNav {
    min-height: 60px;
    width:100%;
  }
  .navBarDivContainerNav ul {
    position: absolute;
    width: 100%;
    height: calc(100vh - 60px);
    left: 0;
    top: 60px;
    flex-direction: column;
    align-items: center;
   /* border-top: 1px solid #444; */
    background-color: rgba(0,0,0,.75);
    max-height: 0;
    overflow: hidden;
    transition: .3s;
  }
  .navBarDivContainerNav ul li {
    width: 100%;
    text-align: center;
  }
  .navBarDivContainerNav ul li a {
    padding: 20px;
  }
  .navBarDivContainerNav ul li a:hover {
    background-color: rgba(255,255,255,.1);
  }
  .navBarDivContainerNav ul.open {
    max-height: 100vh;
    overflow: visible;
  }
  /* navbar css for mobile end */
}
/* mobile breakpoint end */
