.techboi-header {
  transition: all 0.2s;
  position: fixed;
  z-index: 42;
  top: 0;
  left: 0;
  right: 0;
  border-top: 2px solid var(--color-brand);
  border-bottom: 1px solid transparent;
}

.techboi-header img {
  transition: all 0.8s;
}

.techboi-header.scrolled {
  background: rgba(250,250,250,0.95);
  border-color: var(--color-gray-light);
}


.techboi-header.scrolled .techboi-desktop-menu a {
  color: #000 !important;
}

.techboi-header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.techboi-logo {
  position: relative;
}

.techboi-header .techboi-logo-default {
  opacity: 1.0;
}

.techboi-logo-inverted {
  transition: all 0.2s 0.2s;
  opacity: 0.0;
  position: absolute;
  top: 0;
  left: 0;
}

.techboi-header.scrolled .techboi-logo img {
  height: 42px;
}

.techboi-header.scrolled .techboi-logo-default {
  opacity: 0.0;
}

.techboi-header.scrolled .techboi-logo-inverted {
  opacity: 1.0;
}

.admin-bar .techboi-header {
  top: 32px;
}

.techboi-header-inner {
  position: relative;
}

.techboi-header-inner .container {
  display: flex;
  gap: var(--size-m);
  padding-top: 20px;
  padding-bottom: 20px;
}

.techboi-branding {
  width: 160px;
}

.techboi-menu-wrapper {
  position: relative;
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: flex-end;
}

.techboi-contact {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  line-height: 20px;
  bottom: 0;
  display: flex;
  align-items: center;
  color: var(--color-gray-light);
  opacity: 0;
  padding-right: 12px;
  transition: all 0.2s 0.2s;
}

.techboi-header.scrolled .techboi-contact {
  padding-right: 20px;
  color: var(--color-default);
  opacity: 1.0;
}