a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0); /*No flash when tap*/
    -webkit-tap-highlight-color: transparent;
}

/*MENU BAR--------------------------------------------------------*/
.menu
{
    grid-area: menu_section;
    height: 90px;
    position: fixed;
    z-index: 99;
    top: 0;
    background-color: #fff;
    -webkit-transition: top 0.3s ease-in-out;
    -moz-transition: top 0.3s ease-in-out;
    -o-transition: top 0.3s ease-in-out;
    transition: top 0.3s ease-in-out;
    display: grid;
     grid-template-columns: 10px 1fr auto;
    grid-template-areas: 
        "blank logo nav";
    /* padding-left: 2%;
    padding-right: 2%; */
    width: 100%;
    max-width: 100%;
    box-shadow:2px 2px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow:2px 2px 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow:2px 2px 5px rgba(0, 0, 0, 0.2);
}
.QLogo {
    height: 60px;
}

.logo2{
    grid-area: logo;
    justify-self: left;
    /* padding-top: 0px;
    padding-left: 5%; */
    align-self: center;
    /* display:flex;
    justify-content: center;
    align-items: center; */
    /* margin: auto; */
}

/*NAV BAR---------------------------------------------------------*/
.navicons{
    grid-area: nav;
    display: grid;
    grid-template-areas:
    "about products media team contact";
}

.clickableBoxes{
    width: 130px;
    /* min-width: 130px; */
    height: 100%;
    box-shadow: none;
    transition: height 0.5s;
    transition: box-shadow 5s;
    -webkit-transition: height 0.5s;
    -moz-transition: height 0.5s;
    display: grid;
    -webkit-tap-highlight-color: rgba(0,0,0,0); /*No flash when tap*/
    -webkit-tap-highlight-color: transparent;
}

.navText{
    color: #090909;
    align-self: center;
    justify-self: center;
    font-size: 1.3em;
}

.accountcolor {background-color: #fff; cursor: pointer;} /*#1ee366; cursor: pointer;} /*Yellow*/
.aboutcolor {background-color:  #fff;} /*#fcb000;} Yellow*/
.productcolor {background-color: #fff;}/*#f15300;} Teal*/
.mediacolor {background-color: #fff;} /*Blue*/
.peoplecolor {background-color: #fff;}/*#2fc8b9;} /*Red*/
.contactcolor {background-color: #fff;};/*#fc8e00;} /*Orange*/

#profile{
    display: grid;
    grid-template-areas:
    "profile";
}

.account{
    align-self: center;
    justify-self: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 0px solid black;
    background-color: white;
}


.clickableBoxes:hover {
      height: 120%;
      box-shadow:5px 5px 10px rgba(0, 0, 0, 0.4);
      -moz-box-shadow:5px 5px 10px rgba(0, 0, 0, 0.4);
      -webkit-box-shadow:5px 5px 10px rgba(0, 0, 0, 0.4);
}


/*FOOTER----------------------------------------------------------*/
.footerCard{
    grid-area: footer_section;
    background-color: #747474;
}
.footerSection{
    display: grid;
    grid-template-areas: "privacy terms FAQ copyright";
    min-height: 50px;
}

.footerText{
    opacity: 0.75;
    align-self: center;
    justify-self: center;
    text-align: center;
    color: white;
}
