.image-cta-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.image-cta-wrapper:hover .btn {
  background: rgb(204, 87.2, 0);
}

.image-cta {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 450px;
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .image-cta {
    clip-path: url(#ctaClip);
  }
}
.image-cta__image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.image-cta__content {
  padding: 4rem;
  position: relative;
  z-index: 3;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(135deg, rgb(20, 28, 66) 0%, rgb(7, 17, 144) 100%);
  width: 600px;
  min-width: 150px;
  border-top-right-radius: 32px;
}
.image-cta h2 {
  margin-bottom: 2rem;
  color: #fff;
}
.image-cta p {
  color: #fff;
}

.btn {
  position: absolute;
  top: 0;
  right: 0;
  background: #FF6D00;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.25s ease-in-out;
}
.btn svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 1024px) {
  .btn {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }
  .btn svg {
    width: 25px;
    height: 25px;
  }
}/*# sourceMappingURL=block-image-cta.css.map */