body{

    margin: 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 400;
    color: rgba(0,0,0,0.87);
}
*{
    box-sizing: border-box;
}

a{
    color: black;
}

header{

    height: 101px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 2px 2px rgb(0 0 0 / 6%), 0 0 2px rgb(0 0 0 / 7%);
    position: relative;

}
.header-container{
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    
}

.logo{
    height :51px;
    width :51px;
}

.logo img{
    height: 100%;
}

.left-nav{
    display: flex;
    height: 100%;
    align-items: center;
}

.left-nav nav ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.left-nav nav ul li{
    text-transform: uppercase;
    padding-left: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    
}

.left-nav nav ul li:hover{
    color: #008248;
    cursor: pointer;
}

.find-store{
    display: flex;
    align-items: center;
    font-weight: 600!important;
    margin-right: 40px;
    cursor: pointer;
}

.find-store i{
    padding-right: 8px;
    font-size: 24px;
    
}

.find-store:hover{
    color: #008248
}

.right-nav{
    display: flex;
    align-items: center;
}

.sign-in, .join-now{
    
    padding: 7px 16px;
    border: 1px solid;
    border-radius: 50px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    transition: all .2s ease;
    cursor: pointer;
}

.sign-in{
    margin-right: 16px;
}

.join-now{

    background-color: black;
    color: white;

}

.sign-in:hover{
    background-color: rgba(0,0,0,.06);
}

.join-now:hover{
    background-color: rgba(0,0,0,.7);
    border-color: rgba(0,0,0,.7);
}
