/* @font-face {
  font-family: "UniversLight";
  src:
    local("☺"),
    url("../assets/UniverseLight/UNIVERS2.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
} */

:root {
  --site_color: #f2b285;
  --darker-text-color: black;
  --light-text-color: white;
  --footer_background: black;
  --site-font-family: "UniversLight", "Helvetica Neue", "Helvetica", "Arial",
    "sans-serif";
  --normal-text-weight: 300;
  --link-hover-text-weight: 900;
  --underline-style: underline 2px solid #55555c;
}

html {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

header {
  background-color: whitesmoke;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 2px solid black;
}

li {
  list-style: none;
}

a {
  color: black;
  text-decoration: none;
}

.navbar {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 24px;
  color: black;
  font-weight: bold;
  letter-spacing: 2px;

  font-family: var(--site-font-family);
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  gap: 30px;
}

.nav-branding {
  font-size: 2rem;
  width: fit-content;
}

.nav-branding img {
  width: 300px;
  height: 30px;
}

.nav-link {
  transition: 0.3s;
  font-family: var(--site-font-family) !important;
  font-size: 15px;
}

.nav-link:hover {
  color: rgb(179, 173, 173);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: white;
}

/*Header mobile responsive*/
@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
    z-index: 999999999;
  }

  .navbar .nav-menu.active .nav-link {
    text-align: center;
    margin: auto;
  }

  .navbar .hamburger .bar {
    background-color: #000 !important;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: -100%;
    left: 0px;
    right: 0px;
    gap: 0;
    flex-direction: column;
    background-color: #070707;
    justify-content: start;
    align-items: center;
    width: 100%;
    text-align: start;
    transition: 0.3s;
    margin: auto;
  }

  .nav-branding {
    display: flex;
  }

  .nav-bar {
    align-items: center;
  }

  .nav-branding {
    width: 80%;
  }

  .nav-item {
    margin: 16px 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid gray;
  }

  .nav-link {
    font-size: 19px;
    text-align: center;
    justify-content: center;
  }

  .nav-menu.active {
    left: 0;
    top: 70px;
    align-items: center;
    padding-top: 10px;
    padding-left: 20px;
    background-color: white;
    text-align: center;
    justify-content: center;
  }

  .navbar .nav-menu.active .nav-item {
    justify-content: center;
    text-align: center;
  }

  .nav-branding img {
    width: 80% !important;
  }
}

/*Header mobile responsive*/


@media (min-width: 1135px) {
  .header-seed a h5 {
    font-size: 15px !important;
  }
}

@media (min-width: 1300px) {
  .header-seed a h5 {
    font-size: 17px !important;
  }
}

@media (min-width: 1600px) {
  .header-seed a h5 {
    font-size: 19px !important;
  }
}