*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
nav{
    width:100vw;
    height: 10vh;
    background-color: #78B02B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: sans-serif;
}
nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
}
nav ul li{
    padding: 1rem 1.5rem;
    transition: all .2s ease-in-out;
}
nav ul li:hover{
    color: #78B02B;
    background-color: white;
    cursor: pointer;
}
.show{
    transform: translateX(0);
}
.menu{
    display: none;
}
.logo{
    display: none;
}
@media screen and (max-width:920px) {
    nav{
        flex-direction: column;
        height: fit-content;
        background-color: white;
        overflow-x: hidden;
        position: relative;
    }
    nav ul{
        margin-top: 3rem;
        transform: translateX(100%);
        flex-direction: column;
        background-color: none;
        transition: all .5s ease-in-out;
        background-color: #78B02B;
        z-index: 5;
    }
    nav ul li{
        width: 100vw;
    }
    .menu{
        position: absolute;
        top: 1rem;
        right: 1rem;
        display:inline;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 30px;
        height: 30px;
        z-index: 3;
    }
    .menu  > span{
        margin:2px 0;
        display: inline-block;
        width: 100%;
        height: 5px;
        background-color: #78B02B;
    }
    .logo{
        position: absolute;
        top: -1.5rem;
        left: -1rem;
        width: 100px;
        height: 100px
    }
    .logo img{
        height: 100%;
        object-fit: fill;
        border-radius: 100%;
    }
}
.footer-dark {
    padding:50px 0;
    color:#f0f9ff;
    background-color:#282d32;
  }

  table{
    /* align-items: center; */
    text-align: center;
    margin-left: auto;
    margin-right: auto;

  }

  
  th{
    /* margin-top:0;
    margin-bottom:12px; */
    font-weight:bold;
    font-size:16px;
    /* margin: 5rem; */
    padding-bottom: 1rem;
  }
  td{
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: small;
  }
  .align{
    vertical-align: top;
  }
  .container, .col{
    align-items: center;
    text-align: center;
    margin-top: 4rem;
    font-size: xx-small;
  }
  .row{
    flex-direction: row;
    text-align: center;
    align-items: center;
    vertical-align: top;

  }
  
  .footer-dark h3 {
    margin-top:0;
    margin-bottom:12px;
    font-weight:bold;
    font-size:16px;
  }
  
  .footer-dark ul {
    padding:0;
    list-style:none;
    line-height:1.6;
    font-size:14px;
    margin-bottom:0;
  }
  
  .footer-dark ul a {
    color:inherit;
    text-decoration:none;
    opacity:0.6;
  }
  
  .footer-dark ul a:hover {
    opacity:0.8;
  }
  
  @media (max-width:767px) {
    .footer-dark .item:not(.social) {
      text-align:center;
      padding-bottom:20px;
    }
  }
  
  .footer-dark .item.text {
    margin-bottom:36px;
  }
  
  @media (max-width:767px) {
    .footer-dark .item.text {
      margin-bottom:0;
    }
  }
  
  .footer-dark .item.text p {
    opacity:0.6;
    margin-bottom:0;
  }
  
  .footer-dark .item.social {
    text-align:center;
  }
  
  @media (max-width:991px) {
    .footer-dark .item.social {
      text-align:center;
      margin-top:20px;
    }
  }
  
  .footer-dark .item.social > a {
    font-size:20px;
    width:36px;
    height:36px;
    line-height:36px;
    display:inline-block;
    text-align:center;
    border-radius:50%;
    box-shadow:0 0 0 1px rgba(255,255,255,0.4);
    margin:0 8px;
    color:#fff;
    opacity:0.75;
  }
  
  .footer-dark .item.social > a:hover {
    opacity:0.9;
  }
  
  .footer-dark .copyright {
    text-align:center;
    padding-top:24px;
    opacity:0.3;
    font-size:13px;
    margin-bottom:0;
  }
  
