.header {
  height: 82px;

  display: flex;
  flex-direction: row;
  justify-content: space-between;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;

  background: linear-gradient(rgb(215, 92, 40), rgb(239, 132, 10)) border-box;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(30, 30, 30, 0.4);
}

.header::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  border: var(--border-bottom-width) solid transparent;
  background: linear-gradient(rgb(74, 74, 74), rgb(54, 97, 28)) border-box;
  mask: linear-gradient(black, black) border-box,
        linear-gradient(black, black) padding-box;
      mask-composite: subtract;
}

.left-section {
  display: flex;
  align-items: center;
  margin-left: 24px;
  margin-right: 24px;
}

.right-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 20px;
  margin-right: 25px;
}

.right-section .section a:hover {
  color: rgb(160, 0, 0);
}

.section a {
  text-decoration: none;
  color: white;
}

.falcon-icon {
  object-fit: contain;
  height: 62px;
  cursor: pointer;
}

@media (max-width: 500px) {
  .right-section {
    font-size: 10px;
  }
}

@media (max-width: 500px) {
  .falcon-icon {
    height: 54px;
  }
}