@import url('https://fonts.googleapis.com/css?family=Roboto:300,400');

/* unvisited link */
a:link {
    font-family: Roboto;
    color: #676767;
    text-decoration: none;
}
  
  
  /* visited link 
  a:visited {
    font-family: Roboto;
    color: green;
    text-decoration: none;
  }
  */
  a:visited {
    font-family: Roboto;
    color: #676767;
    text-decoration: none;
  }
  
  
  
  /* selected link */
  a:active {
    font-family: Roboto;
    color: #676767;
    text-decoration: none;
  }

  /* mouse over link */
  a:hover {
    font-family: Roboto;
    color: #000000;
    text-decoration: none;
  }
 
.headerLg{
  display: grid;
  grid-template-columns: 
    auto    /* headerLogoAndTitle */

    auto;   /* action bar */
  grid-template-rows:100%;
  grid-gap: 0px;
  height:70px;
}

.headerLogoAndTitle{
  display: grid;
  grid-template-columns: 
    70px    /* logo */
    150px   /* title */
    1fr;    /* dropdown menu */
 
  grid-template-rows:100%;
  grid-template-areas:  "a b c";
  grid-gap: 0px;
  height:70px;
}


.h1Lg {
  font-family: Roboto;
  padding:0px;
  line-height: 24px;
  margin-right:10px;
  font-size:24px;
  color:#4171c6;
  margin-top:12px;
}



.actionBarButtonsLg{
  display: grid;
  grid-template-columns: 
      auto   /* Home button */
      auto   /* Testimonials and Awards */
      auto;  /* Contact */


  grid-template-rows:auto;
  grid-gap: 30px;
  justify-content: center;
  margin-right:50px;
  margin-left:20px;
  background-color: #ffffff;
  align-items: center;

}




@media only screen and (max-width: 600px) {
  .headerLg{
    display: grid;
    grid-template-columns: 100%;
  
    grid-template-rows:
      auto    /* logo and title */

      auto;   /* action bar */
    grid-gap: 0px;
    height:auto;
  }
  .actionBarButtonsLg{
    visibility: hidden;
    height: 0px;
  }
}





.logo{
  margin-left:10px;
  margin-top:10px;
  margin-bottom: 10px;
  margin-right:22px;
}

.menuBar{
  width: 24px;
  height: 3px;
  background-color:  #676767;;
  margin: 6px 0;
}

.dropdown {
  visibility: hidden;
  width:0px;
  height:0px;


}

@media only screen and (max-width: 600px) {

  .dropdown {
    grid-area: c;
    justify-self: end;
    visibility: visible;
    width:auto;
    height:auto;
    margin-right:20px;
    margin-top:10px;

  }
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
  float:right;
  right: 0;

}

.dropdown:hover .dropdown-content {
  display: block;
  float:right;
}




