#footer-2023 {
  background-color: var(--blue-10);
  padding: 2.5rem 0;
}

  #footer-2023 .footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 8rem;
    justify-content: space-between;
  }
  
  #footer-2023 p, #footer-2023 a {
    color: #fff;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.28px;
    margin: 0;
  }
  
  #footer-2023 a {
    text-decoration: underline;
    transition: all .25s ease-in-out;
  }
    
    #footer-2023 a:hover, #footer-2023 a:focus {
      text-decoration-color: var(--green-30);
    }
    
    #footer-2023 a:focus {
      outline: none;
      text-decoration-thickness: 2px;
    }
  
  
  #footer-2023 .footer-logo {
    margin: 0 0 .5rem;
    align-self: start;
  }
    #footer-2023 .footer-logo a {
      transition: all .5s ease-in-out;
    }
    #footer-2023 .footer-logo a:focus {
      filter: drop-shadow(6px 5px 3px rgba(0, 0, 0, .5));
    }
    
  #footer-2023 .footer-col-2 {
    display: grid;
    gap: 1rem;
  }

  #footer-2023 .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 4rem;
  }
  
  #footer-2023 .footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 3rem;
  }
  
  #footer-2023 p.footer-copyright {
    font-size: 13px;
    font-weight: 200;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    width: 100%;
  }
  
  /* Media Queries */
  @media screen and ( min-width: 825px ) {
    #footer-2023 {
      padding: 2.5rem 0 1rem;
    }
    #footer-2023 .footer-col-2 {
      margin-top: 7px;
    }
    #footer-2023 p.footer-copyright {
      position: relative;
      margin-top: -41px;
      width: 50%;
    }
  }
  