/* Basic layout */
.sce-swiper-wrapper {
  --swiper-navigation-size: 22px;
  --swiper-navigation-color: #008487;
  --swiper-theme-color: #008487;
}

.sce-swiper-wrapper .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.sce-swiper-wrapper .swiper-wrapper { margin-bottom: 50px; }

.sce-slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.sce-slide-inner>.row {
  row-gap: 35px;
}

.sce-slide-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  width: 100%;
}

.sce-slide-inner .sce-slide-image > img {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.sce-slide-main {
  height: 100%;
  display: flex;
  gap:22px;
  flex-direction: column;
  justify-content: flex-end;
}

.sce-slide-title {
  color: #333;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1em; /* 120.792% */
  margin-bottom: 0;
}

.sce-slide-content p:last-child { margin-bottom: 0; }

.sce-slide-main .sce-slide-index {
  font-family: "Manrope", Sans-serif;
  font-size: 75px;
  font-style: normal;
  font-weight: 700;
  line-height: 1em;
  opacity:.5;
  color: var(--swiper-theme-color);
}

/* Arrows (use Elementor/Swiper default icons) */
.sce-swiper-wrapper .swiper-button-prev,
.sce-swiper-wrapper .swiper-button-next {
  position: relative;
  color:var(--swiper-navigation-color);
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.25));
}
/*
.sce-swiper-wrapper .swiper-button-next:after, 
.sce-swiper-wrapper .swiper-button-prev:after {
  font-size: 22px;
}
*/
.sce-pagination{
  display: flex;
  align-items: stretch;
  gap:1rem;
  justify-content: center;
}

.sce-pagination-number.swiper-pagination-bullet {
  border-radius: 0;
  border-top:2px solid currentColor;
  flex: 1 1 60px;
  max-width: 112px;
  height: 2rem;
  text-align: center;
  font-family: "Manrope", Sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  opacity: .5;
  background: transparent;
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  color: var(--swiper-navigation-color);
}

.sce-pagination-number.swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  font-weight: 700;
}

.sce-swiper-container{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap:35px;
}

.sce-swiper-container .swiper {
  flex:1;
} 