.devsx-slider {
  box-sizing: border-box;
  width: 100%;
  min-height: 400px;
  aspect-ratio: 449 / 240;
  padding: 16px 0 32px;
}

.devsx-slider .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 8px;

  /* max-height: 726px; */
  overflow: hidden;
  border-radius: 12px;
}

.devsx-slider .swiper-slide img {
  align-self: 400 / 349;
  width: 100%;
  max-width: 100%;
  overflow: hidden;

  /* height: 90%; */
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.devsx-slider .swiper-slide p {
  padding: 0;
  margin: 0;
  font-family: Satoshi-Regular;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: 'liga' off;
  line-height: 1.42; /* 142.857% */
  color: #9B9BA4;
  text-align: center;
}

.devsx-slider .swiper-pagination-bullet {
  background-color: rgb(240 243 250 / 16%);
  opacity: 1;
}

.devsx-slider .swiper-pagination-bullet-active {
  background-color: var(--e-global-opacity-white-064);
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0;
}

@media screen and (max-width:768px) {
  .devsx-slider {
    height: 400px;
    aspect-ratio: initial;
  }
}