.page-title {
  background: url(/static/images/activities-banner.jpg) center center / cover no-repeat local;
  width: 100%;
  height: 500px;
  text-align: center;
  position: relative;
  word-break: break-all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-title h3 {
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .page-title {
    height: 300px;
  }
}
.activities-section {
  background: #1f1b1a url("/static/images/activities-bg.jpg") no-repeat top center;
  background-size: cover;
}
.activities-section .container  {
  margin-top: -60px;
  padding-bottom: 30px;
}
.activities-content {
  background: white;
  padding: 30px;
  margin-bottom: 60px;
}
.activities-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.activities-img {
  position: relative;
}
.activities-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
.activities-img .date {
  position: absolute;
  top: 0;
  left: 30px;
  background: var(--secondary-color);
  padding: 15px;
  letter-spacing: 2px;
}.activities-img .date span {
  display: block;
  font-size: 2rem;
  text-align: center;
 }
.entry-details h3 a {
  color: #020202;
}
.entry-details .read-more {
  font-weight: 700;
  color: #020202;
  position: relative;
  padding-left: 62px;
}
.entry-details .read-more:before {
  content: "";
  background-color: #020202;
  width: 48px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 11px;
}
.entry-details .read-more:hover,
.entry-details h3 a:hover {
  color: var(--primary-color);
}
.entry-details .read-more:hover:before  {
  background-color: var(--primary-color);
}