.cards {
  position: relative;
  z-index: 1;
  max-width: 1784px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.cards.small {
  max-width: 1024px;
  text-align: center;
}
.cards.small .header-row {
  flex-direction: column;
}
.cards.small .header-row > div {
  width: 100%;
}
.cards h3.sub-title {
  font-size: 60px;
  line-height: 1.2;
}
.cards .header-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.cards .header-row > div {
  width: calc(50% - 42px);
}
.cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -15px;
}
.cards-row .card {
  background: transparent;
  border: 8px solid var(--dark-blue);
  border-radius: 64px;
  width: calc(33.33% - 30px);
  margin: 0 15px;
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--sky-blue);
}
.cards-4 .cards-row .card {
  width: calc(25% - 30px);
}
.cards.small .cards-row .card {
  width: calc(50% - 30px);
  text-align: left;
  margin-bottom: 30px;
}
.cards-row .card .title {
  color: var(--navy);
  text-transform: uppercase;
}
.cards-row .card .content-wrap {
  background: white;
  padding: 2rem;
  padding-top: 2.5rem;
  height: 100%;
}
.cards .header-row .description strong {
  color: inherit;
  font-weight: 500;
}
.cards .card details {
  margin-bottom: 1rem;
}
.cards .card details:last-child {
  margin-bottom: 0;
}
.cards .card summary {
  font-size: 32px;
  color: var(--navy);
  font-weight: 700;
  display: flex;
}
.cards .card summary .icon {
  font-size: 1.8em;
  color: var(--light-blue);
  line-height: 0;
  transform: translateY(-5px);
  width: fit-content;
  height: fit-content;
}
.cards .card details > summary .icon {
  transition: all 0.2s ease;
}
.cards .card details[open] > summary .icon {
  transform: rotate(90deg) translateX(-10px);
}
.cards .card .accordion-content {
  padding-left: 3rem;
  padding-top: 0.5rem;
}
.cards .card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.cards .card .full img {
  aspect-ratio: unset;
}
.cards .card ul {
  padding-left: 0;
}
.cards .card li {
  display: flex;
  margin-bottom: 0.5rem;
  line-height: 1.25;
  align-items: flex-start;
}
.cards .card li::before {
  background-image: url(https://integritek.site/dev/wp-content/uploads/2023/12/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: '';
  display: inline-block;
  width: 40px;
  min-width: 40px;
  height: 32px;
  margin-right: 0.5rem;
  transform: translateY(-2px);
}
.cards .card li::marker {
  display: none;
}
.cards .card .content h4 {
  padding-top: 1rem;
}
@media (max-width: 1800px) {
  .cards-4 .cards-row .card {
    width: calc(33.333% - 30px);
  }
}
@media (max-width: 1600px) {
  .cards-row .card .title {
    font-size: 28px;
  }
}
@media (max-width: 1400px) {
  .cards-row .card .title {
    font-size: 22px;
  }
  .cards h3.sub-title {
    font-size: 40px;
  }
  .cards-row .card,
  .cards-4 .cards-row .card {
    width: calc(33.333% - 30px);
  }
  .cards .card summary {
    font-size: 24px;
  }
  .cards .card summary .icon {
    transform: translateY(-5px);
  }
  .cards .card summary[open] .icon {
    transform: rotate(90deg) translateX(-5px);
  }
}
@media (max-width: 1200px) {
  .cards-row .card .title {
    font-size: 24px;
  }
  .cards-row .card,
  .cards-4 .cards-row .card {
    width: calc(50% - 30px);
    margin-bottom: 2rem;
    border-radius: 48px;
  }
  .cards {
    padding: 2rem;
  }
}
@media (max-width: 992px) {
  .cards .header-row {
    flex-direction: column;
  }
  .cards .header-row > div {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cards-row .card,
  .cards-4 .cards-row .card,
  .cards.small .cards-row .card {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .cards-row .card .content-wrap {
    padding: 1rem;
    padding-top: 1.5rem;
  }
  .cards-row .card {
    border-width: 5px;
  }
  .card p {
    line-height: 1.2;
  }
}
