.main-nav {
  z-index: 64;
  opacity: 1;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background-color: #ffffff;
  border-bottom: 0 #000;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.main-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 0rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  padding: 20px 0px;
}

.site-title {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 800;
  padding-left: 8px;
}

.nav-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.active {
  font-weight: 500;
}

.hamburger {
  display: none;
}

.mockup-image {
  max-width: 100%;
}

@media screen and (max-width: 1500px) {
  .nav-brand {
    padding: 20px 0rem;
  }
  .main-nav-container {
    max-width: 68rem;
  }
}

@media screen and (max-width: 991px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #eee;
    width: 100%;
  }
  .hamburger {
    display: inline-block !important;
    margin-left: 10px;
  }
  .hamburger i {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .nav-actions .btn {
    display: none;
  }
  .site-title {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    /* padding-left: 4px; */
  }
}
