.imageCTABlock {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
}
.imageCTABlock_Background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.imageCTABlock_Overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  pointer-events: none;
}
.imageCTABlock_Container {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: inherit;
  padding: 100px 0;
}
.imageCTABlock_Content {
  box-sizing: border-box;
  max-width: 770px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 16px;
  color: #fff;
}
.imageCTABlock_Title {
  margin: 0;
  color: var(--Color-White, #fff);
  text-align: center;
  font-family: "DM Sans";
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.imageCTABlock_TitleAccent {
  margin-left: 8px;
}
.imageCTABlock_Subtitle {
  margin: 0;
  color: var(--Color-White, #fff);
  text-align: center;
  font-family: "DM Sans";
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.imageCTABlock_Text {
  margin: 0;
  color: var(--Color-White, #fff);
  text-align: center;
  font-family: "DM Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.imageCTABlock_Button {
  display: inline-block;
  padding: 11.224px 29.79px;
  box-sizing: border-box;
  border-radius: 30px;
  border: 1px solid #ff8000;
  background: #ff8000;
  color: #fff;
  text-align: center;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.imageCTABlock_Button:hover {
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .imageCTABlock_Container {
    padding: 50px 0;
  }
  .imageCTABlock_Title {
    font-size: 32px;
    letter-spacing: 1.5px;
  }
  .imageCTABlock_Subtitle {
    font-size: 18px;
  }
}
