.container {
  /* max-width: 1280px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
nav {
  position: fixed;
  z-index: 99;
  background-color: #161716c0;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}
.services {
  display: flex;
}
.services a {
  font-size: 1em;
  transition: 0.3s ease;
}
.services a:hover {
  color: var(--primary);
}

/****hamburger****/

.hamburger {
  display: block;
  position: relative;
  z-index: 1;
  user-select: none;
  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  margin-left: 14px;
}
.hamburger span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background-color: var(--light);
  border-radius: 6px;
  z-index: 1;
  transform-origin: 0 0;
  transition: 0.4s;
}
.hamburger:hover span:nth-child(2) {
  transform: translateX(10px);
  background-color: var(--primary);
}

.hamburger.is-active span:nth-child(1) {
  transform: translate(0px, -2px) rotate(45deg);
}
.hamburger.is-active span:nth-child(3) {
  transform: translate(-3px, 3px) rotate(-45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(15px);
}
.hamburger.is-active:hover span {
  background-color: var(--primary);
}
/****end of hamburger****/

/****mobile****/

.mobile-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  z-index: 98;
  background: var(--background);
  position: fixed;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}
.mobile-nav.is-active {
  left: 0%;
}
.mobile-nav a {
  border-radius: 10px 10px 10px 10px;
  display: block;
  text-align: center;
  width: 100%;
  margin: 0 auto 20px;
  max-width: 200px;
  padding: 17px 46px;
  color: var(--light);
  text-decoration: none;
  transition: 0.3s ease-in-out;
  border-color: var(--background);
  border-style: solid;
}
.mobile-nav a:hover {
  border-style: solid;
  border-color: var(--primary);
}
/****end of mobile****/

/****menu****/

.smalllogo {
  width: 10em;
  background-color: transparent;
}
.menu {
  display: none;
  justify-content: flex-end;
  margin: 0 -16px;
}
.menu a {
  color: antiquewhite;
  margin: 0 16px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.4s;
  padding: 8px 16px;
  border-radius: 99px;
}
.menu a.is-active,
.menu a:hover {
  background-color: var(--primary);
}

@media (min-width: 4000px) {
  .hamburger {
    display: none;
  }
  .menu {
    display: block;
  }
  .mobile-nav {
    display: none;
  }
}
@media (max-width: 1200px) {
  .leftNav h3 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
@media (max-width: 600px) {
  .services a {
    display: none;
  }
}
/****end of menu****/
