.customers-results-wrapper {
  position: relative;
  padding: 9rem 0 15rem;
}
.customers-results-wrapper .s-results__decoration {
  position: absolute;
  right: 0;
  bottom: 15rem;
  z-index: -1;
  width: 58rem;
  max-width: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.customers-results-wrapper .customers-se-header {
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
}
.customers-results-wrapper .customers-se-header > *:last-child {
  margin-bottom:0;
}
.customers-results-wrapper .s-results__decoration svg,
.customers-results-wrapper .s-results__decoration img {
  width:100%;
}
.customers-results-wrapper .card-secondary__inner > * {
  margin-bottom: 1.6rem;
}
.customers-results-wrapper .card-secondary__inner > *:last-child {
  margin-bottom: 0;
}
.customers-results-wrapper .customers-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: 0 calc(1.5rem * -1);
  display: flex;
  flex-wrap: wrap;
  display: grid;
  flex-wrap: initial;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
}
.customers-results-wrapper .customers-grid .customers-item {
  width: 33.3333333333%;
  padding: 0 1.5rem;
  margin-bottom: 3rem;
  flex: initial;
  width: initial;
}
.customers-results-wrapper .card-secondary {
  height: 100%;
  background-color:rgb(61 193 231);
  background-image: linear-gradient(#fff, #ffffff), radial-gradient(circle at top left, rgb(61 193 231), #74cac7);
  background-clip: content-box, border-box;
  background-origin: border-box;
  border: 0.2rem solid transparent;
  border-radius:2.4rem;
}
.customers-results-wrapper .card-secondary__inner {
  display: flex;
  flex-direction: column;
  padding: 3.2rem;
}
.customers-results-wrapper .card-secondary__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  margin-bottom: 3.2rem;
  background: linear-gradient(209.74deg, #1b76d8 -51.9%, #3dc1e7 54.59%, #74cac7 155.22%);
  border-radius: 50%;
}
.customers-results-wrapper .card-secondary__icon svg {
  fill: #fff;
}
.customers-results-wrapper .card-secondary__content {
  display: flex;
  flex-direction: column;
}
.customers-results-wrapper .card-secondary__content > * {
  margin-bottom: 1rem;
}
.customers-results-wrapper .card-secondary__content > *:last-child {
  margin-bottom: 0;
}
.customers-results-wrapper .btn-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #1b76d8;
  background-color: transparent;
  transition: all 0.3s ease;
}
.customers-results-wrapper .btn-link:hover {
  color: #3dc1e7;
}
.customers-results-wrapper .btn-link > * {
  margin-right: 1.2rem;
}
.customers-results-wrapper .btn-link .btn-link__text {
  line-height: 1;
}
.customers-results-wrapper .btn-link .btn-link__arrow {
  flex-shrink: 0;
  fill: currentColor;
  transition: transform 0.3s ease;
}
@media(max-width: 1023px) {
  .customers-results-wrapper {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
  .customers-results-wrapper .customers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .customers-results-wrapper .customers-se-header {
    margin-bottom: 4rem;
  }
  .customers-results-wrapper .s-results__decoration {
    bottom: 10rem;
  }
}
@media(max-width: 767px) {
  .customers-results-wrapper .s-results__decoration {
    display: none;
  }
}
@media(max-width: 667px) {
  .customers-results-wrapper {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
  .customers-results-wrapper .customers-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .customers-results-wrapper .card-secondary__inner {
    padding: 2rem;
  }
}


