.alsman-banner {
  position: relative;
  width: 100%;
  height: calc(100vh - 146px);
  min-height: 800px;
  z-index: 2;
  box-sizing: border-box;
  overflow-x: hidden;
}

.alsman-banner .swiper-container {
  height: 100%;
}

.alsman-banner .swiper-slide {
  height: auto;
  position: relative;
}

.alsman-banner li {
  text-align: center;
  overflow: hidden;
  position: relative;
}

.alsman-banner li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.alsman-banner li span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.alsman-banner li span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.alsman-banner .container {
  position: relative;
  height: 100%;
  top: 0;
  z-index: 3;
}

.alsman-banner .banner-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  position: relative;
  z-index: 4;
  padding: 30% 0;
}

.alsman-banner .banner-text {
  flex: 1;
  max-width: 650px;
  text-align: left;
}

.alsman-banner .banner-text h2 {
  font-size:clamp(24px, 3vw, 60px);
  color: #fff;
  line-height: 1.2;
  font-family: var(--title-font-family);
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.alsman-banner .banner-text h2 b {
  padding: 2px 7px;
  font-style: normal;
  background: rgba(255, 255, 255, 0.22);
  font-family: var(--title-font-family);
}

.alsman-banner .banner-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
  /*max-width: 580px;*/
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.alsman-banner .main-href a {
  display: inline-block;
  padding: 18px 40px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-family: var(--title-font-family);
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.alsman-banner .main-href a:hover {
  background: var(--color-second);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.alsman-banner .banner-badge {
  position: absolute;
  right: 36%;
  top: 48%;
  transform: translateY(-50%);
  z-index: 5;
}

.alsman-banner .banner-badge a {
  display: block;
  transition: transform 0.3s ease;
}

.alsman-banner .banner-badge a:hover {
  transform: scale(1.05);
}

.alsman-banner .banner-badge img {
  width: 136px;
  height: 136px;
  object-fit: contain;
  display: block;
  cursor: pointer;
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.alsman-banner .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: auto !important;
  text-align: center;
  z-index: 10;
}

.alsman-banner .swiper-pagination span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 15px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s all;
}

.alsman-banner .swiper-pagination span.swiper-pagination-bullet {
  opacity: 1;
}

.alsman-banner .swiper-pagination span.swiper-pagination-bullet-active {
  background: #fff;
  width: 30px;
}

.alsman-banner .swiper-pagination span:hover {
  opacity: 0.8;
}

.alsman-banner .swiper-pagination span.swiper-pagination-bullet-active:hover {
  opacity: 1;
}

.alsman-banner .width-auto {
  position: relative;
  width: 100%;
}


@media screen and (max-width: 1580px) {

  .alsman-banner .banner-text p {
    font-size: 16px;
  }

  .alsman-banner .banner-badge img {
    width: 130px;
    height: 130px;
  }
  .alsman-banner .banner-badge{right:30%;}
}

@media screen and (max-width: 1280px) {
.alsman-banner{min-height:0;}
.alsman-banner .banner-badge{right:20%;}

}

@media screen and (max-width:992px) {

.alsman-banner{height:auto;}
.alsman-banner .banner-content{padding:20% 0;}
.alsman-banner .banner-text{position:relative;z-index:6;}
.alsman-banner .banner-text h2{margin-bottom: 20px;}
.alsman-banner .banner-text p{font-size: 15px;margin-bottom:0;}
.alsman-banner .banner-badge{right:5%;}
.alsman-banner .banner-badge img {width:110px;height:110px;}
}

@media screen and (max-width:768px){
.alsman-banner .banner-badge{display:none;}
.alsman-banner .banner-text p{font-size:15px;}
}




@media screen and (max-width:480px) {

.alsman-banner{height:320px;}

.alsman-banner .banner-content{padding:0 0 30px;align-items:flex-end;}
.alsman-banner .banner-text p{font-size:14px;}

  .alsman-banner .main-href a {
    padding: 15px 30px;
    font-size: 14px;
  }

  .alsman-banner .banner-badge {
    display: none;
  }
}









