/**
    Fonts
 */
/**
    Colors
 */
/* Font size */
.tile-flow {
  container: tile-flow/inline-size;
  width: 100%;
}
.tile-flow .tile-flow__items {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0.625rem;
}
.tile-flow .tile-flow__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 2.5rem 4.625rem 3.75rem;
  border-radius: 0.625rem;
}
.tile-flow .tile-flow__heading {
  margin: 0 0 0.875rem;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.125rem;
  color: var(--theme-text, #000000);
}
.tile-flow .tile-flow__text {
  margin-bottom: 1.375rem;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.5rem;
  color: var(--theme-text, #000000);
}
.tile-flow .tile-flow__text > :first-child {
  margin-top: 0;
}
.tile-flow .tile-flow__text > :last-child {
  margin-bottom: 0;
}
.tile-flow .tile-flow__button {
  position: absolute;
  bottom: -1.875rem;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
}
.tile-flow .tile-flow__button .button {
  border: 0.3125rem solid var(--section-bg, #121384);
  min-height: 3.125rem;
}
.tile-flow .tile-flow__button .button i {
  font-size: 0.8125rem;
}
.tile-flow .tile-flow__arrow {
  position: relative;
  z-index: 2;
  flex: 0 0 0;
  width: 0;
  align-self: center;
}
.tile-flow .tile-flow__arrow-box {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.625rem;
  height: 5.625rem;
  border: 0.5rem solid var(--section-bg, #121384);
  border-radius: 0.9375rem;
  transform: translate(-50%, -50%) rotate(45deg);
}
.tile-flow .tile-flow__arrow-box i {
  color: var(--theme-text, #121384);
  font-size: 2.25rem;
  line-height: 1;
  transform: rotate(-45deg);
}
@container tile-flow (max-width: 992px) {
  .tile-flow .tile-flow__items {
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
  }
  .tile-flow .tile-flow__items .tile-flow__item {
    flex-basis: auto;
    padding: 1.875rem 1.875rem 3.125rem 1.875rem;
  }
  .tile-flow .tile-flow__heading {
    font-size: 1.375rem;
    line-height: 1.75rem;
  }
  .tile-flow .tile-flow__text {
    font-size: 0.9375rem;
    line-height: 1.4375rem;
  }
  .tile-flow .tile-flow__arrow-box {
    width: 4.375rem;
    height: 4.375rem;
    border-width: 0.375rem;
  }
  .tile-flow .tile-flow__arrow-box i {
    font-size: 1.875rem;
  }
  .tile-flow .tile-flow__button {
    position: static;
    margin-top: auto;
    transform: none;
  }
  .tile-flow .tile-flow__button .button {
    border: none;
  }
  .tile-flow .tile-flow__arrow {
    width: auto;
    height: 0;
    align-self: stretch;
  }
  .tile-flow .tile-flow__arrow-box {
    width: 4rem;
    height: 4rem;
  }
  .tile-flow .tile-flow__arrow-box i {
    transform: rotate(45deg);
  }
}
@container tile-flow (max-width: 768px) {}