.tcgelements-services-list{
  .item {
    color: #fff;
    padding: 25px 15px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    position: relative;
    .row {
      position: relative;
      z-index: 5;
    }
    &:last-of-type {
      border-bottom: 1px solid rgba(255, 255, 255, .2);
    }
    &:after{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
      background: var(--color-primary);
      transition: all .4s linear;
      z-index: 0;
    }
    .butn{
      margin-left: auto;
      .icon{
        svg{
          width: 30px;
          fill: #fff;
        }
      }
    }
    .title{
      margin: 0;
    }
    .text{
      margin: 0;
    }
    &.active{
      color: #111;

      &:after{
        height: 100%;
      }

      .icon{
        svg{
          fill: #111;
        }
      }

      .text{
        color: #1E1D1E;
      }
    }
  }
}