header .icon-container {
  height: 3rem;
  overflow: hidden;
}

.logo-fgf-container {
  width: 12rem;
  height: 6rem;
  overflow: hidden;
}

.logo-fgf-container img {
  width: 100%;
}

header .icon-container img {
  height: 100%;
  width: auto;
}

nav a.link {
  text-decoration: none;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #191919;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
  border-right: 1px solid #cccccc; 
  padding: 1rem;
  transition: 0.4s;
}

nav .link:hover {
  cursor: pointer;
  font-weight: normal;
  border-bottom: 4px solid #c6bc07;
  color: #c6bc07;
}


hr {
  height: 0.1rem;
  border: none;
  background-color: #cccccc;
}

#nav-bar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999999;
}

#decouvert-btn {
  display: none;
}

#close-decouvert-btn {
  display: none;
}

@media (max-width: 870px) {

  #decouvert-btn,
  #close-decouvert-btn {
    display: inline-block;
    background: transparent;
    height: fit-content;
    border: none;
    font-size: 2em;
    margin-right: 1rem;
  }

  .hide-nav {
    width: 100vw;
    height: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
  }

  .hide-nav > div {
    flex-direction: column;
    align-items: center;
  }

  .hide-nav > div > a {
    border-right: none;
  }

  .show-nav {
    height: 100vh;
    background: white;
    z-index: 999999999;
  }

  .show-nav button {
    position: fixed;
    right: 2rem;
    top: 2rem;
  }
}

@media(max-width: 480px) {
  .main-nav {
    justify-content: center;
    gap: 1rem;
  }
}