.what-we-do{
  .heading{
      text-transform: uppercase;

      color:var(--blue);
      margin-bottom:30px;
      font-size:40px;
    @media(min-width:768px){
        margin-bottom:60px;
        font-size:80px;
      }
    }
  .small-heading{
      text-transform:uppercase;
    }
  .items {
      gap:40px;
      display: grid;
      grid-template-columns: 1fr;
    @media(min-width:768px){
        grid-template-columns: 1fr 1fr;
      }
    }
    p{
      padding-left:35px;
      color:var(--blue);
      line-height:150%;
    }
}
