.usps {
  position: relative;
}
.usps__sidebar {
  margin-bottom: 2.5rem;
}
.usps__title {
  font-size: 1.875rem;
  line-height: 1.2;
}
.usps__title:not(:last-child) {
  margin-bottom: 1.5rem;
}
.usps__subtitle {
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.usps__text {
  font-size: 0.9375rem;
}
.usps__text strong {
  font-weight: 500;
}
.usps__list {
  position: relative;
  padding: 2.5rem 1.5rem;
  counter-reset: section;
}
.usps__list:before, .usps__list:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  width: 5rem;
  height: 1.375rem;
}
.usps__list:before {
  top: 0;
  left: 0;
  border-top: 0.125rem solid #ffc70b;
  border-left: 0.125rem solid #ffc70b;
}
.bg-gray-light .usps__list:before {
  border-color: #000000;
}
.bg-yellow .usps__list:before {
  border-color: #2e2e2e;
}
.usps__list:after {
  bottom: 0;
  right: 0;
  border-bottom: 0.125rem solid #ffc70b;
  border-right: 0.125rem solid #ffc70b;
}
.bg-gray-light .usps__list:after {
  border-color: #000000;
}
.bg-yellow .usps__list:after {
  border-color: #2e2e2e;
}
.usps__item {
  position: relative;
  margin-bottom: 0.875rem;
}
.usps__item--unordered {
  padding-left: 1.875rem;
}
.usps__item--unordered:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.375rem;
  left: 0.1875rem;
  width: 0.4375rem;
  height: 0.75rem;
  border: 0.125rem solid #ffc70b;
  border-left: none;
  border-top: none;
  transform: rotate(40deg);
}
.bg-yellow .usps__item--unordered:before {
  border-color: #000000;
}
.usps__item--ordered {
  padding-left: 2.25rem;
}
.usps__item--ordered:before {
  counter-increment: section;
  content: counters(section, ".") " ";
  position: absolute;
  top: 0.125rem;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: #000000;
  font-size: 0.9375rem;
  line-height: 1;
  background-color: #ffc70b;
  border-radius: 50%;
}
.bg-yellow .usps__item--ordered:before {
  color: #ffc70b;
  background-color: #2e2e2e;
}
.bg-gray .usps, .bg-gray-dark .usps {
  color: white;
}
@media (min-width: 40rem) {
  .usps__title {
    font-size: 2.5rem;
  }
  .usps__list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .usps__item {
    width: 50%;
  }
}
@media (min-width: 64rem) {
  .usps__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .usps__content {
    flex: 1;
    max-width: 42.5rem;
  }
  .usps__sidebar {
    max-width: 25rem;
    margin-bottom: 0;
    padding-right: 2.5rem;
  }
}
