:root {
  --red-color: #e32845;
  --green-color: #82b440;
  --blue-color: #111d5e;
  --white-color: #fff;
  --black-color: #000;
}

/*********** navbar *****************/
.logo {
  width: 50px;
  border-radius: 100%;
}

.logo-footer {
  width: 100px;
  border-radius: 100%;
}

.logo + span {
  font-size: 20px;
  font-weight: 500;
  color: var(--white-color);
  margin-left: 10px;
}

.logo-title {
  color: var(--red-color);
}

/************** Start Banner Area  ***************/
.age-experience {
  color: var(--red-color);
  font-size: 20px;
  font-weight: 500;
}

/************* Pagination **************************/
/* Animation pour l'apparition */
.course-item {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.course-item.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.page-banner-content li a {

  text-transform: capitalize;
}

.img-detail {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.single-events-card{
  height: 400px !important;
  background-color: #ffffff ;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);

}
