.cta-widget {
    background-color: #f1f1f1;
    width: 100%;
    padding: 20px 20px 15px;
    position: relative;
  }
  
  .cta-widget::before {
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #00b0cf;
  }
  
  .cta-widget h4 {
    font-weight: normal;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  
  .cta-widget p {
    margin-bottom: 0;
  }
  
  .cta-widget i {
    color: #00b0cf;
    margin-right: 8px;
    width: 20px;
  }
  
  .cta-widget i.fa-envelope {
    font-size: 20px;
  }
  
  .cta-widget .box {
    display: inline-block;
    margin-right: 100px;
    vertical-align: top;
  }
  
  .cta-widget .box:last-child {
    margin-right: 0;
  }
  
  .cta-widget.cta-widget-secondary::before {
    background-color: #f36f21;
  }
  
  @media (max-width: 767px) {
    .cta-widget {
      display: block;
      padding: 20px 15px;
    }
    .cta-widget .box {
      margin-right: 0;
      margin-bottom: 30px;
    }
    .cta-widget .box:last-child {
      margin-bottom: 0;
    }
  }
  
  