.bridger-v2-footer {
  background: #002B47;
  padding: 0;
  padding-left: calc(calc(100vw - var(--lo-content-width)) / 2 ); 

  .menu {
    padding: 2rem 0;
  }
  
  .menu__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
  }

  .menu__item--depth-1:nth-of-type(1) { grid-area: 1 / 1 / 3 / 3; }
  .menu__item--depth-1:nth-of-type(2) { grid-area: 1 / 3 / 3 / 4; }
  .menu__item--depth-1:nth-of-type(3) { grid-area: 1 / 4 / 2 / 5; }
  .menu__item--depth-1:nth-of-type(4) { grid-area: 2 / 4 / 3 / 5; }

  .menu__item--depth-1 > .menu__link {    
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--clr-primary) !important;
  }

  .menu__item--featured .menu__submenu .menu__link {
    font-size: 1.5rem;
  }

  .menu__submenu--level-3 {
    padding-left: .65rem;
    border-left: 1.5px solid var(--clr-primary);
  }
  .footer__contact {
    position: relative;
    background: var(--clr-primary);
    padding: 1rem;
    min-height: 100%;

  }
  .topo-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .05;
    top: 0;
    left: 0;
  }