.about {
    width: 100%;
    min-height: 100vh;
    display: flex;
    padding:  5em;
    background-color: var(--color-black);
  }
  
  .about-header {
    width: 100%;
    display: flex;
  }
  
  .about-col {
    font-family: 'Outfit', sans-serif;
  }
  
  .about-col:nth-child(1) {
    flex: 2;
  }
  
  .about-col:nth-child(2) {
    flex: 4;
  }
  
  .about-col h2 {
    font-weight: 500;
    line-height: 1.3em;
    color: transparent;
    font-size: clamp(10em, 5vw, 16em);
    transition: color 0.3s;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
    position: relative;
  }

  .about-col h2 span {
    color: var(--color-secondary);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }

  .about-col p {
    font-size: clamp(2.5em, 2vw, 6em);
    line-height: 1.5em;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1em;
  }
  
  .about-copy {
    width: 50%;
    padding: 10em 1em 5em 1em;
    text-transform: uppercase;
  }
  
  @media (max-width: 1024px) {

    .about {
      padding: 1em;
      min-height: fit-content;
      max-height: 100vh;
    }

    .about-copy {
      width: 100%;
    }
  
    /* .about-header {
      padding: 0em 0 5em 0;
      flex-direction: column;
    } */
  
    .about-col h2 {
      width: 100%;
      font-size: 50px;
      line-height: 60px;
    }
  
    .about-copy {
      padding: 5em 1em 10em 1em;
    }

    .about-col p {
      font-size: 24px;
      line-height: 30px;
    }
  }
  