.cta-banner-block {
  position: relative;
  overflow: hidden;
}
.cta-banner-block .cta-text{
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom:0;
}
.cta-banner-block .btn-sm{
  display: inline-block;
  font-size: .7em;
  padding: 5px 20px;
  bottom: 3px;
  position: relative;
}
.cta-banner-block a {
    margin-left:30px;
}
.two-columns .cta-banner-block .btn-sm {
    min-width:0!important;
    margin-left:0;
    margin-top:15px;
    width:100%;
}
.two-columns .cta-content {
margin:auto 40px;
}
.two-columns .cta-content p {
text-align:left;
}

/* ---- Second (alternate) CTA button ---- */
.cta-banner-block .cta-alt-btn {
  background-color: #002855;
  color: #fff;
  border: 1px solid #002855;
}
.cta-banner-block .cta-alt-btn:hover,
.cta-banner-block .cta-alt-btn:focus {
  background-color: #001b3d;
  color: #fff;
}

/* ---- Concentric arc background (designed PNG) ---- */
.cta-banner-block .cta-content {
  position: relative;
  z-index: 1;
}
.cta-banner-block.has-arcs {
  /* Tweak points: diameter of the circle graphic, its cap, and how far the
     circle's center sits in from the right edge of the section. */
  --cta-arc-width: 62%;
  --cta-arc-max-width: 900px;
  --cta-arc-inset: 17%;
}
.cta-banner-block.has-arcs::after {
  content: "";
  position: absolute;
  top: 100%;
  right: var(--cta-arc-inset);
  width: var(--cta-arc-width);
  max-width: var(--cta-arc-max-width);
  aspect-ratio: 870 / 911;
  transform: translate(50%, -50%);
  z-index: 0;
  pointer-events: none;
  background: url("images/circles-white.png") center center / 100% 100% no-repeat;
  opacity: 0.4;
}
/* keep arcs visible on a white background (flips the white artwork to dark) */
.cta-banner-block.bgwhite.has-arcs::after {
  filter: invert(1);
  opacity: 0.5;
}

@media only screen and (max-width: 767px) {
.cta-banner-block .btn-sm {
    display: block;
    max-width: 200px;
    margin: 10px auto 5px;
    min-width:150px;
}
}