.program-slider {
  padding-top: 70px;
  border-top: 1px solid #191919;
  @media (max-width: 1024px) {
    padding-top: 50px;
  }
  @media (max-width: 768px) {
    padding-top: 40px;
  }
  .section-container {
    h2 {
      font-weight: 700;
      text-align: center;
      margin-block: 0 50px;
    }
  }
  .swiper {
    margin-bottom: 14px;
    figure {
      position: relative;
      margin: 11px;
      margin-bottom: 26px;
      padding-top: 70%;
      img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
      }
    }
    h3 {
      font-size: var(--fs-lg);
      text-align: center;
    }

    .text {
      font-size: var(--fs-md);
      text-align: center;
    }
  }

  .navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    div {
      position: relative !important;
      margin-top: 0 !important;

      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid #191919;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      background-color: #fffbf7;
      transition: all 0.2s ease;

      &.disabled {
        opacity: 0.5;
      }
      &::after {
        display: none;
      }

      > svg {
        width: 16px;
        height: 16px;
      }
    }
  }
}
