.introduction-container {
    /*height: 200px;*/
    background: linear-gradient(135deg,#00509b 0,#003668 100%);
    position: relative;
    padding-top: 15px;
    margin-bottom: 20px;
  }
  
  .carousel-content {
    display: flex;
    flex-direction: row;
  }
  
  .introduction-image-div {
    flex: 1
  
  }
  
  .introduction-image {
    width: 100%;
    border-radius: .1111111111rem;
  }
  
  .introduction-content-div {
    flex: 1;
    padding-top: 1.0rem;
    padding-bottom: 0.5rem;
  
    display: flex;
  
  
  }
  
  .introduction-content {
    margin-left: -2.7777777778rem;
    padding: 1rem;
    display: block;
    color: white;
    border-radius: .1111111111rem;
  
    flex-grow: 1;
  
    background-color: rgba(0,80,155,.8);
  
    display: flex;
    align-items: center;
  }
  
  .introduction-content .title {
    margin: 0;
  
  }
  .introduction-content:hover {
    color: white;
    text-decoration: none;
    background-color: rgba(0, 67, 130, 0.8);
    box-shadow: 0 2px 6px rgba(0,0,0,0.33);
  }
  
  
  .carousel-indicators {
    position: relative;
    left: inherit;
    right: inherit;
    bottom: inherit;
    top: inherit;
    margin: 0;
    justify-content: left;
  
    margin-left: 14px;
  }
  .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 100%;
  
  }
  
  .carousel-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    
    padding-top: 10px;
    padding-bottom: 10px;
  
  }
  
  .carousel-control-buttons {
    margin-right: 6px;
  }
  
  .carousel-control-buttons .oi::before  {
    color: white;
  }
  
  .carousel-control-buttons:hover  .oi::before {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
  }
  
  .testimonial-img-placeholder {
    width: 100%; /* or any specific width */
    height: 0;
    /*padding-top: 18.75%; /* (300 / 1600) * 100% */
    padding-top: 37.23%; /* (35 / 94) * 100% */
    position: relative;
  }

  .testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-color: rgba(0, 67, 130);
    color: white;
    padding: 14px;

    text-align: center;
    /*vertically center*/
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  @media (max-width: 992px) { /* 992px */
    .carousel-content {
      flex-direction: column;
    }
  
    .introduction-content-div {
      padding-top: 0;
      padding-bottom: 0;
    }
    .introduction-content {
      padding: .6666666667rem .6666666667rem 1.3333333333rem;
      margin: -1rem .6666666667rem .6666666667rem;
      font-size: 0.8rem;
      min-height: 130px;
  
    }
  }
