.topbar {
  position: fixed;
  display: flex;
  z-index: 1000;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  top: 0;
  right: 0;
  left: 0;

  width: 100%;
  height: 80px;

  padding: 0 20px;

  background: linear-gradient(
    to bottom,
    rgba(var(--color-brand-offwhite-rgb), 1),
    rgba(var(--color-brand-offwhite-rgb), 0)
  );
}

.topbar > div {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: flex-start;

  flex-direction: row;

  height: 100%;
}

.topbar-menu-toggler {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  text-decoration: none;

  font-size: 24px;

  color: rgba(var(--color-brand-blue-rgb), 1);
}

.topbar-logo {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  text-decoration: none;

  color: inherit;
}
.topbar-logo img {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: auto;
  height: 50px;

  object-fit: contain;
  object-position: center center;
}



.topbar-screenmenu {
  position: fixed;
  display: none;
  z-index: 2000;

  flex-direction: column;

  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 100vh;

  background: rgba(var(--color-brand-black-rgb), 1);
}
.topbar-screenmenu.active {
  display: flex;
}

.topbar-screenmenu-header {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  width: 100%;
  height: 80px;

  padding: 0 20px;
}
.topbar-screenmenu-toggler {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  text-decoration: none;

  font-size: 24px;

  color: rgba(var(--color-brand-offwhite-rgb), 1);
}

.topbar-screenmenu-logo {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  text-decoration: none;

  color: inherit;
}
.topbar-screenmenu-logo img {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: auto;
  height: 50px;

  object-fit: contain;
  object-position: center center;
}

.topbar-screenmenu-nav {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  width: 100%;
  height: 100%;

  padding-bottom: 120px;
}
.topbar-screenmenu-nav-item {
  font-size: 32px;
  font-weight: 700;

  text-decoration: none;

  color: white;
}



/*  */
