/*Font Family SCSS Vars
$primaryFont: "ubuntu", sans-serif;
$secondaryFont: "canada-type-gibson";
$systemFonts: "system-ui", "Segoe UI", "Roboto", "Helvetica", "Arial", sans-serif,
  "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";\
*/
/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
.block-flowchart {
  padding: 4rem 0;
}
.block-flowchart__cols {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-right: 6rem;
}
.block-flowchart__col {
  flex-grow: 1;
  border-right: 1px solid rgba(103, 103, 103, 0.15);
  padding: 0 3%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  font-size: 1.6rem;
}
.block-flowchart__col_mid {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block-flowchart__col_mid .block-flowchart__area {
  aspect-ratio: 1/1;
  background: var(--wp--preset--color--indigo);
  display: block;
}
.block-flowchart__col_mid .block-flowchart__area_wrapper {
  width: 80%;
  height: 100%;
}
.block-flowchart__col_mid img {
  width: fit-content;
}
.block-flowchart__col_bottom {
  padding-bottom: 2rem;
}
.block-flowchart__col strong {
  color: #000;
}
.block-flowchart__arrow {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  align-items: center;
  margin-top: -1.5rem;
}
.block-flowchart__arrow_label {
  flex-grow: 1;
  text-align: center;
  padding: 1rem;
  color: white;
  background: var(--wp--preset--gradient--blue-violet);
  margin-bottom: 5px;
}
.block-flowchart__arrow_label p {
  margin-bottom: 0;
}
