@keyframes progressbar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.main-block {
  height: 940px;
  position: relative;
  margin-bottom: 25px;
}
.main-block::before {
  content: url("./images/main-before.png");
  position: absolute;
  bottom: 0;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 5;
}
.main-swiper {
  height: 100%;
}
.main-swiper .swiper-wrapper {
  box-sizing: border-box;
}
.main-swiper .swiper-slide {
  height: auto;
}
.main-swiper-pagination {
  position: absolute;
  top: unset;
  bottom: 20px !important;
  left: 50% !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  transform: translateX(-50%);
  z-index: 10;
}
.main-swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  background: transparent;
  position: relative;
  opacity: 1;
  border-radius: 20px;
  margin: 0;
  overflow: hidden;
}
.main-swiper-pagination .swiper-pagination-bullet .progressbar-background {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: var(--bg);
  opacity: 0.25;
}
.main-swiper-pagination .swiper-pagination-bullet .progressbar-cover {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 0%;
  height: 100%;
  background-color: var(--bg);
}
.main-swiper-pagination .swiper-pagination-bullet-active .progressbar-cover {
  animation-name: progressbar;
  animation-duration: 5s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}
.main-item {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  padding-top: 283px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 6.6%, rgba(0, 0, 0, 0) 39.15%);
}
.main-item_content {
  max-width: 1270px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.main-item_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5019607843);
  filter: blur(180px);
  z-index: -1;
}
.main-item_title {
  margin-bottom: 20px;
  text-align: center;
  text-wrap: balance;
  color: var(--bg);
  text-transform: uppercase;
}
.main-item_desc {
  text-align: center;
  text-wrap: balance;
  color: var(--bg);
}
.main-item_button {
  margin: 40px auto 0;
  padding: 15.5px 50px;
}
.main-item_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.main-item_background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.main-item_background img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1200px) {
  .main-block::before {
    content: unset;
  }
}
@media (max-width: 992px) {
  .main-block {
    margin-bottom: 20px;
    height: 83vh;
  }
  .main-item {
    display: flex;
    align-items: center;
    padding: 60px 0;
  }
  .main-item_title {
    margin-bottom: 10px;
  }
  .main-item_button {
    margin-top: 20px;
  }
}/*# sourceMappingURL=block.css.map */