<header class="header">
<div class="container">
<div class="header__wrapper">
<div class="header__logo">
<a href="" class="header__link">
<img src="./image/logo.png" width="123" height="32" alt="logo">
</a>
</div>
<div class="menu__icon">
<span></span>
</div>
<nav class="header__nav">
<ul class="header__list">
<li class="header__item">
<a href="" class="header__links h">Wave NFTs</a>
</li>
<li class="header__item">
<a href="" class="header__links ">Stories</a>
</li>
<li class="header__item">
<a href="" class="header__links ">Contact</a>
</li>
</ul>
</nav>
<div class="header__social">
<a href="" class="header__social-item">
<img src="./image/twiter.svg" alt="twiter" width="36" height="36">
</a>
<a href="" class="header__social-item">
<img src="./image/discord.svg" alt="discord" width="36" height="36">
</a>
<a href="" class="header__social-item">
<img src="./image/youtube.svg" alt="youtube" width="36" height="36">
</a>
<a href="" class="header__social-item">
<img src="./image/telegram.svg" alt="telegram" width="36" height="36">
</a>
</div>
</div>
</div>
</header>
.header {
padding: 52px 0 16px;
height: 120px;
position: fixed;
top: 0;
left: 0 ;
width: 100%;
z-index: 10;
background-color:rgba(0,0,0,0.7)
}
.header__wrapper {
display: flex;
align-items: center;
}
.header__logo {
margin-right: 40px;
}
.header__list {
display: flex;
gap: 40px;
}
.header__item {
position: relative;
transition: 0.3s all;
}
.header__links {
font-family: 'DM Mono';
font-weight: 400;
font-size: 16px;
line-height: 1;
color: #FFFFFF;
}
.header__item :hover{
filter: brightness(0.7);
}
.header__item:hover:after{
transform: scaleX(1);
transition: 0.5s all;
transform-origin: left;
}
.header__item:after{
position: absolute;
content:'';
width: 100%;
height: 2px;
background-color:var(--main-color);
bottom: -5px;
left: 0;
transform: scaleX(0);
transform-origin: right;
transition: 0.5s all;
}
.header__social {
display: flex;
gap: 12px;
margin-left: 507px;
}
.header__social-item:hover {
transform: scale(1.2);
transition: 0.3s all;
}
/* BURGER--------------------------------------------------------- */
.menu_icon{
position: relative;
z-index: 100;
width: 30px;
height: 18px;
cursor: pointer;
}
.menu__icon span,
.menu__icon::before,
.menu__icon::after{
position: absolute;
left: 0;
height: 10%;
width: 100%;
transition: all 0.3s ease 0s;
background-color:#FFFFFF;
}
.menu__icon::before,
.menu__icon::after{
content: "";
}
.menu__icon::before{
top: 0;
}
.menu__icon::after{
bottom: 0;
}
.menu__icon span{
top: 50%;
transform: scale(1) translate(0,-50%);
}