/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.section-numbers {
  background-color: var(--sk-color-seven);
  color: var(--sk-color-white);
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .section-numbers {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 512px) {
  .section-numbers {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.section-numbers.section-light {
  background-color: var(--sk-color-four);
}
.section-numbers__items {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .section-numbers__items {
    flex-wrap: wrap;
    row-gap: 24px;
  }
}
@media (max-width: 512px) {
  .section-numbers__items {
    flex-direction: column;
    align-items: center;
  }
}
.section-numbers__item {
  width: 100%;
  max-width: 410px;
  padding: 0 30px;
  min-height: 231px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-numbers__item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .section-numbers__item {
    padding: 0 10px;
    flex-basis: 50%;
  }
  .section-numbers__item:nth-child(even) {
    border-right: none;
  }
}
@media (max-width: 512px) {
  .section-numbers__item {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .section-numbers__item:not(:last-child) {
    border-right: none;
  }
}
.section-numbers__title {
  font-size: 75px;
  line-height: 1;
  font-weight: 400;
  color: var(--sk-color-primary);
  margin-bottom: 20px;
  font-family: var(--sk-font-secondary);
}
.section-light .section-numbers__title {
  color: var(--sk-color-white);
}
@media (max-width: 768px) {
  .section-numbers__title {
    margin-bottom: 5px;
  }
}
@media (max-width: 512px) {
  .section-numbers__title {
    font-size: 32px;
  }
}
.section-numbers__subtitle {
  color: var(--sk-color-primary);
  text-transform: uppercase;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 18px !important;
}
.section-light .section-numbers__subtitle {
  color: var(--sk-color-white);
}
@media (max-width: 768px) {
  .section-numbers__subtitle {
    margin-bottom: 5px !important;
  }
}
@media (max-width: 512px) {
  .section-numbers__subtitle {
    font-size: 12px;
    line-height: 18px;
  }
}
.section-numbers__content {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  max-width: 249px;
  text-align: center;
  margin: 0 auto;
}
.section-light .section-numbers__content {
  opacity: 0.7;
}
