
:root {
  --primary: #009f00;
  --secondary: #ff0000;
  --gray: #515151;
}

.menu ul {
  padding: 0px;
  margin: 0px;
 
}
.mobile-bth{
 
  /* background-size: cover;  */
   /* background: rgba(255, 255, 255, 0.864); */
  background: rgb(44,55,40);
background: -moz-linear-gradient(144deg, rgba(44,55,40,1) 0%, rgba(91,120,80,1) 100%);
background: -webkit-linear-gradient(144deg, rgba(44,55,40,1) 0%, rgba(91,120,80,1) 100%);
background: linear-gradient(144deg, rgba(44,55,40,1) 0%, rgba(91,120,80,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2c3728",endColorstr="#5b7850",GradientType=1);
}
.mobile-bth .nav-pills  {
  text-align: center;
}
/* .mobile-bth .nav{
  margin-top: 20px;
} */
.mobile-bth .btn-primary {

  background: none;
  padding: 0;
  border: navajowhite;
  color: #00529E;
  font-size: 22px;
  

}
.mobile-bth .nav .nav-item{
  display: block;
  width: 100%;
  padding:5px 15px;
  font-size: 16px;
}
.offcanvas-start{
  border: none;
}

@keyframes myanimation {
  0% {
    background-color: #169bd6;
  }
  25% {
    background-color: green;
  }
  50% {
    background-color: #ffc525;
  }
  75% {
    background-color: rgb(250, 141, 16);
  }
  100% {
    background-color: #169bd6;
  }
}
.menu li {
  list-style: none;
  display: inline-block;
  padding: 0px 10px;
  position: relative;
}
.menu li a {
  color: #1A191E;
  font-weight: 400;
  text-transform: uppercase;
  
  font-size: 16px;
}
.menu li a:hover {
  text-decoration: none;
  color: var(--primary);
}
.menu .active{
  color: var(--primary) !important;
}
.menu li .sub-menu {
  position: absolute;
  display: none;
  right: 0;
  width: 230px;
  background: #ffffff;
  z-index: 9999;
 
  transition: all 0.5s ease;
  text-align: left;
  /* border: 1px solid rgb(208, 208, 208); */
  padding:  0px;
  /* border-radius: 10px; */
  border-top: 2px solid var(--primary);
}
.menu li .sub-menu li {
  padding: 0px;
  display: block;
}
.menu .has-sub:hover .sub-menu {
  display: block;
}
.menu li .sub-menu li a {
  color: #222;
  font-size: 14px;
  display: block;
  padding: 12px;
  text-transform: capitalize;
  border-bottom: 1px solid rgb(208, 208, 208);
}
.menu li .sub-menu a i{
  margin-right: 5px;
}
.menu li .sub-menu a:hover {
  background: #ebebeb;
}
.show #menu li{
  opacity: 0;
	animation: fadeIn 0.2s ease-in both;
}
.show #menu li:nth-child(1) {
	animation-delay: 0.2s;
}
.show #menu li:nth-child(2) {
	animation-delay: 0.3s;
}
.show #menu li:nth-child(3) {
	animation-delay: 0.4s;
}
.show #menu li:nth-child(4) {
	animation-delay: 0.5s;
}
.show #menu li:nth-child(5) {
	animation-delay:0.6s;
}
.show #menu li:nth-child(6) {
	animation-delay: 0.7s;
}
.show #menu li:nth-child(7) {
	animation-delay: 0.8s;
}
.show #menu li:nth-child(8) {
	animation-delay: 0.9s;
}
/* .show #menu li:nth-child(8) {
	animation-delay: 0.9s;
} */


@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translate3d(-1%, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.nav-link {
  color: #fff;
  text-transform: uppercase;
  padding: 0px;
  font-weight: 600;
  margin-left: -10px;
    opacity: 0;
    transition: opacity 162ms ease-out,margin-left 162ms ease-out;
    font-family: 'Philosopher', sans-serif;
    font-size: 20px;
}
.nav-link:hover {
  color: #fff;

}
.show .nav-link{
  margin-left: 0!important;
  opacity: 1!important;
}
.btn-close {
  color: #fff;
  background: none;
  font-size: 20px;
  float: right;
}
.btn-close img{
  -webkit-transition: -webkit-transform .25s, opacity .25s;
  -moz-transition: -moz-transform .25s, opacity .25s;
  transition: transform .25s, opacity .25s;
  opacity: 0.80;
}
.btn-close img:hover {
  color: var(--primary);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 1;
}

@media (max-width: 1200px) {
  .menu li {
    padding:0px 10px;
    font-size: 14px;
  }
  .men-btn {
    padding: 5px 8px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 992px) {
  .menu li {
    padding:0px 10px;
    font-size: 12px;
  }
  .mobile-menu {
    display: block;
    right: 0;
    position: absolute;
    top: 12px;
    z-index: 999;
  }

  .menu {
    display: none;
  }
}
@media (max-width: 768px) {
}
