.stats {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 100px 0 60px;
}
@media (max-width: 991px) {
  .stats {
    padding: 40px 0;
  }
}
.stats:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #262626 20%, rgba(38, 38, 38, 0) 100%);
}
.stats .main-container {
  z-index: 2;
}
.stats .stats__title {
  font-weight: 500;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .stats .stats__title {
    margin-bottom: 30px;
  }
}
.stats .stats__title.stats__title_secondary {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .stats .stats__title.stats__title_secondary {
    margin-bottom: 20px;
  }
  .stats .stats__title.stats__title_secondary br {
    display: none;
  }
}
@media (max-width: 575px) {
  .stats .stats__title br {
    display: none;
  }
}
.stats .stats__content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .stats .stats__content {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .stats .stats__content {
    gap: 30px;
    margin-bottom: 30px;
  }
}
.stats .stats-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-m, 10px);
  padding: 20px;
}
@media (max-width: 991px) {
  .stats .stats-card {
    width: calc(50% - 10px);
  }
}
@media (max-width: 575px) {
  .stats .stats-card {
    width: 100%;
    height: 165px;
    gap: 10px;
  }
}
.stats .stats-card.stats-card_figure {
  background: url("../images/crew-bg.webp") no-repeat center;
  background-size: 700px;
  background-position-y: -90px;
  background-position-x: 96%;
  animation: infinityMove 100s infinite;
}
@media (min-width: 576px) and (max-width: 991px) {
  .stats .stats-card.stats-card_figure {
    width: 100%;
    order: 3;
    background-size: 1000px;
  }
}
@media (max-width: 575px) {
  .stats .stats-card.stats-card_figure {
    background-size: 850px;
  }
}
.stats .stats-card.stats-card_figure .stats-card__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
@media (min-width: 576px) and (max-width: 991px) {
  .stats .stats-card.stats-card_figure .stats-card__image {
    width: 400px;
  }
}
@media (max-width: 575px) {
  .stats .stats-card.stats-card_figure .stats-card__image {
    width: 90%;
  }
}
.stats .stat-card__value {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  width: fit-content;
  height: 50px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: #000;
  background: var(--yellow, #fed700);
}
@media (max-width: 1199px) {
  .stats .stat-card__value {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .stats .stat-card__value {
    min-width: 100px;
    height: 37px;
    font-size: 24px;
  }
}
.stats .stat-card__value::before, .stats .stat-card__value::after {
  content: '';
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  background: var(--yellow, #fed700);
  z-index: 1;
}
@media (max-width: 1199px) {
  .stats .stat-card__value::before, .stats .stat-card__value::after {
    width: 50px;
  }
}
.stats .stat-card__value::before {
  left: -69px;
  clip-path: polygon(50% 0, 100% 0%, 100% 51%, 100% 100%, 0 100%, 90% 66%);
}
@media (max-width: 1199px) {
  .stats .stat-card__value::before {
    left: -49px;
  }
}
.stats .stat-card__value::after {
  right: -69px;
  clip-path: polygon(85% 0, 5% 30%, 45% 100%, 0 100%, 0 0);
}
@media (max-width: 1199px) {
  .stats .stat-card__value::after {
    right: -49px;
  }
}
.stats .stat-card__text {
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 991px) {
  .stats .stat-card__text {
    height: 85px;
  }
}
@media (max-width: 7676px) {
  .stats .stat-card__text {
    height: 65px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .stats .stat-card__text {
    height: unset;
    font-size: 19px;
    line-height: 1.3;
  }
}
.stats .stats__btn {
  max-width: fit-content;
  padding: 11px 70px;
  margin: 0 auto 30px;
}
@media (max-width: 575px) {
  .stats .stats__btn {
    max-width: 100%;
    padding: 12px 20px;
  }
}
.stats .stats__subtitle {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}
.stats .stats__subtitle b {
  font-weight: 700;
}
@media (max-width: 991px) {
  .stats .stats__subtitle br {
    display: none;
  }
}

/*# sourceMappingURL=stats.css.map */
