@import url("https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Fredoka:wght@300..700&family=Karla:ital,wght@0,200..800;1,200..800&display=swap");
.Nav {
  position: fixed;
  width: 100%;
  z-index: 100;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}
.Nav-logo-title {
  text-transform: uppercase;
  font-family: "Afacad", sans-serif;
  color: #00096E;
  font-size: 2em;
  font-weight: 600;
  padding-left: 15px;
}
.Nav-link > a {
  display: none;
}
.Nav-link > a:hover {
  color: #D48A00;
}
.Nav-link-Contact {
  color: #FFFFFF;
  background-color: #D48A00;
  border-radius: 0.3em;
  width: 60px;
  padding: 3px 5px;
}
.Nav-icon {
  padding: 0.2em 1em 0 0;
  float: right;
  display: block;
}
.Nav-icon > svg:not(:first-child) {
  display: none;
}

.active {
  color: #D48A00;
}

.Nav.responsive {
  position: fixed;
  padding-top: 3em;
  padding-bottom: 1em;
  justify-content: flex-start;
}

.Nav.responsive .Nav-icon {
  position: absolute;
  right: 0;
  top: 0;
}

.Nav.responsive .Nav-link {
  margin-bottom: 0.2em;
  margin-left: 2em;
}

.Nav.responsive .Nav-link a {
  float: none;
  display: block;
  text-align: left;
  margin-bottom: 1em;
}
.Nav.responsive .Nav-link a:hover {
  color: #D48A00;
}

.Nav.Nav.responsive .Nav-link-Contact:hover {
  background-color: #00096E;
  color: #FFFFFF;
}

.Nav.responsive .Nav-logo-title {
  display: none;
}

.Nav.responsive .Nav-icon svg:first-child {
  display: none;
}

.Nav.responsive .Nav-icon svg:not(:first-child) {
  display: initial;
}

@media screen and (min-width: 900px) {
  .Nav {
    padding: 0.5em 0;
    overflow: hidden;
  }
  .Nav-icon {
    display: none;
  }
  .Nav-link {
    display: flex;
    align-items: center;
  }
  .Nav-link > a {
    margin-right: 1em;
    float: left;
    display: block;
    font-size: 1em;
    font-weight: 500;
    font-family: "Fredoka", sans-serif;
  }
  .Nav-link-Contact {
    color: #FFFFFF;
    background-color: #D48A00;
    border-radius: 0.3em;
    padding: 5px;
  }
  .Nav .Nav-link-Contact:hover {
    background-color: #00096E;
    color: #FFFFFF;
  }
}

/*# sourceMappingURL=nav.css.map */
