
.grid-main-heading {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
  
  .intro-img img,
  .intro-img svg {
    max-width: 100%;
    height: auto;
  }
  
  /* GRID */
  .grid-one-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
  }
  
  @media (max-width: 600px) {
    .gid-min-heading {
      font-size: 2.4rem;
    }
  }
  
  .grid>div {
    min-height: 20rem;
    padding: 2rem;
    overflow-wrap: break-word;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    counter-reset: grid-counter;
    overflow: visible;
  }
  
  .grid h3::before {
    font-size: 4rem;
    top: -1rem;
    left: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-right: 1rem;
  }
  
  .grid h3 {
    padding-left: 3rem;
    padding-top: 6rem;
    /* espaço para o contador */
    font-size: 2.2rem;
    line-height: 1.4;
  }
  
  .grid h3::before {
    counter-increment: grid-counter;
    content: counter(grid-counter);
    position: relative;
    font-size: 3.2rem;
    font-style: italic;
    top: 0;
    left: 0;
    margin-bottom: 1rem;
    transform: rotate(5deg);
    margin-right: 1rem;
  }