.ibutton {
  display: flex;
  gap: 0.33em;
  align-items: center;
  text-decoration: none;
  padding: 1em;
}

.ibutton:hover {
  text-decoration: none;
}

.industry-button-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .industry-button-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .industry-button-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* For large screens */
@media (min-width: 992px) {
    .ibutton:nth-child(3n) {
        border-right: none; 
    }
    .ibutton:nth-last-child(-n+3) {
        border-bottom: none; 
    }
    .industry-well 
        clip-path: polygon(12% -2px, 100% 0px, 100% 80%, 87% 100%, 0px 100%, 0% 20%);
    }
}
/* For medium screens */
@media (max-width: 991px)(min-width: 768px) and (max-width: 991px){
    .ibutton:nth-child(2n) {
        border-right: none; 
    }
    .ibutton:nth-last-child(-n+2) {
        border-bottom: none; 
    }
  .industry-well 
        clip-path: polygon(12% -2px, 100% 0px, 100% 80%, 87% 100%, 0px 100%, 0% 20%);
    }
}

/* For small screens */
@media (max-width: 767px) {
    .ibutton {
        border-right: none!important;;
    }
    .ibutton:nth-last-child(-n+1) {
        border-bottom: none; 
    }
  .industry-well 
        clip-path: polygon(12% -2px, 100% 0px, 100% 80%, 87% 100%, 0px 100%, 0% 20%);
    }
}