  .new-tools {
    padding: 0;
    margin-bottom: 12px;
  }
  .new-tools .tools-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 350px;
    text-align: center;
    background-color: black;
    margin-bottom: 12px;
  }
  .new-tools .tools-header h3 {
    font-family: "Inter Tight", sans-serif;
    color: white;
    font-weight: 800;
    font-size: 50px;
    font-style: italic;
    text-transform: uppercase;
  }

  .new-tools .tools-header h6 {
    font-family: "Inter Tight", sans-serif;
    color: white;
    font-size: 20px;
    line-height: 1.2;
    padding-top: 1.5rem;
    font-weight: 300;
  }
  
  .new-tools .tools-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: wrap;
    width: 100%;
  }

  .new-tools .tools-content .work-item {
    width: 100%;
  }

  .new-tools .tools-content img {
    width: 100%;
  }

  @media (max-width: 1440px) {
    .new-tools .tools-header h6 {
      font-size: 20px;
      font-weight: 300;
    }
  }