.header {
    height: 6rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.5);
}

.header__middle {
    display: flex;
    align-items: center;
}

.header__left {
    display: block;
    overflow: hidden;
    padding: 0 2rem;
}

.header__logo {
    height: 90%;
    width: 16rem;
}

.header__right {
    margin: auto 0;
    margin-right: 1rem;
}

.header__nav__btn {
    display: none;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 1rem;
    color: var(--third-color);
    border-radius: 1.5rem;
    text-transform: capitalize;
    transition: background 0.3s linear;
}

.header__nav__btn:hover {
    background: #0000001c;
}

.header__nav__btn.menu__btn {
    display: none;
}

@media screen and (max-width: 1200px) {
    .header__nav__btn.menu__btn {
        display: block;
    }
}

.header__middle .header__nav__btn {
    margin-right: 2rem;
}
