@-webkit-keyframes animate-text {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes animate-text {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.program-listing-feed {
  background-color: #F4F4F4;
  position: relative;
  padding: 100px 70px;
  margin: 30px 0;
  display: inline-block;
  width: 100%;
}
@media (max-width: 767.98px) {
  .program-listing-feed {
    padding: 50px 0 20px;
  }
}
.program-listing-feed .left-grid .text-blue {
  margin-bottom: 30px;
}
.program-listing-feed .left-grid p {
  font-size: 18px;
  line-height: 30px;
  max-width: 466px;
}
.program-listing-feed .left-grid a.btn {
  margin-top: 60px;
}
@media (max-width: 767.98px) {
  .program-listing-feed .left-grid a.btn {
    margin-top: 27px;
  }
}
.program-listing-feed.light-blue {
  background-color: #D9F1F1;
}
.program-listing-feed .right-grid {
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 22px;
}
.program-listing-feed .right-grid h4 {
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 1.67px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .program-listing-feed .right-grid {
    font-size: 16px;
  }
}
.program-listing-feed .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .program-listing-feed .container {
    padding-right: 70px;
  }
}
@media (max-width: 767.98px) {
  .program-listing-feed .container {
    grid-template-columns: 1fr;
    padding: 0 60px 0 35px;
    gap: 56px;
  }
}
@media (max-width: 767.98px) {
  .program-listing-feed.gray .container {
    padding: 0 35px 0 60px;
  }
}
.program-listing-feed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 118px;
  width: 50%;
  background-image: url(../../../images/patt-lb.svg);
  background-position: top right;
  opacity: 1;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .program-listing-feed::after {
    content: none;
  }
}
.program-listing-feed.gray::after {
  background-image: url(../../../images/patt-gray.svg);
  left: 50px;
}
.program-listing-feed .program-feed-grid {
  border-top: 9px solid rgba(211, 222, 233, 0.6);
  padding-top: 14px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .program-listing-feed .program-feed-grid {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-bottom: 40px;
  }
}
.program-listing-feed .program-feed-grid .program-cat {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  padding-top: 4px;
}
.program-listing-feed .program-feed-grid .program-info a {
  font-size: 24px;
  font-weight: bold;
  line-height: 34px;
  color: #003A96;
}
.program-listing-feed .program-feed-grid .program-date {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  display: block;
}

.light-blue .program-feed-grid {
  border-color: rgba(180, 218, 218, 0.6);
}