	/*cookie*/
.consent-btn {
    appearance: none;
    border: 1px solid #e5e7eb!important;
    background: #212121!important;

}

.modal-title {
    color: #000000;
}



.services-cards{
  background: #fff;
}

.services-cards__head{
  text-align: center;
  margin-bottom: 26px;
}

.services-cards__kicker{
  margin: 0 0 6px 0;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.55);
}

.services-cards__title{
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(17,17,17,0.95);
}

.services-cards__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card{
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.service-card__image{
  height: 220px;
  background-size: cover;
  background-position: center;
}

.service-card__content{
  padding: 18px;
}

.service-card__title{
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 900;
  color: rgba(17,17,17,0.94);
}

.service-card__text{
  margin: 0;
  color: rgba(17,17,17,0.68);
  line-height: 1.8;
  font-size: 15px;
}

@media (max-width: 991.98px){
  .services-cards__grid{
    grid-template-columns: 1fr;
  }

  .service-card__image{
    height: 200px;
  }
}
