.landing-nav{
    position: relative;
	background: #f16827;
}
.nav-list{
	display: flex;
  	justify-content: center;
  	align-items: center;
  	gap: 20px;
}
  .landing-nav .nav-logo a:hover{
	  background-color: transparent;
  }
 .nav-logo img:hover {
    opacity: .8;
}
.landing-nav li {
  	list-style: none;
  }
  .landing-nav ul li a,
  .landing-nav ul li a:visited {
	font-family: 'Montserrat-Medium';
    font-weight: normal;
	display: block;
	padding: 15px 20px;
	font-size: 14px;
	color: #ffffff;
  }
 .landing-nav ul li:hover:not(.nav-logo){
	background: #e04800;
}
  .landing-nav ul li a:hover,
  .landing-nav ul li a:visited:hover {
	background: #e04800;
  }

  .landing-nav ul li a:not(:only-child):after,
  .landing-nav ul li a:visited:not(:only-child):after {
	padding-left: 8px;
    font-family: "FontAwesome";
    display: inline-block;
	content: "\f0d7";
  }


.landing-nav .nav-logo a {
    padding: 0 20px 0 0;
}
 .landing-nav ul li ul li {
	min-width: 250px;
  }
  .landing-nav ul li ul li a {
	padding: 15px;
	line-height: 20px;
  }
  .nav-list {
   display: flex;
   align-items: center;
   justify-content: center;
   max-width: 1170px;
    margin: 0 auto;
  }
  .landing-dropdown {
	position: absolute;
	display: none;
	z-index: 1;
	background-color: #464646;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  }
  .nav-logo{
	  list-style: none;
  }
  .landing-nav .nav-logo a:hover{
	  background-color: transparent;
  }
  .landing-nav .nav-logo a{
	  padding: 0 20px 0 0
  }
/* Mobile nav*/
.nav-mobile {
	display: none;
  }
  #nav-toggle {
    position: absolute;
    top: 16px;
    right: 20px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
  }
  #nav-toggle span,
  #nav-toggle span:before,
  #nav-toggle span:after {
	cursor: pointer;
	border-radius: 1px;
	height: 4px;
	width: 25px;
	background: #ffffff;
	position: absolute;
	top: 9px;
	right: 0;
	display: block;
	content: "";
	transition: all 300ms ease-in-out;
  }
  #nav-toggle span:before {
	top: -9px;
  }
  #nav-toggle span:after {
	bottom: -9px;
  }
  #nav-toggle.active span {
	background-color: transparent;
  }
  #nav-toggle.active span:before, #nav-toggle.active span:after {
	top: 0;
  }
  #nav-toggle.active span:before {
	transform: rotate(45deg);
  }
  #nav-toggle.active span:after {
	transform: rotate(-45deg);
  }
.nav-logo:hover img {
    opacity: 0.8;
}
@media screen and (min-width: 1171px) {
.nav-list {
    display: flex!important;
  }
    .nav-list li:hover .landing-dropdown{
	display: block!important;
}
}
@media screen and (max-width: 1170px) {
	.nav-mobile {
		display: block;
		padding: 12px 20px;
	  }
	  .landing-nav {
		width: 100%;
	  }
	  .landing-nav ul li a {
		padding: 15px;
		line-height: 20px;
	  }
	  .landing-nav ul li ul li a {
		padding-left: 30px;
	  }
	  .landing-dropdown {
		position: static;
		box-shadow: none;
       background-color: #4c4c4c;
	  }
	  .nav-list {
		display: none;
		position: absolute;
		width: 100%;
		z-index: 999;
		background: #f16827;
		width: 100%;
	  }	
   .nav-list li{
		  border-top: 1px solid #e04800;
	  }
	  .landing-nav .nav-logo a{
		  display: inline-block;
		  padding: 0;
		  margin-left: 20px;
	  }
	  .nav-logo{
		display: none;
	  }
  .landing-nav ul li a:hover, .landing-nav ul li a:visited:hover{
    	 background: #e04800;
  }
}