body{
   font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    font-weight: 400;
    color:rgba(0, 0, 0, .87)

}
*{
    box-sizing: border-box;
}
header{
    height: 101px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    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;
    cursor: pointer;
    
}
.left-nav ul li:hover {
    color:#008248;
}
.right-nav{
    display: flex;
    align-items: center;
}
.find-store{
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-weight: 600; 
    display: flex;
    align-items: center;
    
}
.find-store:hover{
    color: #008248;
    cursor: pointer;


}
.sign-in , .join-now{
    padding: 7px 16px;
     
    border: 1px solid;
    border-radius: 50px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
}
.sign-in{
    margin-right: 16px;
   
}
.sign-in:hover{
    background-color: rgba(0, 0, 0, 0.6);
    transition: all .2s ease;
}

.join-now{
    background-color: black;
    color: white;
    transition: all .2s ease;
}
.join-now:hover{
    background-color: rgba(0, 0, 0, .7);
    border-color: rgba(0, 0, 0, .7);

}
a{
    color: black;
}

