.how {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  z-index: 2;
}

.how__swiper {
  padding-bottom: 50px !important;
}

.how__slide {
  display: flex !important;
  align-items: end;
}

.how__title {
  position: absolute;
  z-index: 2;
}

.how__number {
  font-family: 'Bebas-Neue-bold';
  font-size: 300px;
  color: #CED2DE;
}

.how__decription {
  width: fit-content;
  background-color: rgba(229, 233, 240, 0.31);
  border: 1px solid #fff;
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(5px);
  transform: translateX(78px);
}

.how__item {
  width: 50%;
  z-index: 0;
}

.how__img {
  width: 100%;
}

.how__pagination {
  position: absolute;
  bottom: 0px !important;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.how__pagination .swiper-pagination-bullet {
  width: 90px; 
  height: 3px; 
  border-radius: 0;
  background: rgba(205, 210, 216, 1);
  opacity: 1;
  transition: all 0.3s ease;
}

.how__pagination .swiper-pagination-bullet-active {
  background: #FF1493; 
  transform: none; 
}

@media (max-width:1200px) {
  .how {
    padding: 100px 0 64px 0;
  }
}

@media (max-width:768px) {
  .how__title {
    position: relative;
  }
  .how__slide {
    flex-direction: column-reverse;
  }
  .how__item {
    width: 100%;
  }
  .how__number {
    font-size: 120px;
    line-height: 120px;
  }
  .how__decription {
    transform: translateY(-60px) translateX(25px);
  }
}