:root {
  --font-primary: "Muli";
  --color-light-gray: #FCFCFC;
  --color-medium-gray: #A5A5A5;
  --color-dark-gray: #353C51;
  --color-blue: #33BCAF;
  --color-medium-blue: #5D8FA8;
}


html {
  font-family: "Quicksand", sans-serif;
}

.nav-label {
  width: 2rem;
  height: 1.5rem;
  background-color: transparent;
  border: none;
  padding: 0;
}

.nav-label:focus {
  background-color: transparent;
  border-color: none;
}

.nav-label:hover {
  background-color: transparent;
}

.line {
  height: 4px;
  width: 100%;
  position: absolute;
  background-color: var(--color-blue);
  border-radius: 20px;
  transition: all .2s ease-in-out;
  left: 0;
}

.top {
  top: 0;
}

.middle {
  top: 50%;
  transform: translateY(-50%);
}

.bottom {
  bottom: 0;
}

.nav-label-open .top {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-label-open .bottom {
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

.nav-label-open .middle {
  transform: rotate(45deg);
  left: 50%;
  opacity: 0;
}

.menu {
  top: 110px;
  transition: height .275s ease-in-out;
  width: 100%;
  overflow: hidden;
  height: 0;
  position: absolute;
  left: 0;
  z-index: 50;
  font-family: var(--font-secondary);
  font-weight: 300;
}

.menu-active {
  height: 95vh;
}

nav li a {
  display: block;
  font-size: 2rem;
  /*border-bottom: 1px solid #fff;*/
  background-color: var(--color-blue);
  padding: 15px 0;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

nav li a:hover {
  color: #000;
  background-color: #fff;
}

.dropdown-content {
  display: none;
}

@media only screen and (min-width: 60em) {

  .top-nav {
    padding: 1em 0;
  }

  .left {
    text-align: left;
  }

  .right {
    text-align: right;
  }

  nav li {
    display: inline-block;
    padding: 0.8125em 0.25rem;
  }

  nav li a {
    font-size: 0.85rem;
    padding: 0 0.75em;
    background-color: transparent;
    color: var(--color-dark-gray);
    display: inline-block;
    transition: all .2s ease-in-out;
    font-weight: 600;
  }

  nav li a:hover {
    color: var(--color-blue);
  }

  .menu {
    height: 100%;
    position: static;
    background-color: transparent;
    width: 100%;
    border-bottom: none;
    overflow: visible;
    /*border-top: 2px solid #ebebeb;*/
    /*border-bottom: 2px solid #ebebeb;*/
  }

  .nav-label {
    display: none;
  }

  .dropbtn:after {
    content: ' ▾';
  }

  /* The container <div> - needed to position the dropdown content */
  .dropdown {
      position: relative;
      display: inline-block;
  }

  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
      display: none;
      position: absolute;
      background-color: #fff;
      min-width: 225px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
      top: 3.15em;
      left: -2.5em;
  }

  /* Links inside the dropdown */
  .dropdown-content a {
      color: black;
      padding: 8px 15px;
      text-decoration: none;
      display: block;
      font-size:  15px;
  }

  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {
    background-color: var(--color-blue);
    color: #fff;
  }

  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}


@media (min-width: 1200px) {
  nav li a {
    padding: 0 1.25em;
  }
}
