.text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .branches {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .branch {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .branch img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  
  .branch h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 5px;
  }
  
  .branch p {
    color: #ccc;
  }
  
.menu-toggle {
    cursor: pointer;
    background: url('arrow.png') no-repeat center;
    background-size: contain;
    width: 25px;
    height: 25px; 
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.nav-links {
}

.nav-links.active {
    display: block; 
}

