.card-agenda {
  display: block;
  width: 100%;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 5px 8px rgba(21, 23, 31, 0.1);
}
.card-agenda__image {
  position: relative;
}
.card-agenda__image img {
  width: 100%;
}
.card-agenda__image-label {
  padding: 5px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 63%;
  height: 37px;
  font-weight: 600;
  color: #005391;
  border-top-right-radius: 15px;
  background-color: #fff;
  display: none;
}
.card-agenda__content {
  padding: 10px;
  color: #15171f;
}
.card-agenda__content ul {
  margin-left: 0;
  list-style: none;
}
.card-agenda__content ul li {
  padding-left: 23px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .card-agenda__content ul li {
    padding-left: 0;
  }
}
.card-agenda__content ul li:before {
  position: absolute;
  top: 1px;
  left: 0;
  width: auto;
  height: auto;
  font-family: "Font Awesome 5 Pro";
  color: #8fb26b;
  background: transparent;
  content: "\f00c";
}
@media only screen and (max-width: 991px) {
  .card-agenda__content ul li:before {
    top: 2px;
  }
}
@media only screen and (max-width: 767px) {
  .card-agenda__content ul li:before {
    margin-right: 5px;
    position: static;
  }
}
.card-agenda__content-bottom {
  margin-top: 20px;
  display: flex;
}
.card-agenda__content-bottom .button {
  margin-top: auto;
  margin-bottom: 2px;
  margin-left: auto;
}
.card-agenda__content-price {
  font-family: Soleil;
  font-size: 21px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  color: #005391;
}
.card-agenda__content-date {
  opacity: 0.5;
  font-weight: 600;
  line-height: 1.3;
  color: #2d2d2d;
}
@media only screen and (max-width: 767px) {
  .card-agenda__content-date {
    font-size: 14px;
  }
}
.card-agenda__content-title {
  margin: 0 0 10px;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.1;
  color: #005391;
  font-size: 21px;
  font-weight: 600;
  color: #2d2d2d;
}
@media only screen and (max-width: 1199px) {
  .card-agenda__content-title {
    font-size: 19.95px;
  }
}
@media only screen and (max-width: 991px) {
  .card-agenda__content-title {
    font-size: 18.9px;
  }
}
@media only screen and (max-width: 767px) {
  .card-agenda__content-title {
    font-size: 18.06px;
  }
}
.card-agenda:hover {
  box-shadow: 0 8px 12px rgba(21, 23, 31, 0.4);
}
