
header{
    width: 100%;
    background-color: var(--background);
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
    overflow: hidden;
}

header .inner-header{
    width: 95%;
    margin: 0px auto;
    padding: 12px 0px;
}

.logo{
    flex-shrink: 0;
    cursor: pointer;
}

.logo h1,
.logo h1 span{
    font-size: 23px;
    font-weight: 800;
    font-family: 'Quicksand', sans-serif;
    color: black;
}

.logo h1 span{
    color: var(--primary)!important;
}


header .inner-header nav{
    gap: 30px;
    margin-left: auto;
}

header .inner-header nav a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
    display: block;
    padding: 15px 20px;
    flex-shrink: 0;
    position: relative;
}


header .inner-header nav a:hover{
    color: var(--primary)!important;
}

header .inner-header nav a::before{
    display: none;
    content: "";
    position: absolute;
    bottom: -13px;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
    height: 10px;
    background-color: var(--primary);
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}


header .inner-header nav button{
    width: 120px;
    height: 45px;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
}

header .inner-header .mobile-menu{
    width: 35px;
    display: none;
    color: var(--heading);
    font-size: 32px;
    cursor: pointer;
    background-color: transparent;
}


header .inner-header .mobile-menu img{
    width: 100%;
}

header .inner-header .close-navigation{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    background-color: rgba(0,0,0,0.65);
    z-index: 10;
}

header .profile{
    width: fit-content;
    border-radius: 50px;
    border: 1px solid var(--grey);
    padding: 5px 5px 5px 20px;
    text-align: right;
    margin-left: 30px;
    cursor: pointer;
}

header .profile:hover{
    border-color: var(--primary);
}

header .profile .info h3{
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
    margin-right: 10px;
}

header .profile .picture{
    width: 35px;
}

header .profile button{
    width: 35px;
    font-size: 20px;
    background-color: transparent;
    color: var(--heading);
    display: none;
}

header .profile button:hover{
    color: white;
    background-color: var(--primary);
}




@media screen and (max-width: 880px) {
    
    header .inner-header{
        padding: 12px 10px;
    }
    
    header .inner-header .mobile-menu{
        display: flex;
    }
    
    header .inner-header nav{
        position: fixed;
        top: 40px;
        right: -100%;
        transition: 0.3s;
        gap: 0px;
        width: 260px;
        box-shadow: 0px 0px 20px rgba(0,0,0,0.35);
        background-color: var(--background);
        z-index: 999;
        transition: 0.5s;
        padding: 20px 20px 10px 30px;
        flex-direction: column;
        border-radius: 6px;
    }
    
    header .inner-header nav .active::before{
        display: none;
    }
    
    header .inner-header nav a{
        padding: 10px 0px;
        font-size: 17px;
        width: 100%;
        color: var(--heading)!important;
        margin: 0px auto 15px auto;
    }
    
    header .inner-header nav a:hover{
        color: var(--primary);
    }
    
    header .inner-header nav button{
        width: 100%;
        color: var(--heading);
        font-size: 17px;
        border-radius: 0px;
        background-color: transparent;
        text-align: left;
        font-weight: 600;
        height: unset;
        padding: 10px 0px;
    }

    header .profile button{
        display: flex;
    }

}



@media screen and (max-width: 500px) {
    
    
header .profile{
    padding: 5px 5px 5px 5px!important;
}

header .profile .info h3{
    display: none;
}


}