@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: futuralight;
  src: url(fonts/futuralight.ttf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

li,
a,
button {
  font-family: Montserrat, sans-serif, Arial;
  font-weight: 500;
  font-size: 16px;
  color: #edf0f1;
  text-decoration: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-color: #e2e2ca;
  z-index: 9999;

  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
}

.nav-logo {
  width: 150px;
  cursor: pointer;
  margin-right: auto;
}

.nav__links {
  list-style: none !important;
}

.nav__links li {
  display: inline-block;
  padding: 0px 20px;
  list-style: none !important ;
}

.nav__links li a {
  transition: all 0.3s ease 0s;
  color: #34261a;
}

.nav__links li a:hover {
  color: #a0a0a0;
}

@media only screen and (max-width: 780px) {
  nav {
    display: none;
  }

  .mobile-links {
    display: none;
  }
}

@media only screen and (min-width: 781px) {
  .mobile-nav {
    display: none;
  }
}

.fa-bars {
  color: #34261a;
  cursor: pointer;
}

.mobile-links.toggleMobileNavBar {
  display: block;
  position: absolute;
  background-color: #bdbda9;
  width: 100%;
  text-align: center;
  list-style: none;
  right: 0;
  top: 150px;
  height: 250px;

  animation-name: mobile-nav-open;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.mobile-links a {
  position: static;
  color: whitesmoke;

  transition: all 0.15s;
}

@keyframes mobile-nav-open {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes mobile-nav-close {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
