:root {
  --mobile-menu-offset: 75vw;
  --mobile-menu-speed: 0.25s;
}

.groupheadertext {
  position: relative;
  width: 100%;
  background-color: transparent;
  padding: 0px 3px;
}

.groupbiotext {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 180px;
  margin-bottom: 16px;
  padding: 4px 4px 4px 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: transparent;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
}

.nav-link-desktop {
  padding: 0 10px;
}

.w-nav-overlay {
  overflow: visible;
}

.image {
  width: 40px;
  height: 40px;
  max-height: 100%;
  border-radius: 100%;
}

[data-nav-menu-open] {
  position: relative;
  min-width: 0;
  display: flex !important;
  flex-direction: column;
  float: left;
}

.w-nav-link {
  padding: 10px 15px 10px 15px;
  color: #22292f;
}

#mobile-menu-container {
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 0;
  width: 0;
  height: 100vh;
}

#w-nav-overlay-0 {
  display: block !important;
  height: 100vh;
  padding-top: 5vh;
  z-index: 1000;
  position: absolute;
  top: 0;
  right: calc(-1 * var(--mobile-menu-offset));
  background: #dedede;
  width: var(--mobile-menu-offset);
  left: unset;
}

#w-nav-overlay-0.w--closed {
  animation: slideOut var(--mobile-menu-speed) forwards;
}

#w-nav-overlay-0.w--open {
  animation: slideIn var(--mobile-menu-speed) forwards;
}

#mobile-menu-container.w--closed {
  animation: slideContainerOut var(--mobile-menu-speed) forwards;
}

#mobile-menu-container.w--open {
  animation: slideContainerIn var(--mobile-menu-speed) forwards;
}

@keyframes slideIn {
  100% {
    right: 0;
  }
}

@keyframes slideOut {
  0% {
    right: 0;
  }
  100% {
    right: calc(-1 * var(--mobile-menu-offset));
  }
}

@keyframes slideContainerIn {
  0% {
  }
  100% {
    width: var(--mobile-menu-offset);
  }
}

@keyframes slideContainerOut {
  0% {
    width: var(--mobile-menu-offset);
  }
  100% {
    width: 0;
  }
}
