/*
* Global button styling
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* Breakpoint debugging
*/
/*
* 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-parallax-cta {
  position: relative;
  isolation: isolate;
}
@media (max-width: 782px) {
  .block-parallax-cta {
    margin-top: 10rem;
  }
}
.block-parallax-cta .parallax-bg {
  position: absolute;
  inset: 0;
  top: auto;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.block-parallax-cta .wp-block-group {
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: var(--wp--style--global--wide-size);
  margin-left: auto;
  margin-right: auto;
  min-height: 350px;
  color: #fff;
}
.block-parallax-cta .wp-block-group .acf-innerblocks-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: var(--wp--preset--spacing--medium) 0;
}
.block-parallax-cta .wp-block-group p {
  font-size: var(--wp--preset--font-size--medium);
  max-width: 500px;
  text-wrap: balance;
}
.block-parallax-cta .wp-block-group .wp-block-buttons .wp-block-button__link {
  border-color: currentColor;
  color: #fff;
}
.block-parallax-cta .wp-block-group .wp-block-buttons .wp-block-button__link:hover {
  border-color: var(--wp--preset--color--secondary);
}
.block-parallax-cta .wp-block-group .parallax-foreground {
  position: absolute;
  right: 0;
  z-index: 10;
  margin-right: 0;
  bottom: -20%;
  height: 140%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  -o-object-position: center bottom;
     object-position: center bottom;
}

@media (min-width: 783px) {
  .page-template-default.page-child .block-parallax-cta .wp-block-group {
    padding-left: calc(26rem + var(--wp--preset--spacing--medium));
  }
}