




:root {
  --dkgreen: #043b1b;
  --ltgreen: #c3d4bb;
  --sgreen: #86a291;
  --hgreen: #9fc090;
  --whgreen: hsla(71, 55%, 96%, 0.8);
  interpolate-size: allow-keywords;
}

/*content*/

body {
    font-family: "Lato", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.0;
    max-width: 1440px;
    margin:auto;

  }

/*Layout and formatting*/

.container {
    border:0;
    margin:0;
    padding:0;
    display:block;
}


  /* Header Styles */
.header {

    display:inline-block;
    width:100%;
    background-color: rgba(255, 255, 255, 0.827); /* Light gray background */
    /*overflow:hidden;*/
    height:fit-content;
    border-bottom: 1px solid white;
  }


.header-left{
   

}
.header:after{
    content: "";
    clear: both;
    display: table;
}
  
  .header-left img {
    float:left;
    width: 60px; 
    padding-right: 10px;
    padding-top: 25px;
    padding-left:20px;
    padding-bottom:25px;
  }

  .header-left h1{

    padding-top:25px;
    padding-left:10px;
    padding-right:10px;
    margin:0px;
    line-height: 1em;
  }
  .header-left p{
   padding-top:.4em;
   padding-right:10px;
   padding-bottom:10px;
    margin:0px;
    display:inline-block;
    clear:right;
    line-height: 1em;
    color:var(--sgreen);
    
  }

 .nav{
    position:relative;
 }

  
  nav ul {
    visibility:visible;
    clear:both;
    list-style: none;
    display: flex;
    align-items: center;
    height:42px;
    margin: 0px;
    padding: 0px;
    background-color: rgba(251, 252, 240, 0.8);
    box-shadow: 0px 5px 5px 0px rgba(89, 89, 89, 0.58);
    overflow-x:auto;
    overflow-y:visible;

  }

  nav ul li {
    line-height: 2em;
    height:2em;
    margin-bottom:0px;
  }

  .arrow.hide{

    width:0em;
    transition:width .5s;
  }

  nav .arrow{
    position:relative;
    overflow:hidden;
    height:2em;
    width:2em;
    margin-right: .5em;
    transition:width .5s;
  }

  #hamburger-svg{
    cursor: pointer;
  }

  #hamburger-svg #top-line,
  #hamburger-svg #middle-line,
  #hamburger-svg #bottom-line
   {
    transform: rotate(0deg) translateY(0px) scalex(1);
    transform-origin: center;
    opacity:100;
    transition: .3s ease;
  }
  
  #hamburger-svg.open #top-line {
    transform: rotate(45deg) translateY(8px) scalex(.75);
    transform-origin: center;
    transition: transform .3s ease;
  }
  
  #hamburger-svg.open #middle-line {
    opacity: 0;
    transition: opacity .3s ease;
  }
  
  #hamburger-svg.open #bottom-line {
    transform: rotate(-45deg) translateY(-8px) scalex(.75);
    transform-origin: center;
    transition: transform .3s ease;
  }

  nav .horizontal{
    justify-content: flex-start;
  }
  nav .horizontal li:has(+ .space, + .control){
    border-color: #00000000;
  }

  nav .horizontal .control{

  }
  nav .horizontal .space{
    padding-left:2em;
    margin-left:auto;
  }

  nav .horizontal:not(:has(.space))>.control{
    margin-left:auto;
  }


  nav .dropdown{
    flex-direction:column;
    position:relative;
    width:50px;
    left:0%;
    width:fit-content;
    border-radius: 5px 0px 5px 5px;
    height:fit-content;
    max-height:90vh;
    max-width:90vh;
    overflow-y: auto;

  }
  .ddcontainer{
    visibility: hidden;
    position:absolute;
    right:0px;
    top:42px;
    overflow:hidden;
    height:fit-content;
    width:fit-content;
    padding:0px 0px 10px 10px;
  }

  .dropdown.hide{
    /*clip-path: inset(100% 0% 0% 0%);*/
    transform:translate(0,-110%);
    transition: .3s;
  }
  .dropdown.show{
    /*clip-path: inset(0% 0% 0% 0%);*/
    transform:translate(0%,0%);
    transition: .3s;
  }
  

  .horizontal>li{
    border-right: 1px solid var(--hgreen);
  }

   .horizontal>li:last-child {
    border-right: none;
  }
  
  nav ul li a {
    text-decoration: none;
    font-size:.9em;
    color: #000000; /* Dark gray text */
    height:25px;
    text-wrap: nowrap;
    padding:.3em .5em;
    margin:0em .5em;
  }

  .dropdown li{
  }
  .dropdown li:first-of-type{
    margin-top:.5em;
  }
  .dropdown li:last-of-type{
    margin-bottom:.5em;
  }
  .dropdown li.space:not(:first-of-type){
    margin-top:.7em;
  }

  .dropdown a{
    align-self: self-start;
  }
  .horizontal li{
    text-align: center;
  }
  li.control{
    width:fit-content;
  }


  nav ul li a:hover, nav ul li a.selected {

    color: #ffffff; 
    border-radius: 5px;
    background-color: var(--hgreen);
  }
  
  /* Hero Section Styles */
  .hero {
    background-image: url("/css_images/hero-aerial.png");
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;
    min-height: 330px;
    height:50vh;
  }
  
  
  .hero-content {
    /*position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
  }
  
  /* Main Content Styles */
  main {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  
  .block{
    display:block;
    float:left;
    width:33%;
    padding:20px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .block.twocol {
    width:50%
  }

  .block.onecol {
    width:100%
  }


 
  
  /* Footer Styles */
  footer {
    background-color: var(--ltgreen); /* Light green background */
    display:block;
    clear:both;
    box-sizing: border-box;
    /*grid-template-columns: 1fr 1fr 1fr 1fr;*/
    /*gap: 20px;*/
    
  }

/*footer .fi{
    display: inline;
    position: relative;
    margin-top: auto;
    margin-bottom:  auto;
}*/

    #flogo{
    margin-left: 1%;
    padding-left: 8%;
    display:inline-block;
    background-image: url("/css_images/burgee-nofill.png");
    background-size: 8%;
    background-position:left;
    background-repeat:no-repeat;
    height:100%;
    width:100%;
    box-sizing: border-box;
  }

  #flogo::after{
    content:"";
  }

  footer .fonecol{
    
    width:100%;
    display:inline-block;
    margin-left:1%;
    vertical-align: top;
    box-sizing: border-box;

  }


  footer .fl{

    width:40%;
    display:inline-block;
    margin-left:1%;
    vertical-align: top;
    box-sizing: border-box;

  }



  footer .fc{
    display:inline-block;
    width: 29%;
    margin: auto;
    vertical-align: top;
    box-sizing: border-box;

  }


 footer .fr{
    display:inline-block;
    width: 29%;
    margin:auto;
    vertical-align: top;
    box-sizing: border-box;

  }



  footer section {
    padding: 10px;

  }

  
  footer section h2 {
    color: black; /* Dark gray heading */
  }
  
  footer section ul {

  }
  
  footer section ul li {
    margin-bottom: 5px;
  }

  footer #webmaster {
    display: block;
    text-align: center;
  }

  footer #webmaster span::before{
    content:'';
    background-color: var(--sgreen);
    width:90%;
    height:1px;
    margin:auto;
    display:block;
    margin-bottom:.5em;
  }

  footer #webmaster span {
    display:inline-block;
    line-height: 1.2em;
    font-size:.9em;
    padding:.5em;
  }




  footer #admin {
    position:absolute;
    left:0px;
    bottom:0px;

  }
  
  /* Responsive Design */
  /*@media (max-width: 768px) {
    main, footer {
      grid-template-columns: 1fr;
    }
  
    nav ul {
      flex-direction: column;
      align-items: flex-start;
    }
  
    nav ul li {
      margin: 5px 0;
    }
  }*/


  /*Formatting for HTML Elements*/

  h1{
    color: var(--dkgreen);
  }

  h2{
    color: var(--dkgreen);
    margin-bottom:.7em;
  }

  h3{
    color:var(  --sgreen);
    margin-bottom:.5em;
  }

  h4{
    font-weight:bold;
    margin-bottom:.5em;
  }

  h5{
    margin-bottom:.6em;

  }

  h6 {
    margin-bottom:.7em;

  }

  p{
    margin-top:0px;
  }

  hr {
    border-style: solid;
    border-color: var(--ltgreen);
    border-width:0px 0px 2px 0px;
    /*box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 5px 0px;*/
  }

  img{
    max-width: 100%;
    height:auto;
  }

  ul{
    margin-top:.5em;
    list-style-position: outside;
    margin: 0px;
    padding-left: 1.5em;

  }

  a {
  color:blue;
  text-decoration: underline;
  }
  
  a.btnlink{
    background-color: var(--hgreen);
    display:inline-block;
    text-decoration: none;
    padding:.3em;
    padding-left:.5em;
    margin:.3em;
    border-radius: .5em;
    color:white;
    padding-right: 2em;
    border-radius: 5px;
  }
