@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400&family=Manrope:wght@200;300;400;800&display=swap');  @font-face {
  font-family: Manrope;
  font-weight: normal;
  font-style: normal;
}
/* Navbar container */
.navbar {
  display: block;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  color: #3498db !important;
  position: fixed;
  width: 100vw;
  z-index: 2;
  background-color: white;
  box-shadow: 0 3px 10px -2px rgba(128, 128, 128, 0.7);
}

/* Navbar logo */
.navbar-logo {
  flex: 1;
  width: 0;
}

.navbar-logo img {
  position: absolute;
  top: 10px;
  max-height: 0px !important;
  width: auto;
  justify-self: start;
  margin-left: 20px;
}

/* Navbar menu */
.navbar-menu {
  flex: 3;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.navbar-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  font-size: 1.05rem;
}

.navbar-item {
  padding: 0.75rem;
  font-size: 16px;
}
.navbar-item a {
  color: #3498db;
  font-family: Inconsolata, Arial, sans-serif;
  text-decoration: none;
}

.navbar-item > button {
  position: relative;
  z-index:1;
  font-family: Inconsolata, sans-serif;
  letter-spacing: 0px;
  border: none;
  font-size: 15px;
  padding-left: 33px !important;
  border-radius: 25px !important;
  padding-right: 33px !important;
  backdrop-filter: none;

}

.navbar-item > button::before {
  position: absolute;
  border-radius: 25px !important;
  background-image: -webkit-linear-gradient(40deg, #c644fc, #5856d6);
  background-image: -moz-linear-gradient(40deg, #c644fc, #5856d6);
  background-image: -ms-linear-gradient(40deg, #c644fc, #5856d6);
  background-image: -o-linear-gradient(40deg, #c644fc, #5856d6);
  background-image: linear-gradient(40deg, #c644fc, #5856d6);
  transition: opacity 0.15s linear;
  opacity: 0;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.navbar-item > button:hover::before {
  opacity: 1;
}

.navbar-item a:hover {
  color: #67d0e3;
  text-decoration: none;
}

.active {
  display: flex !important;
}

/* Media query for small devices (mobile phones) */
@media (min-width: 200px) and (max-width: 767px) {
  /* Navbar logo */
  .navbar-logo {
    flex: 1;
  }

  .navbar-logo img {
    height: 56px;
    width: auto;
    justify-self: start;
    margin-left: 20px;
  }

  /* Navbar menu */
  .navbar-menu {
    flex: 3;
  }

  .navbar-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    font-size: 14px;
  }

  .navbar-item {
    margin-left: 1rem;
  }
  .navbar-item a {
    color: #3498db;

    text-decoration: none;
  }
  .navbar-item a:hover {
    color: #67d0e3;

    text-decoration: none;
  }
}
/* Media query for medium devices (tablets) */
@media (min-width: 768px) and (max-width: 991px) {
  /* Navbar logo */
  .navbar-logo {
    flex: 1;
  }

  .navbar-logo img {
    height: 56px;
    width: auto;
    justify-self: start;
    margin-left: 10px;
  }

  /* Navbar menu */
  .navbar-menu {
    flex: 3;
    display: flex;
  }

  .navbar-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    font-size: 16px;
  }

  .navbar-item {
    margin-left: 1rem;
  }
  .navbar-item a {
    color: #3498db;

    text-decoration: none;
  }
  .navbar-item a:hover {
    color: #67d0e3;

    text-decoration: none;
  }
}
.navbar-icon {
  width: 25px;
  height: 5px;
  background-color: black;
  margin: 2px 0;
  cursor: pointer;
  background-color: rgba(12, 123, 232, 0.81);
}
@media (max-width: 800px) {
  .navbar-menu {
    flex-direction: column-reverse;
  }
}

/* Media query for large devices (desktops) */
@media (min-width: 992px) {
  /* Navbar logo */
  .navbar-logo {
    flex: 1;
  }

  .navbar-logo img {
    height: 56px;
    width: auto;
    justify-self: start;
    margin-left: 20px;
  }

  /* Navbar menu */
  .navbar-menu {
    flex: 3;
  }

  .navbar-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }

  .navbar-item {
    margin-left: 1rem;
  }
  .navbar-item a {
    color: #3498db;

    text-decoration: none;
  }
  .navbar-item a:hover {
    color: #67d0e3;

    text-decoration: none;
  }
}
