.header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo-mark svg {
  width: 44px;
  height: 44px;
  display: block;
}

.header__logo-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 17px;
  font-weight: 500;
}

.header__nav a {
  color: #fff;
}

.header__cta {
  border: 1.5px solid #fff;
  border-radius: 8px;
  padding: 12px 26px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .header {
    flex-direction: column;
    gap: 20px;
    padding: 22px 24px;
  }
  .header__nav {
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