a.btnlink::after{
content:" (pdf)";
font-style:italic;


}

 ul {

 }

li {
   margin: 0px;
   padding:0px;
   margin-bottom: 1em;
   list-style: none;
  }
 
  footer li{
    list-style:initial;
  }

 li::first-line{
    padding-left:0px;
  }

  article {
    border: none; /* Light gray border */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 15px;
  }

  input[type=button], input[type=submit], input[type=reset], button, a.button {
    color: #ffffff; 
    border:none;
    padding:.5em;
    border-radius: 5px;
    background-color: var(--dkgreen);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    margin:.5em;
  }

  input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover, button:hover, a.button:hover {

    box-shadow: rgba(60, 64, 67, 0.3) 0px 2px 4px 0px, rgba(60, 64, 67, 0.15) 0px 4px 12px 4px;
  }
  
  div.hscroll{
    overflow-x: auto;
  }

 

  @media screen and (max-width: 800px){
    footer .fl, footer .fc, footer .fr, #flogo {

 
        width:100%;
        margin:auto;

    }
    
    #flogo {

        background-size: 64px;
        padding-left: 0px;
        margin-top:2em;
        padding-top:3em;
        background-position: top;
    }

    .block, .block.twocol, .block.onecol{
        float:none;
        width:100%;
      }

      /*.header-left h1{
        font-size:4vw;
      }
      .header-left p{
    
        font-size:2vw;

      }*/

      /*.header{
        box-shadow: 0px 5px 5px 0px rgba(89, 89, 89, 0.58);
      }*/
