nav{
min-height: 100px;
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
z-index: 999;
background: rgba(255, 255, 255, 0.15);
box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.2);
}
.logo a{
font-size: 1.5rem;
color: #fff;
font-weight: 600;
}
ul li{
display: inline-block;
margin: 0 8px;
}
ul li a{
color: #fff;
transition: .6s;
}
ul li:hover a{
color: rgb(255, 155, 0);
}
.search{
display: flex;
position: fixed;
right: 15%;
}
.search input{
border-radius: 30px;
padding: 5px 8px;
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
width: 0px;
transition: .6s;
}
.search i{
position: absolute;
top: -3px;
right: -3px;
padding: 10px;
background-color: rgb(255, 155, 0);
border-radius: 50%;
color: #fff;
text-align: center;
font-size: 1.2rem;
box-shadow: -2px 0 5px rgba(0, 0, 0, 0.25);
}
.bar i{
font-size: 1.3rem;
color: #fff;
display: none;
}
.search .show{
width: 150px;
}