@charset "UTF-8";
/* CSS Document */

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}


.navbar-toggler {
  border: 0;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}


li {
    list-style: none;
	font-size: 2.5em;
	color: #000;
	text-transform: uppercase; font-weight: 500;
}

li dropdown-item   {
	font-size: 0.2em;

}

a {
    color: black;
    text-decoration: none;
	
}

.navbar {
    min-height: 10px;

    justify-content: space-between;
    align-items: center;
    padding: 0 0px; 
	
}

.nav-menu {
    
    justify-content: space-between ;
    align-items: center;
   
}


.nav-link {
	color: #000;
    transition: 0.7s ease;	
}


.bar{
    display: block;
    width: 45px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: black;
}
