body{
    margin-top: 0;
    font-family: cabin;
}
header{
    display: grid;
    grid-template-columns: 10% 80% 10%;    
}
.logodiv_nomobile{
    display: none;
}
body h2{
    grid-row: 2;
    grid-column: 1/span3;
}
mbnav{
    grid-row: 1;
    grid-column: 1/span3;
    font-size: 1.7em;
    display: flex;
    align-items: flex-start;
    justify-items: flex-end;
}
.navbar{        
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: start;
    list-style: none;
    position: relative;
    padding: 0px 20px;
    color: black;
    margin-top: 0;
}
.menu{
    display: flex;
}
.menu li a{
    display: inline-block;
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: bolder;
    color: black;
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
}
.menu li a::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 1px;
    background-color: #A5a5a5;
    transition: 0.15s ease-in-out;
}
.menu li a:hover:after{
    width: 100%;
}
.open_menu, .close_menu {
    position: absolute;
    color: #a5a5a5;
    cursor: pointer;
    font-size: 
    1.5rem;
}
.open_menu{
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.fa-bars {
    padding-top: 12px;
}
.close_menu{
    top: 20px;
    right: 20px;

}
#check{
    display: none;
}
footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
}
.made_in_usa{
display: flex;
flex-direction: column;
text-align: center;
}
.made_in_usa img{
margin: auto;
}
.address{
text-align: center;
margin: auto;
}
.family{
display: flex;
flex-direction: column;
text-align: center;
}
.family img{
margin: auto;
}
#copyright{
grid-column: 1/span 3;
grid-row: 2;
text-align: center;
align-self: end;
}
@media (min-width: 801px){
.navbar{
    z-index: 77;        
}
}
@media(max-width: 1100px){
    
.menu{
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 100;
    background-color: rgba(0,0,0,0.9);
    transition: all 0.2s ease-in-out;    
    overflow: scroll;
}
#logo{
    display: none;
    margin: 0;
}
#logo img {max-height: 200px;}
.menu li {margin-top: 40px;}
.menu li a{padding: 10px;
color:#a5a5a5}
.open_menu , .close_menu{display: block;}
#check:checked ~ .menu{
    right: 0;
}
#check:checked ~ .navbar{
    color:#A5a5a5
}.logodiv_nomobile{
    display: unset;
    grid-row: 1;
    grid-column: 2;
    justify-self: center;
}
.logodiv_nomobile img{
    max-height: 200px;
}
footer{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.address{
    grid-row: 2;
    grid-column: 1 /span 2;
}  
#copyright{
    grid-row: 3;
    grid-column: 1 /span 2;
}
}
@media (min-width: 1101px) {
mbnav {
    grid-row: 1;
    grid-column: 1 / span 6;
}
.navbar{
    align-self: end;
    justify-content: center;
    display: flex;            
}
.menu{
    display: flex;
    margin-bottom: -1em;
    font-size: .7em;
    justify-content: center;
    align-items: center;
}
.menu li{
    padding: 0 10px;
}
.open-menu, .close-menu{
    display: none;
}
}
@media(max-width:700px){
    footer{
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }
    .family_img{
        grid-row: 1;
    }
    .made_in_usa{
        grid-row: 2;
        padding-top: 30px;
    }
    .address{
        grid-row: 3;
    }  
    #copyright{
        grid-row: 4;                
    }  
}
@media(max-width:600px){
    body h2{
        font-size: 1.25em;
    }
}