.features__area{


  border-radius: 24px;
  background-color: $c-dark3;
  padding: 16px;

  &--item {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    display: flex;
    background-color: $c-dark;
    border-radius: 16px;
    padding: 32px 16px;
    transition: 0.5s all;

    min-height: 320px;

    &:hover {
      background-color: rgba($c-second, 1);
    }

    &--icon {
      padding-bottom: 24px;
    }
    &--title {
      padding-bottom: 24px;
      h4 {
        margin-bottom: 0;
        color: white;
        font-size: 24px;
        font-weight: 600;
        text-transform: uppercase;
      }
    }
    &--tags {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: row;
      flex-wrap: wrap;
      &--badge {
        background-color: rgba(255, 255, 255, 0.06);
        padding: 3px 6px;
        border-radius: 4px;
        margin-bottom: 6px;
        color: white;
        font-size: 14px;
        margin-right: 6px;

        &:last-child {
          margin-right: 0;

        }
      }
    }
  }
}