
main.body-container-wrapper .capabilities-container {
  background-color: #fff;
}

.items {
  max-width: 960px;
  margin-inline: auto;
}

.item-cards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: wrap;
  row-gap: 0px;
}

.item-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 33.333%;
  height: auto;
  background-color: #24314D05;
  border-top: 1px solid rgba(36, 49, 77, 0.25);
  border-right: 1px solid rgba(36, 49, 77, 0.25);
  box-sizing: border-box;
  transition: background-color .25s ease;
  position: relative;
  cursor: pointer;
  min-height: 300px;
}
@supports (aspect-ratio: 1/1) {
  .item-card {
    aspect-ratio: 1/1;
    min-height: unset;
  }
}

.item-card:first-child, .item-card:nth-child(2), .item-card:nth-child(3) {
  border-top: none;
}

.item-card:last-child, .item-card:nth-child(3n) {
  border-right: none;
}

.item-card:hover {
  background-color: #FFFFFF;
  border: 1px solid rgba(36, 49, 77, 0.25);
}

.card-content {
  position: absolute;
  height: calc(100% - 60px);
  width: calc(100% - 80px);
  overflow: auto;
  top: 28px;
  left: 28px;
  background-color: #FFFFFF;
  opacity: 0;
  transition: opacity .25s ease;
  box-sizing: border-box;
  pointer-events: none;
  padding-right: 5px;
}

.card-content::-webkit-scrollbar {
  width: 5px;
}

.card-content::-webkit-scrollbar-thumb {
  background: rgba(36, 49, 77, .5);
  border-radius: 5px;
}
.card-content::-webkit-scrollbar-track {
  background: rgba(36, 49, 77, .1);
  border-radius: 5px;
}

.card-footer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}

.item-card img {
  height: auto;
  width: 60px;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: top center;
}

.item-card p {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
}

.item-card .title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: #24314D;
  padding-right: 15px;
/*   cursor: pointer; */
}

.expand-button {
  width: 12px;
  height: 20px;
  display: block;
/*   cursor: pointer; */
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAyMCAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwIDJMMTAgMTJMLTQuMzcxMTRlLTA3IDJMMS43NzUgMC4yMjVMMTAgOC40NUwxOC4yMjUgMC4yMjVMMjAgMloiIGZpbGw9IiMwMDVCOTYiLz4KPC9zdmc+Cg==")
}

.item-card.expanded {
  background-color: #FFFFFF;
}

.item-card.expanded .card-content {
  opacity: 1;
  pointer-events: all;
}

.item-card.expanded .expand-button {
  transform: rotate(180deg);
}

@media only screen and (max-width: 1024px) {
  .item-cards {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
  .item-card {
    width: 100%;
    border: 1px solid rgba(36, 49, 77, 0.04)!important;
    aspect-ratio: unset;
    flex-direction: column;
    row-gap: 32px;
  }
  .item-card.is-active {
    background-color: #FFFFFF;
  }
  .item-card.is-active .expand-button {
    transform: rotate(180deg);
  }
  .accordion-content {
    background-color: transparent;
    border: none;
    padding: 0;
  }
  .card-content {
    opacity: 1;
    position: relative;
    height: 100%;
    width: 100%;
    top: unset;
    left: unset;
    background: transparent;
    overflow: hidden;
  }
  .accordion-title {
    border: none!important;
    padding: 0;
    display: flex;
    flex-direction: row;
    column-gap: 56px;
    align-items: center;
  }
  .card-footer {
    width: 100%;
  }
  .accordion-title::before {
    display: none!important;
  }
  .accordion-title:hover, .accordion-title:focus {
    background-color: transparent;
  }
}

/* @media only screen and (min-width: 40em) {
  .item-card {
    width: 50%;
    border: 1px solid rgba(36, 49, 77, 0.04)!important;
  }
  .item-cards {
    row-gap: 20px;
  }
} */

@media only screen and (min-width: 64em) {
  .item-card {
    width: 33.333%;
  }
  .item-cards {
    row-gap: 0px;
  }
}