@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  /* font-family: "Roboto", sans-serif; */
  font-family: "Montserrat", sans-serif;
  list-style: none;
  text-decoration: none !important;
}
h1 {
  font-weight: 700;
  margin-bottom: 0;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 2.5rem;
  background-color: #fff;
  color: #304f47;
}
.navbar-logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.nav-logo-img {
  width: 4.375rem;
  border-radius: 50%;
}
.navbar-menu {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}
.navbar-menu li {
  margin-left: 1.25rem;
}
.navbar-menu li a {
  font-weight: 500;
  font-size: 1.25rem;
  color: #0f4c75;
  text-decoration: none;
}
.navbar-menu li a:hover {
  font-size: 1.375rem;
  font-weight: 600;
  color: #11999e;
}
.navbar-toggle {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 999;
}
.navbar-toggle span {
  display: block;
  width: 1.875rem;
  height: 0.188rem;
  margin: 0.313rem;
  background-color: #304f47;
}
@media only screen and (max-width: 768px) {
  .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 4.375rem;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.25rem;
    z-index: 100;
  }
  .nav-logo-img {
    width: 55px;
    border-radius: 50%;
  }
  .navbar-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar-menu li {
    margin: 0.625rem 0;
  }
  .navbar-menu li a {
    color: #0f4c75;
    font-size: 1.25rem;
    font-weight: 500;
  }
  .navbar-toggle {
    display: block;
    top: 100%;
  }
}
