.brand {
  font-weight: bold;
  font-size: 20px;
  padding-left: 2%;
}

.site-header {
  position: relative;
  position: fixed;
  z-index:99;
  top:20px;left: 2%;right: 2%;
  width: 96%;
  max-width: 1080px;
  margin: 0 auto;
  background-color: #fff; 
  border-radius: 30px;

  -webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
}

.site-header__wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem; }
  @media (min-width: 980px) {
    .site-header__wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 0;
      padding-bottom: 0; } }
@media (min-width: 980px) {
  .nav__wrapper {
    display: flex; } }

@media (max-width: 979px) {
  .nav__wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 6;
    background-color: #fff;
    border-radius: 30px;

    visibility: hidden;
    opacity: 0;
    
    transition: transform 0.3s ease-out, opacity 0.3s ease-out; }
    .nav__wrapper.active {
      visibility: visible;
      opacity: 1; } }

.nav__item a {
  display: block;
  color:black;
  font-weight:bolder;
  padding: 1.3rem 1rem;}
  @media (max-width: 979px){
    .nav__item a {
      font-size: 1.4em;
      padding-left: 2em;
      width: 90%;
      margin-left: 5%;
      background: #fff;
      border-top:3px dashed #ccc; } }

.nav__toggle {
  display: none; }
  @media (max-width: 979px) {
    .nav__toggle {
      display: block;
      position: absolute;
      right: 1rem;
      top: 1rem; } }
