.card-service {
  background: #fff;
  padding: 2rem;
  width: 100%;
  border-radius: 80px 20px 20px 20px;
  @media (width>=768px) {
    padding: 3rem;
    padding-top: 3.5rem;
    padding-bottom: 1.5rem;
  }
  hr {
    border-top: 1px solid #ddeade;
    opacity: 1;
    width: 80%;
  }
  ul {
    li{
        list-style: none;
    }
    a {
      display: flex;
      justify-content: center;
      color: #909090;
      font-family: var(--font-family-manrope);
      font-size: 16px;
      transition: .4s;
      text-align: center;
      &:hover{
        color: var(--color-primary);
      }
      svg {
        display: none;
      }
      @media (width>=768px) {
        text-align: start;
        svg {
          display: block;
        }
        display: grid;
        grid-template-columns: 20px 1fr;
        gap: 10px;
      }
    }
  }
}
