@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  /* font-family: 'Jost', sans-serif; */
}



.topbar {
  background: #86C232;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  top: 0vh;
  position: fixed;
  z-index: 2;
}


.top-logo{
  border-right :1px solid;
  display: inline-block;
}

.topbar .topmenu_logo a,
img {
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0px;
  font-size: 25px;
  margin-top: 15px;
  text-transform: uppercase;
margin-bottom: 10px;
 
}

.img_logo {
  filter: invert(100%) brightness(1000%);
  height: 26px; margin-top: 0.1rem; margin-right: 10px ;margin-left: 10px 
}


.topbar .nav_right > ul {
  display: flex;
  align-items: center;
  z-index: 999;
}

.topbar .nav_right ul li.nr_li {
  margin-left: 20px;
  margin-top: 0.75rem;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  position: relative;
}

.badge {
  position: absolute;
  top: -10px;
  right: -20px;
  padding: 5px 10px;
  border-radius: 50%;
  background-color: red;
  color: white;
  /* font-weight: lighter; */
  font-size: 12px;
}

.topbar .nav_right ul li.nr_li:hover {
  color: #161616;
}

.topbar .nav_right ul li img {
  border-radius: 50%;
  border: 1px solid rgb(255, 255, 255);
  height: 35px;
  width: 35px;

  vertical-align: middle;
  object-fit: cover;
}

.topbar .dd_menu {
  position: absolute;
  right: -25px;
  top: 47px;
  display: flex;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
  display: none;
}

.topbar .dd_menu .dd_left {
  background: #86C232;
  padding: 15px 20px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.topbar .dd_menu .dd_left li {
  color: #fff;
}

.topbar .dd_menu .dd_right {
  padding: 15px 20px;
}

.topbar .dd_menu li {
  margin-bottom: 10px;
  color: #868686;
}

.topbar .dd_menu:before {
  content: "";
  position: absolute;
  top: -20px;
  right: 30px;
  border: 10px solid;
  border-color: transparent transparent #fff transparent;
}

.topbar .dd_main.active .dd_menu {
  display: flex;
}

.dropdown{
  display: inline-block !important;
}
.dropdown a{
color : white ;
display: inline-block !important;
align-items: center;
margin-top: 10px;

}
.dropdown a img{
margin-top: -5px;

}
.dropdown-menu li{
  margin-left: 25px;
  display: inline-block !important;
  align-items: center;
}
.dropdown-menu li a img{
  width: 10px;
  height: 10px;
  display: inline-block !important;
  align-items: center;
  margin-top: -5px;
}

.normalmenu{
  display: none;
  border-bottom: 1px solid rgb(255, 255, 255);
}
.fullmenu{
  border-bottom: 1px solid rgb(255, 255, 255);
  padding:0rem 0.2rem 0rem 0.2rem;

}

/* how and Hide button for navbar  */

.openNav{
  display: none;
 
}
.closeNav{
  display: none;
 
}
/* Small screens */
@media only screen and (max-width: 600px) {
  .openNav{
    display: none;
   
  }
  .closeNav{
    display: none;
   
  }
  .fullmenu{
    display: none;
   
  }
  .narmalmenu{
    display: none;
   
  }
  .language{
    display: none !important;
   
  }
}