* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  user-select: none;
  -webkit-user-select: none;
}

.primary {
  color: #1A5F7A !important;
}

.secondary {
  color: #ff9800 !important;
}

.cta_button {
  background-color: transparent;
  border: 1px solid #1A5F7A;
  color: #1A5F7A;
}

.cta_button:hover {
  background-color: #1A5F7A;
  color: white;
}

button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.navbar,
.navbar-burger,
.menu,
.background {
  position: fixed;
}

.navbar-name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: #f9f9f9;
}


body.open .background {
  filter: blur(20px);
}

.navbar {
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 72px;
  padding-left: 20px;
  padding-right: 72px;
  background: transparent;
  color: #f9f9f9;
  transition: background-color 0.5s ease; /* Navbar background color transition */
}

.navbar.scrolled {
  background-color: rgba(0, 123, 167, 0.8);/* Navbar background color after scrolling */
}

.navbar>button {
  font-size: 28px;
}

.navbar-logo {
  height: 55px;
  padding-left: 30px;
}

.navbar-burger {
  z-index: 4;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  background-image: url("/assets/images/icons/menu.svg");
  background-repeat: no-repeat;
  background-position: center;
}

body.open .navbar-burger {
  background-image: url("/assets/images/icons/close.svg");
}

.menu {
  z-index: 3;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

body.open .menu {
  opacity: 1;
  visibility: visible;
}

.menu>a {
  color: #f9f9f9;
  font-size: 32px;
  font-family: "Euclid Circular A";
  text-decoration: none;
}

body.open .menu>a {
  animation: appear 0.3s both;
}


@keyframes appear {
  0% {
    opacity: 0;
    translate: 0 50px;
  }

  100% {
    opacity: 1;
  }
}

.menu .dropdown-toggle {
  background-color: transparent;
  /* Removes the default background */
  color: #f9f9f9;
  /* Sets the color of the dropdown button text */
  border: none;
  /* Removes the border */
}

.menu a {
  font-size: 32px;
}

.menu .dropdown-menu a {
  font-size: 20px;
}

.menu .dropdown-menu {
  background-color: rgba(0, 0, 0, 0.9);
  width: 300px;
  text-align: center;
  z-index: 10;
  position: relative;
}

.menu .dropdown-item {
  font-size: 26x;
  color: #f9f9f9;
  /* Sets the color of the dropdown menu items */
  padding: 10px 20px;
  animation: appear 0.3s both;

}

.menu .dropdown-item:hover {
  color: #c0c0c0;
  /* Sets the color of the dropdown menu items on hover */
  background-color: transparent;
  /* Removes the default background color change on hover */
}



/* Mobile devices*/
@media only screen and (min-width: 290px) and (max-width: 479px) {
  .navbar-name {
    font-size: 16px;
  }

  .navbar-logo {
    padding-left: 5px;
  }

  .menu .dropdown-menu {
    width: 250px;
  }

  .menu .dropdown-menu a {
    font-size: 17px;
  }
}

/* Mobile devices*/
@media only screen and (max-width: 289px) {
  .navbar-name {
    font-size: 15px;
    padding-left: 5px;
  }

  .navbar {
    padding-left: 10px;
    justify-content: space-between;
  }

  .navbar-logo {
    padding-left: 5px;
  }

  .menu .dropdown-menu {
    width: 250px;
  }

  .menu .dropdown-menu a {
    font-size: 16px;
  }
}