.top-bar {
		background-color: var(--primary-color);
		color: white;
		font-family: 'Roboto',sans-serif;
		font-size: 18px;
		padding-top: 10px;
		padding-bottom: 10px;
		font-weight: 400;

	}
	.inner-top-bar {
		display: flex;
		justify-content: space-between;
	}
	.email a {
		color: white;
		text-decoration: none;
	}
	.nav-container {
		padding-left: 30px;
		padding-right: 30px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: inherit;
		width: 100%;
	}
	.navbar {
		background-color: white !important;
		height: 100px;
		transition: 0.5s height ease-out;
	}
	.navbar-brand {
		max-width: 250px;
		transition: 0.5s max-width ease-out;
	}
	.navbar-fix-custom.navbar {
      height: 70px;
      transition: 0.5s all ease-out;
	}
	.navbar-fix-custom .navbar-brand {
		max-width: 200px;
		transition: 0.5s max-width ease-out;
	}
	.navbar-fix-custom {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 2;
	}
	.navbar-brand img {
		width: 100%;
	}
	.nav-link {
		font-family: 'Roboto',sans-serif;
		font-size: 18px;
		color: var(--text-color);
		font-weight: 500;
		position: relative;
	}
	.nav-item:not(:last-child){
		padding-right: 22px;
	}
	.nav-item:not(:first-child){
		padding-left: 22px;
	}
	.nav-link.active {
		color: var(--primary-color) !important;
	}
	
	/* .nav-line {
		position: absolute;
		width: 15px;
		height: 1px;
		background-color: var(--primary-color);
		left: 10px;
		top: 75%;
	}*/
	.nav-link:after {
		 content: '';
    position: absolute;
    top: 100%;
    left: 8px;
    width: 23px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0;
    transition: 0.3s opacity;
	}
	.nav-link.active:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 8px;
    width: 23px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 1 !important;
	}
   
   .nav-link:hover:after {
   	opacity: 1;
   }
   .nav-link:hover {
   	color: var(--primary-color);
   }
   .close-nav {
   	display: none;
    margin: 0px 25px 30px;
    position: relative;
    color: #979797;
    font-size: 30px;
    cursor: pointer;
   }
   .fixed-bg-black {
   	background-color: rgba(0, 0, 0, 0.4);
   	position: fixed;
   	width: 100%;
   	height: 100%;
   	z-index: 9;
   	left: 0;
   	top: 0;
   	display: none;

   }

      @media (max-width:991px){
   	.collapse {
   		display: block !important;
   	}
     .navbar-nav {
   	position: fixed;
    width: 100%;
    right: -350px;
    max-width: 350px;
    background: black;
    height: 100%;
    top: 0;
    z-index: 99;
    transition: 0.5s all;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
   	}
   	.nav-item {
   		padding-left: 0 !important;
   		padding-right: 0 !important;
   		margin: 0px 25px;
       border-bottom-width: 1px;
       border-bottom-style: solid;
        border-color: #626262;

   	}
   	.nav-link {
   		font-size: 14px;
   		text-transform: uppercase;
   		font-family: 'Roboto',sans-serif;
   		font-weight: 600;
   		 line-height: 30px;
   		 color: #979797;
   	}
   	.nav-link:after {
   		display: none !important;
   	}
   	.nav-link.active {
		color: #fff !important;
	}
	
   .close-nav {
   	display: block;
   }
   .nav-link:hover {
   	color: #fff;
   }
  
   }

   @media (max-width:767px){
  	.inner-top-bar {
  		flex-direction: column;
  		text-align: center;
  	}
 
  	.nav-container {
    max-width: 500px !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
 
}

@media (max-width: 550px){
	.navbar-nav {
    width: 100%;
    right: -250px;
    max-width: 250px;
	}
}