.block-image-cta {
  min-height: 450px;
  position: relative;
  z-index: 2;
  background-color: white;
}
@supports (-webkit-overflow-scrolling: touch) {
  .block-image-cta {
    background-attachment: unset !important;
  }
}
@media (min-width: 501px) {
  .block-image-cta {
    min-height: 300px;
  }
}
.block-image-cta .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: inherit;
  height: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 35px 60px;
}
.block-image-cta .wrap.row, .block-image-cta .wrap.row-reverse {
  padding: 0;
}
@media (min-width: 1025px) {
  .block-image-cta .wrap.row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .block-image-cta .wrap.row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.block-image-cta .wrap .image-cta-content-wrapper {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 2;
  background: white;
}
@media (min-width: 1025px) {
  .block-image-cta .wrap .image-cta-content-wrapper {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
.block-image-cta .wrap .image-cta-content-wrapper .image-cta-content-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block-image-cta .wrap .image-cta-content-wrapper .image-cta-content-title-wrapper a.btn {
  margin-top: 0;
  white-space: nowrap;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.block-image-cta .wrap .image-cta-content-wrapper h2 {
  font-family: "ivypresto-display", sans-serif;
  color: #00aae9;
  margin-bottom: 3rem;
}
.block-image-cta .wrap .image-cta-content-wrapper p {
  color: var(--wp--preset--color--darkgrey);
  margin-bottom: 3rem;
}
.block-image-cta .image-cta-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.block-image-cta a.btn {
  overflow: hidden;
  text-align: left;
  padding: 1.1rem 2rem 1rem;
  color: var(--wp--preset--color--darkgrey);
  background: transparent;
  border: 1px solid var(--wp--preset--color--darkgrey);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.6rem;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2rem;
  font-weight: 400;
  min-width: 12rem;
  border-radius: 10rem;
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}
.block-image-cta a.btn svg,
.block-image-cta a.btn span {
  z-index: 2;
  position: relative;
}
.block-image-cta a.btn svg {
  width: 16px;
  height: 16px;
  top: -1px;
}
.block-image-cta a.btn:hover, .block-image-cta a.btn:active, .block-image-cta a.btn:focus {
  text-decoration: none;
  -webkit-animation-name: pulse-button;
  animation-name: pulse-button;
  -webkit-animation-duration: 0.66s;
  animation-duration: 0.66s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.block-image-cta a.btn.btn-primary, .block-image-cta a.btn.is-style-btn-primary {
  color: var(--wp--preset--color--darkgrey);
  background: #c4e3f5;
}
.block-image-cta a.btn.btn-primary path, .block-image-cta a.btn.is-style-btn-primary path {
  fill: var(--wp--preset--color--darkgrey);
}
.block-image-cta a.btn.btn-primary:hover, .block-image-cta a.btn.btn-primary:active, .block-image-cta a.btn.btn-primary:focus, .block-image-cta a.btn.is-style-btn-primary:hover, .block-image-cta a.btn.is-style-btn-primary:active, .block-image-cta a.btn.is-style-btn-primary:focus {
  background: var(--wp--preset--color--darkgrey);
}
.block-image-cta a.btn.btn-secondary, .block-image-cta a.btn.is-style-btn-secondary {
  border-color: #00aae9;
  color: #00aae9;
}
.block-image-cta a.btn.btn-secondary path, .block-image-cta a.btn.is-style-btn-secondary path {
  fill: #00aae9;
}
.block-image-cta a.btn.btn-secondary:hover, .block-image-cta a.btn.btn-secondary:active, .block-image-cta a.btn.btn-secondary:focus, .block-image-cta a.btn.is-style-btn-secondary:hover, .block-image-cta a.btn.is-style-btn-secondary:active, .block-image-cta a.btn.is-style-btn-secondary:focus {
  background: #c4e3f5;
}
.block-image-cta a.btn.btn-secondary span.btn_ext-icon:before, .block-image-cta a.btn.is-style-btn-secondary span.btn_ext-icon:before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15"><g id="Group_10" data-name="Group 10" transform="translate(0 2)"><g id="Group_657" data-name="Group 657" transform="translate(0.045)"><path id="Path_29" data-name="Path 29" d="M23.728,0v.93H28.8V6h.93V0Z" transform="translate(-14.774 -2)" fill="%2300aae9"/><path id="Path_683" data-name="Path 683" d="M.3-.3,11.744,0V.862L.236.625Z" transform="translate(6 6.518) rotate(-45)" fill="%2300aae9"/></g><path id="Path_30" data-name="Path 30" d="M11.781,14.8H1.219A1.22,1.22,0,0,1,0,13.58V3.018A1.22,1.22,0,0,1,1.219,1.8H6v.812H1.219a.407.407,0,0,0-.406.406V13.58a.407.407,0,0,0,.406.406H11.781a.407.407,0,0,0,.406-.406V8.8H13V13.58A1.22,1.22,0,0,1,11.781,14.8" transform="translate(0 -1.799)" fill="%2300aae9"/></g></svg>');
}
.block-image-cta a.btn.btn-white, .block-image-cta a.btn.is-style-btn-white {
  background: transparent;
  color: #fefffe;
  border-color: #fefffe;
}
.block-image-cta a.btn.btn-white:hover, .block-image-cta a.btn.btn-white:active, .block-image-cta a.btn.btn-white:focus, .block-image-cta a.btn.is-style-btn-white:hover, .block-image-cta a.btn.is-style-btn-white:active, .block-image-cta a.btn.is-style-btn-white:focus {
  background: rgba(0, 0, 0, 0.2);
  border-color: #FFF;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 0.66s;
  animation-duration: 0.66s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.block-image-cta a.btn.btn-white:hover span, .block-image-cta a.btn.btn-white:active span, .block-image-cta a.btn.btn-white:focus span, .block-image-cta a.btn.is-style-btn-white:hover span, .block-image-cta a.btn.is-style-btn-white:active span, .block-image-cta a.btn.is-style-btn-white:focus span {
  color: #FFF;
}
.block-image-cta a.btn.full-width {
  display: block;
}
.block-image-cta a.btn.aligncenter, .block-image-cta a.btn.center {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.block-image-cta a.btn.aligncenter:hover, .block-image-cta a.btn.aligncenter:active, .block-image-cta a.btn.aligncenter:focus, .block-image-cta a.btn.center:hover, .block-image-cta a.btn.center:active, .block-image-cta a.btn.center:focus {
  -webkit-animation-name: pulseCentered;
  animation-name: pulseCentered;
}
.block-image-cta a.btn span.btn_ext-icon:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15"><g id="Group_10" data-name="Group 10" transform="translate(0 2)"><g id="Group_657" data-name="Group 657" transform="translate(0.045)"><path id="Path_29" data-name="Path 29" d="M23.728,0v.93H28.8V6h.93V0Z" transform="translate(-14.774 -2)" fill="%23707070"/><path id="Path_683" data-name="Path 683" d="M.3-.3,11.744,0V.862L.236.625Z" transform="translate(6 6.518) rotate(-45)" fill="%23707070"/></g><path id="Path_30" data-name="Path 30" d="M11.781,14.8H1.219A1.22,1.22,0,0,1,0,13.58V3.018A1.22,1.22,0,0,1,1.219,1.8H6v.812H1.219a.407.407,0,0,0-.406.406V13.58a.407.407,0,0,0,.406.406H11.781a.407.407,0,0,0,.406-.406V8.8H13V13.58A1.22,1.22,0,0,1,11.781,14.8" transform="translate(0 -1.799)" fill="%23707070"/></g></svg>');
  background-repeat: no-repeat;
}
.block-image-cta .image-wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 1024px) {
  .block-image-cta .image-wrapper {
    padding-bottom: 56.25%;
  }
}