.wows-hero-showcase {
  --slider-height: clamp(350px, 60vw, 700px);
  --content-spacing: clamp(25px, 7vw, 80px);
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.wows-hero-showcase .swiper {
  height: var(--slider-height);
  min-height: var(--slider-height);
}
.wows-hero-showcase.wows-swiper-initialized {
  opacity: 1;
}
.wows-hero-showcase .wows-hero-showcase-content {
  padding: 0 var(--content-spacing);
  position: absolute;
  z-index: 111;
  top: 50%;
  transform: translateY(-50%);
  max-width: 700px;
}
.wows-hero-showcase .wows-hero-showcase-sub-title {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #0d0e10;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}
.wows-hero-showcase .wows-hero-showcase-title {
  position: relative;
  font-size: clamp(24px, 6vw, 48px);
  font-weight: 700;
  color: #0d0925;
  margin: clamp(10px, 2vw, 20px) 0 0;
  text-transform: uppercase;
}
.wows-hero-showcase .wows-hero-showcase-text {
  font-size: clamp(14px, 1vw, 16px);
  color: #414447;
  margin: clamp(10px, 1.5vw, 18px) 0 0;
}
.wows-hero-showcase .wows-hero-showcase-text p {
  margin: 0;
}
.wows-hero-showcase .wows-hero-showcase-readmore {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #3b3f42;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease-in-out;
  margin: 20px 0 0;
}
.wows-hero-showcase .wows-hero-showcase-readmore::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease-in-out;
}
.wows-hero-showcase .wows-hero-showcase-readmore svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: block;
}
.wows-hero-showcase .wows-hero-showcase-readmore:hover::after {
  width: 100%;
}
.wows-hero-showcase .wows-hero-showcase-readmore:hover {
  color: #000;
}
.wows-hero-showcase .wows-hero-showcase-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.wows-hero-showcase .wows-hero-showcase-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.wows-hero-showcase.wows-overlay-enabled .wows-hero-showcase-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.3s ease;
}
.wows-hero-showcase.wows-overlay-enabled.wows-overlay-dark .wows-hero-showcase-image::before {
  background: rgb(0, 0, 0);
}
.wows-hero-showcase.wows-overlay-enabled.wows-overlay-light .wows-hero-showcase-image::before {
  background: rgb(255, 255, 255);
}
.wows-hero-showcase.wows-overlay-enabled.wows-overlay-primary .wows-hero-showcase-image::before {
  background: rgb(74, 144, 226);
}
.wows-hero-showcase .wows-item-match-height--yes .wows-hero-showcase .swiper-slide {
  height: initial;
}
.wows-hero-showcase .wows-navigation-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: var(--content-spacing);
  display: flex;
  align-items: center;
  gap: 15px;
}
.wows-hero-showcase .swiper-pagination {
  position: absolute;
  top: 50%;
  right: var(--content-spacing);
  transform: translateY(-50%);
  z-index: 1;
  bottom: unset !important;
  left: unset !important;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wows-hero-showcase span.swiper-pagination-bullet {
  margin: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #000;
  background: transparent;
  position: relative;
}
.wows-hero-showcase span.swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  border-radius: inherit;
  margin: 2px;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}
.wows-hero-showcase span.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  transform: scale(1);
}