footer{
    position: relative ;overflow: hidden;
}
.footer{
    margin: 0 auto;
    max-width: 1384px;
}
.footer-container {
    display: flex;
    padding: 60px 106px 32px 106px;
    flex-direction: column;
    justify-content: center;
    gap: 193px;
    align-items: center;
    align-self: stretch;
  }
  .footer-row {
    display: flex;
    flex-direction: row;
    gap: var(--gap-112);
  }
  
  .footer-section-col {
    display: flex;
    flex-direction: column;
    gap: var(--gap-28);
  }
  .footer-section-col-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-16);
  }
  .footer-label-text {
    display: flex;
    flex-direction: column;
    gap: var(--gap-20);
  }
  .footer-under-text {
    width: 100%;
    border-top: 1px solid var(--color-line);
    text-align: center;
    font-size: var(--fs-18);
    font-weight: var(--fw-regular);
    padding-top: 32px;
    color: var(--color-muted);
  }
  .flex-box-row {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-logo-text{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    margin-top: 108px
  }
  .mg-text {
    font-size: 204px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    background: linear-gradient(
      180deg,
      rgba(239, 239, 239, 0.08) -6.6%,
      rgba(255, 255, 255, 0) 76.23%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
    overflow: hidden;
  }
  
  @media (max-width: 1172px) {
    
    .footer-container {
        display: flex;
        padding: 48px 24px 36px 24px;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        align-items: center;
        align-self: stretch;
      }
    .footer-row {
        display: flex;
        flex-direction: column;
        justify-content: start;
        gap: var(--gap-32);
      }
  
    .footer-logo-text{
        display: none;

    }
  }
  