hr{
    width: 100%;
    height: 2px;
    border: none;
    background-color: black;
    margin: 0;
    padding: 0;
 }
 /* Container */
 .nav-bar {
     width: 100%;
   }
   
   /* Flex layout for even spacing */
   .nav-list {
     display: flex;
     justify-content: space-between;
     justify-items: center;
     align-items: center;
     list-style: none;
     margin: 10px;
     padding: 0;
   }
   
   /* Links */
   .nav-list a {
     text-decoration: none;
     font-family: 'Helvetica Neue';
     font-size: 16px;
     font-weight: 400;
     color: black;
     text-transform: uppercase;
     letter-spacing: 1px;
   }
   .nav-list a:hover{
     color: #FF71DA;;
   }
   .nav-list a.active{
     font-weight: 700;
     color: black;
     pointer-events: none;
   }
   
 .title{
     display: flex;
     flex-direction: row;
     justify-content: space-between;
     align-items: center;   
     font-family: 'Helvetica Neue';
     padding: 0px;
     margin: 0px;
     width: 100%;
 }
 .nav-container{
   background-color: #FAFCF7;
   position: fixed;
   z-index: 2;
   width: 100%;
   padding: 16px;
   margin: 0;
   box-sizing: border-box;
 }
 footer{
    width: 100%;
    height: 370px;
    background-color: #232222;
    font-family: "Montserrat";
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  footer h3{
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    padding: 20px;
  }
  footer h4{
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    padding: 0 0 14px 0;
  }
  footer a{
    color: #D8D6D4;
    font-size: 1rem;
    font-weight: 400;
    padding: 0;
    margin: 0;
    text-decoration: none;
  }
  .footer-grid {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom:0;
  }
  
  .footer-column a:hover {
    color: #FF71DA;
  }
  .sub-menu li{
    padding-left: 10px;
  }