.menu-link-parent-text {
  color: #2a3668 !important;
}

.content-container {
  background-image: none;
  background-color: var(--light-steel-blue);
  color: var(--primary-text-color);
}

.content-wrapper {
  gap: 50px;
  background-image: url("../images/common/bg-section-2026.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.title-text {
  color: var(--primary-text-color);
}

.program-show-img-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0 0 2rem 0;
  align-self: center;
}

.program-show-img-wrapper {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  align-items: flex-start;
  gap: 25px;
  align-self: stretch;
}

.program-show-img-wrapper img {
  object-fit: fill;
  width: 100%;
  height: 300px;
}

.program-show-img-item {
  display: none;
}

.program-show-img-item-mobile {
  display: flex;
  flex-direction: row;
  flex: 1 0 0;
  align-items: flex-start;
  align-self: stretch;
}

.program-show-img-item:hover,
.program-show-img-item-mobile:hover {
  transform: scale(1.01);
  transition: 0.5s cubic-bezier(0.6, 0.03, 0.28, 0.98);
}

.program-show-img-item p:nth-child(1),
.program-show-img-item p:nth-child(2) {
  position: absolute;
  margin: 0;
}

.program-show-img-item p:nth-child(1) {
  font-size: 20px;
  font-weight: bold;
  color: white;
  padding: 1rem;
  top: 1rem;
  text-transform: uppercase;
}

.program-item-title-2 {
  padding: 0.8rem 1rem !important;
}

.program-item-title-5 {
  top: 1.5rem !important;
}

.program-show-img-item p:nth-child(2) {
  font-size: 12px;
  top: 5.3rem;
  padding: 0.1rem 2rem;
}

.program-item-description-1 {
  color: #cb6c36;
}

.program-item-description-2 {
  top: 5rem !important;
}

.program-item-description-3,
.program-item-description-4,
.program-item-description-5 {
  top: 5.5rem !important;
  width: 55%;
  font-size: 11px !important;
  color: #4e8ec5;
}

.program-item-description-3 {
  width: 54%;
  top: 5.2rem !important;
}

.program-item-description-4 {
  color: #aa4c5f;
}

.program-item-description-5 {
  width: 67%;
  top: 6.5rem !important;
}

.list-item-1,
.list-item-2,
.list-item-3 {
  font-size: 12px;
  color: white;
  width: 40%;
  right: 20px;
  text-align: center;
}

.list-item-1 {
  top: 1.2rem;
}

.list-item-2 {
  top: 6.7rem;
}

.list-item-3 {
  top: 12.5rem;
}

.list-parent-4-1,
.list-parent-4-2,
.list-parent-4-3 {
  width: 34% !important;
  right: 15px !important;
}

.list-parent-4-2 {
  top: 7.8rem !important;
}

.list-parent-4-3 {
  top: 13.4rem !important;
}

.list-parent-5-1,
.list-parent-5-2,
.list-parent-5-3 {
  width: 30% !important;
  right: 15px !important;
}

.list-parent-5-1 {
  top: 1.8rem !important;
}

.list-parent-5-2 {
  top: 5.3rem !important;
}

.list-parent-5-3 {
  top: 9rem !important;
}

.contact-person-container {
  display: none;
  width: auto;
  margin: 30px auto;
}

