.header {
    background-color:#2d2d2d;
    height: 60px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 10;

}

.header__inner {
    max-width: 1200px;
    margin: 0  auto;
    display:flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.search-inner {
    position: absolute;
    top: 20px;
    right: 10px;
}

.header__logo {
    position: absolute;
    top: 5px;
    left: 10px;
    
}

.header__list {
    display: flex;
    color: rgb(232, 255, 127);
    
    
}

.header__item {
    margin-right: 10px;
    padding: 0 10px;
}

.header__logo {
    height: 50px;
}

.header a {
    color: rgb(232, 255, 127);
}

.header__nav .header__subitem {
    display: none;
    position: relative;
    top: 100%;
    left: 0;
}

.header__item:hover .header__subitem {
    display: block;
}

.header__sublist {
    background-color: rgb(37, 37, 37);
}


