.domain-item {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.domain-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.domain-item i {
  font-size: 2.5rem;
  color: #0088CC;
  margin-bottom: 10px;
}

.domain-item h3 {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.domain-item p {
  font-size: 1rem;
  color: #777777;
}

.icons {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 15px;
  /* Espacement entre les icônes */
}

.icons a {
  text-decoration: none;
  /* Supprime le soulignement des liens */
  background-color: #ffffff;
  padding: 10px 10px 5px 10px;
  border-radius: 5px;
}

.icons .icon {
  font-size: 24px;
  /* Taille des icônes */
  color: #0e63ed;
  /* Couleur des icônes (gris foncé) */
  transition: color 0.3s, transform 0.3s;
  /* Transition pour effet hover */
}

.icons .icon:hover {
  color: #0077b5;
  /* Couleur au survol (par exemple, bleu pour LinkedIn) */
  transform: scale(1.2);
  /* Agrandissement des icônes au survol */
}

.icons .fa-facebook-f:hover {
  color: #3b5998;
  /* Couleur spécifique pour Facebook */
}

.icons .fa-envelope:hover {
  color: #dd4b39;
  /* Couleur spécifique pour l'email */
}

.icons .fa-linkedin:hover {
  color: #0e76a8;
  /* Couleur spécifique pour LinkedIn */
}

.icons .fa-whatsapp:hover {
  color: #25D366;
  /* Couleur spécifique pour WhatsApp */
}



/* ----------------------- style activites -------------------------- */

.blog-posts {
  padding: 10px 0;
  /* background-color: #f9f9f9; */
  /* Arrière-plan léger */
}

.row {
  display: flex;
  justify-content: flex-start;
  /* gap: 30px; */
}

.post {
  /* background-color: #ffffff; */
  border-radius: 8px;
  /* Coins arrondis */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Ombre douce */
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.post:hover {
  transform: translateY(-10px);
  /* Effet d'élévation au survol */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  /* Ombre plus marquée */
}

.post-image a img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
  /* Séparation entre l'image et le texte */
}

.post-content {
  padding: 20px;
  color: #333;
}
.post-medium{
  height: 715px;
}
.post-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.post-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #7f8c8d;
  margin-bottom: 20px;
}

.post-meta {
  font-size: 14px;
  color: #95a5a6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-meta span {
  display: inline-block;
  margin-right: 10px;
}

.post-meta a {
  color: #3498db;
  text-decoration: none;
}

.post-meta a:hover {
  text-decoration: underline;
}

.btn-light {
  background-color: #f1f1f1;
  color: #333;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12px;
  transition: background-color 0.3s;
}

.btn-light:hover {
  background-color: #3498db;
  color: #fff;
}

.fb-page {
  border-radius: 8px;
  overflow: hidden;
}

.fb-post {
  background-color: #ffffff;
  padding: 15px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  border-radius: 8px;
}

.fb-post iframe {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}