/* compiled by scssphp v0.0.10 on Mon, 28 Jul 2025 08:14:58 -0700 (0.0047s) */

@import url();
html, body {
  color: #fff;
  font-family: Helvetica Neue, Helvetica, Verdana, sans-serif;
  font-size: 100%;
  text-align: left;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  color: #212120;
  background-color: white; }

.nav-bar {
  background-color: #121212 !important;
  /* space above/below */
  padding: 10px 0;
  /* optional */
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  z-index: 1000; }

.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* pushes in the logo and nav */
  padding: 0 100px; }

.logo img {
  /* or whatever suits your design */
  height: 40px;
  transition: transform 0.3s ease; }

.logo img:hover {
  transform: scale(1.05); }

.logo {
  width: 65;
  height: 65;
  position: relative;
  margin-top: -10px; }

.logo-image {
  position: absolute;
  /* overhangs upward */
  top: 0px;
  left: 0;
  height: 120px !important;
  z-index: 1001; }

.nav-list {
  display: flex;
  /* space between nav items */
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center; }

.nav-list a {
  padding: 5px 12px;
  font-size: 13px;
  -webkit-border-radius: 20px;
  transition: background-color 0.3s ease;
  font-weight: 500;
  transition: transform 0.3s ease;
  color: #fff;
  text-decoration: none; }

.nav-list a:hover {
  background: #bfbfbf;
  color: #000;
  cursor: pointer;
  transform: scale(1.05); }

.nav-list .contact {
  background: #393939;
  color: #fff;
  font-weight: bold; }
