.alsman-slider-section {
  padding: 60px 0 40px 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
}
.alsman-slider-section .alsman-slider-title {  
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  letter-spacing: 0.5px;
}
.alsman-slider-section .alsman-slider-list {
  width: 90%;
  overflow: hidden;
}
.alsman-slider-section .alsman-slider-list .swiper-wrapper {
  display: flex;
}
.alsman-slider-section .alsman-slider-list .swiper-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.alsman-slider-section .alsman-slider-list .swiper-slide a{
  pointer-events: none;
}
.alsman-slider-section .alsman-slider-list .swiper-slide img {
  display: block;
  width: 100%;
  height: 420px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
}
.alsman-slider-section .alsman-slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 90% !important;
  height: 2px !important;
  margin: 36px auto 0 auto;
  background: transparent;
  box-sizing: border-box;
}
.alsman-slider-section .alsman-slider-pagination::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--color-primary);
  opacity: 0.3216;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--button-radius);
}
.alsman-slider-section .alsman-slider-pagination .swiper-pagination-progressbar-fill {
  background: var(--color-primary);
  border-radius: var(--button-radius);
  opacity: 1;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.3s;
  z-index: 1;
}
@media (max-width: 1200px) {
  .alsman-slider-section .alsman-slider-list .swiper-slide img {
    height: 320px;
  }
  .alsman-slider-section .alsman-slider-title {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .alsman-slider-section .alsman-slider-title {
    font-size: 28px;
  }
  .alsman-slider-section .alsman-slider-list .swiper-slide img {
    height: 220px;
  }
  .alsman-slider-section .alsman-slider-pagination {
    width: 180px;
  }
  .alsman-slider-section .alsman-slider-title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .alsman-slider-section {
    padding: 24px 0 16px 0;
  }
  .alsman-slider-section .alsman-slider-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .alsman-slider-section .alsman-slider-list .swiper-slide img {
    height: 120px;
  }
  .alsman-slider-section .alsman-slider-pagination {
    width: 100px;
  }
}
@media (max-width: 900px) {
  .alsman-slider-section .alsman-slider-pagination {
    width: 60%;
  }
}
@media (max-width: 600px) {
  .alsman-slider-section .alsman-slider-pagination {
    width: 36%;
  }
}
