/* First indicator - point to the left */

/* Last indicator - point to the right */

.carousel-indicators button:last-child {
  width: 70px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}

.carousel-indicators button:first-child {
  width: 70px;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 20px 100%, 0 50%);
}

