.services-wrapper {
  display: flex;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  .services-wrapper {
    flex-direction: column;
  }
}

.services-title {
  font-size: 0.754rem;
  color: var(--brandClr);
  line-height: 100%;
  margin-bottom: 0.8rem;
  font-weight: 700;
  width: 9.13rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .services-title br {
    display: none;
  }
  .services-title{
    width: initial;
  }
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
    .services-cards{
        justify-content: space-between;
    }
}

.service-card {
  width: 6.49rem;
  height: 1.75rem;
  box-shadow: 0px 13px 19px 0px #00000012;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.6rem;
  border-radius: 0.1rem;
}
@media screen and (max-width: 768px) {
  .service-card {
    width: 4.95rem;
    padding:0 .4rem;
    height: 1.045rem;
  }
}

.service-card span {
  font-size: 0.471rem;
}
@media screen and (max-width: 768px) {
  .service-card span {
    font-size: 0.363rem;
  }
}

.service-card .tick-icon {
  height: 0.586rem;
}
@media screen and (max-width: 768px) {
  .service-card .tick-icon {
    height: 0.34rem;
  }
}
