.cta-block {
  padding: clamp(32px, 3.47vw, 50px) 0;
  background-color: transparent;
}
.cta-block__heading {
  font-family: "Integral CF", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.39vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0;
  color: #231f20;
  line-height: 1;
  margin: 0 0 clamp(20px, 2.08vw, 30px);
}
.cta-block__btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: clamp(12px, 1.39vw, 20px);
}
.cta-block__btn-wrap .ov-btn-group {
  justify-content: center;
}
.cta-block--grid .cta-block__grid {
  background-color: #f3f3f3;
  border-radius: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cta-block--grid .cta-block__grid .cta-block__grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  position: relative;
}
.cta-block--grid .cta-block__grid .cta-block__grid-item:not(:nth-child(4n))::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 1px;
  background-color: #231f20;
}
.cta-block--slider .cta-block__splide {
  background-color: #f3f3f3;
  border-radius: 20px;
  overflow: hidden;
}
.cta-block--slider .cta-block__splide .splide__track {
  overflow: hidden;
}
.cta-block--slider .cta-block__splide .splide__list {
  align-items: center;
}
.cta-block--slider .cta-block__splide .splide__arrows,
.cta-block--slider .cta-block__splide .splide__pagination {
  display: none !important;
}
.cta-block--slider .cta-block__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  position: relative;
}
.cta-block--slider .cta-block__slide::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 1px;
  background-color: #231f20;
}
@media (max-width: 767.98px) {
  .cta-block--grid .cta-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-block--grid .cta-block__grid .cta-block__grid-item {
    min-height: 80px;
  }
  .cta-block--grid .cta-block__grid .cta-block__grid-item::after {
    display: none;
  }
  .cta-block--grid .cta-block__grid .cta-block__grid-item:not(:nth-child(2n))::after {
    display: block;
  }
  .cta-block--slider .cta-block__slide {
    min-height: 80px;
  }
}

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