#numbers-block {
  position: relative;
  margin-bottom: 135px;
}
#numbers-block .numbers {
  position: absolute;
  display: flex;
  justify-content: space-between;
  top: -75px;
  background-color: #fff;
  box-shadow: 0px 10px 60px -20px rgba(21, 71, 132, 0.2);
  z-index: 2;
  padding: 30px;
  gap: 30px;
  z-index: 2;
}
#numbers-block .numbers .number {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  width: 100%;
}
#numbers-block .numbers .number__title {
  display: flex;
  flex-shrink: 0;
}
#numbers-block .numbers .number .title {
  margin-bottom: 10px;
}
#numbers-block .numbers .number .title * {
  font-size: calcFluidFontSize(30, 40, 320, 1920);
  line-height: 100%;
  font-weight: 700;
  color: #15263C;
}
#numbers-block .numbers .number .caption {
  text-align: center;
}

/*============ MEDIA ==================*/
@media (max-width: 768px) {
  #numbers-block {
    margin-bottom: 200px;
  }
  #numbers-block .numbers {
    flex-wrap: wrap;
  }
  #numbers-block .numbers .number {
    width: calc(50% - 30px);
  }
}
@media (max-width: 576px) {
  #numbers-block {
    margin-bottom: 240px;
  }
}/*# sourceMappingURL=block.css.map */