
header {
    width: 100%;
    height: 60px;
    
    position: fixed;
    top: 0px;
    
    background-color: var(--white);
    z-index: 99;
}
  
header .container-lrg {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo {
    width: 31px;
}
  
.active-page {
    color: var(--primary);
}
  
/* Menu Icon Styling */

.menu-icon,
.menu-icon-active {
    display: none;
}

@media (max-width: 700px) {

    .menu-icon,
    .menu-icon-active {
        width: 40px;
        height: 20px;

        position: relative;

        display: flex;
        flex-direction: column;
        justify-content: space-between;

        cursor: pointer;
    }

    .menu-icon span,
    .menu-icon-active span {
        width: 100%;
        height: 4px;

        background-color: var(--primary);
        border-radius: 10px;

        transition: all .3s ease-in-out;
    }

    /* Icon active */

    .menu-icon-active span:nth-child(1) {
        transform: translate(0, 8px) rotate(45deg);
    }

    .menu-icon-active span:nth-child(2) {
        transform: translateX(-10px);
        opacity: 0;
    }

    .menu-icon-active span:nth-child(3) {
        transform: translate(0, -9px) rotate(-45deg);
    }

}

/* Menu Item Styling */

nav ul {
    display: flex;
    gap: 30px;
}

@media (max-width: 700px) {

    .menu-items {
        position: absolute;
        top: 60px;
        right: -5%;

        display: block;

        background-color: var(--white);
        border-radius: 0 0 0px 20px;
        box-shadow: -5px 10px 10px 3px rgba(0,0,0,0.05); 

        opacity: 0;
        transform: translateX(100%);
        
        transition: all .3s ease;
    }

    .menu-items ul {
        margin: 50px 80px;

        flex-direction: column;

        text-align: center;
    }

}

/* Mobile Menu Items Styling */

.menu-items-active {
    opacity: 1;
    transform: translateX(0%);
}