.fv_section {
  opacity: 0;
  transition: opacity 0.2s ease-in;
}
.fv_section.visible {
  opacity: 1;
}






.fv_section {
  width: 100%;
  margin: 4rem 0;
  position:relative;
}
.fv_section .swiper-container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /*   overflow: hidden; */
}

.fv_section .swiper-slide {
  aspect-ratio: 16 / 9;
  height: fit-content;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  transform: translate(-50%, 0);
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;

  gap: 0.5rem;
  flex-shrink: 0;
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: inset 0 -20px 20px -10px rgba(0, 0, 0, 0.7);
}

.fv_section .swiper-slide img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -2;
  aspect-ratio: 16 / 9;
}


.fv_section .swiper-slide .inside_shadow{
  background: linear-gradient(172deg, rgba(51, 51, 51, 0) 8.1%, #333 94.61%);
  height: 100%;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.4rem;
}
}
.fv_section .swiper-slide .inside_shadow:hover{
  opacity: .7;
}


.fv_section .swiper-slide h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: var(--white, #fff);
  /*   text-align: center; */
  text-overflow: ellipsis;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: transparent;
  width: fit-content;
}
.fv_section .swiper-slide p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  align-self: stretch;
  overflow: hidden;
  color: var(--white, #fff);
    text-align: left;
  text-overflow: ellipsis;
  font-size: 1.4rem;
  font-weight: 400;
}

.fv_section .swiper-navigation {
  width: 47%;
  display: flex;
  pointer-events: auto;
  z-index: 10;
  margin: 0 auto;
  position: absolute;
  z-index: 10;
  bottom: 50%;
  right: 50%;
  transform: translateX(-50%);
  transform: translate(50%);
}

.fv_section .swiper-button-next,
.fv_section .swiper-button-prev {
  background-color: transparent !important;
  border: none !important;
  cursor: pointer;
  width: clamp(3rem, 2vw + 1rem, 8rem);
  height: auto;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  position: absolute;
}

.fv_section .swiper-button-next {
  outline: none;
}

.fv_section .swiper-button-prev {
  outline: none;
}

.fv_section .swiper-button-next img,
.fv_section .swiper-button-prev img {
  width: 100%;
  height: auto;
  border: .1rem solid var(--accent, #50618a);
  background: var(--white, #fff);
  border-radius: 50%;
}

.fv_section .swiper-button-next:hover,
.fv_section .swiper-button-prev:hover {
  opacity: 0.7;
}


.fv_section .swiper-slide-active {
  transform: scale(100%) !important;
}

.fv_section .swiper-slide-prev,
.fv_section .swiper-slide-next {
  transform: scale(92%) !important;
  opacity: 0.6;

}



.fv_section .swiper-pagination {
  position: absolute !important;
  bottom: -3rem !important;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  z-index: 10;
}


.fv_section .swiper-pagination-bullet {
  width: 1.4rem ;
  height: 1.4rem ;
  background-color: var(--white, #fff) !important;
  border-radius: 50%;
  border: 0.1rem solid var(--line, #d1d1d1);
  margin: 0 !important;
  opacity: 1 !important;
  transition: background-color 0.3s;
}

.fv_section .swiper-pagination-bullet-active {
  border: .1rem solid var(--accent, #50618a);
  background: var(--accent, #50618a) !important;
}

.fv_section .swiper-button-next::after,
.fv_section .swiper-button-prev::after {
  content: none !important;
}


@media (max-width: 768px) {
  .fv_section .swiper-slide .inside_shadow {
    padding: 1rem;
  }

  .fv_section .swiper-slide {
        border-radius: 1rem;
  }
  .fv_section .swiper-slide h3 {
    font-size: 1.6rem;
  }
  .fv_section .swiper-slide p {
    font-size: 1.2rem;
  }
  .fv_section .swiper-slide-active {
    /*     width: 70%; */
  }


  .fv_section .swiper-button-next {
    right: 0 !important;
  }
  .fv_section .swiper-button-prev {
    left: 0 !important;
  }

}

@media (max-width: 500px) {
  .fv_section .swiper-slide {
    border-radius: 1rem;
  }
  .fv_section .swiper-navigation {
    width: 75%;
  }
  .fv_section .swiper-button-next,
  .fv_section .swiper-button-prev {
    width: clamp(3rem, 2vw + 1rem, 5rem);
  }
  .fv_section .swiper-pagination-bullet{
    width: .8rem;
    height: .8rem;
  }

  .fv_section .swiper-slide-active {
    transform: scale(102%) !important;
  }

  .fv_section .swiper-slide-prev,
  .fv_section .swiper-slide-next {
    transform: scale(90%) !important;
  }
  .fv_section {
      margin: 0 0 4rem;
  }

}