/* Styles for modal */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal content */
.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* Close button */
.close {
  display: flex;
  justify-content: flex-end;
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.red-button {
  width: 250px;
}

.slider {
  width: 70%;
}

.slider img {
  width: 100%;
}

.swiper-pagination {
  position: relative;
  bottom: 0 !important;
}

.carousel-inner {
  width: 100% !important;
}

.carousel-control-prev,
.carousel-control-next {
  display: none !important;
}

.program-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.program-container-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.program-container-item img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.program-container-item img.loaded {
  opacity: 1;
}

.program-container-item.is-loading::before {
  content: "";
  position: absolute;
  top: 12px;
  left: -150%;
  width: 150%;
  height: 99%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shimmer 1.8s infinite;
  z-index: 1;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

/** mobile **/
@media (max-width: 700px) {
  .program-show-img-container,
  .program-show-img-wrapper {
    gap: 1.5rem;
  }

  .program-show-img-wrapper {
    flex-direction: column;
  }

  .program-show-img-wrapper img {
    height: auto;
  }

  .contact-person-container {
    width: 90%;
    margin: 0 auto 10px auto;
    display: none;
  }

  /* Modal content */
  .modal-content {
    margin: 25% auto;
    width: 90%;
  }

  .program-show-img-item {
    display: none;
  }

  .program-show-img-item-mobile {
    display: flex;
    flex-direction: column;
  }

  .mobile-flex-column {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .slider {
    width: 100%;
  }

  .swiper-button-prev-mobile,
  .swiper-button-next-mobile {
    display: none;
  }

  .program-container {
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1200px) {
  .program-show-img-container,
  .program-show-img-wrapper {
    gap: 1.5rem;
  }

  .program-show-img-item p:nth-child(1) {
    line-height: 1.5rem;
  }

  .program-show-img-item p:nth-child(2) {
    line-height: 0.8rem;
  }

  .program-show-img-item p:nth-child(1) {
    font-size: 20px;
    padding: 1rem;
    top: 0.5rem;
  }

  .program-item-title-2,
  .program-item-title-3,
  .program-item-title-4 {
    padding: 0.1rem 1rem !important;
    top: 1.5rem !important;
  }

  .program-show-img-item p:nth-child(2) {
    font-size: 12px;
    top: 5.5rem;
    padding: 0.1rem 1.5rem;
  }

  .program-item-description-2 {
    top: 3.7rem !important;
    font-size: 0.73rem !important;
  }

  .program-item-description-3,
  .program-item-description-4 {
    top: 4.2rem !important;
    width: 54%;
    font-size: 0.7rem !important;
    line-height: 0.8rem;
  }

  .program-item-description-4 {
    top: 4.3rem !important;
    width: 60%;
  }

  .program-item-description-5 {
    width: 66% !important;
  }

  .list-item-1,
  .list-item-2,
  .list-item-3 {
    font-size: 12px;
    color: white;
    width: 44%;
    right: 5px;
    text-align: center;
    line-height: 0.9rem;
  }

  .list-item-1 {
    top: 0.8rem;
  }

  .list-item-2 {
    top: 5.3rem;
    width: 41%;
    right: 10px;
  }

  .list-item-3 {
    top: 10.2rem;
  }

  .list-parent-4-1,
  .list-parent-4-2,
  .list-parent-4-3 {
    width: 34% !important;
    right: 13px !important;
  }

  .list-parent-4-2 {
    top: 6rem !important;
  }

  .list-parent-4-3 {
    top: 10.4rem !important;
  }
}

@media screen and (width: 1920px) and (height: 1200px),
  (width: 1920px) and (height: 1080px),
  (width: 1920px) and (height: 618px) {
  .program-show-img-item p:nth-child(1) {
    top: 1.5rem;
  }

  .program-show-img-item p:nth-child(2) {
    font-size: 14px;
    top: 8.3rem;
  }

  .program-item-description-2 {
    top: 5.5rem !important;
  }

  .program-item-description-3,
  .program-item-description-4 {
    top: 5.6rem !important;
    font-size: 13px !important;
  }

  .list-item-1 {
    top: 2rem;
  }

  .list-item-2 {
    top: 8.5rem;
  }

  .list-item-3 {
    top: 15.3rem;
  }

  .list-parent-4-1 {
    top: 2.4rem;
  }

  .list-parent-4-2 {
    top: 9rem !important;
  }

  .list-parent-4-3 {
    top: 15.5rem !important;
  }
}

@media screen and (width: 1280px) and (height: 585px) {
  .program-show-img-item p:nth-child(1) {
    top: 0.7rem;
  }

  .program-show-img-item p:nth-child(2) {
    font-size: 12px;
    top: 6rem;
  }

  .program-item-description-2 {
    top: 4.2rem !important;
    font-size: 10px !important;
  }

  .program-item-description-3,
  .program-item-description-4 {
    top: 4.2rem !important;
    font-size: 10px !important;
    line-height: 0.95rem;
  }

  .list-item-1 {
    top: 0.8rem;
    line-height: 1rem;
  }

  .list-item-2 {
    top: 5.5rem;
    line-height: 1rem;
    width: 39%;
  }

  .list-item-3 {
    top: 10.7rem;
    line-height: 1rem;
  }

  .list-parent-4-1 {
    top: 0.8rem;
  }

  .list-parent-4-2 {
    top: 6.4rem !important;
  }

  .list-parent-4-3 {
    top: 11.3rem !important;
  }
}

.zoom15-wrapper {
  .program-show-img-item {
    p:nth-child(1) {
      top: 0.7rem;
    }

    p:nth-child(2) {
      font-size: 11px;
      top: 4.2rem;
    }
  }

  .program-item-description-2,
  .program-item-description-3,
  .program-item-description-4 {
    font-size: 10px !important;
    line-height: 0.85rem;
  }

  .program-item-description-2 {
    top: 4rem !important;
  }

  .program-item-description-3,
  .program-item-description-4 {
    top: 4.3rem !important;
  }

  .list-item-1,
  .list-parent-4-1 {
    top: 0.8rem;
  }

  .list-item-2 {
    top: 5.5rem;
    width: 39%;
  }

  .list-item-3,
  .list-parent-4-3 {
    top: 10.7rem !important;
  }

  .list-parent-4-2 {
    top: 6.4rem !important;
  }

  .list-parent-5-3 {
    top: 9.3rem !important;
  }

  /* Specific line-height for list items */
  .list-item-1,
  .list-item-2,
  .list-item-3 {
    line-height: 1rem;
  }
}

.zoom15-wrapper-2 {
  .program-show-img-item {
    p:nth-child(1) {
      top: 0.7rem;
    }

    p:nth-child(2) {
      font-size: 11px;
      top: 4rem;
    }
  }

  .program-item-description-2,
  .program-item-description-3,
  .program-item-description-4 {
    font-size: 10px !important;
    line-height: 0.95rem;
  }

  .program-item-description-2 {
    top: 3.8rem !important;
  }

  .program-item-description-3,
  .program-item-description-4 {
    top: 4.3rem !important;
  }

  .program-item-description-4 {
    font-size: 10px !important;
    line-height: 0.8rem !important;
  }

  .list-item-1,
  .list-parent-4-1 {
    top: 0.5rem;
  }

  .list-item-2 {
    top: 5.3rem !important;
    width: 39%;
  }

  .list-item-3,
  .list-parent-4-3 {
    top: 10.5rem !important;
  }

  .list-parent-4-2 {
    top: 5.6rem !important;
  }

  /* Specific line-height for list items */
  .list-item-1,
  .list-item-2,
  .list-item-3 {
    line-height: 1rem;
  }
}
