.header {
    grid-area: header;
    display: grid;
    grid-template-columns: 1fr minmax(100px, 1180px) 1fr;
    background-color: white;
    grid-template-areas: "a b c";
}

.header-container {
    grid-area: b;
    display: grid;
    grid-template-columns: min-content 1fr;
    background-color: white;
}

.header--grid--item__nav--options {
    justify-self: right;
    align-self:  center;
}

.header--links {
    margin-left: 30px;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    font-weight: bold;
}

a.header--links:hover {
    border-bottom: 3px solid #b02747;
}

.header--image {
    margin-top: 10px;
    margin-bottom: 10px;
    background-image: url("/assets/images/misc/PNG.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 78px;
    width: 300px;
}

.hamburger {
    display: none;
    justify-self: right;
    align-self:  center;
    margin-right: 40px;
}

.hamburger-line {
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
}

.hamburgermenu {
    display: none;
    flex-direction: column;
    flex-flow: column wrap;
    background-color: white;
    width: 100vw;
}

.hamburgermenu-link {
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: black;
    border-bottom: 3px solid #e2e2e2;
    margin: 10px 0 5px 0;
}

a.hamburgermenu-link:hover {
    border-bottom: 3px solid #b02747;
}

@media only screen and (max-width: 960px) {
    .header--image {
        margin-top: 10px;
        margin-bottom: 10px;
        background-image: url("/assets/images/misc/80_small.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        height: 78px;
        width: 78px;
    }
}

@media only screen and (max-width: 570px) {
    .header--grid--item__nav--options {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

@media screen and (min-width: 570px) { 
    .hamburgermenu{
      display:none !important;
    }
}