
#siteHeader {
    width: 100vw;
    height:150px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3000;
    box-shadow: outset 0px 0px 10px 10px #ffffff08;
    backdrop-filter: blur(4px);
}


#logo, #burger {
    display: block;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
}


#burger {
    border: 1.4px solid #fff;

    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: all 0.6s ease;
    overflow: hidden;
    margin-right: 6vw;
}

#logo {
    margin-left: 6vw;
}
/* middle line for the burger icon */
.burgerLine {
    width: 30px;
    height: 1px;
    background-color: #fff;
    transition: all 0.6s ease;
}

/* the line before and after the middle line */
.burgerLine::before,
.burgerLine::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #fff;
    transition: all 0.6s ease;
}

.burgerLine::before {
    transform: translateY(-10px);
}
.burgerLine::after {
    transform: translateY(10px);
}

/* Animating the burger lines to a close */
#burger.open > .burgerLine {
    transform: translateX(-50px);
    background-color: transparent;
}
#burger.open > .burgerLine::before {
    transform: rotate(45deg) translate(35px, -35px);
}
#burger.open > .burgerLine::after {
    transform: rotate(-45deg) translate(35px, 35px);
}


/* Committed to creating engaging experiences with advanced and exquisite aesthetics. */