.dm-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  background-color: #0a0e3d;
}

.dm-hero .swiper {
  width: 100%;
  height: 100%;
}

.dm-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* background image: wrap handles full-width vs contained sizing,
   inner element handles the Ken Burns zoom, so the two transforms never collide */
.dm-slide__bg-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.dm-hero.dm-img-contained .dm-slide__bg-wrap {
  max-width: 100%;
  border-radius: 20px;
}

.dm-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s cubic-bezier(.25, .46, .45, .94);
}

.swiper-slide-active .dm-slide__bg {
  transform: scale(1);
}

.dm-slide__overlay {
  --dm-overlay-start: rgba(8, 10, 60, .92);
  --dm-overlay-end: rgba(60, 55, 160, .35);
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #080A62 0%, rgba(20, 21, 49, 0.4) 100%);

}

/* content: full container width so it lines up with the rest of the page;
   .dm-slide__inner keeps the actual text block a readable size within it */
.dm-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0px;
  box-sizing: border-box;
}

.dm-slide__inner {
  max-width: 640px;
  color: #fff;
}

.dm-anim {
  opacity: 0;
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1), filter .9s cubic-bezier(.16, 1, .3, 1);
}

.dm-badge {
  backdrop-filter: blur(80px);
  box-shadow: 0px 0px 10px 0px #6E70CA inset;

}

.swiper-slide-active .dm-anim {
  opacity: 1;
  transform: none;
  filter: blur(0);

}

/* badge: slides in from the left */
.dm-anim--1 {
  transform: translateX(-26px);
}

.swiper-slide-active .dm-anim--1 {
  transition-delay: .10s;
}

/* heading: rises up while coming into focus (subtle defocus-to-sharp) */
.dm-anim--2 {
  transform: translateY(32px) scale(.97);
  filter: blur(5px);
}

.swiper-slide-active .dm-anim--2 {
  transition-delay: .28s;
}

/* description: gentle rise */
.dm-anim--3 {
  transform: translateY(22px);
}

.swiper-slide-active .dm-anim--3 {
  transition-delay: .50s;
}

/* buttons: each pops in individually, see .dm-ctas .dm-btn below */
.dm-ctas .dm-btn {
  opacity: 0;
  transform: translateY(16px) scale(.94);
  transition: opacity .65s cubic-bezier(.16, 1, .3, 1), transform .65s cubic-bezier(.16, 1, .3, 1);
  backdrop-filter: blur(34px);
}

.swiper-slide-active .dm-ctas .dm-btn {
  opacity: 1;
  transform: none;
}

.swiper-slide-active .dm-ctas .dm-btn:nth-child(1) {
  transition-delay: .70s;
}

.swiper-slide-active .dm-ctas .dm-btn:nth-child(2) {
  transition-delay: .82s;
}

.dm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 13px;
  letter-spacing: .08em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.dm-badge svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.dm-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.26;
  font-size: 60px;
  margin: 0 0 30px;
  color: #fff;
}

.dm-title em {
  font-style: normal;
  color: #b9b3ff;
}

.dm-desc {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, .85);
  max-width: 560px;
  margin: 0 0 50px;
}

.dm-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease;
  white-space: nowrap;
}

.dm-btn:hover {
  transform: translateY(-2px);
}

.dm-btn--primary {
  background: #fff;
  color: #1b1560;
}

.dm-btn--primary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.dm-btn--ghost {
  backdrop-filter: blur(34px)
}

.dm-btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
}

.dm-btn--ghost:hover {
  background: rgba(255, 255, 255, .18);
}

/* nav layer: sits above the swiper, width-matched to the same container so
   arrows and dots line up with the content instead of the browser edge */
.dm-nav-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.dm-nav-inner {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.dm-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease;
  pointer-events: auto;
}

.dm-arrow:hover {
  background: rgba(255, 255, 255, .22);
}

.dm-arrow--prev {
  left: 0;
}

.dm-arrow--next {
  right: 0;
}

.dm-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.dm-pagination {
  position: absolute;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: auto;
}

.dm-hero.dm-pag-left .dm-pagination {
  left: 16%;
  bottom: 79px;

}

.dm-hero.dm-pag-center .dm-pagination {
  left: 50%;
  transform: translateX(-50%);
}

.dm-hero.dm-pag-right .dm-pagination {
  right: 0;
}

.dm-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #7C7FEA80;
  opacity: 1;
  transition: width .4s ease, background .4s ease;
  margin: 0 !important;
}

.dm-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: #9698FF;
}

.dm-pagination .swiper-pagination-bullet-active::after {
  content: "";
  padding: 7px;
  border: 1px solid #9698FF;
  border-radius: 30px;
  width: 22px;
  height: 22px;
  display: block;
  position: absolute;
  top: -7px;
  left: -6px;
}

.dm-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: #7C7FEA80;
  z-index: 3;
}

.dm-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #8b7bff, #fff);
}

@media (max-width: 1919px) {
  .dm-hero.dm-pag-left .dm-pagination {
    left: 16%;
    bottom: 39px;
  }

  .dm-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }

  .dm-pagination .swiper-pagination-bullet-active::after {
    width: 19px;
    height: 19px;
    top: -5px;
    left: -5px;
  }

  .dm-desc {
    margin-bottom: 40px;
  }

  .dm-title {
    margin-bottom: 20px;
  }
}

@media (max-width: 1366px) {
  .dm-hero.dm-pag-left .dm-pagination {
    left: 16%;
    bottom: 39px;
  }

  .dm-desc {
    margin-bottom: 25px;
  }

  .dm-slide__content {
    padding: 0 20px;
  }

  .dm-title {
    font-size: 45px;
  }

  .dm-desc {
    margin-bottom: 30px;
  }
}


@media (max-width: 1024px) {
  .dm-slide__content {
    padding: 0px;
  }

  .dm-hero.dm-pag-left .dm-pagination {
    left: 16%;
    bottom: 20px;
    gap: 15px;
  }

  .dm-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }

  .home_banner .swiper-pagination-bullet-active:after {
    width: 19px;
    height: 19px;
  }

  .dm-desc {
    margin-bottom: 20px;
  }

  .dm-title {
    font-size: 40px;
  }

  .dm-desc {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .dm-hero.dm-pag-left .dm-pagination {
    left: 22%;
    bottom: 20px;
  }

  .dm-slide__content {
    padding: 0 20px;
  }

  .home_banner .swiper-pagination {
    gap: 15px;
  }
}

@media (max-width:768px) {
  .dm-arrow {
    display: none;
  }

  .dm-pagination {
    bottom: 22px;
  }

  .dm-hero.dm-pag-right .dm-pagination {
    right: 20px;
    left: 23%;
  }

  .dm-hero.dm-img-contained .dm-slide__bg-wrap {
    max-width: 100%;
    border-radius: 0;
  }

  .dm-title {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion:reduce) {

  .dm-slide__bg,
  .dm-anim {
    transition: none !important;
  }
}

@media (max-width:768px) {

  .dm-hero.dm-pag-left .dm-pagination {
    left: 40%;
    bottom: 20px;
  }

  .dm-title {
    font-size: 30px;
  }
}

@media (max-width:575px) {

  .dm-hero.dm-pag-left .dm-pagination {
    left: 40%;
    bottom: 15px;
  }

  .dm-title {
    font-size: 26px;
  }
}