.prestation-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  height: 400px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  position: relative;
  background-color: #fff;
}

.prestation-container {
  /* background-color: #ddd; */
  background-color: #f8f8f8;
  padding-bottom: 32px;
}

.swiper-slide .prestation-tags-container {
  width: 75% !important;
}

.swiper-slide .prestation-tags {
  font-size: 8px;
}

.prestation-titre {
  text-align: center;
  width: 40%;
  margin: auto;
  font-weight: 400;
  padding-bottom: 16px;
  padding-top: 16px;
  margin-bottom: 32px;
  position: relative;
}

.prestation-tags {
  border-radius: 24px;
  padding: 8px 12px;
  color: var(--main-red);
  border: 1px solid var(--main-red);
  font-size: 14px;
  margin-bottom: 24px;
}

.prestation-title {
  width: 50%;
  text-align: start;
  font-size: 20px;
  font-weight: 400;
}

.prestation-cards {
  padding-bottom: 46px !important;
}

.prestation-titre::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  bottom: 0;
  left: calc(50% - 25px);
  height: 2px;
  background-color: var(--main-red);
}



.prestation-image-container {
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.prestation-image-container img {
  height: 200px;
}

.prestations-cards-list .prestation-text-container {
  padding: 20px !important;
}

.prestation-text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4px 20px 20px 20px;
}

.prestation-text-container {
  width: 100%;
  text-align: center;
}

.prestation-cta {
  position: absolute;
  right: 12px;
  bottom: 12px;
}

.prestation-cta img {
  width: 48px;
}

@media screen and (min-width : 1200px) {
  .prestation-container {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 42px 0;
  }

  .swiper-slide .prestation-tags-container {
    width: 100% !important;
  }

  .prestation-image-container {
    height: 232px;
    overflow: hidden;
  }

  .prestation-image-container img {
    height: 300px;
  }

  .prestation-card {
    height: 452px;
  }

  .prestation-title {
    width: 60%;
  }

  .prestation-titre {
    margin: 0;
    font-size: 2.2rem;
    width: 35%;
    text-align: left;
    padding-left: 3%;
  }

  .prestation-titre::after {
    left: 15%;
  }

  .prestation-text-container {
    padding: 14px 10px 20px 10px;
  }

  .prestation-text-container .prestation-tags {
    font-size: 8px;
  }

  .prestation-cards {
    padding: 10px;
  }
}

@media screen and (min-width : 1600px) {

  .prestation-titre {
    width: 20%;
  }

  .prestation-titre::after {
    left: 22%
  }

  .prestation-title {
    width: 60%;
    font-size: 20px;
    margin: 16px 0
  }

}