.numbers-block--wrapper {
  position: relative;
  margin: 70px 0;
}
@media screen and (min-width: 1000px) {
  .numbers-block--wrapper {
    margin: 100px 0;
  }
}
@media screen and (min-width: 1600px) {
  .numbers-block--wrapper {
    margin: 150px 0;
  }
}
.numbers-block--wrapper .background {
  position: absolute;
  z-index: -1;
  left: -11px;
  bottom: -65px;
  width: 100vw;
  max-width: 100vw;
  height: 100%;
  display: block;
}
@media screen and (min-width: 800px) {
  .numbers-block--wrapper .background {
    display: none;
  }
}
.numbers-block--wrapper .background .svg-container {
  display: inline-block;
  position: relative;
  width: 100%;
  vertical-align: middle;
}
.numbers-block--wrapper .background .svg-container .svg-content {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
.numbers-block--wrapper .background-large {
  position: absolute;
  z-index: -1;
  left: -11px;
  top: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100%;
  display: none;
}
.numbers-block--wrapper .background-large .svg-container {
  display: inline-block;
  position: relative;
  width: 100%;
  vertical-align: middle;
}
.numbers-block--wrapper .background-large .svg-container .svg-content {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}

.numbers-block--content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.numbers-block--content .number-items {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  justify-items: center;
  width: 100%;
  gap: 2em 1em;
  max-width: 950px;
}
@media screen and (min-width: 500px) {
  .numbers-block--content .number-items {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
}
@media screen and (min-width: 1600px) {
  .numbers-block--content .number-items {
    margin: 0 0 100px 0;
  }
}
.numbers-block--content .number-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 400px;
}
.numbers-block--content .number-item span {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 80px;
  font-weight: 700;
  background: #aa5adb;
  background-image: linear-gradient(90deg, #aa5adb 15%, #31caa1 59%, #69eba9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.numbers-block--content .number-item p {
  margin: 0;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: #d7d4d9;
}
.numbers-block--content h2 {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-size: calc(30px + 12 * (100vw - 400px) / 1700);
  font-weight: 300;
  color: #aa5adb;
  line-height: 1.1;
  margin-bottom: 40px;
}
@media screen and (min-width: 1600px) {
  .numbers-block--content h2 {
    margin-bottom: 80px;
  }
}
.numbers-block--content a.button {
  display: inline-block;
  position: relative;
  margin: 2rem 0;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 18px;
  color: #19101f;
  text-decoration: none;
  background-color: #69eba9;
}
.numbers-block--content a.button.align-left {
  align-self: flex-start;
}
.numbers-block--content a.button.align-center {
  align-self: center;
}
.numbers-block--content a.button.align-right {
  align-self: flex-end;
}
.numbers-block--content a.button:hover {
  color: #d7d4d9;
  background-color: #19051f;
  transition: all 0.2s ease-in-out;
}
.numbers-block--content a.button:hover:before {
  opacity: 1;
}
.numbers-block--content a.button:before {
  content: "";
  background: linear-gradient(90deg, #6a1b9a, #6126a1, #375abf, #009fe8, #31c3ca, #69eba9, #69eba9, #31c3ca, #009fe8, #375abf, #6126a1);
  position: absolute;
  top: 0px;
  left: 0px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
}
@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/*# sourceMappingURL=numbers-block.css.map */
