body{
    margin: 0;
    font-family: 'Helvetica','Arial','sans-serif';
    font-weight: 400;
    color: rgba(0,0,0,.87);

}

*{
    box-sizing: border-box;
}

a{
    color: rgba(0,0,0,.87);

}
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%);
    z-index: 10;
    position: relative;
}

.head-container{
    display: flex;
    max-width:1270px;
    margin:0 auto;
    height: 100%;
    justify-content: space-between;
    
}


.logo{
    height:51px;
    width: 51px;
}

.logo img{
        height: 100%;
}

.left-nav{
    display: flex;
    align-items: center;
    height: 100%;
}

.left-nav nav ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.left-nav nav ul li{
    padding-left: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
}
.left-nav nav ul li:hover{
    color: #008248;
}


.right-nav nav ul li{
    padding-left: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
}
.right-nav{
    display: flex;
    align-items: center;
}


.find-store{
    display: flex;
    align-items: center;
    margin-right: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    
    
}

.find-store:hover{
    color: #008248;
}
.find-store i{
    padding-right: 8px;
    font-size: 24px;
    cursor:pointer;
    
}

.sign-in, .join-now{
    padding: 7px 16px;
    border:1px solid;
    border-radius: 50px;
    font-weight: 600;
    line-height: 1.2;
    cursor:pointer;
}

.join-now{
    background-color: black;
    color:white;
}

.join-now:hover{
    background-color: rgba(0,0,0,.7);
    border-color: rgba(0,0,0,.7);
    transition: all .2s ease;
}

.sign-in:hover{
    background-color: rgba(0,0,0,.06);
    text-decoration: none;
    transition: all .2s ease;
}

.sign-in{
   margin-right: 16px; 
}

.last p{
    font-weight: 400;
    margin-bottom: 24px;
}

