.main-facts {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #121217;
}


.main-facts__title {
  font-family: 'WalsheimPro Regular', sans-sarif, serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 6px;
}

.main-facts__description {
  font-size: 20px;
  font-weight: 300;
  line-height: 110%;
  max-width: 620px;
  margin-bottom: 49px;
  text-align: center;
}

.main-facts__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.main-fact {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  padding: 16px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(18, 18, 23, 0) 0%, rgba(18, 18, 23, 0.7) 100%) no-repeat center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.main-fact:before{
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(18, 18, 23, 0) 0%, rgba(18, 18, 23, 0.7) 100%);
}

.main-fact__indicator {
  font-size: 16px;
  line-height: 110%;
  width: fit-content;
  margin-bottom: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  background-color: #ffffff;
  z-index: 1;
}

.main-fact__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  color: #ffffff;
  z-index: 1;
}


