.section-steps__listItem-text {
  font-family: var(--font-family-title);
  font-weight: var(--tg-font-weight-h3);
  font-size: var(--tg-font-size-h3);
  line-height: var(--tg-line-height-h3);
  letter-spacing: var(--tg-letter-spacing-h3);
  color: var(--color-grey-darker);
}

/**
*
* Section: Pricing benefits
*
*/
.section-steps {
  padding: 42px 0;
  overflow-x: clip;
  --marker-size: 96px;
}
@media (min-width: 768px) {
  .section-steps {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .section-steps {
    padding: 30px 0;
    --marker-size: 72px;
  }
}
@media (min-width: 1200px) {
  .section-steps .container {
    width: 1290px;
  }
}
@media (max-width: 767px) {
  .section-steps .container {
    max-width: 500px;
  }
}
.section-steps__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
  align-content: start;
}
@media (max-width: 1199px) {
  .section-steps__inner {
    max-width: 900px;
    margin: 0 auto;
  }
}
.section-steps__list {
  display: grid;
  list-style: none;
  padding: 0;
  gap: 20px;
}
@media (min-width: 768px) {
  .section-steps__list {
    gap: 0;
    grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
  }
}
.section-steps__listItem {
  position: relative;
  display: grid;
  -moz-column-gap: 20px;
  column-gap: 20px;
  align-items: start;
  grid-template-columns: auto 1fr;
}
@media (min-width: 768px) {
  .section-steps__listItem {
    row-gap: 20px;
    padding: 20px;
    grid-row: 1/4;
    grid-template-columns: 1fr;
    grid-template-rows: subgrid;
    justify-items: center;
  }
}
@media (max-width: 767px) {
  .section-steps__listItem {
    align-items: center;
  }
  .section-steps__listItem > * {
    grid-row: 1;
  }
}
.section-steps__listItem[data-color=purple] {
  --bg-color: var(--color-purple-lighter);
  --color: var(--color-purple);
}
.section-steps__listItem[data-color=pink] {
  --bg-color: var(--color-pink-lighter);
  --color: var(--color-pink);
}
.section-steps__listItem[data-color=coral] {
  --bg-color: var(--color-coral-lighter);
  --color: var(--color-coral);
}
.section-steps__listItem[data-color=red] {
  --bg-color: var(--color-red-lighter);
  --color: var(--color-red);
}
.section-steps__listItem[data-color=orange] {
  --bg-color: var(--color-orange-lighter);
  --color: var(--color-orange);
}
.section-steps__listItem[data-color=mustard] {
  --bg-color: var(--color-mustard-lighter);
  --color: var(--color-mustard);
}
.section-steps__listItem[data-color=green] {
  --bg-color: var(--color-green-lighter);
  --color: var(--color-green);
}
.section-steps__listItem[data-color=turquoise] {
  --bg-color: var(--color-turquoise-lighter);
  --color: var(--color-turquoise);
}
.section-steps__listItem[data-color=blue] {
  --bg-color: var(--color-blue-lighter);
  --color: var(--color-blue);
}
.section-steps__listItem[data-color=blueMagent] {
  --bg-color: var(--color-blueMagent-lighter);
  --color: var(--color-blueMagent);
}
.section-steps__listItem:before {
  content: attr(data-symbol);
  display: grid;
  place-items: center;
  font-size: calc(var(--marker-size) * 0.5625);
  line-height: 1;
  color: var(--color);
  background-color: var(--bg-color);
  width: var(--marker-size);
  height: var(--marker-size);
  border-radius: calc(var(--marker-size) / 2);
  margin: 0 auto;
  flex: none;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .section-steps__listItem:before {
    margin: 0;
    grid-column: 1;
    grid-row: 1/3;
  }
}
.section-steps__listItem[data-custom-image]:before {
  content: "";
  font-size: unset;
  background-image: var(--image);
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .section-steps__listItem[data-custom-image]:before {
    background-size: calc(var(--marker-size) / 2);
  }
}
.section-steps__listItem:not(:last-of-type):after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  top: calc(var(--marker-size) / 2 - 1px + 20px);
  width: calc(100% - var(--marker-size));
  left: calc(50% + var(--marker-size) / 2 + 6px);
  height: 4px;
  background-image: linear-gradient(to right, var(--color-grey-light) 50%, transparent 0%);
  background-size: 13.75px 100%;
  background-repeat: repeat-x;
}
@media (max-width: 767px) {
  .section-steps__listItem:not(:last-of-type):after {
    display: none;
  }
}
.section-steps__listItem-title {
  margin: 0;
  line-height: 1.15;
}
@media (max-width: 767px) {
  .section-steps__listItem-title {
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
  }
  .section-steps__listItem-title:has(+ p) {
    grid-row: 1;
    align-self: unset;
  }
}
.section-steps__listItem-text {
  margin: 0;
  font-weight: 500;
  max-width: 260px;
}
.section-steps__listItem-text strong, .section-steps__listItem-text b {
  font-weight: 700;
}
@media (max-width: 767px) {
  .section-steps__listItem-text {
    font-size: 16px;
    line-height: 1.37;
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
  }
  h3 + .section-steps__listItem-text {
    grid-row: 2;
    align-self: unset;
  }
}
.section-steps[data-style=purple] {
  position: relative;
  --background-color: #3C3679;
}
.section-steps[data-style=purple]:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--background-color);
  z-index: -2;
}
.section-steps[data-style=purple] p, .section-steps[data-style=purple] h2, .section-steps[data-style=purple] h3 {
  color: var(--color-white);
  font-weight: 500;
}
.section-steps[data-style=purple] p {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.5;
  text-wrap: pretty;
}
.section-steps[data-style=purple] h3 {
  font-size: 24px;
}
@media (max-width: 767px) {
  .section-steps[data-style=purple] h3 {
    display: grid;
    align-content: end;
    margin-top: calc((var(--marker-size) - 2lh) / 2);
  }
}
@media (max-width: 767px) {
  .section-steps[data-style=purple] .section-steps__list {
    align-items: start;
  }
}
.section-steps[data-style=purple] .section-steps__listItem.section-steps__listItem {
  --bg-color: #fff1;
  --color: var(--color-white);
}
@media (max-width: 767px) {
  .section-steps[data-style=purple] .section-steps__listItem.section-steps__listItem {
    align-items: start;
    align-content: start;
    row-gap: 10px;
    align-self: stretch;
  }
}
.section-steps[data-style=purple] .section-steps__listItem:not(:last-of-type):after {
  --border-color: #fff6;
  height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11' fill='none'%3E%3Cpath fill='%23fff6' d='M.77.66a1 1 0 0 1 1.41 0l4 4a1 1 0 0 1 0 1.41l-4 4A1 1 0 1 1 .77 8.66l3.29-3.3-3.3-3.29a1 1 0 0 1 0-1.41Z'/%3E%3C/svg%3E"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect width='34' height='4' fill='%233C3679'></rect></svg>"), radial-gradient(circle, var(--border-color) 1px, transparent 1px);
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, repeat-x;
  background-size: 7px 11px, 34px 4px, 11.5px 2px;
  width: calc(100% - var(--marker-size) - 24px);
  left: calc((100% + var(--marker-size) + 24px) / 2);
}
@media (max-width: 767px) {
  .section-steps[data-style=purple] .section-steps__listItem:not(:last-of-type):after {
    display: block;
    width: 11px;
    left: calc((var(--marker-size) - 11px) / 2);
    top: calc(var(--marker-size) + 6px);
    height: calc(100% - (var(--marker-size) - 6px));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' fill='none'%3E%3Cpath fill='%23fff6' d='M10.45.66a1 1 0 0 1 0 1.41l-4 4a1 1 0 0 1-1.41 0l-4-4A1 1 0 1 1 2.45.66l3.3 3.29L9.04.65a1 1 0 0 1 1.41 0Z'/%3E%3C/svg%3E"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect width='4' height='34' fill='%233C3679'></rect></svg>"), radial-gradient(circle, var(--border-color) 1px, transparent 1px);
    background-repeat: no-repeat, no-repeat, repeat-y;
    background-size: 11px 7px, 4px 24px, 2px 7px;
  }
}
.section-steps[data-custom-bg=background] {
  position: relative;
}
.section-steps[data-custom-bg=background]:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--default-background);
  z-index: -2;
}
.section-steps[data-custom-bg=background] .section-steps__listItem:not(:last-of-type):after {
  --border-color: #fff6;
  height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11' fill='none'%3E%3Cpath fill='%23fff6' d='M.77.66a1 1 0 0 1 1.41 0l4 4a1 1 0 0 1 0 1.41l-4 4A1 1 0 1 1 .77 8.66l3.29-3.3-3.3-3.29a1 1 0 0 1 0-1.41Z'/%3E%3C/svg%3E"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect width='34' height='4' fill='none'></rect></svg>"), radial-gradient(circle, var(--border-color) 1px, transparent 1px);
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, repeat-x;
  background-size: 7px 11px, 34px 4px, 11.5px 2px;
  width: calc(100% - var(--marker-size) - 24px);
  left: calc((100% + var(--marker-size) + 24px) / 2);
}
@media (max-width: 767px) {
  .section-steps[data-custom-bg=background] .section-steps__listItem:not(:last-of-type):after {
    display: block;
    width: 11px;
    left: calc((var(--marker-size) - 11px) / 2);
    top: calc(var(--marker-size) + 6px);
    height: calc(100% - (var(--marker-size) - 6px));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' fill='none'%3E%3Cpath fill='%23fff6' d='M10.45.66a1 1 0 0 1 0 1.41l-4 4a1 1 0 0 1-1.41 0l-4-4A1 1 0 1 1 2.45.66l3.3 3.29L9.04.65a1 1 0 0 1 1.41 0Z'/%3E%3C/svg%3E"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect width='4' height='34' fill='none'></rect></svg>"), radial-gradient(circle, var(--border-color) 1px, transparent 1px);
    background-repeat: no-repeat, no-repeat, repeat-y;
    background-size: 11px 7px, 4px 24px, 2px 7px;
  }
}
.section-steps[data-custom-txt=colorText] p, .section-steps[data-custom-txt=colorText] h2, .section-steps[data-custom-txt=colorText] h3 {
  color: var(--default_color_text);
  font-weight: 500;
}
/*# sourceMappingURL=section-steps.css.map */
