#repair-cost {
  background-image: url(../assets/repairBg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

#repair-cost h2,
#repair-cost > p:first-child {
  color: var(--white) !important ;
}
#repair-cost .card_item {
  position: relative;
  background-color: var(--white);
  border-radius: 24px;
  overflow: hidden;
}

#repair-cost .card_item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -6px;
  width: calc(100% + 12px);
  height: 30px;
  background-color: transparent;
  border: 4px solid var(--red);
  border-top: none;
  border-bottom-left-radius: 33px;
  border-bottom-right-radius: 33px;
  z-index: 5;
}

.card_item {
  flex: 1 1 23.5%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  padding: 52px 24px;
  box-shadow: 0px 5px 25px 0px #16233f14;
  position: relative;
  overflow: hidden;
}
#repair-cost a {
  width: 100%;
}
@media (max-width: 1200px) {
  #repair-cost {
    padding: 60px 0;
  }
}
@media (max-width: 1200px) {
  .card_item {
    flex: 1 1 48%;
  }
}
