:root {
  --nav-item-padding: 0.5rem;
}

.header {
  color: var(--mainColorContrasted);
  background: var(--mainColor);
  border-bottom: 2px solid transparent;
  transition: all 0.3s linear 0s;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: calc(60rem + (var(--nav-item-padding) * 2));
  margin: 0 auto;
  padding: 0;
  line-height: 3rem;
  transition: all 0.3s linear 0s;
}

.navPart1 {
  float: left;
  padding: 3px 0 3px 5px;
}

.navPart2 {
  display: flex;
  flex-direction: row;

  & a {
    border-bottom: 2px solid transparent;
  }

  & a:focus,
  & a:hover {
    background-color: transparent !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  }
}

.link {
  display: flex;
  align-items: center;
  padding: 0 var(--nav-item-padding);
  color: inherit;
  text-decoration: none;
}

.link svg {
  fill: currentColor;
  opacity: 0.5;
  margin-right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
}

@media screen and (max-width: 600px) {
  .link_other {
    display: none;
  }
}

.logoicon {
  width: 3.8rem;
  padding: 0.2rem 0 0;  /* transition: all 0.3s linear 0s; */
}

.logoClass {
  padding: 0;
  width: 3.8rem;  /* transition: all 0.3s linear 0s; */
}

.dockednav {
  line-height: 2rem;
  transition: all 0.3s linear 0s;
}

