.header {
    height: 5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    display: flex;
    justify-content: space-between;
}

.header__middle {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-right: 20px;
}

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

.header__logo {
    margin-top: 10px;
    height: 80%;
    /* width: 13rem; */
}

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

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

.header__nav__btn__active{
    background: red;
    color: var(--secondary-color);
}

.header__nav__btn:hover {
    /* background: #0000001c; */
    background: #0000001c;
    color: var(--secondary-color);
}

.header__nav__btn.menu__btn {
    display: inline-block;
	display: none;
}

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

@media screen and (max-width: 768px) {
    .header {
        background: rgba(255, 255, 255, 0.19);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
		padding-bottom: 5px;
    }	
    .header__nav__btn.menu__btn {
        display: inline-block;
        /* display: none; */
    }
}
