*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'roboto', sans-serif; 
}

.navbar{
	position: sticky;
	top: 0;
	left: 0;
	width: 108%;
	background: #f5f5f5;
	z-index: 9;
}

.nav{
	padding: 18px 10vw;
	display: flex;
	justify-content: space-between;
}

.brand-logo{
	font-size: 36px;
	margin-left: -60px
}

.nav-items{
	display: flex;
	align-items: center;
}

.search{
	width: 500px;
	display: flex;
}

.search-box{
	width: 80%;
	height: 40px;
	padding: 18px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	border: 1px solid #d1d1d1;
	text-transform: capitalize;
	background: none;
	color: #1a1a1a;
	outline: none;
}

.search-btn{
	width: 20%;
	height: 40px;
	padding: 10px 20px;
	border: none;
	outline: none;
	cursor: pointer;
	background: #383838;
	color: #fff;
	text-transform: capitalize;
	font-size: 15px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px
}

.search-box::placeholder{
	color: #a9a9a9;
}

.nav-items a{
	margin-left: 20px;
}

.nav-items a img{
	width: 30px
}

.nav-items p{
	margin-left: 12px;
	font-weight: 700;
	text-transform: bold
}

.links-container{
	width: 108%;
	display: flex;
	padding: 18px 10vw;
	justify-content: center;
	list-style: none;
	border-top: 2px solid #d1d1d1;
}

.link{
	text-transform: capitalize;
	padding: 0 10px;
	margin: 0 5px;
	text-decoration: none;
	color: #383838;
	opacity: 0.6;
	transition: .5s;
}

.link:hover{
    opacity: 1;
}



















































































































































































