.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
  }

.menu-toggle {
    display: inline-block;
    line-height: 2em;
    font-size: 1em;
    padding-left: 1em;
  }
  
  .menu-toggle:hover,
  .menu-toggle:focus {
    text-decoration: none;
  }
  
  .main-menu {
    position: absolute;
    display: none;
    top: 0;
    height: 100%;
    overflow-y: scroll;
    overflow-x: visible;
    z-index: 999;
    padding: 0.5em 1em;
  }
  
  .main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
    text-align: center;
  }
  
  .main-menu a {
    display: block;
    padding: .75em 15px;
    line-height: 1em;
    font-size: 1em;
    color: #0e352a;
    text-decoration: none;
  }
  
  .main-menu a.menu-close {
    border-bottom: 0;
  }
  
  .main-menu li:first-child {
    border-top: 1px solid #383838;
    padding-top: 1em;
    
  }

  @media (min-width: 992px) {
    .main-menu li:first-child {
        border: none;
        padding-top: 0;
    }
  }
  
  .main-menu a:hover,
  .main-menu a:focus {
    color: #20ca97;
  }
  
  .main-menu .menu-close {

    text-align: center;
  }
  
  .main-menu:target,
  .main-menu[aria-expanded="true"] {
    display: block;
    outline: none;
    width: 100%;
  }
  
  .main-menu:target .menu-close,
  .main-menu[aria-expanded="true"] .menu-close {
    z-index: 1001;
  }

  .main-menu:target ul,
  .main-menu[aria-expanded="true"] ul {
    position: relative;
    z-index: 1000;
  }
  

  .main-menu:target + .backdrop,
  .main-menu[aria-expanded="true"] + .backdrop{
    position: absolute;
    display: block;  
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    background: #fff;
    cursor: default;
  }
  
  @supports (position: fixed) {
    .main-menu,
    .main-menu:target + .backdrop,
    .main-menu[aria-expanded="true"] + .backdrop {
      position: fixed;
    }
  }
  
  @media (min-width: 992px) {
    .menu-toggle,
    .main-menu .menu-close {
      display: none;
    }
    
    .main-menu {
      position: relative;
        top: auto;
        height: auto;
        display: block;
        overflow: hidden;
    }
    
    .main-menu ul {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: start;
      padding: 0;
      height: auto;
      width: auto;
      background: none;
    }
    
    .main-menu a {
      color: #0e352a;
      border: 0 !important;
    }
    
    .main-menu a:hover,
    .main-menu a:focus {
      background: none;
      color: #20ca97;
    }
  }