.hamburger-menu {
    display: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 1005;
  }
  
  .hamburger-menu-block{
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 1005;
  }
  
  .line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    transition: transform 0.3s ease-out, background-color 0.3s ease-out;
  }
  
  .line:nth-child(1) {
    top: 0;
  }
  
  .line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .line:nth-child(3) {
    bottom: 0;
  }
  
  .open .line {
    background-color: var(--primary-color);
  }
  
  .open .line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  
  .open .line:nth-child(2) {
    opacity: 0;
  }
  
  .open .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  
  @media (max-width: 992px) {
    .hamburger-menu{
        display: inline-block;
    }
    .pagelink-container{
        display: none;
    }
  }