.navbar {
  display: flex;
  justify-content: center;
}
.nav_main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--backgroundTransparent);
  width: 108rem;
  height: 9rem;
  align-items: center;
  border-radius: 1.8rem;
  margin-top: 5rem;
}

.nav_main a:hover {
  color: white;
}

.brand_name {
  font-size: 2.2rem;
  color: white;
  text-decoration: none;
  margin-left: 3.3rem;
  margin-right: 4.7rem;
  font-weight: bold;
}

.nav--link {
  font-size: 1.4rem;
  color: white;
  text-decoration: none;
  margin-right: 2.5rem;
  font-weight: bold;
}
.nav--link:hover {
  color: grey;
}
.button_get {
  color: white;
  background-color: var(--primary);
  padding: 1rem 2rem;
  height: 3.7rem;
  font-size: 1.3rem;
  margin-right: 3.3rem;
  border: none;
  border-radius: 0.8rem;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 1px 1px 0px 2px #5b38b830;
}
.button_get a {
  text-decoration: none;
  color: white;
  font-size: 1.3rem;
}
.nav_right button:hover {
  background-color: #462897;
  transition: 0.5s;
}
