File: /var/www/linde-ai/html/styles/partials/_product-cards.scss
.product-cards {
  padding: 80px 0 120px;
  &__inner {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex: 2 1 0;
  }
  &__single {
    width: calc(50% - 20px);
    display: flex;
    padding: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-3);
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 37, 63, 0.1);
  }
  &__icon {
    width: 60px;
    height: 60px;
  }
  &__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    h5 {
      text-align: left;
    }
  }
}