.navbar {
  background: #692c3f;
  color: #fff;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;

  select {
    background-color: transparent;
    color: white;
    border: none;
    option {
      color: black;
    }
  }
}

.navbar nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-size: 14px;
}

.header-btn {
  background: #1aa37a;
  border: none;
  padding: 8px 14px;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;

  .logo-name {
    font-size: 20px;
    color: #9edfe4;
    font-weight: 600;

    .logo-sub-name {
      font-size: 10px;
      color: white;
      font-weight: 400;
    }
  }
}

.logo-wrap img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}