/*
      nav ul {
        transition:.2s;
        opacity:0%;
        visibility:hidden;
        position:fixed;
        right:35px;
        top:35px;
        display:inline;
        align-items: center;
        box-shadow: 0 0 0px 1000px rgba(47, 47, 47, 0.774);
        /*box-shadow: 0px 5px 5px 0px rgba(89, 89, 89, 0.58);*/
  /*      height:fit-content;
        width: calc(100% - 70px);
        transform: scale(0);
        transform-origin: top right;
    
      }*/
      /*
      nav ul li{
        display:block;
        height:60px;
        width:100%;
        border-top: 1px solid var(--hgreen);
        border-right: none;
      }*/
    
      /*
      nav ul li a {
        border-right: 0px;
        border-top: 1px;
        text-decoration: none;
        color: #000000; /* Dark gray text */
       /* height:60px;
        line-height:60px;

    
      }*/

      /*nav ul li:first-child {
        border-top: none;
      }*/

      #hamburger {
        display:inline;
        transform:scale(1,1);
      }
      #click {
        display:inline;
        transform:scale(0,0);                            
      }

      #menu-toggle:checked ~ nav ul {
        transition: .2s;
        opacity:100%;
        visibility:visible;
        transform: scale(1);
        transform-origin: top right;
      }

      #menu-toggle:checked + #hamburger {
        box-shadow:none;
      }

      #menu-toggle:checked ~ #click {
        transition:.1s;
        display:inline;
        transform:scale(1,1);
        background-color: white;
      }



      

    
}
