body {
    margin: 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 400;
    color: rgba(0,0,0,.87);
}

* {
    box-sizing: border-box;
}

a {
    color: black;
    text-decoration: none;
}

header {
    height: 150px;
    z-index: 10;
    position: relative;
    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%);
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.logo {
    height: 125px;
    width: 225px
}

.logo img {
    width: 80%;
}

.left-nav {
    display: flex;
    height: 100%;
    align-items: center;
    padding-left: 10px;
}

.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 nav ul li a:link {
    text-decoration: none;
}

.left-nav nav ul li a:hover {
    color: red;
}

.right-nav {
    display: flex;
    align-items: center;
}

.find-store, .contact-us {
    display: flex;
    align-items: center;
    padding: 7px 16px;
    border: 1px solid;
    border-radius: 50px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
}

.singular-epsilon-img {
    width: 203px;
}

.singular-epsilon-img img {
    width: 100%;
}

.find-store {
    margin-right: 16px;
    font-weight: 600;
    transition: all .2s ease;
}

.find-store a:link {
    text-decoration: none;
}

.find-store a:hover {
    color: red;
}

.contact-us {
    background-color: black;
    color: white;
    transition: all .2s ease;
    margin-right: 16px;
}

.contact-us:hover {
    background-color: rgba(0,0,0,.7);
    border-color: rgba(0,0,0,.7);
}