#service {
  .btn-primary-large {
    position: relative;

    @media (width>=992px) {
      &::after {
        content: "";
        display: flex;
        top: 50%;
        height: 1px;
        position: absolute;
        background: #5f5e5e;
        transform: translateY(-50%);
        z-index: -1;
        width: 35vw;
        right: 0;
      }
    }
  }

  .btn-card {
    &:hover {
      color: var(--color-secondary) !important;
      font-weight: 500;

      svg {
        circle {
          stroke: var(--color-secondary);
        }

        path {
          fill: var(--color-secondary);
        }
      }
    }

  }

  .card-title{
    max-height: 60px;
    height: unset;
  }
}