.section-story {
  height: auto;
  min-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../img/background/storyBackground.jpg");
  background-size: cover;
  background-color: #0e3579;
  background-position: 0% 100%;
  overflow: hidden;
  padding-top: 2rem;
}

.title-story {
  color: #FFDE59;
  font-size: 46px;
  font-weight: 600;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.title-storyTwo {
  color: white;
  font-size: 46px;
  font-weight: 600;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.first-col p,
.second-col p {
  text-align: justify;
  color: white;
  line-height: 1.6;
  font-weight: 400;
}

.desc-story {
  display: flex;
  flex-direction: row;
  padding-top: 1rem;
  justify-content: space-between;
  gap: 4rem;
}

.misi-title {
  color: white;
  padding-top: 1.5rem;
  font-size: 1.4rem;
  font-weight: bold;
}

.desc-misi {
  color: white;
  text-align: justify;
  line-height: 1.6;
}

.container-misiSlider {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  gap: 0;
  padding: 0;
}

.swiper-slide {
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  transform: scale(0.94) !important;
  border: 2px solid #C71F25;
  min-height: 280px;
  padding: 2rem;
  background-color: rgba(199, 31, 37, 0.7) !important;
  border-radius: 1rem;
  backdrop-filter: blur(6px); /* hanya satu saja yang dipertahankan */
  user-select: none;
}


.swiper-slide:hover {
  transition: transform 0.1s ease-in-out, opacity 0.4s ease-in-out;
  transform: scale(1) !important;
  opacity: 1;
  backdrop-filter: blur(10px);
  border: 2px solid white;
}

.container-button {
  display: flex;
  width: 100%;
  gap: 3rem;
  justify-content: end;
  align-items: end;
}

.container-button button {
  padding-top: 4rem;
  background-color: transparent;
  border: none;
  font-size: small;
  color: red;
  font-weight: bold;
  display: block !important;
  position: static !important;
  transform: scale(0.7);
}

.img-visi img {
  position: static;
  width: 100% !important;
  height: auto;
}

.img-visi {
  width: 6% !important;
  height: auto;
  position: static;
  padding-bottom: 1rem;
}

.accent-visi {
  width: 40%;
  position: absolute;
  height: auto;
  right: -1rem;
  top: 1rem;
}

.custom-swiper-button-prev,
.custom-swiper-button-next {
  width: 3%;
}

.buttonSliderMisi {
  display: flex;
  gap: 6px;
  flex-direction: row;
}

.custom-swiper-button-prev img,
.custom-swiper-button-next img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .title-story {
    font-size: 32px;
  }

  .desc-story {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width: 1280px) {
  .section-story {
    min-height: 100vh;
  }
}