.navbar {
    background-color: #003333;
    width: 1440px;
    height: 70px;
    font-family: 'Inria Serif', serif;
    z-index: 999;
  }
  .nav-link {
    color: #cfc89c !important;
    cursor: pointer;
    font-size: 18px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .nav-link.active {
    font-weight: bold;
    border-bottom: 2px solid #cfc89c;
  }
  .navbar-brand {
    color: gold;
    font-weight: bold;
  }
  
  .text-gold {
    color: gold;
  }

  .logo-box {
    transition: all 0.3s ease;
    background-color: #003333;
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: center;
  flex-direction: column;
  align-items: center;
    width: 300px;
    height: 130px;
    margin: auto;
  }
  
  .logo-box img {
    width: 200px;
    transition: width 0.3s ease;
  }
  
  .logo-box.shrink {
    width: 150px;
    height: 70px;
  }
  
  .logo-box.shrink img {
    width: 140px;
    margin: 5px 0;
  }
  
  .logo-text {
    color: gold;
    border: 1px solid gold;
    padding: 10px 30px;
    border-radius: 5px;
  }

  .navbar-toggler:focus {
  outline: none;
  box-shadow: none !important;
}

  @media (max-width: 1440px){
    .navbar{
      width: 100% !important;
    }
  }
  
  @media (max-width: 992px){
    .navbar-collapse{
      position: absolute;
      top: 70PX;
      left: 0;
      background-color: #003333;
      width: 100%;
      padding: 20px 10px !important;
    }
  }

  @media (max-width: 767px) {
    .logo-box{
      width: 240px;
    }

    .nav-link{
      font-size: 20px !important;
      margin-bottom: 12px !important;
    }
    

    .navbar-toggler:focus-visible{
      border: 2px solid gold;
    }
  }
  /* @media screen and (max-width: 580px) {
    #navbar {
      padding: 20px 10px !important;
    }
    #navbar a {
      float: none;
      display: block;
      text-align: left;
    }
    #navbar-right {
      float: none;
    }
  } */
  