@-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;
  }
}
.paragraph--program-pathways .field-program-pathway {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.paragraph--program-pathways .field-program-pathway .field__item-pathway {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 1rem);
          flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  margin-bottom: 2rem;
}
@media (max-width: 991.98px) {
  .paragraph--program-pathways .field-program-pathway .field__item-pathway {
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .paragraph--program-pathways .field-program-pathway {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.paragraph--program-pathways .left-grid .text-blue {
  margin-bottom: 30px;
}
.paragraph--program-pathways .left-grid p {
  font-size: 18px;
  line-height: 30px;
}
@media (max-width: 767.98px) {
  .paragraph--program-pathways .left-grid p {
    max-width: 100%;
  }
}
.paragraph--program-pathways .right-grid {
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 22px;
}
.paragraph--program-pathways .right-grid h4 {
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 1.67px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .paragraph--program-pathways .right-grid {
    font-size: 16px;
  }
}
.paragraph--program-pathways .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .paragraph--program-pathways .container {
    padding-right: 70px;
  }
}
@media (max-width: 767.98px) {
  .paragraph--program-pathways .container {
    grid-template-columns: 1fr;
    padding: 0 60px 0 35px;
    gap: 56px;
  }
}
.paragraph--program-pathways .container:has(.right-grid) {
  display: grid;
}
.paragraph--program-pathways .program-feed-grid {
  border-top: 9px solid rgba(211, 222, 233, 0.6);
  padding-top: 14px;
  padding-bottom: 36px;
  display: block;
}
@media (max-width: 767.98px) {
  .paragraph--program-pathways .program-feed-grid {
    padding-bottom: 20px;
  }
}
.paragraph--program-pathways .program-feed-grid .program-cat {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  padding-top: 4px;
}
.paragraph--program-pathways .program-feed-grid .program-info a {
  font-size: 24px;
  font-weight: bold;
  line-height: 34px;
  color: #003A96;
}
.paragraph--program-pathways .program-feed-grid .program-date {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  display: block;
}

.program-pathway-card {
  position: relative;
  height: 100%;
  min-height: 446px;
  background: #F4F4F4;
  padding: 40px 18px 40px 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}
.program-pathway-card.light-blue {
  background-color: #D9F1F1;
}
.program-pathway-card.is-hovered .card-front {
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.program-pathway-card.is-hovered .card-back {
  opacity: 1;
  visibility: visible;
}

.card-side {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-front {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-front .container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 80%;
          flex: 1 1 80%;
}

.card-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 29px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
}
.card-back h3.text-blue {
  margin: 0 0 20px 0;
}
.card-back .field--type-entity-reference-revisions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
@media (max-width: 575.98px) {
  .card-back .field--type-entity-reference-revisions {
    grid-template-columns: 1fr;
  }
}

.paragraph--program-pathways-program {
  display: block;
  height: 100%;
}
.paragraph--program-pathways-program .curriculum-details {
  cursor: pointer;
}

.show-card-front {
  -webkit-transition: none;
  transition: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  z-index: 1;
  cursor: pointer;
}
.prefers-reduced-motion .show-card-front {
  -webkit-transition: none;
  transition: none;
}
.show-card-front:hover, .show-card-front:focus {
  background-color: transparent;
}
.show-card-front:after {
  content: "";
  position: relative;
  top: 6px;
  margin-left: 6px;
  background-image: url(../../../images/expand-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 20px;
  width: 20px;
  display: inline-block;
}

.show-card-front {
  position: absolute;
  bottom: 60px;
  right: 20px;
}
.show-card-front:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.semester-details-container {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.semester-details-container .btn--main.meganav-control {
  padding: 0.625rem 1.25rem;
}

.semester-details {
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  line-height: 34px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.program-pathway-heading {
  margin-bottom: 60px;
}
@media (max-width: 767.98px) {
  .program-pathway-heading {
    margin-bottom: 28px;
  }
}

.program-pathway-body {
  margin-bottom: 20px;
}