.petopia_K9mQ2 {
  --theme_color_soft_bg: color-mix(in srgb, var(--theme_color) 16%, #fff);
  --theme_color_soft_border: color-mix(in srgb, var(--theme_color) 16%, #fff);
  --theme_color_page_bg: color-mix(in srgb, var(--theme_color) 4%, #fff);
  box-sizing: border-box;
  min-height: 66.2rem;
  margin: var(--margin_tb) 0;
  padding-top: 16rem;
  padding-bottom: 16rem;
  
  overflow: hidden;
  background: var(--theme_color_page_bg);
  color: #1c103b;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}

.petopia_K9mQ2 *,
.petopia_K9mQ2 *::before,
.petopia_K9mQ2 *::after {
  box-sizing: border-box;
}

.petopia_K9mQ2__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 137rem;
  max-width: var(--custom-content-max-width);
  min-height: 34.2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-left: var(--padding_lr);
  padding-right: var(--padding_lr);
}

.petopia_K9mQ2__header {
  margin-bottom: 6rem;
}

.petopia_K9mQ2__eyebrow {
  margin: 0;
  color: var(--theme_color);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.petopia_K9mQ2__title {
  margin: 1.5rem 0 0;
  color: #0e081e;
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1.1;
}

.petopia_K9mQ2__subtitle {
  margin: 1.5rem 0 0;
  color: #1c103b;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}

.petopia_K9mQ2__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
}

.petopia_K9mQ2__column {
  min-width: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  animation: petopia_K9mQ2_zoomIn 1.25s both;
}

.petopia_K9mQ2__column:nth-child(2),
.petopia_K9mQ2__column:nth-child(4) {
  animation-duration: 2s;
}

.petopia_K9mQ2__card {
  position: relative;
  min-height: 15.85rem;
  padding: 3.8rem 2rem 3rem;
  background: #fff;
  border: .2rem solid var(--theme_color_soft_border);
  border-radius: .8rem;
  text-align: center;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
}

.petopia_K9mQ2__card:hover {
  border-color: var(--theme_color);
}

.petopia_K9mQ2__icon {
  position: absolute;
  top: -3.1rem;
  left: 50%;
  display: inline-flex;
  width: 6.2rem;
  height: 6.2rem;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  border-radius: 50%;
  background: var(--theme_color_soft_bg);
  color: var(--theme_color);
  transform: translateX(-50%);
  transition: .3s;
}

.petopia_K9mQ2__icon i {
  display: block;
  width: 3rem;
  height: 3rem;
  color: inherit;
  font-size: 3rem;
  line-height: 3rem;
  text-align: center;
}

.petopia_K9mQ2__card-title {
  margin: 0 0 1rem;
  color: #1c103b;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.petopia_K9mQ2__card-text {
  margin: 0;
  color: #1c103b;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.petopia_K9mQ2__card-text-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.petopia_K9mQ2__card-text-link:hover,
.petopia_K9mQ2__card-text-link:focus {
  color: var(--theme_color);
}

@keyframes petopia_K9mQ2_zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1500px) {
  .petopia_K9mQ2__inner {
    max-width: var(--custom-content-max-width);
  }
}

@media (max-width: 1024px) {
  .petopia_K9mQ2 {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .petopia_K9mQ2__inner {
    max-width: var(--custom-content-max-width);
  }

  .petopia_K9mQ2__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 5.6rem;
  }
}

@media (max-width: 767px) {
  .petopia_K9mQ2 {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 8rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .petopia_K9mQ2__inner {
    min-height: auto;
  }

  .petopia_K9mQ2__title {
    font-size: 3.8rem;
    line-height: 1.105;
  }

  .petopia_K9mQ2__header {
    margin-bottom: 5.5rem;
  }

  .petopia_K9mQ2__grid {
    grid-template-columns: 1fr;
  }
}
