/*--------------------------------------------------------------
# Offres
--------------------------------------------------------------*/
/* Conteneur de la carte */
.car-wrap {
  height: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Lien sur toute la carte */
.car-wrap .stretched-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Effet au survol */
.car-wrap:hover {
  transform: translateY(-5px);
}

/* Image */
.car-wrap .img {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Texte */
.car-wrap .text {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Espace entre le titre et la description */
.car-wrap h2 {
  color: #28d4eb !important;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px; /* Augmente l'espace */
}

/* Catégorie */
.car-wrap .cat {
  font-size: 14px;
  color: #010e77;
}

/* Lire Plus */
.readmore {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: 0.3s;
  color: #010e77;
}

.readmore i {
  margin-left: 6px;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Details Offres
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: #1977cc;
  margin-right: 20px;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}