* {
margin: 0;
padding: 0;
}
.main-header {
height: 46px;
background: #526959;
}
.wrapper {
padding-left: 40px;
padding-right: 40px;
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
}
.navigation-menu {
display: flex;
align-items: center;
}
.menu__list {
display: flex;
align-items: center;
gap: 48px;
padding: 0;
margin: 0;
list-style: none;
}
.link {
color: #fff;
font-family: 'Poppins', sans-serif;
font-weight: 300;
text-decoration: none;
}
.logo {
position: absolute;
left: 50%;
transform: translateX(-50%);
display: flex;
}
.logo a {
display: inline-flexbox;
color: #fff;
font-family: 'Poppins', sans-serif;
font-weight: 300;
text-decoration: none;
}
.right {
display: flex;
align-items: center;
grid-gap: 8px;
gap: 8px;
}
.search-block {
position: relative;
}
.search-block .search-icon {
position: absolute;
top: 0;
height: 40px;
}
.search-block input {
height: 40px;
border: none;
outline: none;
line-height: 1.5;
font-family: 'Poppins', sans-serif;
font-size: 13px;
font-weight: 300;
padding-left: 40px;
padding-right: 40px;
background: transparent;
color: #fff;
}
.search-block input::placeholder {
color: #fff;
}
@media screen and (max-width: 1024px) {
.logo {
display: none;
}
.search-block {
display: none;
}
.link {
color: #fff;
font-family: 'Poppins', sans-serif;
font-weight: 300;
text-decoration: none;
font-size: 13px;
}
}