@font-face {
  font-family: 'Righteous';
  font-style: normal;
  font-weight: 400;
  src: url(http://fonts.gstatic.com/s/righteous/v9/1cXxaUPXBpj2rGoU7C9WiHGA.ttf) format('truetype');
}

.navbar-custom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	flex-wrap: nowrap;
	padding: 10px 20px;
}

.collapse.navbar-collapse {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.menu__list {
    display: flex;
    gap: 10px;
	margin: 0;
    padding: 0;
	list-style: none;
}

.menu__item a {
	text-decoration: none;
	color: red;
	font-weight: bold;
	white-space: nowrap;
	
}

.menu__item {
    margin-right: 20px;
}

.menu__item:last-child {
    margin-left: 20px;
}

.navbar-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-sttyle: none;
	padding: 0;
}

.navbar-nav > li:last-child {
	margin-left: 20px;
}

.navbar-nav > li {
	display: inline-block;
	margin-right: 20px;
}

.search {
	font-weight: bold;
    padding: 8px 12px;
    border: 1px solid red;
    border-radius: 5px;
    background-color: white;
    white-space: nowrap; 
}