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

/* 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);
*/
/* stylelint-disable */
/* Usage Examples
    .my-level-1-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 48px;
        margin: 0 0 0 16px;
    }

    .my-level-2-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 32px; // Don't need to change any settings, will work with any font size automatically
        margin: 0 0 0 16px;
    }

    .my-body-copy-class {
        @include text-crop($line-height: 2); // Larger line height desired, set the line height via the mixin
        font-size: 16px;
    }

    // Sometimes depending on the font-size, the rendering, the browser, etc. you may need to tweak the output. 
    // You can adjust the top and bottom cropping when invoking the component using the $top-adjustment and $bottom-adjustment settings 

    .slight-adjustment-needed {
        @include text-crop($top-adjustment: -0.5px, $bottom-adjustment: 2px);
        font-size: 17px;
    }

    .dont-do-this {
        @include text-crop;
        font-size: 16px;
        line-height: 3; // DO NOT set line height outside of the mixin, the mixin needs the line height value to calculate the crop correctly
    }
*/
.wp-block .section-counter,
.section-counter {
  padding-bottom: var(--padding-mobile);
  position: relative;
  z-index: 1;
}
@media (min-width: 1280px) {
  .wp-block .section-counter,
  .section-counter {
    padding-bottom: var(--padding-desktop);
  }
}
.wp-block .section-counter__header,
.section-counter__header {
  margin-bottom: var(--sk-spacing-35);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .wp-block .section-counter__header,
  .section-counter__header {
    margin-bottom: var(--sk-spacing-25);
  }
}
@media (min-width: 1280px) {
  .wp-block .section-counter__header,
  .section-counter__header {
    margin-bottom: 0;
  }
}
.wp-block .section-counter__title,
.section-counter__title {
  margin-bottom: var(--sk-spacing-25);
  letter-spacing: -0.04em;
  text-align: center;
}
@media (min-width: 1280px) {
  .wp-block .section-counter__title,
  .section-counter__title {
    max-width: 900px;
  }
}
@media (min-width: 1440px) {
  .wp-block .section-counter__title,
  .section-counter__title {
    letter-spacing: -0.05em;
    margin-bottom: var(--sk-spacing-35);
  }
}
@media (min-width: 768px) {
  .wp-block .section-counter__description,
  .section-counter__description {
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .wp-block .section-counter__description,
  .section-counter__description {
    max-width: 900px;
  }
}
@media (min-width: 1024px) {
  .wp-block .section-counter__counter,
  .section-counter__counter {
    display: flex;
    gap: 35px;
  }
}
.wp-block .section-counter__counter-wrapper,
.section-counter__counter-wrapper {
  overflow: hidden;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
@media (min-width: 768px) {
  .wp-block .section-counter__counter-wrapper,
  .section-counter__counter-wrapper {
    max-width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .wp-block .section-counter__counter-wrapper,
  .section-counter__counter-wrapper {
    width: 60%;
    margin: 0;
  }
}
@media (min-width: 1280px) {
  .wp-block .section-counter__counter-wrapper,
  .section-counter__counter-wrapper {
    width: 39%;
  }
}
.wp-block .section-counter__counter-year,
.section-counter__counter-year {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 120px;
  line-height: 140px;
  height: 140px;
  overflow: hidden;
  margin-bottom: var(--sk-spacing-25);
  background-color: var(--sk-color-bg-primary);
}
.section-bg-dark .wp-block .section-counter__counter-year,
.section-bg-dark .section-counter__counter-year {
  background-color: var(--sk-color-bg-second);
}
@media (min-width: 1024px) {
  .wp-block .section-counter__counter-year,
  .section-counter__counter-year {
    width: 35%;
    height: 340px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1280px) {
  .wp-block .section-counter__counter-year,
  .section-counter__counter-year {
    font-size: 240px;
    line-height: 280px;
    height: 480px;
    margin: 0;
    width: 51%;
  }
}
.wp-block .section-counter__year-container,
.section-counter__year-container {
  display: flex;
  justify-content: center;
  height: 140px;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .wp-block .section-counter__year-container,
  .section-counter__year-container {
    height: 280px;
  }
}
.wp-block .section-counter__counter-logos,
.section-counter__counter-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sk-spacing-25);
  margin-bottom: var(--sk-spacing-25);
}
@media (min-width: 1024px) {
  .wp-block .section-counter__counter-logos,
  .section-counter__counter-logos {
    justify-content: flex-start;
  }
}
.wp-block .section-counter__logo svg,
.section-counter__logo svg {
  max-height: 150px;
  min-height: 25px;
  width: auto;
}
.wp-block .section-counter__counter-content,
.section-counter__counter-content {
  background-color: var(--sk-color-bg-primary);
  z-index: 10;
}
.section-bg-dark .wp-block .section-counter__counter-content,
.section-bg-dark .section-counter__counter-content {
  background-color: var(--sk-color-bg-second);
}
.wp-block .section-counter__counter-content:not(:last-child),
.section-counter__counter-content:not(:last-child) {
  margin-bottom: var(--sk-spacing-50);
}
.wp-block .section-counter__counter-content .counter-container,
.section-counter__counter-content .counter-container {
  transition: 1s ease transform;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wp-block .section-counter__counter-content.leave .counter-container,
.section-counter__counter-content.leave .counter-container {
  transform: translateY(-100vh);
}
@media (min-width: 1024px) {
  .wp-block .section-counter__counter-content,
  .section-counter__counter-content {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .wp-block .section-counter__counter-content:not(:last-child),
  .section-counter__counter-content:not(:last-child) {
    margin-bottom: 0;
  }
}
.wp-block .section-counter__counter-title h3,
.section-counter__counter-title h3 {
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  margin-bottom: var(--sk-spacing-25);
}
@media (min-width: 1024px) {
  .wp-block .section-counter__counter-title h3,
  .section-counter__counter-title h3 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: var(--sk-spacing-15);
    text-align: left;
  }
}
.wp-block .section-counter__counter-description p,
.section-counter__counter-description p {
  font-size: 15px;
  line-height: 21px;
}
@media (min-width: 1024px) {
  .wp-block .section-counter__counter-description p,
  .section-counter__counter-description p {
    text-align: left;
  }
}
