.callout-module {
  position: relative;
  overflow: hidden;
}

.callout-module svg {
  width: 550px;
  height: auto;
  position: absolute;
  top: -125px;
  fill: #1A4259;
  left: 12%;
  right: 0;
}

.callout-module .content-container {
  margin-right: 50px;
  text-align: center;
}

.callout-module .content-container h2 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.callout-module .content-container p {
  color: rgba(29,29,29,.7);
}

.callout-module.bg-blue-100 .content-container {
  color: #FFFFFF;
}

.callout-module .cta-container {
  text-align: center;
}

.callout-module .row .col-lg-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media(max-width: 991px) {
  .callout-module .content-container,
  .callout-module .cta-container {
    text-align: center;
    max-width: 100% !important;
  }
  
  .callout-module .row .col-lg-12 {
    flex-direction: column;
  }
  
  .callout-module .content-container {
    margin-right: 0px;
  }

  .callout-module .content-container h2 {
    margin-bottom: 20px;
  }
  
  .callout-module svg {
    display: none;
  }