.service {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 10rem;
  overflow: hidden;
  container-type: inline-size;
}
.service .breadcrumb {
  max-width: 100rem;
  width: calc(100% - 6rem);
  margin: 0 auto 1.5rem;
}
.service .page-banner {
  max-width: 100rem;
  width: calc(100% - 6rem);
  margin: 0 auto;
}
.service .section-intro {
  margin: 5rem auto 6rem;
}
.service .section-heading {
  max-width: 100rem;
  width: calc(100% - 6rem);
  margin: 0 auto 2.5rem;
}
.service_list {
  max-width: 100rem;
  width: calc(100% - 6rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@container (max-width: 70rem) {
  .service_list {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  background: #FBFBFB;
  border-radius: 2rem;
  padding: 7rem 4rem 9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: -5px 5px 10px rgba(76, 172, 226, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.7rem;
  height: 100%;
  background: #4CACE2;
  border-radius: 2rem 0 0 2rem;
  z-index: 2;
}
.service-card--small {
  min-height: 38.7rem;
  padding-top: 8rem;
}
.service-card_logo {
  width: 24rem;
  height: 7rem;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card_logo_pic {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.service-card_logo--gov {
  width: 28rem;
}
.service-card_desc {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #707070;
  flex-grow: 1;
  margin-bottom: 1rem;
}
.service-card_button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
  height: 5rem;
  padding: 0 1.6rem 0 4rem;
  background: #FFFFFF;
  border: none;
  border-radius: 2.5rem;
  box-shadow: 0 0 5px rgba(80, 80, 80, 0.4);
  font-size: 1.8rem;
  font-weight: 700;
  color: #707070;
  letter-spacing: 0.05em;
  line-height: 1.444;
  text-align: right;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.service-card_button:hover:not(:disabled) {
  transform: translateY(-0.1rem);
  box-shadow: 0 0.4rem 1rem rgba(80, 80, 80, 0.25);
}
.service-card_button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.service-card_button {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
}
.service-card_button_icon {
  font-size: 2.4rem;
  color: #4CACE2;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.service-card:hover {
  transform: translateY(-0.3rem);
  box-shadow: -0.5rem 1rem 2rem rgba(76, 172, 226, 0.3);
}
.service-card:hover .service-card_button_icon {
  transform: translateX(0.4rem);
}

/*# sourceMappingURL=service.css.map */
