@import url("style_all.css");
  #mainNav {
    min-height: 3.5rem;
    background: linear-gradient(to bottom,
    rgba(255, 255, 255, 1) 95%,
    rgba(106, 135, 9, 0.2) 100%
  );
  }
  #mainNav .navbar-toggler {
    font-size: 80%;
    padding: 0.75rem;
    color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
  }
  #mainNav .navbar-toggler:focus {
    outline: none;
  }
  #mainNav .navbar-brand {
    color: var(--bs-primary);
    font-weight: 700;
    padding: 0.9rem 0;
  }
  #mainNav .nav-link {
    transition: none;
    color: var(--bs-secondary);
  }
  #mainNav .nav-link:hover {
    color: var(--bs-primary);
    font-weight: 700;
  }
  #mainNav .nav-link.active {
    color: var(--bs-primary);
    font-weight: 600;
  }
  @media (min-width: 992px) {
    #mainNav {
      min-height: 4.5rem;
      padding-top: 0;
      padding-bottom: 0;
      border-bottom: none;
      background-color: transparent;
      transition: background-color 0.3s ease-in-out;
      visibility: hidden;
    }
    #mainNav .navbar-brand {
      padding: 0.5rem 0;
      color: rgba(255, 255, 255, 0.5);
    }
  #mainNav .nav-link {
    padding: 2rem 1.5rem;
	 color: var(--bs-secondary);
  }
     #mainNav .nav-link {
      transition: none;
      padding: 2rem 1.5rem;
      color: var(--bs-secondary);
    }
    #mainNav .nav-link:hover {
      color: var(--bs-primary);
      font-weight: 800;
	      border-bottom: 2px solid var(--bs-primary);
    }
    #mainNav .nav-link.active {
		   font-weight: 700;
      color: var(--bs-primary);
    } 
    #mainNav.navbar-shrink {
      background: linear-gradient(to bottom,
      rgba(255, 255, 255, 1) 85%,
      rgba(106, 135, 9, 0.2) 100%
    );
      visibility: visible;
    }
    #mainNav.navbar-shrink .navbar-brand {
      color: var(--bs-secondary);
    }
    #mainNav.navbar-shrink .nav-link {
      color: var(--bs-secondary);
      padding: 1.5rem 1.5rem 1.25rem;
      border-bottom: 0.25rem solid transparent;
    }
    #mainNav.navbar-shrink .nav-link:hover {
      color: var(--bs-primary);
	   border-bottom: 2px solid var(--bs-primary);
    }
    #mainNav.navbar-shrink .nav-link.active {
      color: var(--bs-primary);
      outline: none;
      font-weight: 700;
    }
  }
  header.frontCover {
    position: relative;
    width: auto;
    height: 100%;
    min-height: 35rem;
    padding: 15rem 0;
    background: radial-gradient( rgba(255, 255, 255, 0.7) 40%, rgba(106, 135, 9, 0.3) 80%), url("../assets/img/bg-frontCover.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
  }
  header.frontCover h1, header.frontCover .h1 {
    font-size: 2.25rem;
  }
  @media (min-width: 992px) {
    header.frontCover {
      height: 100vh;
      min-height: 40rem;
      padding-top: 4.5rem;
      padding-bottom: 0;
    }
    header.frontCover p {
      font-size: 1.15rem;
    }
    header.frontCover h1, header.frontCover .h1 {
      font-size: 3rem;
    }
  }
  @media (min-width: 1200px) {
    header.frontCover h1, header.frontCover .h1 {
      font-size: 3.5rem;
    }
  }
