
  .menu-toggler {
    width: 30px;
    height: 23px;
    /*! background-color: black; */
    transition: 0.4s;
  }
.menu-toggler .bar{
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 99px;
  position: absolute;
}
.bar1{top: 0;}
.bar2{top: 10px;}
.bar3{top: 20px;}

.menu-toggler.change .bar1{
    -webkit-transform: rotate(-45deg) translate(-7px, 6px);
    transform: rotate(-45deg) translate(-8px, 6px);
  }
  .menu-toggler.change .bar2 {opacity: 0;}
  .menu-toggler.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-7px, -6px);
    transform: rotate(45deg) translate(-8px, -6px);
  }



section{
  width: 100%;
  padding: 20px;
}
.patti{
  width: 100%;
  padding: 10px;
  background: var(--stdbg);
  color: #fff;
  text-align: center;
  font-size: 3em;
/*   font-weight: bold */
}
.patti p{
  font-size: .58em;
  color: yellow;
  font-weight: bold;
}
.header{
  justify-content: space-between;
  align-items: flex-start;
  font-weight: bold;
}
.header h1{
  font-weight: bold;
  font-size: 1em;
}
.header .logoPan{
  height: 64px;
}
.topnav {
  overflow: hidden;
  /*! background-color: #fff; */
  color: #fff;
  font-weight: bold;
  height: 68px;
  transition: all 0;
}

.topnav a {
  float: left;
  display: block;
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  /*! background-color: #000; */
  color: #fff;
}

.topnav a.active {
/*   background-color: #04AA6D; */
  color: #000;
}

.topnav .icon {
  display: none;
  
}
.topnav .icon  svg{
  width: 30px;
}

@media screen and (max-width: 800px) {
  .topnav a {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .topnav.responsive {
    flex-flow: column;
    position: relative;height: 245px;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    
  }
}
