header {
    display: flex;
    position: fixed;
    top: 0;
    z-index: 2;
    height: 70px;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

nav.header__center {
    display: flex;
    margin-left: 0rem;
    align-items: center;
}

nav.header__center ul {
    display: flex;
}

nav.header__center li.dropdown {
    display: inline-block;
}

nav.header__center .dropdown-content {
    position: absolute;
    top: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(0, 0, 0, 0.5);
    transition: display 0.5s;
    display: none;
    min-width: 200px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

nav.header__center .dropdown-content a {
    display: block;
    padding: 10px 15px;
}

nav.header__center .dropdown-content a:hover {
    background-color: rgba(194, 194, 194, 0.3);
}

nav.header__center a {
    text-decoration: none;
    padding: 30px 20px 27px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

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

nav.header__right a {
    color: #fff;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 600;
}

nav.header__right a.hamburger {
    padding-left: 30px;
}

header .wrapper {
    display: flex;
    width: 1200px;
    justify-content: space-between;
}
