.sakete-certificate {
  position: relative;
  padding: var(--spacing-8xl) 0 var(--spacing-9xl) 0;
}

.sakete-certificate .container {
  position: relative;
}

.sakete-certificate .bg {
  position: absolute;
  bottom: 7%;
  transform: translateY(100%);
  left: 0;
  width: 100%;
  z-index: 1;
  object-fit: cover;
}

.sakete-certificate .title-box {
  /* margin-bottom: var(--spacing-4xl); */
  text-align: center;
}
.sakete-certificate-title {
  color: var(--text-color, var(--text-color-lg));
  text-align: center;
}
.sakete-certificate .certificate-content {
  position: relative;
}
.sakete-certificate .certificate-list {
  padding-top: var(--spacing-8xl);
  padding-bottom: var(--spacing-xl);
}
.sakete-certificate-swiper {
  width: 100%;
  /* padding: var(--spacing-4xl) var(--spacing-2xl); */
  overflow: hidden;
}
.sakete-certificate .swiper-wrapper {
  align-items: flex-end;
  display: flex;
}
.sakete-certificate .swiper-slide {
  transform: scale(0.8);
  transform-origin: bottom;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: auto;
  box-sizing: border-box;
  /* width: 277px;
    aspect-ratio: 277/358; */
}
.sakete-certificate .swiper-slide-active {
  transform: scale(1);
  /* width: 370px !important;
    aspect-ratio: 370/479; */
}
.sakete-certificate .swiper-slide-active + .swiper-slide + .swiper-slide {
  transform-origin: left bottom;
}
.sakete-certificate .swiper-slide:has(+ .swiper-slide + .swiper-slide-active) {
  transform-origin: right bottom;
}
.sakete-certificate .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.sakete-certificate .swiper-slide img:hover {
  transform: scale(1.02);
}

@media screen and (max-width: 1500px) {
  .sakete-certificate {
    padding: var(--spacing-8xl) 0 var(--spacing-9xl) 0;
  }
  /* .sakete-certificate .swiper-slide{
        width: 260px;
    }
    .sakete-certificate .swiper-slide-active{
        width: 320px !important;
    } */
}
@media screen and (max-width: 1200px) {
  .sakete-certificate {
    padding: var(--spacing-8xl) 0;
  }
}
@media screen and (max-width: 992px) {
  .sakete-certificate-navigation {
    display: none !important;
  }
  .sakete-certificate .bg {
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .sakete-certificate {
    padding: var(--spacing-6xl) 0;
  }

  .sakete-certificate .swiper-slide {
    transform: scale(1) !important;
    padding-right: 12px;
  }
}
