/***** Vistra Design System *****/
/************************************/
/* 16px */
/* 24px */
/***** START: New theme variables *****/
/************************************/
/***** END: New theme variables ******/
/************************************/
.js-animate-text,
.js-animate-grid-item {
  visibility: hidden;
}

.is-tab-two-or-three .js-animate-grid-item {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.service-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  height: 100%;
  box-sizing: border-box;
  --card-bg-color: #E4E8EF;
  --card-text-color: #2A2A2A;
  background-color: var(--card-bg-color);
  color: var(--card-text-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 26, 91, 0.15);
  pointer-events: none;
  border-radius: 1rem;
}
.service-card:active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 26, 91, 0.25);
  pointer-events: none;
  border-radius: 1rem;
}
.service-card--bg-bold {
  --card-bg-color: #E4E8EF;
}
.service-card--bg-gradient {
  background: linear-gradient(277deg, #0909B7 26.64%, #040451 97.98%);
  --card-text-color: #FFF;
}
.service-card--bg-gradient2 {
  background: linear-gradient(76deg, #97E3FF -5.58%, #0909B7 102.54%, #001A5B 122.02%);
  --card-text-color: #FFF;
}
.service-card__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: transparent;
  --card-text-color: #FFF;
}
.service-card__bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 100%);
}
.service-card__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px;
  gap: 24px;
  -ms-flex-positive: 1;
  flex-grow: 1;
  z-index: 1;
  position: relative;
}
.service-card__text-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.service-card__title {
  margin: 0;
  color: var(--card-text-color);
}
.service-card__text {
  margin: 0;
  color: var(--card-text-color);
}
.service-card__text p {
  margin-block: 0;
}
.service-card__actions {
  margin-top: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
}
.service-card__actions a {
  border-radius: 999px;
}
@media all and (min-width: 64em) {
  .service-card--type-horizontal {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .service-card--type-horizontal .service-card__content {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .service-card--type-horizontal .service-card__text-group {
    -ms-flex: 1;
    flex: 1;
    padding-right: 24px;
    gap: 24px;
  }
  .service-card--type-horizontal .service-card__actions {
    margin-top: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .service-card--type-horizontal .service-card__actions button {
    border-radius: 999px;
  }
}
/*# sourceMappingURL=service-card.css.map */
