/** Section Title **/
.super-title {
    line-height: 1;
    color: var(--wp--preset--color--secondary);
    position: relative;
}
.super-title:before,
.super-title:after {
    content: "";
    height: 2px;
    width: 25px;
    position: absolute;
    background-color: var(--wp--preset--color--secondary);
    top: 8px;
}
.super-title:before {
    right: calc(100% + 20px);
    background-image: -webkit-gradient(linear, right top, left top, from(var(--wp--preset--color--secondary)), color-stop(130%, transparent));
    background-image: -o-linear-gradient(right, var(--wp--preset--color--secondary), transparent 130%);
    background-image: linear-gradient(to left, var(--wp--preset--color--secondary), transparent 130%);
    background-color: transparent;
}
.super-title:after {
    left: calc(100% + 20px);
    background-image: -webkit-gradient(linear, left top, right top, from(var(--wp--preset--color--secondary)), color-stop(130%, transparent));
    background-image: -o-linear-gradient(left, var(--wp--preset--color--secondary), transparent 130%);
    background-image: linear-gradient(to right, var(--wp--preset--color--secondary), transparent 130%);
    background-color: transparent;
}
.text-left.super-title:before {
    display: none;
}
.text-right.super-title:after {
    display: none;
}


/** How it Works **/
.how_it_works .step_block .step_item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  width: 6px;
  height: calc(100% + 100px);
  background-color: var(--wp--preset--color--primary);
}
.how_it_works .step_block .step_item:first-child::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background-color: var(--wp--preset--color--primary);
  border-radius: 15px;
}
.how_it_works .step_block .step_item:first-child::before {
  top: 0;
}
.how_it_works .step_block .step_item:last-child::before {
  height: 50%;
  top: 0;
}
.how_it_works .step_block .step_item:nth-child(2n) {
  flex-direction: row-reverse;
}
.how_it_works .step_block .step_item .step_number {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 100%;
  background: var(--wp--preset--color--white);
  border: 5px solid var(--wp--preset--color--primary);
}
.how_it_works .step_number h2 {
  color: var(--wp--preset--color--primary);
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--wp--preset--color--primary);
  border-radius: 100%;
}

@keyframes ripples {
  to {
      box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.2), 0 0 0 32px rgba(255, 255, 255, 0.2), 0 0 0 48px rgba(255, 255, 255, 0.2), 0 0 0 64px rgba(255, 255, 255, 0);
  }
}

/** Post Excerpt **/
.wp-block-post-excerpt__more-text .block-editor-rich-text__editable{
    display: none;
}

/** Button **/
.wp-block-button.is-style-outline .wp-block-button__link:hover{
    border-color: var(--wp--preset--color--secondary);
    color: var(--wp--preset--color--secondary);
    -webkit-box-shadow: 0px 3px 24px 0px 3px 24px rgba(19, 143, 129, 0.2);
    box-shadow: 0px 3px 24px rgba(19, 143, 129, 0.2);
}