.two-col-module-menu {
  .grid-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 128px;
    justify-items: stretch;
    align-items: start;
  }
}
  @media screen and (max-width: 1440px) {
    .grid-container {
      gap: 64px;
    }
  }
  @media screen and (max-width: 767px) {
    .grid-container {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  .col {
    max-width: 533px;
  }
  @media screen and  (max-width: 767px) {
    .col {
      max-width: unset;
    }
  }
  .col.column-1 .count {
    margin-bottom: 2px;
    color: var(--Main-Palette-Turquoise, #00C7BB);
  }
  .col.column-2 {
    width: 100%;
  }
  .col :where(h2,h3) {
    margin-bottom: 42px;
  }
  .col img {
    display: block;
    width: 100%;
    height: auto;
  }
  .col .menu-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .col .menu-item {
    width: 100%;
  }
  .col .menu-item .bar {
    width: 100%;
    background-color: #fff;
    opacity: 0.1;
    transition: opacity 0.2s ease;
  }

/*
  .col .menu-item:hover .bar {
    opacity: 1;
  }

  .col .menu-item:hover .bar .progress {
    width: 100%;
  }

  .col .menu-item:hover label {
     color: #00c7bb;
  }
*/
  .col .menu-item .bar .progress {
    width: 0%;
    height: 2px;
    background-color: #00c7bb;
    transition: all 0.5s ease;
  }

  .col .menu-item label {
    display: block;
    padding-top: 4px; 
    pointer-events: none;
    color: #fff;
    transition: color 0.3s ease;
  }

}