.one-projects-more {
  padding-top: 120px;
}

.one-projects-more-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 30px;
  gap: 30px;
}

.one-projects-more-list {
  padding-top: 60px;
  display: flex;
  align-items: center;
}

.one-projects-more-item {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 240px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.one-projects-more-item:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: all 0.3s;
}
.one-projects-more-item-label {
  font-weight: 400;
  font-size: 10px;
  line-height: 19px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}
.one-projects-more-item-name {
  font-weight: 300;
  font-size: 18px;
  line-height: 145%;
  color: #fff;
}

.one-projects-more-item:hover .one-projects-more-item-content {
  opacity: 1;
  z-index: 1;
  position: relative;
}

.one-projects-more-item-content {
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding-left: 20px;
  height: 100%;
  padding-bottom: 24px;
}

.swiper-pagination {
  position: absolute;
  bottom: 20px !important;
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5490196078);
  width: 4px;
  height: 4px;
  border-radius: 0 !important;
  opacity: 0.8;
  min-width: 4px;
}
.swiper-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: #fff;
}
.swiper-pagination .swiper-pagination-bullet-active::after {
  border-radius: 50%;
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  border: 1px solid #fff;
  top: -11px;
  position: absolute;
  left: -11px;
}

@media screen and (max-width: 992px){
    .one-projects-more-list {
        flex-direction: column;
        padding-top: 50px;
    }
    .one-projects-more-item {
        width: 100%;
    }

    .one-projects-slider .swiper-slide{
      max-width: 100%;
      width: 100%!important;
    }

    .one-projects-slider{
      max-width: 100%;
    }

    .one-projects-more-item-content{
      padding-bottom: 40px;
      padding-right: 20px;
      gap: 8px;
    }
}